/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.flickity-slider {
  width: 100%;
  height: 100%;
  position: absolute;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  color: #333;
  background: #ffffffbf;
  border: none;
  position: absolute;
}

.flickity-button:hover {
  cursor: pointer;
  background: #fff;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: .6;
}

.flickity-button:disabled {
  cursor: auto;
  opacity: .3;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  left: 10px;
  right: auto;
}

.flickity-prev-next-button .flickity-button-icon {
  width: 60%;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 20%;
}

.flickity-page-dots {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style: none;
  position: absolute;
  bottom: -25px;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  cursor: pointer;
  opacity: .25;
  background: #333;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  display: inline-block;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

:root {
  --sans-serif: "Roboto", system-ui, sans-serif;
  --yellow: #ffd800;
  --light-yellow: #fff7aa;
  --gray: #3d3936;
  --mid-gray: #888380;
  --light-gray: #ccc6c1;
  --blue: #33a3dc;
  --light-blue: #b1e3fa;
  --red: #ef4123;
  --black: #000;
  --white: #fff;
  --step--2: clamp(.7813rem, .7736rem + .0341vw, 1rem);
  --step--1: clamp(.9375rem, .9119rem + .1136vw, 1rem);
  --step-0: clamp(1.125rem, 1.0739rem + .2273vw, 1.25rem);
  --step-1: clamp(1.35rem, 1.2631rem + .3864vw, 1.5625rem);
  --step-2: clamp(1.62rem, 1.4837rem + .6057vw, 1.9531rem);
  --step-3: clamp(1.944rem, 1.7405rem + .9044vw, 2.4414rem);
  --step-4: clamp(2.3328rem, 2.0387rem + 1.3072vw, 3.0518rem);
  --step-5: clamp(2.7994rem, 2.384rem + 1.8461vw, 3.8147rem);
  --step-6: clamp(2.7994rem, 1.9158rem + 3.9268vw, 4.9591rem);
}

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

body {
  color: var(--gray);
  font-family: var(--sans-serif);
  margin: 0;
  font-size: 100%;
}

h1, h2 {
  margin-block: 0 1.5rem;
  line-height: 1.1;
}

h1 {
  font-size: var(--step-2);
  font-weight: 900;
}

h2 {
  font-size: var(--step-1);
}

p {
  font-size: var(--step-0);
  line-height: 1.5;
}

a {
  color: var(--gray);
  text-decoration-thickness: 2px;
  transition: all .2s;
}

a:hover {
  text-decoration-color: #0000;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.visually-hidden:not(:focus):not(:active) {
  clip-path: inset(100%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

header {
  background: var(--gray);
  z-index: 100;
  justify-content: start;
  align-items: center;
  width: 100%;
  min-height: 2.5rem;
  padding-inline: 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.hamburger {
  display: none;
}

.hamburger span {
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 3px;
  transition: transform .3s;
}

.hamburger:has( + nav[open]) {
  transition: transform .1s .1s;
  transform: rotate(45deg);
}

.hamburger:has( + nav[open]) span:first-of-type {
  transform: rotate(90deg)translateX(calc(25% + 1px));
}

.hamburger:has( + nav[open]) span:last-of-type {
  background: none;
}

@media (width < 500px) {
  .hamburger {
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: .3rem;
    width: 3rem;
    margin-left: auto;
    padding: .5rem;
    display: flex;
  }
}

nav {
  font-size: var(--step-0);
  font-weight: 500;
}

nav ul {
  gap: 1rem;
  display: flex;
}

nav ul li {
  text-transform: uppercase;
  list-style: none;
}

nav ul li a {
  color: var(--white);
  text-decoration-color: #0000;
  transition: all .2s ease-in-out;
}

nav ul li a:hover {
  text-decoration-color: currentColor;
}

@media (width < 500px) {
  nav {
    background: rgb(from var(--gray) r g b / 75%);
    font-size: var(--step-1);
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: transform .3s ease-out;
    position: fixed;
    inset: 2.5rem 0 0;
    transform: translateX(100%);
  }

  nav[open] {
    transform: translateX(0%);
  }

  nav ul {
    text-align: right;
    flex-direction: column;
    margin-right: 2rem;
  }
}

.player {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.player video, .player img {
  width: 100%;
  display: block;
}

@media (width < 620px) {
  .player {
    aspect-ratio: 8 / 9;
  }

  .player video {
    width: 200%;
  }
}

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

main > *, footer {
  --gutter: 1rem;
  --full: minmax(var(--gutter), 1fr);
  --breakout: minmax(1rem, 1fr);
  --content-width: min(calc(100vw - var(--gutter) * 4), 700px);
  background: var(--white);
  grid-template-columns: [fullwidth-start] var(--full) [breakout-start] var(--breakout) [content-start] var(--content-width) [content-end] var(--breakout) [breakout-end] var(--full) [fullwidth-end];
  display: grid;
}

:not(:where(.breakout, .fullwidth)) {
  grid-column: content;
}

.breakout > * {
  grid-column: breakout;
}

.fullwidth > * {
  grid-column: fullwidth;
}

main > section {
  scroll-margin-top: calc(var(--step-0)  + 1.1em);
  padding-block: 2rem;
}

@media (width < 500px) {
  main > section {
    scroll-margin-top: 1rem;
  }
}

section:not(#hero) {
  text-align: center;
}

section:not(#hero) p, section:not(#hero) iframe {
  text-wrap: balance;
  text-wrap: pretty;
  margin-block: 0 1.5rem;
}

#hero {
  contain: layout paint;
  padding-block: 0;
  position: relative;
}

.overlay {
  color: var(--gray);
  z-index: 1;
  background: #fff;
  height: fit-content;
  margin-block: auto;
  padding: 3.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4rem;
}

@media (width < 960px) {
  .overlay {
    font-size: var(--step-4);
    padding: 2.5rem;
  }
}

@media (width < 620px) {
  .overlay {
    font-size: var(--step-3);
    width: fit-content;
    margin-inline: auto;
    padding: 2rem;
    left: 0;
    right: 0;
  }
}

.overlay svg {
  fill: var(--gray);
  font-size: var(--step-5);
  --logo-width: 35vw;
  width: 20vw;
  width: var(--logo-width);
  height: calc(var(--logo-width) * .8);
  margin: auto;
}

@media (width < 620px) {
  .overlay svg {
    --logo-width: 50vw;
    width: var(--logo-width);
    height: calc(var(--logo-width) * .8);
  }
}

.overlay h1 {
  font-family: var(--sans-serif);
  font-size: var(--step-6);
  text-transform: uppercase;
  width: min-content;
  font-weight: 900;
  line-height: calc(100% - 10px);
}

.overlay p {
  color: var(--gray);
  font-size: var(--step-1);
  margin: .25rem 0 1rem;
  font-weight: 600;
}

#about {
  background: var(--gray);
  color: var(--white);
}

#about iframe {
  aspect-ratio: 16 / 9;
  border: none;
  width: 100%;
}

#tickets {
  text-align: center;
  background: var(--light-yellow);
}

card-grid {
  grid-column: breakout;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 20px;
  display: grid;
}

@media (width <= 700px) {
  card-grid {
    grid-template-columns: 1fr;
  }
}

card-grid .small {
  font-size: var(--step--2);
  grid-column: 1 / -1;
  margin-block: 0 .75rem !important;
}

ticket-card {
  --card-padding: 1rem;
  background: var(--white);
  border: 2px solid var(--light-gray);
  grid-column: unset;
  grid-row: span 5;
  grid-template-rows: subgrid;
  padding: var(--card-padding);
  text-align: left;
  text-align: center;
  border-radius: .5rem;
  gap: 10px;
  transition: all .1s cubic-bezier(.55, .06, .68, .19);
  display: grid;
}

ticket-card > * {
  grid-column: 1 / -1;
}

ticket-card:hover {
  border-color: var(--yellow);
}

ticket-card:first-of-type h2 {
  font-size: var(--step-3);
}

ticket-card h2 {
  font-size: calc(var(--step-3) * .85);
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
}

ticket-card h2 span {
  color: var(--yellow);
  text-shadow: 0px 0px 5px var(--yellow);
  margin-inline: .75rem;
  display: inline-block;
}

ticket-card h2:first-of-type:hover span:first-of-type {
  animation: 3s linear infinite reverse spin;
}

ticket-card h2:first-of-type:hover span {
  animation: 3s linear infinite spin;
}

ticket-card p, ticket-card > a {
  font-size: var(--step--1);
  margin: 0;
}

ticket-card p:has( + p) {
  margin-bottom: 1rem;
}

ticket-card .info {
  margin-inline: auto;
}

ticket-card ul {
  margin-left: var(--card-padding);
  text-align: left;
}

ticket-card ul li {
  margin-bottom: .5rem;
  padding-left: .5rem;
  list-style-type: "✓";
  list-style-position: outside;
}

ticket-card:first-of-type {
  grid-column: 1 / -1;
}

ticket-card .small {
  font-size: var(--step--2);
  color: var(--mid-gray);
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

button.buy {
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: var(--step-0);
  text-box-trim: trim-both;
  text-transform: uppercase;
  border: none;
  margin-inline: auto;
  padding: .5em 1.5em;
  font-weight: 700;
  line-height: 1;
  transition: all .15s ease-in;
}

button.buy:hover {
  background: var(--yellow);
  color: var(--gray);
}

button.buy:not(#ticket-overlay) {
  border-radius: .5rem;
}

button.buy#ticket-overlay {
  font-size: var(--step-1);
  width: 100%;
}

.price {
  font-size: var(--step-2);
  margin: auto;
  font-weight: 600;
}

.price span {
  color: var(--mid-gray);
  font-size: var(--step-1);
  vertical-align: middle;
  font-weight: 350;
  position: relative;
}

.price span:after {
  border-top: 2px solid var(--mid-gray);
  content: "";
  border-radius: 1rem 0;
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
}

#newsletter {
  background: var(--yellow);
  text-align: center;
}

#newsletter p {
  margin: 0 0 1.5rem;
  font-weight: 500;
}

#newsletter form {
  flex-direction: column;
  gap: .5rem;
  width: 75%;
  margin-inline: auto;
  display: flex;
}

#newsletter form div {
  background: var(--white);
  border: none;
  height: 3em;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}

#newsletter form input {
  font-size: var(--step-0);
  border: #0000;
  border-right: 0;
  outline: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: .5em .6em;
}

#newsletter form input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

#newsletter form button {
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: 0 solid #0000;
  width: 3rem;
  height: 100%;
  margin: 0;
  padding-inline: 0;
  transition: all .2s ease-out;
  position: absolute;
  right: 0;
}

#newsletter form button:hover {
  opacity: .5;
}

#newsletter form button svg {
  vertical-align: middle;
  width: fit-content;
  height: 50%;
}

#newsletter form .error-message {
  color: var(--red);
}

#newsletter form .error-message[aria-hidden="true"] {
  display: none;
}

@media (width <= 700px) {
  #newsletter form {
    width: 100%;
  }
}

#sponsors {
  background: var(--light-yellow);
  text-align: center;
}

#sponsors h1 {
  margin-bottom: 2rem;
}

#sponsors img {
  width: 100%;
}

#sponsors .level-1, #sponsors .level-2 {
  flex-flow: wrap;
  grid-column: breakout;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

:is(#sponsors .level-1, #sponsors .level-2) > * {
  background: #ffffff80;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.5rem;
  display: flex;
}

@media (width < 700px) {
  #sponsors .level-1, #sponsors .level-2 {
    grid-column: content;
  }
}

#sponsors .level-1 {
  flex-direction: column;
  margin-bottom: 2rem;
}

#sponsors .level-2 > * {
  max-width: 60%;
}

@media (width < 500px) {
  #sponsors .level-2 {
    flex-flow: column;
    gap: .5rem;
  }
}

#highlights {
  background: var(--gray);
  color: var(--white);
  text-align: center;
}

#highlights h1 {
  margin-bottom: .5rem;
}

#highlights h2 {
  font-size: var(--step--1);
}

#highlights p {
  font-size: var(--step--1);
  margin-top: .5rem;
}

.carousel {
  grid-column: breakout;
  height: min(50vw, 500px);
  margin-bottom: 2rem;
}

.carousel-cell {
  background: var(--white);
  contain: paint;
  border-radius: 1rem;
  height: 100%;
  margin-inline: .5rem;
}

.carousel-cell img {
  height: 100%;
}

.carousel-cell.is-selected {
  background: none;
}

.carousel-cell :not(.is-selected img) {
  opacity: .5;
}

.flickity-page-dots .dot {
  background: var(--white);
  border-radius: 0;
  width: 30px;
  height: 4px;
  margin: 0;
}

footer {
  background: var(--yellow);
  color: var(--gray);
  font-size: var(--step-0);
  padding-block: 2rem;
}

footer a:not(p > a) {
  color: var(--gray);
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  display: flex;
}

footer a:not(p > a):hover {
  color: var(--black);
}

footer a:not(p > a):hover svg {
  fill: var(--black);
}

footer a:not(p > a) svg {
  fill: var(--gray);
  height: var(--step-0);
  width: var(--step-0);
}

footer .wrapper {
  flex-flow: row;
  grid-column: breakout;
  justify-content: space-between;
  gap: 1.5rem;
  display: flex;
}

@media (width < 700px) {
  footer .wrapper {
    flex-direction: column;
  }
}

footer li {
  margin-bottom: .5rem;
  transition: all .2s ease-out;
}

footer li:hover {
  margin-left: .5rem;
}

footer footer-item {
  flex: 1;
}

footer footer-item button {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
}

footer footer-item button:hover {
  color: var(--black);
}

no-wrap {
  white-space: nowrap;
}

.grecaptcha-badge {
  visibility: hidden;
}

dialog {
  border: none;
  width: 85vw;
  max-width: 900px;
  padding: 1rem 2rem 2rem;
}

dialog::backdrop {
  pointer-events: none;
  background: #00000080;
}

dialog p {
  margin-top: 0;
}

dialog button {
  background: var(--white);
  cursor: pointer;
  vertical-align: middle;
  border: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  display: flex;
}

dialog button span {
  margin: 0;
  padding: 0;
}

dialog button:hover {
  transform: scale(1.1);
}

dialog button:focus-visible {
  aspect-ratio: 1;
  border-radius: 100%;
}

dialog .top {
  justify-content: space-between;
  margin-bottom: 1rem;
  display: flex;
}

dialog .content {
  gap: 1rem;
  display: flex;
}

dialog .content span {
  flex-basis: 65%;
}

dialog .content img {
  width: 40%;
  height: 100%;
}

@media (width < 700px) {
  dialog .content span {
    flex-basis: 100%;
  }

  dialog .content img {
    display: none;
  }
}

dialog .pill {
  background: var(--yellow);
  color: var(--gray);
  text-transform: uppercase;
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

dialog .pill:hover {
  background: var(--blue);
  color: var(--white);
}
