:root {
  --primary: #021f26;
  --dark-bg: #021f26;
  --darker-bg: #021f26;
  --card-bg: #0d2b27;
  --text-light: #e0f0ee;
  --text-muted: #7ab8b0;
  --gold: #d4a843;
  --border: rgba(0, 201, 167, 0.2);
}

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

html {
  scroll-behavior: smooth;
  color: white;
}

section {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

img {
  width: 100%;
}

main {
  overflow-x: hidden;
}

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

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

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

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

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

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

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

.container {
  margin: 0 auto;
}

.section-title {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  position: relative;
  letter-spacing: 0;
  margin: auto;
  background: linear-gradient(90deg, #a36f37 0%, #e7d380 35%, #f6ebab 50%, #e7d380 65%, #a36f37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 24px;
  }
}
.section-title em {
  font-style: normal;
}
.section-title::after {
  display: none;
}

.btn-primary {
  display: inline-block;
  background: #021f26;
  color: #021f26;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
nav.is-scrolled {
  background: rgba(2, 31, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav .nav-inner {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  nav .nav-inner {
    justify-content: space-between;
    padding: 14px 20px;
    height: 64px;
    background: #021f26;
  }
}
nav .logo {
  display: none;
  margin-right: auto;
}
nav .logo img {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 991px) {
  nav .logo {
    display: block;
  }
}
nav .nav-list {
  list-style: none;
  display: flex;
  gap: 29px;
  align-items: center;
}
@media (max-width: 991px) {
  nav .nav-list {
    display: none;
  }
}
nav .nav-list a {
  text-decoration: none;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
  transition: color 0.2s;
}
nav .nav-list a:hover {
  color: #d4a843;
}
nav .nav-list a.nav-lang {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .nav-list a.nav-lang img {
  width: 15px;
}
nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
nav .hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: #e0f0ee;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
nav .hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav .hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
nav .hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (max-width: 991px) {
  nav .hamburger {
    display: flex;
  }
}

.mobile-menu {
  display: none;
}
@media (max-width: 991px) {
  .mobile-menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #021f26;
    z-index: 9000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #e0f0ee;
    padding: 18px 28px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }
  .mobile-menu a:hover {
    color: #d4a843;
    background: rgba(255, 255, 255, 0.04);
  }
  .mobile-menu a.nav-lang {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .mobile-menu a.nav-lang img {
    width: 15px;
  }
}

section.index {
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, #0d3b30 0%, #021f26 70%);
  display: flex;
  align-items: center;
  padding: 100px 30px 60px;
  position: relative;
}
@media (max-width: 500px) {
  section.index {
    padding-top: 70px;
    height: 900px;
    align-items: self-start;
  }
}
section.index::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c9a7' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
section.index h1 {
  position: absolute;
  opacity: 0;
  z-index: -2;
  top: -100%;
  left: -100%;
}
section.index .pc {
  display: none !important;
}
@media screen and (min-width: 501px) {
  section.index .pc {
    display: block !important;
  }
}
section.index .mb {
  display: none !important;
}
@media screen and (max-width: 500px) {
  section.index .mb {
    display: block !important;
  }
}
section.index .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 85%;
     object-position: 85%;
}
@media (max-width: 500px) {
  section.index .bg {
    -o-object-position: center 35%;
       object-position: center 35%;
  }
}
@media (max-width: 450px) {
  section.index .bg {
    -o-object-position: center 100%;
       object-position: center 100%;
  }
}
section.index .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
section.index .dec {
  position: absolute;
  width: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.index .container {
  width: 100%;
  max-width: unset;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  transform: translateY(-30px);
}
@media (max-width: 500px) {
  section.index .container {
    align-items: flex-start;
  }
}
section.index .container > div {
  width: 50%;
}
@media (max-width: 500px) {
  section.index .container > div {
    width: 100%;
  }
}
section.index .logo {
  width: 37%;
}
section.index .hero-title-1 {
  width: 107%;
  margin-top: 20px;
  margin-left: -3%;
}
@media (max-width: 500px) {
  section.index .hero-title-1 {
    margin-top: 70px;
    margin-left: 0;
    width: 110%;
    margin-left: -5%;
  }
}
section.index .hero-title-hr {
  margin-top: 0px;
}
section.index .hero-title-2 {
  width: 105%;
  margin-top: 24px;
}
@media (max-width: 501px) {
  section.index .hero-title-2 {
    margin-top: 72%;
    width: 100%;
  }
}
@media (max-width: 405px) {
  section.index .hero-title-2 {
    margin-top: 89%;
  }
}
section.index .hero-title-3 {
  width: 83%;
  margin-top: 23px;
}
@media (max-width: 500px) {
  section.index .hero-title-3 {
    width: 100%;
    margin-top: 60px;
  }
}
section.index .hero-title-4 {
  width: 100%;
  margin-top: 20px;
}

section.foreword {
  background: #021f26;
  padding: 150px 30px 100px;
  position: relative;
  overflow: visible;
  z-index: auto;
}
@media (max-width: 991px) {
  section.foreword {
    padding: 50px 30px;
  }
}
@media (max-width: 991px) {
  section.foreword .anchor {
    top: -50px;
  }
}
section.foreword h2 {
  letter-spacing: 0;
}
section.foreword .container {
  max-width: 1200px;
}
section.foreword .foreword-bg-dec {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
section.foreword .item {
  padding: 60px 82px 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background-color: rgba(217, 217, 217, 0.1215686275);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  section.foreword .item {
    padding: 37px 26px 50px;
  }
}
section.foreword .item h3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 991px) {
  section.foreword .item h3 {
    font-size: 16px;
  }
}
section.foreword .item .line {
  display: block;
  margin: 30px auto;
  background: #f5c95a;
  height: 2px;
  width: 80%;
}
@media (max-width: 991px) {
  section.foreword .item .line {
    height: 5px;
    margin: 25px auto;
  }
}
section.foreword .item p {
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  color: #fff;
}
@media (max-width: 991px) {
  section.foreword .item p {
    font-size: 15px;
  }
}
section.foreword .item p strong {
  color: #021f26;
  line-height: 27px;
}

section.highlights {
  background: #021f26;
  padding: 150px 30px 100px;
  position: relative;
  overflow: visible;
  z-index: 3;
}
@media (max-width: 991px) {
  section.highlights {
    padding: 50px 30px;
  }
}
@media (max-width: 991px) {
  section.highlights .anchor {
    top: -10px;
  }
}
section.highlights h2 span {
  font-family: "Electrolize", sans-serif;
  font-size: 64px;
  color: #d8be81;
}
@media (max-width: 991px) {
  section.highlights h2 span {
    font-size: 40px;
  }
}
section.highlights .bg {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1252px;
}
section.highlights .container {
  width: 100%;
  max-width: 1200px;
}
section.highlights .highlights-grid {
  margin-top: 95px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px;
}
@media (max-width: 991px) {
  section.highlights .highlights-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 51px;
  }
}
section.highlights .highlight-card {
  background: rgb(8, 28, 36);
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 50px 24px 65px;
  position: relative;
}
@media (max-width: 991px) {
  section.highlights .highlight-card {
    padding: 40px 35px 78px;
  }
}
section.highlights .highlight-card .card-label {
  display: inline-block;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 38px;
  position: absolute;
  top: -23px;
  left: 26px;
  font-weight: 500;
  color: #d8be81;
  background-color: #032027;
  margin-bottom: 20px;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  section.highlights .highlight-card .card-label {
    font-size: 32px;
    top: -20px;
  }
}
section.highlights .highlight-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 991px) {
  section.highlights .highlight-card h3 {
    font-size: 20px;
  }
}
section.highlights .highlight-card p {
  margin-top: 18px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 28px;
  text-align: left;
  font-weight: 300;
}
@media (max-width: 991px) {
  section.highlights .highlight-card p {
    font-size: 14px;
    line-height: 25px;
  }
}
section.highlights .highlight-card .num {
  font-family: "Electrolize", sans-serif;
  position: absolute;
  bottom: -40px;
  right: 25px;
  height: 114px;
}
@media (max-width: 991px) {
  section.highlights .highlight-card .num {
    height: 76px;
    bottom: 0px;
  }
}

section.speakers {
  overflow: visible;
  padding: 150px 30px 100px;
  position: relative;
  background: #021f26;
  z-index: 2;
}
@media (max-width: 991px) {
  section.speakers {
    padding: 50px 30px;
  }
}
@media (max-width: 991px) {
  section.speakers .anchor {
    top: -50px;
  }
}
section.speakers .speaker-bg-dec {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  will-change: auto;
  pointer-events: none;
}
section.speakers .speaker-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
section.speakers .speakers-carousel {
  max-width: 1260px;
  margin: 70px auto 0;
  padding: 20px 40px;
}
@media (max-width: 991px) {
  section.speakers .speakers-carousel {
    padding: 0;
    margin-top: 90px;
  }
}
section.speakers .speaker-slide {
  text-align: center;
  padding: 30px 24px;
  cursor: pointer;
  outline: none;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
}
@media (max-width: 991px) {
  section.speakers .speaker-slide {
    padding: 0;
  }
}
section.speakers .speaker-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./../image/speaker-light.png"), url("./../image/speaker-people-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}
section.speakers .speaker-slide .avatar {
  max-height: 230px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
section.speakers .speaker-slide .avatar img {
  height: 100%;
  width: auto;
  image-rendering: auto;
  will-change: auto;
}
section.speakers .speaker-slide .avatar .avatar-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0;
}
section.speakers .speaker-slide h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  padding: 4px 16px;
  position: relative;
  z-index: 1;
  transform: translateY(-20px) translateZ(0);
}
section.speakers .speaker-slide h3::after {
  content: "";
  position: absolute;
  background: url("./../image/speaker-name-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 130px;
  height: 63px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  z-index: -1;
  will-change: auto;
}
section.speakers .speaker-slide .title {
  font-size: 20px;
  color: #fff;
  line-height: 34px;
  position: relative;
  z-index: 1;
}
section.speakers .speaker-slide .title p {
  margin-top: 10px;
}
section.speakers .speaker-slide .title p + p {
  margin-top: 16px;
}
section.speakers .slick-center {
  transform: translateY(-70px) translateZ(0);
}
@media (max-width: 991px) {
  section.speakers .slick-center {
    transform: translateY(0) translateZ(0);
  }
}
section.speakers .slick-track {
  padding: 60px 0 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 991px) {
  section.speakers .slick-track {
    padding: 0px 0;
  }
}
section.speakers .slick-list {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}
section.speakers .slick-prev,
section.speakers .slick-next {
  width: 16px;
  height: 32px;
  z-index: 10;
  transform: translateZ(0);
}
section.speakers .slick-prev::before,
section.speakers .slick-next::before {
  display: none;
}
section.speakers .slick-prev img,
section.speakers .slick-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
section.speakers .slick-prev:hover img,
section.speakers .slick-next:hover img {
  opacity: 1;
}
section.speakers .slick-prev {
  left: 4px;
}
section.speakers .slick-next {
  right: 4px;
}

section.agenda {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  background: linear-gradient(180deg, #024649 0%, #000b0f 100%);
  padding: 150px 0 250px;
}
@media (max-width: 500px) {
  section.agenda {
    padding: 200px 40px 180px;
  }
}
@media (max-width: 991px) {
  section.agenda .anchor {
    top: 70px;
  }
}
section.agenda .agenda-heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
section.agenda .agenda-heading-wrap img {
  width: 100%;
  max-width: 273px;
}
@media (max-width: 991px) {
  section.agenda .agenda-heading-wrap img {
    max-width: 200px;
  }
}
section.agenda .agenda-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.agenda .agenda-dec-1 {
  position: absolute;
  top: -5%;
  left: 0;
  width: 65%;
}
section.agenda .agenda-dec-2 {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 140%;
}
section.agenda .agenda-date {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(90deg, #a36f37 0%, #e7d380 35%, #f6ebab 50%, #e7d380 65%, #a36f37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 56px;
}
section.agenda .agenda-list {
  max-width: 1000px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 80px;
}
@media (max-width: 991px) {
  section.agenda .agenda-list {
    margin: 65px auto 0;
    gap: 65px;
  }
}
section.agenda .agenda-item {
  display: grid;
  grid-template-columns: 16px 260px 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: start;
  position: relative;
}
section.agenda .agenda-item:not(:last-child)::before {
  content: "";
  position: absolute;
  height: calc(100% + 80px);
  left: 8.5px;
  top: 10px;
  width: 0;
  z-index: -1;
  border-left: 1px solid #eec95d;
  pointer-events: none;
}
@media (max-width: 991px) {
  section.agenda .agenda-item:not(:last-child)::before {
    top: 7px;
  }
}
section.agenda .dot {
  width: 18px;
  height: 15px;
  background-image: url("./../image/list.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 10px;
}
@media (max-width: 991px) {
  section.agenda .dot {
    margin-top: 7px;
  }
}
section.agenda .time {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.2em;
  color: #ffffff;
  white-space: nowrap;
}
section.agenda .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
section.agenda .talk-label {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  color: #eec95d;
}
section.agenda .talk-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  color: #ffffff;
  text-align: left;
}
section.agenda .agenda-item.break .talk-title,
section.agenda .agenda-item.plain .talk-title {
  font-weight: 700;
}
section.agenda .speaker {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  color: #ffffff;
  text-align: left;
  white-space: pre;
}
@media (max-width: 991px) {
  section.agenda .speaker {
    white-space: normal;
  }
}
@media (max-width: 991px) {
  section.agenda .agenda-date {
    font-size: 28px;
    margin-bottom: 40px;
  }
  section.agenda .agenda-list::before {
    left: 31px;
  }
  section.agenda .agenda-item {
    grid-template-columns: 16px 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 6px;
    text-align: left;
  }
  section.agenda .time {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
  }
  section.agenda .content {
    grid-column: 2;
    grid-row: 2;
  }
  section.agenda .talk-label {
    font-size: 20px;
  }
  section.agenda .talk-title {
    font-size: 20px;
  }
  section.agenda .speaker {
    font-size: 15px;
  }
}

.location-registration-wrap {
  position: relative;
  z-index: 3;
  background-color: #000b0f;
}
.location-registration-wrap .location-registration-bg {
  position: absolute;
  width: 100%;
  height: calc(100% + 100px);
  top: -100px;
  left: 0;
}
.location-registration-wrap .traffic-bg-dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: 100%;
     object-fit: 100%;
  z-index: 1;
}

section.location {
  padding: 100px 20px;
}
@media (max-width: 991px) {
  section.location {
    padding: 20px 20px 60px;
  }
}
section.location .container {
  max-width: 1110px;
  margin: auto;
  width: 100%;
}
section.location .anchor {
  top: -50px;
}
section.location .location-box {
  width: 100%;
  margin-top: 83px;
  display: flex;
  gap: 125px;
  align-items: center;
  justify-self: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  text-align: left;
  box-shadow: 3px 4px 4px 0px rgba(255, 255, 255, 0.25);
  padding: 75px 113px 70px 125px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  section.location .location-box {
    text-align: center;
    flex-direction: column;
    height: auto;
    border-radius: 24px;
    padding: 0;
    gap: 0;
    margin-top: 38px;
    border: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 3px 4px 4px 0px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
section.location .location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
}
@media (max-width: 991px) {
  section.location .location-info {
    gap: 43px;
  }
}
section.location .location-detail p {
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  section.location .location-detail p {
    font-size: 20px;
    line-height: 29px;
    max-width: 80%;
    margin: auto;
  }
}
section.location .traffic-btn {
  display: inline-block;
  padding: 18px 26px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}
section.location .traffic-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
section.location .map-placeholder {
  width: 50%;
  aspect-ratio: 396/367;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  section.location .map-placeholder {
    width: 85%;
    aspect-ratio: 274/254;
    margin-top: 63px;
  }
}
section.location .map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

section.registration {
  background: transparent;
  padding: 150px 20px 150px;
}
@media (max-width: 991px) {
  section.registration {
    padding: 40px 32px 80px;
  }
}
@media (max-width: 991px) {
  section.registration .anchor {
    top: -70px;
  }
}
section.registration .section-title {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  section.registration .section-title {
    font-size: 22px;
    margin-bottom: 33px;
  }
}
section.registration .registration-form {
  max-width: 700px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
}
@media (max-width: 991px) {
  section.registration .registration-form {
    max-width: 100%;
  }
}
section.registration .campaign-form-wrap {
  --border-color: rgba(255, 255, 255, 0.35);
  --placeholder: rgba(255, 255, 255, 0.4);
  --primary-color: #fff;
  --border-radius: 30px;
  --border-width: 1px;
  --warn-color: #ef5350;
}
section.registration .campaign-form-wrap .required-text {
  display: none;
}
section.registration .campaign-form-wrap .campaign-form {
  display: flex;
  flex-direction: column;
}
section.registration .campaign-form-wrap .form-item {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .form-item {
    margin-bottom: 20px;
  }
}
section.registration .campaign-form-wrap .form-item .item-title {
  color: #d9d9d9;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 11px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .form-item .item-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
section.registration .campaign-form-wrap .form-item .item-title.required::before {
  color: #d9d9d9;
  margin-right: 4px;
}
section.registration .campaign-form-wrap .form-item .input-wrap {
  width: 100%;
}
section.registration .campaign-form-wrap input[type=text],
section.registration .campaign-form-wrap input[type=email] {
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: #d9d9d9;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap input[type=text],
  section.registration .campaign-form-wrap input[type=email] {
    padding: 15px 20px;
    font-size: 14px;
  }
}
section.registration .campaign-form-wrap input[type=text]:focus,
section.registration .campaign-form-wrap input[type=email]:focus {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}
section.registration .campaign-form-wrap input[type=text]::-moz-placeholder, section.registration .campaign-form-wrap input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
section.registration .campaign-form-wrap input[type=text]::placeholder,
section.registration .campaign-form-wrap input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
section.registration .campaign-form-wrap input[type=text].invalid,
section.registration .campaign-form-wrap input[type=email].invalid {
  border-color: #ef5350;
}
section.registration .campaign-form-wrap select {
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap select {
    padding: 15px 20px;
    font-size: 14px;
  }
}
section.registration .campaign-form-wrap select:focus {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}
section.registration .campaign-form-wrap select option {
  background: #021f26;
  color: #d9d9d9;
}
section.registration .campaign-form-wrap .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
section.registration .campaign-form-wrap .checkbox-item input[type=checkbox] {
  display: none;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox {
  width: 23px;
  height: 23px;
  min-width: 23px;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9d9d9;
  transition: background-color 0.2s, border-color 0.2s;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox svg {
  opacity: 0;
  transition: opacity 0.2s;
}
section.registration .campaign-form-wrap .checkbox-item input[type=checkbox]:checked + .checkbox {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}
section.registration .campaign-form-wrap .checkbox-item input[type=checkbox]:checked + .checkbox svg {
  opacity: 1;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox-text {
  color: #d9d9d9;
  font-size: 15px;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .checkbox-item .checkbox-text {
    font-size: 13px;
  }
}
section.registration .campaign-form-wrap .session-item .session-header {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .session-item .session-header {
    flex-wrap: wrap;
    gap: 0;
  }
}
section.registration .campaign-form-wrap .session-item .session-header .item-title {
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .session-item .session-header .item-title {
    flex: 1;
  }
}
section.registration .campaign-form-wrap .session-item .session-header .session-checkboxes {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .session-item .session-header .session-checkboxes {
    width: 100%;
    order: 3;
    gap: 16px;
    margin-top: 10px;
  }
}
section.registration .campaign-form-wrap .session-item .session-header .session-hint {
  margin-left: auto;
  font-size: 12px;
  font-weight: 400;
  color: #d9d9d9;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .session-item .session-header .session-hint {
    order: 2;
    margin-left: 0;
  }
}
section.registration .campaign-form-wrap .privacy-policy-wrap {
  margin-top: 8px;
}
section.registration .campaign-form-wrap .privacy-policy-wrap .privacy-policy-title {
  margin-bottom: 8px;
}
section.registration .campaign-form-wrap .privacy-policy-wrap .privacy-policy-content {
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .privacy-policy-wrap .privacy-policy-content {
    font-size: 12px;
  }
}
section.registration .campaign-form-wrap .privacy-policy-wrap .privacy-policy-content a {
  color: #d9d9d9;
  text-decoration: underline;
}
section.registration .campaign-form-wrap .error-message {
  color: #ef5350;
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
  display: none;
}
section.registration .campaign-form-wrap .submit-buttons-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .submit-buttons-wrap {
    margin-top: 20px;
  }
}
section.registration .campaign-form-wrap .submit-buttons-wrap > button {
  width: auto;
}
section.registration .campaign-form-wrap button.primary {
  width: 100%;
  max-width: 522px;
  display: block;
  margin: 0 auto;
  background: #fff;
  color: #021f26;
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  padding: 20px 70px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0;
  font-family: inherit;
  margin-top: 50px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap button.primary {
    width: 187px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px;
    margin-top: 30px;
  }
}
section.registration .campaign-form-wrap button.primary:hover {
  opacity: 0.88;
}
section.registration .campaign-form-wrap .campaign-loading-wrap {
  text-align: center;
  margin-top: 16px;
  display: none;
}
section.registration .campaign-form-wrap .campaign-loading-wrap.active {
  display: block;
}
section.registration .campaign-form-wrap .campaign-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
section.registration .campaign-form-wrap .campaign-popup.active {
  display: flex;
}
section.registration .campaign-form-wrap .campaign-popup .popup-box {
  background-color: #021f26;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  width: 90%;
  max-width: 400px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .campaign-popup .popup-box {
    padding: 24px 16px;
  }
}
section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-title {
    font-size: 16px;
  }
}
section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-content {
    font-size: 13px;
  }
}
section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-content a {
  color: #fff;
  text-decoration: underline;
}

footer {
  background: #012023;
  padding: 73px 151px 60px 71px;
}
@media (max-width: 991px) {
  footer {
    padding: 64px 80px;
  }
}
footer .footer-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 57px;
  }
}
footer .footer-ad {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  footer .footer-ad {
    order: 3;
  }
}
footer .footer-ad-label {
  display: inline-block;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  padding: 10px 20px 12px;
}
footer .footer-org {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  text-align: left;
}
@media (max-width: 991px) {
  footer .footer-org {
    order: 1;
    flex-direction: column;
    align-items: center;
    gap: 76px;
    width: 100%;
  }
}
footer .footer-org-group {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
footer .footer-org-group:last-child {
  gap: 10px;
}
@media (max-width: 991px) {
  footer .footer-org-group:last-child {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  footer .footer-org-group {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 42px;
  }
}
footer .footer-org-label {
  font-size: 20px;
  color: #9fbbc9;
  letter-spacing: 0.2em;
}
footer .footer-org-logos {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 991px) {
  footer .footer-org-logos {
    flex-direction: column;
    align-items: center;
    gap: 33px;
  }
}
footer .footer-org-logo img {
  display: block;
  max-width: 100%;
}
footer .footer-org-logo-1 img {
  height: 28px;
}
footer .footer-org-logo-2 img {
  height: 55px;
}
footer .footer-org-logo-3 img {
  height: 31px;
}

.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(0, 0, 0, 0.6);
  cursor: pointer;
}
.speaker-popup .popup-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: calc(100% - 48px);
}
.speaker-popup .popup-close {
  position: absolute;
  top: 37px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  line-height: 1;
  z-index: 2;
}
@media (max-width: 991px) {
  .speaker-popup .popup-close {
    top: 35px;
    right: 30px;
  }
}
.speaker-popup .popup-close img {
  width: 33px;
  height: 33px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .speaker-popup .popup-close img {
    width: 24px;
    height: 24px;
  }
}
.speaker-popup .popup-close:hover img {
  transform: rotate(90deg);
}
.speaker-popup .popup-container {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  padding: 106px 73px 87px 103px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 991px) {
  .speaker-popup .popup-container {
    overflow-y: auto;
    max-height: 90vh;
    padding: 59px 42px 44px;
  }
}
.speaker-popup .popup-body {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .speaker-popup .popup-body {
    flex-direction: column;
    align-items: center;
    gap: 46px;
  }
}
.speaker-popup .popup-body .avatar-big {
  flex-shrink: 0;
  min-height: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speaker-popup .popup-body .avatar-big .avatar-placeholder {
  font-size: 72px;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .speaker-popup .popup-body .avatar-big {
    height: 225px;
  }
}
.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 h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .speaker-popup .popup-body .details h2 {
    font-size: 24px;
  }
}
.speaker-popup .popup-body .details .sub-title {
  font-size: 24px;
  color: #000000;
  line-height: 1.5;
  margin-top: 30px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .speaker-popup .popup-body .details .sub-title {
    margin-top: 24px;
    font-size: 16px;
  }
}
.speaker-popup .popup-body .details .bio {
  font-size: 20px;
  color: #000000;
  line-height: 27px;
  margin-top: 53px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .speaker-popup .popup-body .details .bio {
    margin-top: 24px;
    font-size: 15px;
    font-weight: 400;
  }
}
.speaker-popup .popup-body .details .bio p {
  margin-bottom: 10px;
}
.speaker-popup .popup-body .details .bio p:last-child {
  margin-bottom: 0;
}

.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;
}/*# sourceMappingURL=style.css.map */