<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #5a9ac0;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 3px;
  background-color: #153a69;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Squeeze */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
* {
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  text-decoration: none;
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  max-width: 100%;
  max-height: 100%;
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 1.2rem;
  line-height: 2.2rem;
  background-color: #e3e6da;
  background-image: url(../images/bg_footer.jpg), url(../images/bg.jpg), url(../images/bg-2.jpg);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: 100% 100%, 0 0, 0 0;
  background-size: 100%, 100%, 100%;
}
@media screen and (max-width: 999px) {
  body {
    background-color: #e3e6da;
    background-image: url(../images/bg_footer.jpg), url(../images/bg-2.jpg);
    background-repeat: no-repeat, repeat-y;
    background-position: 100%, 0 0, 0 0;
    background-size: 100%, 100%;
  }
}

.hamburger {
  position: absolute;
  z-index: 99;
}

.header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 99;
}
.header-logo {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
}
@media screen and (max-width: 999px) {
  .header-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
}
.header-logo img {
  height: 40px;
}
.header-menu-btn {
  display: none;
}
@media screen and (max-width: 999px) {
  .header-menu-btn {
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    padding-top: 50px;
    background-image: url(../images/bg-2.jpg);
    background-repeat: repeat-y;
    background-position: 0 0;
    z-index: 5;
    overflow-x: hidden;
    opacity: 0;
    -webkit-transition: 10s;
    transition: 10s;
  }
}
.header-nav.is-active {
  display: block;
  width: 100%;
  opacity: 1;
}
.header-nav ul {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 999px) {
  .header-nav ul {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    background: none;
  }
}
.header-nav__item {
  width: 180px;
  height: 2rem;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .header-nav__item {
    width: auto;
    height: auto;
    margin-bottom: 18px;
  }
}
.header-nav__item a {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  line-height: 2rem;
  text-decoration: none;
}
@media screen and (max-width: 999px) {
  .header-nav__item a {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6rem;
  }
}
.header-nav__item span {
  position: relative;
  transition: all 0.3s;
}
.header-nav__item span:first-child {
  top: 0;
}
@media screen and (max-width: 999px) {
  .header-nav__item span:first-child {
    top: auto;
  }
}
.header-nav__item span:last-child {
  top: 0;
  color: #ffff66;
}
@media screen and (max-width: 999px) {
  .header-nav__item span:last-child {
    top: auto;
    font-size: 1rem;
  }
}
.header-nav__item:hover span:first-child {
  top: -2rem;
}
@media screen and (max-width: 999px) {
  .header-nav__item:hover span:first-child {
    top: auto;
  }
}
.header-nav__item:hover span:last-child {
  top: -2rem;
}
@media screen and (max-width: 999px) {
  .header-nav__item:hover span:last-child {
    top: auto;
  }
}
.header-socialMedia {
  position: fixed;
  top: 0;
  left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 100vh;
  z-index: 99;
}
@media screen and (max-width: 999px) {
  .header-socialMedia {
    position: relative;
    left: auto;
    flex-direction: row;
    width: 100%;
    height: 100px;
  }
}
.header-socialMedia__facebook {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .header-socialMedia__facebook {
    flex-direction: row;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.header-socialMedia__facebook::before {
  content: "";
  display: block;
  background: #0C2816;
  width: 1px;
  height: 12.5vh;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .header-socialMedia__facebook::before {
    width: calc((100vw - 105px - 4rem) / 2);
    height: 1px;
    margin-right: 10px;
    margin-bottom: 0;
    background: #fff;
  }
}
.header-socialMedia__line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .header-socialMedia__line {
    flex-direction: row;
  }
}
.header-socialMedia__line::after {
  content: "";
  display: block;
  background: #0C2816;
  width: 1px;
  height: 12.5vh;
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  .header-socialMedia__line::after {
    width: calc((100vw - 80px - 2rem) / 2);
    height: 1px;
    margin-top: 0;
    margin-left: 15px;
    background: #fff;
  }
}
.header-socialMedia a {
  display: flex;
}
.header-socialMedia a svg {
  fill: #0C2816;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
@media screen and (max-width: 999px) {
  .header-socialMedia a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
  }
}

.kv {
  position: relative;
  margin: 0 auto;
}
.kv__image picture {
  display: flex;
}
.kv__link {
  position: absolute;
  top: 80%;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 0 10%;
}
@media screen and (max-width: 800px) {
  .kv__link {
    top: 78%;
    padding: 0 0 0 25%;
  }
}
@media screen and (max-width: 480px) {
  .kv__link {
    padding: 0 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .kv__item {
    margin-bottom: 10px;
  }
}
.kv__button {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 0 5px;
  padding: 15px 40px;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background-color: #153a69;
  box-shadow: 0 4px 8px 0 rgba(10, 0, 110, 0.2), 0 6px 15px 0 rgba(60, 110, 0, 0.19);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .kv__button {
    padding: 10px 30px;
  }
}
.kv__button:hover {
  top: 1px;
  left: 1px;
  color: #e5dcd0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px 0 rgba(10, 0, 110, 0.3), 0 3px 8px 0 rgba(60, 110, 0, 0.39);
}

.sponsor {
  position: relative;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-top: 12rem;
}
@media screen and (max-width: 999px) {
  .sponsor {
    padding-top: 5rem;
  }
}
.sponsor__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .sponsor__title {
    margin: 0 0 1rem 0;
  }
}
.sponsor__title span {
  font-size: 1rem;
  color: #fff;
}
.sponsor__organizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 999px) {
  .sponsor__organizer {
    align-items: center;
    margin: 0 1rem 30px 1rem;
  }
}
.sponsor__organizer:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .sponsor__organizer:last-child {
    margin: 0 1rem;
  }
}
.sponsor__unit {
  display: flex;
  align-items: center;
  height: 48px;
  font-weight: bold;
  color: #ffffcc;
}
.sponsor__logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .sponsor__logo {
    align-items: flex-start;
    width: 100%;
  }
}
.sponsor__logo-item {
  height: 60px;
  margin-right: 30px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.6);
}
.sponsor__logo-item:last-child {
  margin-right: 0;
}
.sponsor__logo-item--big {
  height: 56px;
}

.about {
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 900px;
  margin: 5rem auto 5rem auto;
  padding: 3rem 50px;
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: #2e2e2e;
  border-radius: 40px;
  background-color: #fff;
}
@media screen and (max-width: 999px) {
  .about {
    margin: 0 1rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 999px) {
  .about + .about {
    margin-top: 2rem;
  }
}
.about__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
  color: #153a69;
}
@media screen and (max-width: 999px) {
  .about__title {
    margin: 0 0 1rem 0;
  }
}
.about__title span {
  font-size: 1rem;
  color: #fff;
}
.about__title span {
  color: #000;
}
.about__img {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 20px;
  overflow: hidden;
}
.about__txt {
  margin: 0 0 2rem;
  padding: 0;
}
.about__txt:last-child {
  margin-bottom: 0;
}

.host {
  position: relative;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.host__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .host__title {
    margin: 0 0 1rem 0;
  }
}
.host__title span {
  font-size: 1rem;
  color: #fff;
}
.host__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, auto);
  grid-template-rows: repeat(1, auto);
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 999px) {
  .host__list {
    grid-template-columns: repeat(1, calc((100% - 12px) / 2));
    grid-template-rows: repeat(1, 100%);
    gap: 12px;
    margin: 0 1rem;
  }
}
.host__card {
  height: 320px;
}
@media screen and (max-width: 999px) {
  .host__card {
    height: auto;
  }
}
.host__card:hover .host__imgbox {
  transform: scale(1.1, 1.1);
}
.host__card:hover .host__name {
  margin-top: 22px;
}
.host__card a {
  cursor: pointer;
}
.host__imgbox {
  position: relative;
  height: 270px;
  border-radius: 50px;
  overflow: hidden;
  transform: scale(1, 1);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .host__imgbox {
    height: 100%;
  }
}
.host__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host__imgbox--2 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  overflow: hidden;
  transform: scale(1, 1);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .host__imgbox--2 {
    width: 80px;
    height: 80px;
    top: 50px;
  }
}
.host__imgbox--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host__name {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.2rem;
  text-align: center;
  transition: all 0.3s;
}
.host__name span {
  display: inline-block;
  color: #ffffcc;
}
.host__name strong {
  font-size: 2rem;
  color: #fff;
  line-height: 3rem;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.host__name--2 {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 1.6rem;
  color: #ffffcc;
  line-height: 1.2rem;
  transition: all 0.3s;
}
.host__name--2 strong {
  margin-right: 10px;
  font-size: 3rem;
  color: #ffff00;
  line-height: 4rem;
}
.host__resume span {
  font-size: 1rem;
  color: #fff;
}
.host__info {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.host__intro {
  position: relative;
  top: 50%;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 600px;
  margin: auto;
  padding: 50px;
  font-weight: normal;
  color: #fff;
  border-radius: 50px;
  background-color: #e26e2d;
  transform: translate(0, -50%);
}
@media screen and (max-width: 999px) {
  .host__intro {
    padding: 40px;
    font-size: 1rem;
    line-height: 1.8rem;
  }
}
.host__close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.host__close-btn:before, .host__close-btn:after {
  position: absolute;
  left: 24px;
  content: " ";
  height: 50px;
  width: 2px;
  background-color: #999;
}
.host__close-btn:before {
  transform: rotate(45deg);
}
.host__close-btn:after {
  transform: rotate(-45deg);
}
.host__arrow {
  position: absolute;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.host__arrow:hover {
  transform: scale(2, 2);
}
.host__arrow svg {
  width: 20px;
  height: 20px;
}
.host__prev {
  left: -50px;
}
@media screen and (max-width: 999px) {
  .host__prev {
    left: 5px;
  }
}
.host__next {
  right: -50px;
}
@media screen and (max-width: 999px) {
  .host__next {
    right: 5px;
  }
}

.speakers {
  position: relative;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.speakers__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .speakers__title {
    margin: 0 0 1rem 0;
  }
}
.speakers__title span {
  font-size: 1rem;
  color: #fff;
}
.speakers__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 220px);
  grid-template-rows: repeat(1, auto);
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 999px) {
  .speakers__list {
    grid-template-columns: repeat(2, calc((100% - 12px) / 2));
    grid-template-rows: repeat(3, auto);
    gap: 12px;
    margin: 0 1rem;
  }
}
.speakers__card {
  height: 400px;
}
@media screen and (max-width: 999px) {
  .speakers__card {
    height: auto;
  }
}
.speakers__card:hover .speakers__imgbox {
  transform: scale(1.1, 1.1);
}
.speakers__card:hover .speakers__name {
  margin-top: 22px;
}
.speakers__card a {
  cursor: pointer;
}
.speakers__imgbox {
  position: relative;
  height: 300px;
  border-radius: 50px;
  overflow: hidden;
  transform: scale(1, 1);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .speakers__imgbox {
    height: 240px;
  }
}
.speakers__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speakers__imgbox--2 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 160px;
  height: 160px;
  border-radius: 100px;
  overflow: hidden;
  transform: scale(1, 1);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .speakers__imgbox--2 {
    width: 80px;
    height: 80px;
    top: 50px;
  }
}
.speakers__imgbox--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speakers__name {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #ffffcc;
  line-height: 1.2rem;
  text-align: center;
  transition: all 0.3s;
}
.speakers__name span {
  display: inline-block;
}
.speakers__name strong {
  font-size: 2rem;
  color: #fff;
  line-height: 3rem;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.speakers__name--2 {
  margin-top: 10px;
  margin-bottom: 35px;
  font-size: 0.9rem;
  color: #ffffcc;
  line-height: 1.2rem;
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .speakers__name--2 {
    width: calc(100% - 80px);
    margin-bottom: 0;
  }
}
.speakers__name--2 strong {
  font-size: 3rem;
  color: #ffff00;
  line-height: 4rem;
}
.speakers__resume {
  overflow-y: auto;
}
.speakers__resume span {
  font-size: 1rem;
  color: #fff;
}
.speakers__info {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.speakers__intro {
  position: relative;
  top: 50%;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 600px;
  margin: auto;
  padding: 50px;
  font-weight: normal;
  color: #fff;
  border-radius: 50px;
  background-color: #e26e2d;
  transform: translate(0, -50%);
}
@media screen and (max-width: 999px) {
  .speakers__intro {
    padding: 40px;
    font-size: 1rem;
    line-height: 1.8rem;
  }
}
.speakers__close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.speakers__close-btn:before, .speakers__close-btn:after {
  position: absolute;
  left: 24px;
  content: " ";
  height: 50px;
  width: 2px;
  background-color: #999;
}
.speakers__close-btn:before {
  transform: rotate(45deg);
}
.speakers__close-btn:after {
  transform: rotate(-45deg);
}
.speakers__arrow {
  position: absolute;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.speakers__arrow:hover {
  transform: scale(2, 2);
}
.speakers__arrow svg {
  width: 20px;
  height: 20px;
}
.speakers__prev {
  left: -50px;
}
@media screen and (max-width: 999px) {
  .speakers__prev {
    left: 5px;
  }
}
.speakers__next {
  right: -50px;
}
@media screen and (max-width: 999px) {
  .speakers__next {
    right: 5px;
  }
}

.wrapper {
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.agenda {
  position: relative;
}
.agenda__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .agenda__title {
    margin: 0 0 1rem 0;
  }
}
.agenda__title span {
  font-size: 1rem;
  color: #fff;
}
.agenda__table {
  width: 880px;
  margin: 0 auto;
  border-radius: 20px;
  border: solid 0.3em #153a69;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .agenda__table {
    width: calc(100% - 2rem);
    margin: 1rem;
  }
}
.agenda__table th, .agenda__table td {
  padding: 10px;
  border-right: 1px solid #153a69;
  border-bottom: 1px solid #153a69;
}
.agenda__table th {
  color: #fff;
  background-color: #153a69;
}
.agenda__table td:first-child {
  text-align: center;
}
@media screen and (max-width: 999px) {
  .agenda__table td:first-child {
    width: 120px;
  }
}
.agenda__table td strong {
  color: #153a69;
}
.agenda__table td strong i {
  margin-left: 5px;
  font-size: 0.8rem;
  font-style: normal;
  color: #ea5858;
}
.agenda__table td span {
  margin-right: 5px;
  padding: 1px 5px;
  font-size: 1rem;
  color: #fff;
  border-radius: 3px;
  background-color: #e26e2d;
}
.agenda__table td b {
  font-weight: normal;
  font-size: 0.9rem;
  color: #666;
}
.agenda__table tr:nth-child(even) td {
  background-color: #ffffdd;
}
.agenda__table tr:nth-child(odd) td {
  background-color: #fff;
}

.information {
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.information__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .information__title {
    margin: 0 0 1rem 0;
  }
}
.information__title span {
  font-size: 1rem;
  color: #fff;
}
.information__youtube {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  border-radius: 50px;
  border: 5px solid #fff;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .information__youtube {
    width: 100%;
  }
}
.information__video-container {
  position: relative;
  display: flex;
  justify-content: center;
  height: 0;
  padding-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
@media (max-width: 559px) {
  .information__video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
}
.information__video-container iframe, .information__video-container object, .information__video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 559px) {
  .information__video-container iframe, .information__video-container object, .information__video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.information__link {
  text-align: center;
}
.information__button {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 0 5px;
  padding: 15px 40px;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background-color: #153a69;
  box-shadow: 0 4px 8px 0 rgba(10, 0, 110, 0.2), 0 6px 15px 0 rgba(60, 110, 0, 0.19);
  transition: all 0.3s;
}
@media screen and (max-width: 999px) {
  .information__button {
    padding: 10px 30px;
  }
}
.information__button:hover {
  top: 1px;
  left: 1px;
  color: #e5dcd0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px 0 rgba(10, 0, 110, 0.3), 0 3px 8px 0 rgba(60, 110, 0, 0.39);
}

.news {
  position: relative;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.news__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #ffff00;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .news__title {
    margin: 0 0 1rem 0;
  }
}
.news__title span {
  font-size: 1rem;
  color: #fff;
}
.news .swiper {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 999px) {
  .news .swiper {
    width: auto;
    margin: 0 1rem;
  }
}
.news__item {
  overflow: hidden;
}
.news__item &gt; a {
  display: block;
  margin: 10px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.news__img {
  display: flex;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.news__headline {
  height: calc(8rem + 10px);
  padding: 5px 20px;
  line-height: 2rem;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news a {
  color: #000;
}

.footer {
  padding: 20px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .footer {
    background-image: none;
  }
}
.footer strong {
  display: inline-block;
  margin-bottom: 10px;
}
.footer a {
  color: #fff;
}/*# sourceMappingURL=style.css.map */</pre></body></html>