* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
  background-color: #000;
}

@media screen and (min-width : 640px) {

  html,
  body {
  cursor: url(assets/Mouse-cursor-hand-pointer.svg\ 2.png)
  }
}

/*FONTS*/
/***************************************/

@font-face {
  font-family: 'PSG Grotesk 24 Screen VF';
  src: url('assets/fonts/PSGGrotesk24/vFont/PSGGrotesk24Screen-VF.woff2') format('woff2-variations'),
    url('assets/fonts/PSGGrotesk24/vFont/PSGGrotesk24Screen-VF.woff') format('woff-variations');
  font-weight: 30 200;
  font-stretch: 5% 400%;
  text-rendering: optimizeLegibility;
}

/* Variable instances */
.psg-grotesk-24-screen-vf-light {
  font-variation-settings: "wght" 50, "wdth" 230;
}

.psg-grotesk-24-screen-vf-regular {
  font-variation-settings: "wght" 95, "wdth" 230;
}

.psg-grotesk-24-screen-vf-black {
  font-variation-settings: "wght" 200, "wdth" 230;
}

.psg-grotesk-24-screen-vf-wide {
  font-variation-settings: "wght" 83, "wdth" 330;
}

.psg-grotesk-24-screen-vf-narrow {
  font-variation-settings: "wght" 95, "wdth" 60;
}

:root {
  --psg-grotesk-24-screen-vf-light: "wght" 50, "wdth" 230;
  --psg-grotesk-24-screen-vf-regular: "wght" 95, "wdth" 230;
  --psg-grotesk-24-screen-vf-black: "wght" 200, "wdth" 230;
  --psg-grotesk-24-screen-vf-wide: "wght" 83, "wdth" 330;
  --psg-grotesk-24-screen-vf-narrow: "wght" 140, "wdth" 10;

  --neongreen: #C7FF18;
}


@font-face {
  font-family: 'PSG Grotesk Regular';
  src: url('assets/fonts/PSGGrotesk24Mono-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PSG Grotesk Narrow office';
  src: url('assets/fonts/PSGGroteskNarrowOfficeBold_1066272553.ttf');
  font-weight: Bold;
  font-style: normal;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Light.woff2') format('woff2'),
    url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Light.woff') format('woff');
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Regular.woff2') format('woff2'),
    url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Regular.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Black.woff2') format('woff2'),
    url('assets/fonts//PSGGrotesk24/PSGGrotesk24HeadScreen-Black.woff') format('woff');
  font-style: normal;
  font-weight: 600;
  text-rendering: optimizeLegibility;
}

/* ********* Main Definitions *********  */


body {
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  line-height: normal;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-regular);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Colors */
.neongreen {
  color: #C7FF18;
}


.nav {
  font-size: 1em;
  display: flex;
  position: fixed;
  top: 6vh;
  right: 2vw;
  z-index: 99999;
}

.nav-item {
  background-color: var(--neongreen);
  font-size: 2.4em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  padding: 0 20px;
  line-height: normal;
  padding-top: .2em;
  padding-bottom: .15em;
  margin-left: .5em;
  transition: .6s;
}

.nav-item:hover {
  background-color: #fff;
}

.flex,
.nav-item label {
  display: flex;
}

.round-img {
  border-radius: 50%;
}

.full-width {
  width: 100%;
}

.align-center {
  align-items: center;
}

/* MOBILE STYLES */

@keyframes zittern {
  0% {
    transform: translate(0px, 0px);
  }

  10% {
    transform: translate(5px, -3px);
  }

  20% {
    transform: translate(-4px, 4px);
  }

  30% {
    transform: translate(3px, -5px);
  }

  40% {
    transform: translate(-6px, 2px);
  }

  50% {
    transform: translate(2px, 5px);
  }

  60% {
    transform: translate(-3px, -4px);
  }

  70% {
    transform: translate(4px, 3px);
  }

  80% {
    transform: translate(-5px, -2px);
  }

  90% {
    transform: translate(3px, -3px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.mobile-view {
  background-color: #000;
}

/* Mobile landing file goes here*/


.pre-headline {
  margin-top: 4vh;
  margin-bottom: 1vh;
  font-size: 3em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  line-height: 0.8;
}

.intro-text {
margin-bottom: 10vh;
  }

#bg-video {

  top: 0;
  left: 0;
  width: 100vw;
  
  object-fit: cover;
  z-index: -1;

}

.mobile-view article {
  color: #fff;
  margin: 0 3vw;
}

.mobile-view article .block p {
  font-family: 'PSG Grotesk Regular', sans-serif;
  -webkit-font-smoothing: initial;
  -moz-osx-font-smoothing: initial;
}

.m-motion-img.mmi-01 {
  transform: rotate(30deg);
  width: 41vw;
  top: 47vh;
  position: relative;
  left: 8vw;
  opacity: 0;
  transition: opacity 2s;
}

.m-motion-img.mmi-02 {
  transform: rotate(-50deg);
  width: 23vw;
  top: 32vh;
  position: relative;
  left: 33vw;
  opacity: 0;
  transition: opacity 2s;
}

.sml-mobile-img {
  width: 20vw;
  margin-right: 5vw;
}

.md-mobile-img {
  width: 30vw;
  margin-right: 6.5vw;
 
}

.mobile-v-spacer {
  margin: 3vh 0;
}

.white-box {
  background-color: #fff;
  color: #000;
  padding: 1.9em 1.2em;
  margin-bottom: 1em;
}

.video-box{

  margin-top: 1em;
}

.video-box video {
 width: 100%;
 position: relative;
 
   
}

.logo-box {
 padding: 1.9em 1.2em;
 margin: 6em 0;
  }
.logo-box img {
  position: relative;
  width: 100%;
}

#el-footer {
  transform: scale(0.5);
  }

.image-box>img {
  display: block;
}

.boxlink {
  text-decoration: none;
  border: 1px solid black;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  color: black;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
}

.sml-label {
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  padding: .1em .5em;
  background-color: #C7FF18;
  color: #000;
  display: inline-block;
}

.block h1 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  line-height: .85em;
  font-size: 3em;
}

.image-box>.block h1 {
  font-size: 2.6em;
}

.image-box>.block.timetable h1 {
  font-size: 3em;
}

.block h2 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: "wght" 80, "wdth" 10;
  text-align: left;
  line-height: .85em;
  font-size: 2.5em;
}

.block:first-of-type{
  margin-bottom: 4vh;
  }

.box-frame {
  margin-top: .7em;
  margin-bottom: 1em;
}

.mobile-border-box {
  border: 1px solid black;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
  margin-left: .5em;
}

.mobile-color-box {
  background-color: #C7FF18;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  color: black;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
}

.image-box .white-box {
  padding-top: 1.1em;
}

.blue-box {
  background-color: #0000FF;
  color: #fff;
}

.blue-box .mobile-border-box {
  border: 1px solid white;
  color: #fff;
}

.ticket-block .mobile-color-box {
  width: 100%;
  text-align: center;
  font-size: 4.1em;
  padding: 0;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: "wght" 180, "wdth" 30;
}

.ticket-block h2 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  font-size: 2.7em;
  margin: .5em 0;
}

/* Mobile Menu toggle */
.toggle-wrapper {
  position: fixed;
  z-index: 10;
}

.toggle-wrapper input[type="checkbox"] {
  display: none;
}

.toggle-label {
  display: inline-block;
  width: 120px;
  height: 24px;
  overflow: hidden;
  background: #C7FF18;
  color: #000;
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 16px 0;
  z-index: 20;
  margin-top: 5vh;
}

.toggle-label .text-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.toggle-label .text-container span {
  height: 1em;
  line-height: .5em;
  display: inline-block;
  margin-bottom: .1em;
}

.toggle-wrapper input[type="checkbox"]:checked+.toggle-label .text-container {
  transform: translateY(-50%);
}

.toggle-content {
  overflow: hidden;
  position: absolute;
  width: 100vw;
  transition: opacity 0.3s ease;
  opacity: 0;
  background: #fff;
  color: #000;
  top: 0;
  left: 0;
  z-index: 10;
  height: 1px;
}

.toggle-wrapper input[type="checkbox"]:checked~.toggle-content {
  opacity: 1;
  height: 100vh;
}

.toggle-label .text-container {
  font-size: 3em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
}

.mobile-spacer {
  display: block;
  margin-top: 6em;
}

.x-sml-spacer-t {
  margin-top: .2em;
}

.sml-spacer-t {
  margin-top: .6em;
}

.md-spacer-t {
  margin-top: 1.5em;
}

.x-sml-spacer-b {
  margin-bottom: .2em;
}

.sml-spacer-b {
  margin-bottom: .6em;
}

.md-spacer-b {
  margin-bottom: 1.5em;
}

.mobile-navpoints {
  color: #000;
  font-size: 4.3em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-decoration: none;
  margin-left: 2.1em;
  line-height: 1.2em;
}

.mobile-nav-logo-img-frame {
  position: absolute;
  bottom: 3vh;
  display: flex;
  justify-content: center;
  width: 100vw;
}

.mobile-nav-logo-img {
  width: 30vw;
}

.mobile-nav-fp-img {
  width: 100vw;
  position: absolute;
  bottom: 3em;
  left: 0;
}

/* GENERAL STYLES */
.visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

h1 {
  text-align: center;
}

.container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.hamburger {
  margin: 0 auto;
  margin-top: 12px;
  width: 30px;
  height: 24px;
  position: relative;
  margin-left: .5em;
}

.hamburger .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #000;
  display: block;
  transition: all 0.4s ease-in-out;
  position: absolute;
}

.bar1 {
  top: 0;
}

.bar2,
.bar3 {
  top: 10px;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 0;
}

/* HAMBURGER def */

.hamburger3 .bar1 {
  transform-origin: 5%;
}

.hamburger3 .bar4 {
  transform-origin: 5%;
}

.checkbox3:checked+label>.hamburger3>.bar1 {
  transform: rotate(45deg);
  height: 5px;
  width: 31px;
}

.checkbox3:checked+label>.hamburger3>.bar3 {
  transform: rotate(45deg);
  height: 5px;
  background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar2 {
  transform: rotate(-45deg);
  height: 5px;
  background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar4 {
  transform: rotate(-45deg);
  height: 5px;
  width: 31px;
}


/* Chrome, Safari, Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-size: 20rem;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  opacity: 1;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

#loading-screen.hide {
  opacity: 0;
}

#loading-screen p {
    animation: smallRotate 4s ease-out alternate;
    
  }
  

@keyframes smallRotate {
  0% {
    transform: translateY(-100px) rotate(15deg);
  }
  100% {
    transform: translateY(700px) rotate(-25deg);
  }
}

.menu {
  width: 326px;
  font-size: 1rem;
  position: fixed;
  top: calc(6vh + 60px);
  right: 2vw;
  background: white;
  color: black;
  z-index: 99999;
}

#dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#dropdown-menu.open {
  max-height: 550px;
}

.white {
  background-color: #fff;
}

.controls {
  margin: 20px;
}

.controls-subheadline {
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  font-size: 2.5rem;
}

.parameter {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
}

.parameter label {
  font-family: "PSG Grotesk Regular", sans-serif;
  font-size: 1.25rem;
}

canvas {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

/* temporary hidden */
#change-mode,
#ticket,
.info {
  display: none;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: black;
  border-radius: 10px;
  outline: none;
  margin: 10px 0;

}

/* Track hover effect */
.slider:hover {
  background: black;
}

/* Chrome, Safari, Opera - Thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C7FF18;
  cursor: pointer;
  border: black 1px solid;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Firefox - Thumb */
.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C7FF18;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Mediaqueries */
@media screen and (max-width : 640px) {

  main,
  #p5-canvas-container,
  .custom-cursor,
  .nav {
    display: none;
  }
}

@media screen and (min-width : 640px) {
  .mobile-view {
    display: none;
  }
}