@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-100-alpha: rgba(255, 255, 255, 0.7);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 65%);
  --color-white-600: hsl(0, 0%, 55%);
  --color-black-100: hsl(210, 17%, 12%);
  --color-black-200: hsl(210, 17%, 10%);
  --color-black-300: hsl(210, 16%, 8%);
  --color-black-400: hsl(210, 16%, 6%);
  --color-black-500: hsl(210, 15%, 4%);
  --color-black-600: hsl(210, 15%, 2%);
  --color-blue-100: hsl(212, 96%, 60%);
  --color-blue-200: hsl(213, 94%, 55%);
  --color-blue-300: hsl(217, 91%, 50%);
  --color-blue-400: hsl(221, 83%, 45%);
  --color-blue-500: hsl(224, 76%, 40%);
  --color-blue-600: hsl(226, 71%, 35%);
  --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
  --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
  --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  /*padding: 0;*/
  margin: 0;
  /*list-style: none;
  list-style-type: none;*/
  text-decoration: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  font-style: normal;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

/*
body {
  font-family: "Roboto", system-ui, ui-sans-serif, sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
}
*/

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /*white-space: nowrap;*/
  border: none;
  outline: none;
  color: inherit;
  background: none;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  text-wrap: balance;
  word-wrap: break-word;
}

/*p {
  max-width: 50ch;
}*/

p,
li {
  text-wrap: pretty;
  line-height: inherit;
  word-wrap: break-word;
}

img,
svg,
picture,
video {
  font-style: italic;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  shape-margin: 1rem;
  vertical-align: middle;
}

img,
svg {
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.section {
  margin-inline: auto;
  margin-block: 5rem 2rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-tiny {
  font-size: var(--text-tiny);
}
.text-small {
  font-size: var(--text-small);
}
.text-base {
  font-size: var(--text-base);
}
.text-medium {
  font-size: var(--text-medium);
}
.text-large {
  font-size: var(--text-large);
}

.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  white-space: nowrap;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.25s ease;
}
.btn-default {
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-white-100);
  background-color: var(--color-black-500);
  box-shadow: var(--shadow-medium);
}

.event-date {
  font-size: 0.75em;
  line-height: 1.5em;
  padding: 1em 2em;
  /*float: left;*/
  /*position: fixed;*/
  color: #FFCC00;
}

header.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  background-color: var(--color-white-100-alpha);
  box-shadow: var(--shadow-medium);
}
header.header:has(.dropdown:hover) {
  background-color: var(--color-white-100);
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-blue-300);
  margin-top: 2em;
}
.brand img {
  width: 100px;
  height: auto;
  position: absolute;
  z-index: 99;
  top: 0;
}

.navbar {
  width: 100%;
  height: 4.25rem;
  margin-inline: auto;
}
.navbar a {
  white-space: nowrap;
}
.navbar li {
  list-style: none;
  list-style-type: none;
}
.navbar-inner {
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
}
.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
  padding-top: 3em;
}

@media screen and (min-width: 62rem) {
  .brand {
    margin-top: 1em;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
  }
  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}
.menu {
  padding-block: 1rem;
  padding-inline: auto;
}
.menu-link {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: var(--color-black-500);
  transition: color 0.3s ease;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: .75rem;
         column-gap: .75rem;
    height: 100%;
    padding: unset;
  }
  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.35rem;
  }
  .menu-link {
    font-size: var(--text-small);
    padding: unset;
  }
}
.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.dropdown-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}
.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: var(--color-white-100);
  transition: height 0.5s ease;
}
.dropdown-column, .dropdown-group, .dropdown-items {
  display: grid;
}
.dropdown-group {
  padding-inline: 1.5rem;
}
.dropdown-title {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}
.dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-blue-300);
}
.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: .5rem;
  padding-top: 0.35rem;
}
.dropdown-link {
  font-size: var(--text-small);
  font-weight: 400;
  line-height: inherit;
  color: var(--color-black-500);
  transition: color 0.3s ease;
}
.dropdown-show > .dropdown-toggle i.bx {
  rotate: 180deg;
}
.dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
  .dropdown-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdown-content {
    z-index: 100;
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--color-white-100);
    border-top: 2px solid var(--color-white-200);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }
  .dropdown-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }
  .dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 2rem;
    padding-bottom: 1rem;
  }
  .dropdown-group:first-child, .dropdown-group:last-child {
    margin: unset;
  }
  .dropdown-items {
    padding-top: unset;
    padding-inline: 3.5rem;
  }
  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }
  .dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 4.25rem;
    opacity: 1;
    pointer-events: initial;
  }
  .dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
  }
}
.burger {
  cursor: pointer;
  position: relative;
  display: block;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  visibility: visible;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  background-color: var(--color-black-500);
  transition: all 0.3s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.video-outer-container {
    /*position: fixed;
    top: 0;
    left: 0;*/
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}  
.video-container {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /*background-color: yellow;*/
    background-color: #000;
}
.video{
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
}

.live-news {
  margin: 2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-news .meta {
  font-size: .85em;
  display: block;
  text-align: center;
  color: #db2828;
  font-size: .85em;
  font-weight: bold;
  margin-bottom: 1em;
}

.ui.button {
  font-size: .75em;
  font-weight: bold;
  padding: .5em 1em;
  margin: 0 .35em;
}
.ui.circular.button {
  border-radius: 10em;
}
.ui.button.white {
  background-color: #fff;
  border: 1px solid rgba(34,36,38,.15);
}
.ui.button.red.hover:hover {
  background-color: #db2828;
  color: #fff;
  text-shadow: none;
  background-image: none;
}

.partners h4,
.main-sponsor h4 {
  font-weight: normal;
  margin: .5em 0;
  text-transform: uppercase;
  font-size: .75em;
}
.partners .grid {
  text-align: center;
}
.partners .grid .column {
  display: inline-block;
  margin: 0 .5em 1em .5em;
}

.main-sponsor {
  margin-top: 1em;
  padding: .5em 0 0 0;
  background-color: #13375C;
  color: #ffffff;
}
.main-sponsor .container {
  display: block;
}
.main-sponsor .image {
  height: 50px;
  width: auto;
  margin: 0 2em 1em 0;
}
.main-sponsor p {
  /*max-width: none;*/
  display: inline-block;
  margin-left: 3em;
}
.main-sponsor p + a {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 .5em;
}

footer section:last-of-type {
  font-size: .75em;
  text-align: center;
  padding: .5em 0 2em 0;
}
footer section:last-of-type br {
  display: none;
}

/* OTHER (to move into their places) */

/* TEMPORARY */
.pusher {
  margin-top: 70px;
}
