/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

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

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1470px;
  }
}

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

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  background-color: #0D65E1;
  color: #000000;
  font-family: "dm-sans", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
body.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.header {
  position: fixed;
  z-index: 99;
  top: 15px;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .header {
    top: 30px;
  }
}

.header-content {
  position: relative;
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .header-content {
    padding: 0 30px;
  }
}

.header-inner {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border: 1px solid #D9D9D9;
  background-color: #FFFFFF;
  box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header-inner {
    padding: 15px 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .header-inner {
    justify-content: space-between;
  }
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-logo span {
  display: block;
  color: #000000;
  font-size: 10px;
}
.header-logo svg {
  display: block;
  width: auto;
  height: 40px;
}
@media (min-width: 768px) {
  .header-logo svg {
    height: 50px;
  }
}

.header-nav {
  display: none;
}
@media (min-width: 992px) {
  .header-nav {
    display: block;
  }
}
.header-nav ul {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.header-nav li {
  display: block;
}
.header-nav a {
  display: block;
  position: relative;
  color: #000000;
  font-size: 16px;
}
.header-nav a:hover::after {
  width: 100%;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
  background-color: #0D65E1;
}

.header-landaid {
  display: block;
}
.header-landaid svg {
  display: block;
  width: auto;
  height: 25px;
}
@media (min-width: 768px) {
  .header-landaid svg {
    height: 35px;
  }
}

.button--header {
  margin-left: auto;
}
@media (min-width: 992px) {
  .button--header {
    position: absolute !important;
    top: 50%;
    right: 170px;
    margin: 0;
    transform: translateY(-50%);
  }
}

.footer {
  display: block;
  width: 100%;
  padding: 30px 0;
  background-color: #000000;
}
@media (min-width: 768px) {
  .footer {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .footer {
    padding: 80px 0;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 15px;
  row-gap: 30px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 30px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer-top {
    align-items: flex-end;
    justify-content: flex-start;
  }
}

.footer-top-item {
  display: block;
  width: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-top-item {
    text-align: left;
  }
}
.footer-top-item address,
.footer-top-item p {
  color: #FFFFFF;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-bottom-item {
  display: block;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-item {
    width: auto;
    text-align: left;
  }
}
.footer-bottom-item > a {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-start;
  }
}
.footer-nav li {
  display: block;
}
.footer-nav li a {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
}

.button, .consent-button {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  position: relative;
  align-items: center;
  padding: 10px 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: background-color 0.2s;
  background-color: #9EBDFA;
}
.button--white {
  background-color: #FFFFFF;
}
.button--white:hover {
  background-color: #000000;
}
.button--white:hover .button-label {
  color: #FFFFFF;
}
.button--white .button-label {
  color: #000000;
}
.button--blue {
  background-color: #0D65E1;
}
.button--blue:hover {
  background-color: rgb(10.2142857143, 79.3571428571, 176.7857142857);
}
.button--blue:hover .button-label {
  color: #FFFFFF;
}
.button--blue:hover svg path {
  fill: #FFFFFF;
}
.button--blue .button-label {
  color: #FFFFFF;
}
.button--transparent {
  border: 1px solid #000000;
  background-color: transparent;
}
.button--transparent:hover {
  background-color: #000000;
}
.button--transparent:hover .button-label {
  color: #FFFFFF;
}
.button--transparent:hover svg path {
  fill: #FFFFFF;
}
.button > svg, .consent-button > svg {
  display: block;
  width: 20px;
  height: auto;
}
.button > svg path, .consent-button > svg path {
  transition: fill 0.2s;
}

.button-label {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
  color: #000000;
  font-size: 16px;
}
@media (min-width: 992px) {
  .button-label {
    font-size: 18px;
  }
}

.intro {
  display: block;
  width: 100%;
  padding-top: 145px;
  background-color: #0D65E1;
}
@media (min-width: 768px) {
  .intro {
    padding-top: 160px;
  }
}

.intro-graphic {
  display: block;
  width: 83.3334%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .intro-graphic {
    width: 75%;
  }
}
@media (min-width: 1300px) {
  .intro-graphic {
    width: 70%;
  }
}
@media (min-width: 1600px) {
  .intro-graphic {
    width: 60%;
  }
}
.intro-graphic > svg {
  display: block;
  width: 100%;
  height: auto;
}

.intro-content {
  display: block;
  width: 83.3334%;
  margin: 30px auto 0;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .intro-content {
    width: 70%;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .intro-content {
    width: 60%;
    margin-top: 50px;
  }
}

.intro-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #FFFFFF;
  font-size: 24px;
}
@media (min-width: 768px) {
  .intro-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .intro-title {
    font-size: 34px;
  }
}
@media (min-width: 1300px) {
  .intro-title {
    font-size: 40px;
  }
}
@media (min-width: 1600px) {
  .intro-title {
    font-size: 49px;
  }
}

.intro-sub-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-top: 30px;
  color: #FFFFFF;
  font-size: 18px;
}
@media (min-width: 768px) {
  .intro-sub-title {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  .intro-sub-title {
    font-size: 21px;
  }
}
@media (min-width: 1300px) {
  .intro-sub-title {
    font-size: 23px;
  }
}
@media (min-width: 1600px) {
  .intro-sub-title {
    font-size: 25px;
  }
}

.intro-text {
  margin-top: 15px;
  color: #FFFFFF;
  font-size: 16px;
}
@media (min-width: 768px) {
  .intro-text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .intro-text {
    font-size: 20px;
  }
}

.intro-video {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .intro-video {
    margin-top: 80px;
  }
}
@media (min-width: 1300px) {
  .intro-video {
    margin-top: 120px;
  }
}
.intro-video::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 25%;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.intro-video .container {
  position: relative;
  z-index: 2;
}

.intro-video-content {
  display: block;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .intro-video-content {
    padding: 0 15px;
  }
}

.intro-video-item {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
}
@media only screen and (height >= 1000px) {
  .intro-video-item {
    aspect-ratio: 16/9;
  }
}
.intro-video-item video {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro-video-toggle {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translate(-50%, -50%);
  row-gap: 10px;
}

.intro-video-icon {
  display: block;
  width: 60px;
}
.intro-video-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.intro-video-label {
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}

.text {
  padding-top: 50px;
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .text {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .text {
    padding-top: 120px;
  }
}

.text-content {
  display: block;
  width: 100%;
  padding: 0 30px;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .text-content {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .text-content {
    width: 83.3334%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1600px) {
  .text-content {
    width: 60%;
  }
}
.text-content > :first-child {
  margin-top: 0;
}
.text-content > :last-child {
  margin-bottom: 0;
}
.text-content p {
  margin: 15px 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .text-content p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .text-content p {
    font-size: 20px;
  }
}

.text-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 5.5vw;
}
@media (min-width: 768px) {
  .text-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .text-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .text-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .text-title {
    font-size: 49px;
  }
}

.text-sub-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 25px 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .text-sub-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .text-sub-title {
    font-size: 23px;
  }
}
@media (min-width: 1300px) {
  .text-sub-title {
    font-size: 25px;
  }
}

.featured {
  padding-top: 50px;
  display: block;
  width: 100%;
  overflow: hidden visible;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .featured {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .featured {
    padding-top: 120px;
  }
}

.featured-content {
  display: block;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .featured-content {
    padding: 0 15px;
  }
}

.featured-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
.featured-inner .swiper {
  width: 100%;
}
.featured-inner .swiper-slide {
  height: auto;
  opacity: 0;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .featured-inner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.featured-inner .swiper-slide-prev, .featured-inner .swiper-slide-visible, .featured-inner .swiper-slide-next {
  opacity: 1;
}
.featured-inner .swiper-slide-prev {
  justify-content: flex-start;
}
.featured-inner .swiper-slide-visible {
  justify-content: center;
}
.featured-inner .swiper-slide-next {
  justify-content: flex-end;
}

.featured-card {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 30px;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .featured-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 60px;
         column-gap: 60px;
    width: 90%;
  }
}
@media (min-width: 1300px) {
  .featured-card {
    padding: 50px;
  }
}
.featured-card[data-colour=red] {
  background-color: #F1311C;
}
.featured-card[data-colour=blue] {
  background-color: #0D65E1;
}
.featured-card[data-colour=pink] {
  background-color: #F2A2FF;
}
.featured-card[data-colour=pink] .featured-title,
.featured-card[data-colour=pink] .featured-text p {
  color: #000000;
}
.featured-card[data-colour=pink] .button {
  border-color: #000000;
}
.featured-card[data-colour=pink] .button-label {
  color: #000000;
}

.featured-media {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .featured-media {
    flex: 1.3;
    width: auto;
  }
}

.featured-image {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  text-wrap: balance;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .featured-text {
    flex: 1;
    width: auto;
  }
}
.featured-text p {
  color: #FFFFFF;
  font-size: 16px;
}
@media (min-width: 768px) {
  .featured-text p {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .featured-text p {
    font-size: 20px;
  }
}
.featured-text .button {
  display: inline-flex;
  border: 1px solid #FFFFFF;
  background-color: transparent;
}
.featured-text .button:hover {
  background-color: #FFFFFF;
}
.featured-text .button:hover .button-label {
  color: #000000;
}
.featured-text .button-label {
  color: #FFFFFF;
}

.featured-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #FFFFFF;
  font-size: 28px;
}
@media (min-width: 768px) {
  .featured-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .featured-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .featured-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .featured-title {
    font-size: 49px;
  }
}

.featured-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.featured-arrow {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  transition: background-color 0.2s;
  border: 1px solid #000000;
}
.featured-arrow--prev svg {
  transform: rotate(180deg);
}
.featured-arrow:hover {
  background-color: #000000;
}
.featured-arrow:hover svg path {
  fill: #FFFFFF;
}
.featured-arrow svg {
  display: block;
  width: 60%;
  height: auto;
}
.featured-arrow svg path {
  transition: fill 0.2s;
}

.sponsors {
  padding-top: 50px;
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .sponsors {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .sponsors {
    padding-top: 120px;
  }
}
.sponsors--other .sponsors-logo {
  width: 50%;
}
@media (min-width: 992px) {
  .sponsors--other .sponsors-logo {
    width: 33.3334%;
  }
}
@media (min-width: 1600px) {
  .sponsors--other .sponsors-logo {
    width: 25%;
  }
}

.sponsors-heading {
  display: block;
  width: 100%;
  padding: 0 15px;
  text-align: center;
}

.sponsors-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 28px;
}
@media (min-width: 768px) {
  .sponsors-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .sponsors-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .sponsors-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .sponsors-title {
    font-size: 49px;
  }
}

.sponsors-sub-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 18px;
}
@media (min-width: 768px) {
  .sponsors-sub-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .sponsors-sub-title {
    font-size: 23px;
  }
}
@media (min-width: 1300px) {
  .sponsors-sub-title {
    font-size: 25px;
  }
}

.sponsors-content {
  display: block;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sponsors-content {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .sponsors-content {
    margin-top: 50px;
  }
}
.sponsors-content .swiper-wrapper {
  transition-timing-function: linear;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .sponsors-logos {
    padding: 0 15px;
  }
}

.sponsors-logo {
  display: block;
  width: 65%;
}
@media (min-width: 992px) {
  .sponsors-logo {
    width: 50%;
  }
}
@media (min-width: 1600px) {
  .sponsors-logo {
    width: 45%;
  }
}

.sponsor-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.sponsor {
  display: flex;
  align-items: center;
  width: 100%;
}

.sponsor-image {
  display: block;
  width: 100%;
  height: auto;
}

.timetable {
  padding-top: 50px;
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .timetable {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .timetable {
    padding-top: 120px;
  }
}

.timetable-heading {
  display: block;
  width: 100%;
  padding: 0 30px;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .timetable-heading {
    padding: 0 15px;
  }
}
.timetable-heading > :first-child {
  margin-top: 0;
}
.timetable-heading > :last-child {
  margin-bottom: 0;
}
.timetable-heading p {
  margin: 15px 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .timetable-heading p {
    font-size: 18px;
  }
}

.timetable-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 28px;
}
@media (min-width: 768px) {
  .timetable-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .timetable-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .timetable-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .timetable-title {
    font-size: 49px;
  }
}

.timetable-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 20px;
  padding: 0 30px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .timetable-content {
    padding: 0 15px;
  }
}

.timetable-nav {
  display: block;
  width: 100%;
}
.timetable-nav ul {
  display: flex;
  justify-content: center;
  width: 100%;
}
.timetable-nav li {
  display: block;
}

.timetable-nav-item {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  display: block;
  padding: 10px 15px;
  transition: color 0.2s;
  border-bottom: 2px solid #E6E6E6;
  color: #666666;
  font-size: 16px;
}
@media (min-width: 768px) {
  .timetable-nav-item {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .timetable-nav-item {
    font-size: 20px;
  }
}
.timetable-nav-item:hover {
  color: #000000;
}
.timetable-nav-item--active {
  border-color: #0D65E1;
  color: #000000;
}

.timetable-items {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .timetable-items {
    width: 83.3334%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .timetable-items {
    with: 75%;
  }
}
@media (min-width: 1300px) {
  .timetable-items {
    width: 60%;
  }
}
@media (min-width: 1600px) {
  .timetable-items {
    width: 50%;
  }
}

.timetable-group {
  display: none;
}
.timetable-group--turquoise .timetable-item {
  background-color: #6CE6E9;
}
.timetable-group--turquoise .timetable-item-title,
.timetable-group--turquoise .timetable-item-text,
.timetable-group--turquoise .timetable-item-time {
  color: #000000;
}
.timetable-group--active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 15px;
}

.timetable-item {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px;
  background-color: #0D65E1;
}

.timetable-item-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #FFFFFF;
  font-size: 24px;
}
@media (min-width: 768px) {
  .timetable-item-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .timetable-item-title {
    font-size: 32px;
  }
}
@media (min-width: 1300px) {
  .timetable-item-title {
    font-size: 36px;
  }
}
@media (min-width: 1600px) {
  .timetable-item-title {
    font-size: 40px;
  }
}

.timetable-item-text {
  margin-top: 10px;
  color: #FFFFFF;
  font-size: 16px;
}

.timetable-item-details {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 15px;
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.25);
}
@media (min-width: 768px) {
  .timetable-item-details {
    row-gap: 20px;
    margin-top: 20px;
    padding: 20px;
  }
}

.timetable-item-media {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.timetable-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.timetable-item-content {
  display: block;
  width: 100%;
}

.timetable-item-content-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 18px;
}
@media (min-width: 768px) {
  .timetable-item-content-title {
    font-size: 21px;
  }
}
@media (min-width: 992px) {
  .timetable-item-content-title {
    font-size: 24px;
  }
}

.timetable-item-content-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .timetable-item-content-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.timetable-item-content-list li {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .timetable-item-content-list li {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .timetable-item-content-list li {
    font-size: 14px;
  }
}
.timetable-item-content-list li strong {
  display: block;
  font-size: 16px;
}
@media (min-width: 768px) {
  .timetable-item-content-list li strong {
    font-size: 18px;
  }
}

.timetable-item-time {
  display: block;
  margin-top: 15px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
}
@media (min-width: 992px) {
  .timetable-item-time {
    font-size: 18px;
  }
}

.tickets {
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .tickets {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .tickets {
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .tickets {
    padding-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .tickets {
    padding-bottom: 120px;
  }
}

.tickets-content {
  display: block;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .tickets-content {
    padding: 0 15px;
  }
}

.tickets-inner {
  display: block;
  width: 100%;
}
.tickets-inner > :first-child {
  transform: translateY(2px);
}
.tickets-inner > :last-child {
  transform: translateY(-2px);
}
.tickets-inner > svg {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.tickets-text {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  background-color: #F2A2FF;
  text-align: center;
  text-wrap: balance;
  row-gap: 25px;
}
@media (min-width: 768px) {
  .tickets-text {
    padding: 0 50px;
  }
}
@media (min-width: 1300px) {
  .tickets-text {
    padding: 0 80px;
  }
}
.tickets-text .button {
  display: inline-flex;
}

.tickets-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 24px;
}
@media (min-width: 768px) {
  .tickets-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .tickets-title {
    font-size: 32px;
  }
}
@media (min-width: 1300px) {
  .tickets-title {
    font-size: 35px;
  }
}
@media (min-width: 1600px) {
  .tickets-title {
    font-size: 39px;
  }
}

.sponsorship {
  display: block;
  width: 100%;
  padding: 30px 0;
  background-color: #0D65E1;
}
@media (min-width: 768px) {
  .sponsorship {
    padding: 80px 0;
  }
}
@media (min-width: 1300px) {
  .sponsorship {
    padding: 120px 0;
  }
}

.sponsorship-content {
  display: block;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .sponsorship-content {
    padding: 0 15px;
  }
}

.sponsorship-inner {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px;
  background-color: #FFFFFF;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .sponsorship-inner {
    padding: 50px;
  }
}
@media (min-width: 1300px) {
  .sponsorship-inner {
    flex-direction: row;
    align-items: stretch;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.sponsorship-aside,
.sponsorship-tiers {
  display: block;
  width: 100%;
}
@media (min-width: 1300px) {
  .sponsorship-aside,
  .sponsorship-tiers {
    flex: 1;
    width: auto;
  }
}

@media (min-width: 1300px) {
  .sponsorship-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 50px;
  }
}

.sponsorship-aside-top {
  display: block;
  width: 100%;
  text-wrap: balance;
}
.sponsorship-aside-top p {
  margin-top: 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .sponsorship-aside-top p {
    margin-top: 25px;
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .sponsorship-aside-top p {
    font-size: 20px;
  }
}
.sponsorship-aside-top strong {
  font-weight: 600;
}

.sponsorship-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 28px;
}
@media (min-width: 768px) {
  .sponsorship-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .sponsorship-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .sponsorship-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .sponsorship-title {
    font-size: 49px;
  }
}

.sponsorship-aside-bottom {
  display: block;
  width: 100%;
  margin-top: 25px;
  text-wrap: balance;
}
@media (min-width: 1300px) {
  .sponsorship-aside-bottom {
    margin-top: 0;
  }
}
.sponsorship-aside-bottom p {
  color: #999999;
  font-size: 10px;
}
.sponsorship-aside-bottom strong {
  font-weight: 600;
}

.sponsorship-tiers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 10px;
}
@media (min-width: 1300px) {
  .sponsorship-tiers {
    flex: 1.2;
  }
}

.sponsorship-tier {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  transition: background-color 0.2s;
  background-color: rgba(242, 162, 255, 0.2);
}
.sponsorship-tier--active {
  background-color: rgba(242, 162, 255, 0.5);
}
.sponsorship-tier--active .sponsorship-tier-heading svg {
  transform: rotate(270deg);
}
.sponsorship-tier--active .sponsorship-tier-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-bottom: 20px;
  row-gap: 20px;
}
.sponsorship-tier:hover {
  background-color: rgba(242, 162, 255, 0.5);
}
.sponsorship-tier--sold-out {
  background-color: #E6E6E6;
}
.sponsorship-tier--sold-out:hover {
  background-color: #E6E6E6;
}
.sponsorship-tier--sold-out .sponsorship-tier-heading {
  pointer-events: none;
}
.sponsorship-tier--sold-out .sponsorship-tier-heading > svg {
  display: none;
}
.sponsorship-tier--sold-out .sponsorship-tier-title {
  opacity: 0.4;
}

.sponsorship-tier-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
}
.sponsorship-tier-heading > svg {
  display: block;
  width: 20px;
  height: auto;
  transform: rotate(90deg);
  transition: transform 0.2s;
}

.sponsorship-tier-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-size: 18px;
}
@media (min-width: 768px) {
  .sponsorship-tier-title {
    font-size: 21px;
  }
}
@media (min-width: 992px) {
  .sponsorship-tier-title {
    font-size: 23px;
  }
}
@media (min-width: 1300px) {
  .sponsorship-tier-title {
    font-size: 25px;
  }
}

.sponsorship-tier-main {
  display: none;
}
.sponsorship-tier-main ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 5px;
}
.sponsorship-tier-main li {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 16px;
  text-wrap: pretty;
}
.sponsorship-tier-main li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #000000;
}

.consent {
  display: none;
  position: fixed;
  z-index: 101;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  background-color: rgba(13, 101, 225, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.consent--visible {
  display: block;
}

.consent-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 15px;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

.consent-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 10px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .consent-content {
    flex: 1;
    width: auto;
  }
}

.consent-text {
  display: block;
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
}

.consent-links {
  display: block;
  width: 100%;
}

.consent-link {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
}

.consent-buttons {
  display: flex;
  width: 100%;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media (min-width: 768px) {
  .consent-buttons {
    width: auto;
  }
}

.consent-button {
  border: 0;
  background-color: #FFFFFF;
  box-shadow: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.consent-button .label {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}

.form {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100dvh;
}
.form--active {
  display: flex;
}
.form .container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.form-background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.form-content {
  display: block;
  width: 100%;
  padding: 0 30px;
  pointer-events: initial;
}
@media (min-width: 768px) {
  .form-content {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .form-content {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 1300px) {
  .form-content {
    width: 60%;
  }
}

.form-inner {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px;
  overflow: visible;
  background-color: #0D65E1;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .form-inner {
    padding: 50px;
  }
}

.form-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  overflow: hidden;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: #FFFFFF;
}
.form-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #000000;
}
.form-close span:first-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.form-close span:last-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #FFFFFF;
  font-size: 28px;
}
@media (min-width: 768px) {
  .form-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .form-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .form-title {
    font-size: 45px;
  }
}
@media (min-width: 1600px) {
  .form-title {
    font-size: 49px;
  }
}

.form-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 10px;
}

.form-item {
  display: block;
  width: 100%;
}
.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=submit],
.form-item textarea,
.form-item select {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #FFFFFF;
  font-family: "dm-sans", sans-serif;
  font-size: 16px;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  border-radius: 10px;
}
.form-item input[type=text]:focus,
.form-item input[type=email]:focus,
.form-item select:focus,
.form-item textarea:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
.form-item input[type=text],
.form-item input[type=email],
.form-item select {
  border: 1px solid #FFFFFF;
  font-family: "dm-sans", sans-serif;
  font-size: 16px;
}
.form-item select {
  background-image: url("../../img/icons/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 20px 20px;
  cursor: pointer;
}
.form-item textarea {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 0;
  padding: 10px;
  border: 0;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  background-color: transparent;
  color: #FFFFFF;
  font-family: "dm-sans", sans-serif;
  font-size: 16px;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  border-radius: 10px;
}
.form-item input[type=submit] {
  background-color: #FFFFFF;
  color: #0D65E1;
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.form-item ::-moz-placeholder {
  color: #FFFFFF;
  font-family: "dm-sans", sans-serif;
  font-size: 16px;
}
.form-item ::placeholder {
  color: #FFFFFF;
  font-family: "dm-sans", sans-serif;
  font-size: 16px;
}

.form-success {
  display: none;
  width: 100%;
}
.form-success p {
  color: #FFFFFF;
  font-size: 16px;
}
