* {
  font-family: "FiraSans", Arial, Helvetica, sans-serif;
}
@font-face {
  font-family: "FiraSans";
  src: url("/assets/FiraSans-Regular.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff0e6;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
header {
  padding: 0;
  margin: 0;
  position: sticky;
  top: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10;
}
main {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
.div-background {
  background-color: #faebd7;
}
.flex-column {
  -webkit-flex: 100%;
  flex: 100%;
  flex-direction: column;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--text-color);
  padding: 100px 5px 100px 5px;
  text-align: center;
  min-height: 80vh;
  justify-content: center;
}

.flex-row {
  -webkit-flex: 100%;
  flex: 100%;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: flex;
  color: var(--text-color);
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 10px;
  align-items: center;
}
.flex-row-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.min-flex {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-flex: 100%;
  flex: 100%;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #579c8b;
  z-index: 5;
}
.flex-row-items {
  -webkit-flex: content;
  flex: content;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: flex;
  color: var(--text-color);
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}
.flex-container {
  margin: 10px;
  padding: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  -webkit-flex: 1 1 0;
  flex: 1 1 0;
}
.flex-container-left {
  margin: 10px;
  padding: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  -webkit-flex: 1 1 0;
  flex: 1 1 0;
}
.flex-container-left img {
  margin: auto;
  display: block;
}
.bg-vid1 {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.bg-one {
  border-radius: 5px;
  background-color: #3b444b;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.bg-two {
  border-radius: 5px;
  background-color: #212b38;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.bg-alt {
  background: #43786b;
}
.bg-alt-fireworks {
  background: #de7986;
}
.bg-alt-sapphire {
  background: #6aa4e2;
}
.bg-alt-gold {
  background: #f9b745;
}
.bg-alt-silver {
  background: #909090;
}
.bg-alt-bronze {
  background: #a87544;
}
.bg-alt-light {
  background: #fff0e6;
}
.bg-alt-green {
  background: #579c8b;
}
.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tiny {
  font-size: small;
}

.float {
  animation: floatUpDown 1.2s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* progress bar */
.progress-bg {
  margin: 0 auto;
  width: 65%;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  -moz-box-shadow: inset 0 0 10px #ccc;
  -webkit-box-shadow: inset 0 0 10px #ccc;
  box-shadow: inset 0 0 10px #ccc;
}

.progress-bar {
  height: 50px;
  border-radius: 10px;
  float: left;
  width: 50%;
  /* fallback */
  background-color: #1c314a;

  /* Safari 4-5, Chrome 1-9 */
  background: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(#1c314a),
    to(#27425f)
  );

  /* Safari 5.1, Chrome 10+ */
  background: -webkit-linear-gradient(top, #1c314a, #27425f);

  /* Firefox 3.6+ */
  background: -moz-linear-gradient(top, #1c314a, #27425f);

  /* IE 10 */
  background: -ms-linear-gradient(top, #1c314a, #27425f);

  /* Opera 11.10+ */
  background: -o-linear-gradient(top, #1c314a, #27425f);
}

.progress-bg h3.goal,
.progress-bg h3.raised {
  font-family: Arial, sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: 50px;
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline;
}

.progress-bg h3.raised {
  color: #fff;
  margin: 14px 25px 0 50px;
  padding: 0 25px 0 0;
}

.progress-bg h3.goal {
  color: #b2b2b2;
  text-align: center;
}

body .progress-bg h3.raised {
  -webkit-animation: fadein 4s; /* Safari and Chrome */
  -moz-animation: fadein 4s; /* Firefox */
  -ms-animation: fadein 4s; /* Internet Explorer */
  -o-animation: fadein 4s; /* Opera */
  animation: fadein 4s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.progress-bg h3.goal {
  float: right;
  display: inline;
  padding: 0 25px 0 0;
  text-align: center;
}

body .progress-bg div {
  -webkit-animation: progress-bar 2s ease forwards;
  -moz-animation: progress-bar 2s ease forwards;
  -o-animation: progress-bar 2s ease forwards;
  animation: progress-bar 4s infinite ease forwards;
}

@keyframes progress-bar {
  0% {
    width: 2%;
  }
  20% {
    width: 5%;
  }
  40% {
    width: 8%;
  }
  60% {
    width: 3%;
  }
  80% {
    width: 6%;
  }
  100% {
    width: 2%;
  }
}

/*END progress bar */

.column1 {
  flex: 1;
  padding: 1rem;
}
footer {
  color: var(--text-color);
  background-color: #43786b;
  text-align: center;
  padding: 1rem;
  margin-bottom: 90px;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.white {
  color: white;
}
.nospace {
  padding: 1px;
  margin: 0px;
}
h1,
h2 {
  color: #6e564f;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 4vw;
  font-weight: 100;
}
h3,
h4 {
  color: #6e564f;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 2vw;
  font-weight: 100;
}
.header-large {
  font-size: 5vw;
}
p,
ul,
ol,
td,
li,
cite {
  word-break: normal;
  color: #6e564f;
  text-align: left;
  max-width: 1000px;
  margin: 15px;
  line-height: 35px;
}
p {
  font-size: 25px;
}

.break-all {
  word-break: break-all;
}
a {
  color: white;
  text-decoration: none;
  text-align: left;
  margin: 0 auto;
  padding: 5px;
  transition: color 0.5s ease;
}
.dark-link {
  color: skyblue;
}

.page-link {
  color: white;
  text-decoration: none;
  text-align: left;
  margin: 0 auto;
  padding: 0px;
  transition: color 0.5s ease;
}
.page-link:hover {
  color: #45e3ff;
}
.lighter {
  color: #90776f;
}

.header {
  font-size: larger;
}
.button-4 {
  align-items: center;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 1rem;
  outline: none;
  text-align: center;
  text-decoration: none;
  transition: font-size 0.3s, color 0.3s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  height: fit-content;
  position: relative;
  z-index: 1;
  background-color: #34a85a;
}
.button-4:hover {
  font-size: 30px;
}
.p-button {
  align-items: center;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 1rem;
  outline: none;
  text-align: center;
  text-decoration: none;
  transition: font-size 0.3s, color 0.3s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  height: fit-content;
  position: relative;
  z-index: 1;
  background-color: #34a85a;
}
.p-button:hover {
  font-size: 30px;
}
.sponsor-button {
  align-items: center;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 1rem;
  text-align: center;
  text-decoration: none;
  transition: font-size 0.3s, color 0.3s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  height: fit-content;
  position: relative;
  z-index: 1;
  border: 2px solid white;
}
.sponsor-button:hover {
  font-size: 30px;
}

.message-icon-container:hover {
  width: 55px;
  height: 55px;
}

.bg-img {
  background: url("https://lasthourcloud.b-cdn.net/assets/BACKGROUND.webp")
    center no-repeat;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 800px;
  align-items: center;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-vid {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-vid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: -1;
}

.bg-vid video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: blur(7px);
}

/* Styles for the navigation bar */
.nav-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0;
  position: relative;
  background: #43786b;
}

.logo {
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  font-size: 18px;
  position: relative;
  transition: all 0.2s;
  color: white;
  margin: 0 10px;
  cursor: pointer;
}

.menu-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: all 0.2s;
  z-index: 1;
}
.menu-item:hover::before {
  width: 100%;
}

.mobile-menu-icon {
  display: none;
}
#back-to-top {
  position: fixed;
  bottom: -40px;
  right: 20px;
  background-color: #43786b;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

#back-to-top.show {
  bottom: 100px;
  z-index: 5;
}
.hievents-widget {
  width: 100%;
}
.shadow {
  box-shadow: 6.4px 12.8px 12.8px hsl(0deg 0% 0% / 0.3);
}
.italic {
  font-style: italic;
}
.bold {
  font-weight: 900;
}
.thin {
  font-weight: 100;
}
.underline {
  text-decoration: underline;
}
.card {
  max-width: 300px;
  text-align: center;
  margin: 10px;
}

.title {
  color: grey;
  font-size: 18px;
}

div.card > a {
  text-decoration: none;
  font-size: 22px;
  color: black;
}
div.card > img {
  border-radius: 35px 5px 5px 5px;
}

.responsive-iframe {
  width: 640px;
  height: 360px;
}

.blink_me {
  animation: blinker 2s linear infinite;
  font-size: larger;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/*agenda*/
.schedule-container {
  display: flex;
  flex-direction: column;
  height: 85vh;
  width: 95vw;
  background-color: #579c8b;
}
.schedule-container:focus {
  position: relative;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

.tabs {
  flex: 0 0 auto;
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: sticky;
  top: 100px;
}

.tab-panel {
  flex: 1 1 auto;
  padding: 12px;
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
}
.tab-btn {
  transition: background-color 160ms ease, color 160ms ease,
    transform 120ms ease, box-shadow 120ms ease;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: whitesmoke;
  border: none;
  outline: none;
  font-size: large;
}
.tab-btn[aria-selected="true"] {
  background-color: var(--accent);
  color: whitesmoke;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 3px solid whitesmoke;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tab-btn[aria-selected="false"] {
  background-color: var(--accent);
  color: whitesmoke;
  opacity: 0.92;
  border: none;
  background-color: #4c8a7a;
}
.tab-btn:hover {
  color: whitesmoke;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 3px solid whitesmoke;
}
.tab-btn[aria-selected="true"]:hover {
  background-color: var(--accent);
  color: whitesmoke;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.schedule-table {
  width: 100%;
  box-sizing: border-box;
  font-size: 0.95rem;
  background-color: #fff;
  margin: 0;
  padding: 12px;
}

.schedule-table caption {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: whitesmoke;
}

.schedule-table thead th {
  padding: 10px;
  background: var(--accent);
  color: #808080;
  font-weight: 600;
  text-align: left;
}

.schedule-table tbody th {
  padding: 10px;
  font-weight: 700;
  text-align: right;
  width: 200px;
  color: #808080;
  vertical-align: middle;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  word-break: break-all;
  max-width: fit-content;
}

.schedule-table tbody td {
  border: 1px solid #dee2e6;
  padding: 10px;
  vertical-align: top;
}

.session {
  padding: 10px;
  border-radius: 6px;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.session:hover {
  transform: translateY(-4px) scale(1.02);
  animation: shimmer 1s infinite;
}
@keyframes shimmer {
  0% {
    box-shadow: 0 8px 24px #85c0ff, 0 16px 32px rgba(133, 192, 255, 0.5),
      0 24px 48px rgba(133, 192, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 24px #85c0ff, 0 16px 32px #fff,
      0 32px 64px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 8px 24px #85c0ff, 0 16px 32px rgba(133, 192, 255, 0.5),
      0 24px 48px rgba(133, 192, 255, 0.2);
  }
}
.session-title {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: #6e564f;
  font-weight: bold;
  font-size: larger;
}
.session-speaker {
  font-size: 0.9rem;
  color: #555;
  display: block;
}
.session-details {
  font-size: 0.87rem;
  margin-top: 8px;
  color: #808080;
}

.session-keynote {
  background: #fdf2f2;
  border-left: 4px solid #db6e7a;
}
.session-talk {
  background: #ebf5fb;
  border-left: 4px solid #69a3e1;
}
.session-break {
  background: #f2f3f4;
  border-left: 4px solid #95a5a6;
}
.session-workshop {
  background: #fef5e7;
  border-left: 4px solid #e9ad42;
}

.tab-panel {
  display: none;
  height: calc(100vh - 72px);
  box-sizing: border-box;
  flex: 1 1 auto;
  padding: 12px;
  width: 100%;
}
.tab-panel[aria-hidden="false"] {
  display: block;
}

.tabs {
  flex: 0 0 auto;
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #579c8b;
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media all and (max-width: 960px) {
  .nav-bar {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
  }

  .bg-img {
    height: 50%;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #43786b;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-item {
    margin-bottom: 5px;
  }

  .mobile-menu-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
  }

  .mobile-menu-icon:hover {
    width: 30px;
  }

  .show-menu {
    display: block;
  }

  .flex-column {
    padding: 0px;
    margin: 0px;
  }
  h1,
  h2 {
    color: #6e564f;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 400;
    word-break: break-word;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 18px;
    text-align: center;
  }
  .min-flex {
    -webkit-flex: 100%;
    flex: 100%;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    text-align: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #579c8b;
  }
  .button-4 {
    font-size: 1.5em;
  }
  .responsive-iframe {
    width: 100%;
    height: 100%;
  }
  .p-button {
    display: none;
  }
  .column1 {
    width: 100%;
    flex: none;
    padding: 0;
  }
  .progress-bg {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }

  .progress-bg h3.goal,
  .progress-bg h3.raised {
    font-size: 1.5em;
    line-height: 50px;
  }

  .progress-bg h3.raised {
    margin: 10px 15px 0 30px;
  }
  .tab-panel {
    padding: 12px 0;
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .tab-panel {
    padding: 12px 0;
    overflow-y: auto;
  }

  /* Schedule table */
  .schedule-table {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    background-color: #fff;
    margin: 0;
    padding: 12px;
  }

  .schedule-table {
    font-size: 0.8rem;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 8px;
  }
  .session {
    padding: 10px;
    border-radius: 6px;
    height: 100%;
    box-sizing: border-box;
  }

  .session {
    padding: 8px;
  }
  .session-title {
    font-size: 1rem;
  }
  .session-speaker {
    font-size: 0.8rem;
  }

  .tab-btn {
    transition: background-color 160ms ease, color 160ms ease,
      transform 120ms ease, box-shadow 120ms ease;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--accent);
    color: #fff;
    border: none;
    outline: none;
  }

  .tab-btn {
    padding: 8px;
  }
}
