/** GENERAL STYLES **********/

:root {
  --bfc-red:    #d24336;
  --bfc-black:  #1d1d1b;
  --bfc-beige:  #e6e2d5;

  --bfc-title-font:  'Bebas Neue', sans-serif;
  --bfc-text-font:   'Poppins', sans-serif;

  --cubic-bounce: cubic-bezier(.25,-0.125,0,1.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: var(--bfc-text-font);
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

a {
  color: var(--bfc-red);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--bfc-black);
}

h1, h2, h3, h4 {
  font-family: var(--bfc-title-font);
  font-weight: 400;
}

h1 {
  font-size: 3.25rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

section {
  padding: 8vw 2rem 5rem;
  position: relative;
}

.transition {
  position: absolute;
}

.parallax {
  position: absolute;
  width: 25%;
  height: auto;
}

.button {
  color: var(--bfc-beige);
  font-family: var(--bfc-title-font);
  font-size: 1.75rem;
  line-height: 1;
  text-decoration: none;
  background-color: var(--bfc-black);
  padding: 0.25em 1em;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  transition: transform 0.2s var(--cubic-bounce);
  z-index: 10;
  margin: 0;
}

.button::before {
  content: '';
  background-color: var(--bfc-black);
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 0.2s var(--cubic-bounce);
}

.button::after {
  content: '';
  background-color: var(--bfc-beige);
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.2s var(--cubic-bounce);
}

.button:hover {
  color: var(--bfc-beige);
  transform: translate(-0.5rem, -0.5rem);
}

.button:hover::after {
  transform: translate(0.5rem, 0.5rem);
}

.close_btn {
  color: var(--bfc-beige);
  background: none;
  border: none;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 50;
  transition: all 0.2s ease;
}

.close_btn svg {
  width: 100%;
  height: 100%;
}

.close_btn:hover {
  color: var(--bfc-red);
}


/** NAVIGATION **************/

#nav_btn {
  position: fixed;
  z-index: 500;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  padding: 0.75rem;
  top: 1rem;
  right: 1rem;
}

#nav_btn::after {
  background-color: var(--bfc-red);
}

#nav_btn img {
  width: 100%;
  height: auto;
}

#header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 90vh;
  background-image: url(assets/mobile_nav_bg.png);
  background-position: center bottom;
  background-size: cover;
  position: fixed;
  top: -3rem;
  left: 0;
  z-index: 90;
  padding: 3rem 0;
  transform: translateY(-100%);
  transition: all 0.3s var(--cubic-bounce);
}

#header.active {
  transform: translateY(0);
}

#header > * {
  flex: 0 1 auto;
}

#primary_nav {
  content: '';
}

.menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
}

.menu li {
  flex: 0 1 auto;
}

#social_media_nav .menu {
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

#primary_nav .menu li a {
  font-family: var(--bfc-title-font);
  font-size: 1.625rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--bfc-black);
  width: 100%;
  padding: 0.5em 1.25em;
  transition: all 0.2s ease;
  display: block;
}

#primary_nav .menu li a:hover {
  color: var(--bfc-red);
}

#social_media_nav .menu li a {
  background-color: var(--bfc-black);
  padding: 0;
  position: relative;
  transition: transform 0.2s var(--cubic-bounce);
  z-index: 10;
  margin: 0;
  width: 2rem;
  height: 2rem;
  display: block;
}

#social_media_nav .menu li a img {
  width: 100%;
  height: 100%;
}

.button.icon_btn::before {
  background-color: var(--bfc-black);
}

.button.icon_btn:hover {
  transform: translate(0.5rem, 0.5rem);
}

.button.icon_btn#facebook:hover::before {
  background-color: #3b5998;
}

.button.icon_btn#instagram::before {
  background: linear-gradient(45deg, transparent 0%, transparent 25%, transparent 50%, transparent 75%, transparent 100%);
}

.button.icon_btn#instagram:hover::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.button.icon_btn#tiktok::before {
  box-shadow: 0 0 0 0 #00f2ea, 0 0 0 0 #ff0050;
}

.button.icon_btn#tiktok:hover::before {
  /*border-top: 2px solid #00f2ea;
  border-right: 2px solid #ff0050;
  border-bottom: 2px solid #ff0050;
  border-left: 2px solid #00f2ea;*/
  box-shadow: -1.5px -1.5px 0 1.5px #00f2ea, 1.5px 1.5px 0 1.5px #ff0050;
}

.button.icon_btn::after {
  background-color: var(--bfc-black);
}

.button.icon_btn:hover::after {
  transform: translate(-0.5rem, -0.5rem);
}

.button.tickets::before {
  background-color: var(--bfc-red);
}

.button.tickets:hover {
  transform: translate(0.5rem, 0.5rem);
}

.button.tickets::after {
  background-color: var(--bfc-black);
}

.button.tickets:hover::after {
  transform: translate(-0.5rem, -0.5rem);
}

.shop {
  font-family: var(--bfc-title-font);
  font-size: 1.625rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--bfc-red);
  width: 100%;
  padding: 0.5em 1.5em;
  transition: all 0.2s ease;
}

.shop:hover {
  color: var(--bfc-black);
}

#home_content .button {
    font-size: 2.5rem;
}

.menu.secondary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.25rem;
  min-height: 2rem;
  margin: 2rem 0;
  position: relative;
}

.menu.secondary > li {
  flex: 1 0 auto;
}

.menu.secondary > li > a {
  font-family: var(--bfc-title-font);
  color: var(--bfc-black);
  background-image: url(assets/snippet_button.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 1rem;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease;
  z-index: 15;
  pointer-events: auto;
}

.menu.secondary > li > a:hover,
.menu.secondary > li > a.active {
  color: var(--bfc-beige);
  background-image: url(assets/snippet_button_hover.png);
}

.slick-dots {
  width: 100%;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: absolute;
  bottom: 3rem;
  list-style: none;
}

.slick-dots button {
  cursor: pointer;
  color: transparent;
  background: var(--bfc-black);
  opacity: 0.3;
  border-radius: 0.25rem;
  border: none;
  height: 0.5rem;
  width: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.2s ease;
}

.slick-dots button:hover {
  opacity: 0.6;
}

.slick-dots .slick-active button {
  background-color: var(--bfc-red);
  opacity: 1;
}

.slick-arrow {
  color: transparent;
  background-color: var(--bfc-red);
  box-shadow: 0 0 var(--bfc-black);
  border: none;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: auto;
  bottom: 0.5rem;
  z-index: 50;
  cursor: pointer;
  transition: all 0.2s var(--cubic-bounce);
}

.slick-arrow::before {
  color: var(--bfc-beige);
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slick-prev {
  left: 1rem;
}

.slick-prev:hover,
.slick-prev.slick-disabled {
  box-shadow: 0.5rem 0.5rem var(--bfc-black);
  transform: translate(-0.5rem, -0.5rem);
}

.slick-prev::before {
  content: '➜';
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-next {
  right: 1rem;
}

.slick-next:hover,
.slick-next.slick-disabled {
  box-shadow: -0.5rem -0.5rem var(--bfc-black);
  transform: translate(0.5rem, 0.5rem);
}

.slick-next::before {
  content: '➜';
}


/** HOME ********************/

#home {
  color: var(--bfc-beige);
  background-color: var(--bfc-red);
  background-image: url(assets/main_bg_dots.png);
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  padding: 7vw 0 0;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}

#home::before {
  content: '';
  background-image: url(assets/main_bg_texture.jpg);
  background-size: cover;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
}

#hero {
  position: absolute;
  inset: 0;
  z-index: 10;
}

#logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: -8rem;
  left: -3rem;
}

#team {
  width: 80%;
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
  overflow: hidden;
}

#home_content {
  color: var(--bfc-beige);
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10rem 0 5rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  z-index: 20;
}

#title {
  position: relative;
}

#title h1 {
  color: var(--bfc-red);
  font-family: var(--bfc-title-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  background-image: url(assets/title_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 1rem;
  margin: 0.25rem 0.5rem 0;
  position: relative;
  z-index: 10;
  display: inline-block;
}

#date_location {
  color: var(--bfc-black);
  font-family: var(--bfc-title-font);
  font-size: 1.125rem;
  line-height: 1;
  background-image: url(assets/date_location_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 1.5rem;
  margin: -1.25rem auto 0;
  transform: rotate(-3deg);
  display: inline-block;
  position: relative;
  z-index: 0;
}

#date {
  text-align: right;
  display: inline-block;
  border-right: 3px solid var(--bfc-black);
  padding: 0 0.5rem;
}

#location {
  text-align: left;
  display: inline-block;
  border-right: 3px solid var(--bfc-black);
  padding: 0 0.5rem;
}

#time {
  text-align: left;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  display: inline-block;
}

#lineup {
  font-size: 1.75rem;
  line-height: 1;
  font-family: var(--bfc-title-font);
  padding: 0.5rem 1.25rem;
}

#lineup span {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
}

#moderation {
  font-size: 1.25rem;
  font-family: var(--bfc-title-font);
}

.btn_wrapper {
  padding: 2rem 0 2.5rem;
}


/** NEWS ********************/

#news {
  min-height: 100vh;
  background-image: url(assets/secondary_bg_texture.jpg);
  background-size: cover;
}

#news .parallax {
  top: -4rem;
  right: 15rem;
}

#news_title {
  text-align: center;
  padding: 0.75rem 2rem 2.5rem 3rem;
  margin: 2rem 0 0 -2.5rem;
  background-image: url(assets/news_title_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-5deg);
  display: inline-block;
  position: relative;
  z-index: 20;
}

#news_title h2 {
  color: var(--bfc-black);
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  width: auto;
  margin: 0 auto 0 0;
}

#news_title h2 span {
  color: var(--bfc-beige);
  margin-top: 1.25rem;
  display: block;
  transform: translateX(-20%) rotate(-15deg);
}

#articles {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3%;
}

#articles article {
  padding: 3rem 2rem;
  background-image: url(assets/news_bg.png);
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  height: auto;
  position: relative;
  z-index: 10;
  flex: 0 1 100%;
}

#articles article img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

#articles article .news_date {
  font-size: 1.75rem;
  font-family: var(--bfc-title-font);
  color: var(--bfc-red);
  background-image: url(assets/date_location_bg.png);
  background-size: 100% 100%;
  padding: 1.5rem 1.75rem;
  transform: rotate(-10deg);
  position: absolute;
  bottom: 6.5rem;
  left: 0;
  z-index: 30;
}

#articles article p {
  margin: 0 4rem 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more_btn {
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  color: var(--bfc-beige);
  background-color: var(--bfc-red);
  box-shadow: 0 0 var(--bfc-black);
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  display: block;
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  z-index: 50;
  cursor: pointer;
  transition: all 0.2s var(--cubic-bounce);
}

.more_btn:hover {
  box-shadow: 0.5rem 0.5rem var(--bfc-black);
  transform: translate(-0.5rem, -0.5rem);
}


/** GALERIE *****************/

#gallery {
  background-color: var(--bfc-beige);
  min-height: 100vh;
  padding: 7rem 1rem;
  pointer-events: none;
}

#gallery .menu.secondary {
  justify-content: flex-start;
}

#gallery::before {
  content: '';
  background-image: url(assets/main_bg_texture.jpg);
  background-size: cover;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
}

#gallery .transition {
  width: auto;
  height: 10rem;
  top: -5rem;
  right: 1rem;
}

#gallery .parallax {
  top: 1rem;
  left: 10rem;
}

#gallery_slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
  padding: 0 0 5rem;
  overflow-x: auto;
  pointer-events: auto;
}

.gallery_item {
  width: 25rem;
  height: auto;
  position: relative;
  z-index: 10;
  margin: 1rem;
  flex: 1 0 auto;
  pointer-events: none;
}

.gallery_item a {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  position: absolute;
  inset: 1rem;
  display: block;
}

.gallery_item a::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(assets/foto_hover.jpg);
  background-size: cover;
  background-position: right center;
  mix-blend-mode: darken;
  opacity: 0.4;
  transition: all 0.2s ease;
  z-index: 10;
}

.gallery_item a:hover::before {
  mix-blend-mode: lighten;
}

.gallery_item::before,
.gallery_item::after,
.lb_item::before,
.lb_item::after {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  position: absolute;
  z-index: 30;
}

.frame-1::before {
  background-image: url(assets/frame1_tape_t.png);
  width: 25%;
  height: 15%;
  padding-top: 33%;
  top: -5%;
  left: 35%;
}

.frame-2::before {
  background-image: url(assets/frame2_tape_tr.png);
  width: 20%;
  height: 25%;
  top: -6%;
  right: -5%;
}

.frame-2::after {
  background-image: url(assets/frame2_tape_bl.png);
  width: 20%;
  height: 25%;
  bottom: -8%;
  left: -5%;
}

.frame-3::before {
  background-image: url(assets/frame3_tape_l.png);
  width: 10%;
  height: 25%;
  top: 30%;
  left: -4%;
}

.frame-3::after {
  background-image: url(assets/frame3_tape_r.png);
  background-position: bottom right;
  width: 10%;
  height: 25%;
  right: -3%;
  bottom: 30%;
}

.frame-4::before {
  background-image: url(assets/frame4_tape_tl.png);
  width: 20%;
  height: 15%;
  top: -4%;
  left: 15%;
}

.frame-4::after {
  background-image: url(assets/frame4_tape_br.png);
  background-position: bottom right;
  width: 20%;
  height: 15%;
  right: 3%;
  bottom: -3%;
}

.frame-5::before {
  background-image: url(assets/frame5_tape_tl.png);
  width: 23%;
  height: 20%;
  top: -5%;
  left: -5%;
}

.frame-5::after {
  background-image: url(assets/frame5_tape_br.png);
  background-position: bottom right;
  width: 23%;
  height: 20%;
  right: -5%;
  bottom: -3%;
}

.frame-6::before {
  background-image: url(assets/frame6_tape_t.png);
  width: 20%;
  height: 15%;
  top: -4%;
  left: 40%;
}

.frame-6::after {
  background-image: url(assets/frame6_tape_b.png);
  background-position: bottom left;
  width: 20%;
  height: 15%;
  bottom: -2%;
  left: 40%;
}

img.frame {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 10;
}

img.foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 5;
}

.overlay {
  background: rgba(0,0,0,0.8);
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: none;
  max-height: 100vh;
  z-index: 750;
}

#lightbox_slider {
  height: 100%;
  max-height: 100vh;
}

.lb_item {
  margin: 5% auto;
  height: 80%;
  max-height: 100vh;
  max-width: 55vw;
  width: auto;
  position: relative;
}

.lb_item img.foto {
  margin: 2rem;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
}


/** PRESS *******************/

#press {
  text-align: center;
  background-image: url(assets/secondary_bg_texture.jpg);
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#press .transition {
  width: auto;
  height: 10rem;
  top: -3rem;
  left: 0.5rem;
}

#press .parallax {
  top: -3rem;
  right: 10rem;
}

#press h2 {
  color: var(--bfc-red);
  text-align: right;
}

#reports .slick-track {
  display: flex;
}

#reports .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
}

#reports img {
  margin: 1rem auto;
  max-width: 100%;
  max-height: 60vh;
}

#tv {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5%;
  padding: 1rem 0;
}

#video_screen {
  width: 100%;
}

#tv_screen {
  position: relative;
  width: 100%;
  padding: 8% 14% 11% 0%;
}

#tv_screen .play_btn {
  font-size: 5rem;
  color: var(--bfc-beige);
  text-shadow: 0 0 1rem var(--bfc-black);
  background: none;
  border: none;
  position: absolute;
  top: 47%;
  left: 40%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  z-index: 50;
  display: none;
  transition: all 0.2s ease;
}

#tv_screen .play_btn:hover {
  color: var(--bfc-red);
}

#tv_screen .video_container {
  width: 100%;
  margin-left: 1%;
  display: block;
  overflow: hidden;
}

#tv_screen video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  margin-left: -10%;
}

#video_selection {
  width: 100%;
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;*/
  padding: 1rem 1rem 4rem;
}

#tv_overlay {
  position: absolute;
  inset: 0;
  width: 100%;
}

.video_thumbnail {
  background-image: url(assets/video_thumbnail_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  padding: 0.5rem;
  margin: 0.5rem;
  display: block;
  box-shadow: 0 0 var(--bfc-black);
  transition: all 0.2s var(--cubic-bounce);
}

.video_thumbnail:hover {
  box-shadow: 0.5rem 0.5rem var(--bfc-black);
  transform: translate(-0.5rem, -0.5rem);
}

.video_thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

#downloads {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10%;
}

.package {
  flex: 0 1 auto;
  margin-bottom: 2.5rem;
}

.package img {
  width: 80%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto 1.5rem;
}

.package .pkg_title {
  font-family: var(--bfc-text-font);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.package .button::after {
  background-color: var(--bfc-red);
}

/** BE PART OF IT ***********/

#bepartofit {
  text-align: center;
  background-image: url(assets/main_bg_texture.jpg);
}

#bepartofit h2 {
  color: var(--bfc-red);
}

#bepartofit h3 {
  margin: 2.5rem 0 1rem;
}

.partner_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}

#bepartofit a {
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0.6;
  transition: all 0.2s ease;
  cursor: pointer;
}

#bepartofit #druckat {
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
  display: block;
}

#bepartofit a:hover {
  opacity: 1;
}

#bepartofit img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}


/** FOOTER ******************/

#sponsor {
  color:var(--bfc-beige);
  background-color: var(--bfc-black);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.75);
  font-size: 0.875rem;
  height: auto;
  max-width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  position: relative;
  z-index: 5;
}

#sponsor > * {
  flex: 0 1 auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#sponsor > #footer_nav {
  border-top: none;
}

#sponsor h4 {
  line-height: 1;
  margin-bottom: 0.75rem;
}

#sponsor img {
  height: auto;
  width: 100%;
  display: block;
}

#sponsor a {
  font-weight: 600;
  display: inline-block;
}

#sponsor a:hover {
  color: var(--bfc-beige);
}

#koop {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  list-style: none;
}

#coop > * {
  flex: 0 1 auto;
}

footer {
  position: relative;
}

#fans {
  width: 100%;
  height: auto;
  position: absolute;
  top: 2px;
  left: 0;
  transform: translateY(-100%);
}

#footer {
  color: var(--bfc-black);
  font-weight: 600;
  background-image: url(assets/footer_bg.jpg);
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 5rem;
  justify-content: center;
  align-items: center;
}

#footer > * {
  flex: 1 1 auto;
  padding: 2rem;
}

#partner a {
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}

#partner a:hover {
  opacity: 1;
}

#partner img {
  height: 5rem;
  width: auto;
  margin-right: 1rem;
  display: inline-block;
}

#partner .frauenhaeuser img { 
  height: 3rem;
  margin-bottom: 2rem;
}

#tickets_modal {
  text-align: centeR;
  background-image: url(assets/news_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 600px;
  height: 480px;
  margin: 25vh auto 1rem;
  padding: 4rem 3rem;
}

#tickets_modal h2 {
  color: var(--bfc-red);
}

#ticket_services a {
  padding: 1rem;
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease;
}

#ticket_services a:hover {
  opacity: 1;
}

#ticket_services a > img {
  max-width: 300px;
  max-height: 100px;
}

#meta_content {
  font-size: 0.875rem;
  word-wrap: break-word;
  background-image: url(assets/news_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 130%;
  height: 110vh;
  margin: 4rem -15% 1rem;
  padding: 6rem calc(15% + 1rem) 2rem calc(15% + 1.5rem);
}

#meta_content h2 {
  margin-bottom: 1.5rem;
}

#meta_content h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#meta_content h5 {
  font-size: 2rem;
  font-family: var(--bfc-title-font);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

#meta_content p,
#meta_content ul,
#meta_content ol {
  margin-bottom: 1.5rem;
}

#meta_content ul,
#meta_content ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}

#imprint,
#privacy {
  display: none;
  overflow-y: auto;
  max-height: calc(90vh - 6rem);
  padding-right: 1rem;
}

#privacy::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
}

#privacy::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
}

#privacy::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
}

/** MEDIA QUERIES ***********/

@media screen and (max-width: 376px) {
  #team {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  #header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }
  
  #header > * {
    flex: 0 1 auto;
  }
  
  #primary_nav {
    content: '';
  }
  
  .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
  }
  
  .menu li {
    flex: 0 1 auto;
  }
  
  #social_media_nav .menu {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  #primary_nav .menu li a {
    font-family: var(--bfc-title-font);
    font-size: 1.625rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    color: var(--bfc-black);
    width: 100%;
    padding: 0.5em 1.25em;
    transition: all 0.2s ease;
  }
  
  #primary_nav .menu li a:hover {
    color: var(--bfc-red);
  }
  
  #social_media_nav .menu li a {
    background-color: var(--bfc-black);
    padding: 0;
    position: relative;
    transition: transform 0.2s var(--cubic-bounce);
    z-index: 10;
    margin: 0;
    width: 2rem;
    height: 2rem;
    display: block;
  }
  
  #social_media_nav .menu li a img {
    width: 100%;
    height: 100%;
  }

  .button.tickets {
    margin-right: 5rem;
  }
  
  #header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-image: url(assets/nav_bg_desktop.png);
    background-position: left bottom;
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 1rem 0 5vw;
    top: 0;
    transform: translateY(0);
  }

  .parallax {
    width: auto;
  }

  #primary_nav {
    justify-content: space-evenly;
    min-width: 50%;
  }
  
  #primary_nav .menu {
    flex-direction: row;
  }

  .menu.secondary {
    gap: 1rem;
  }
  
  .menu.secondary > li {
    flex: 0 1 auto;
  }

  .menu.secondary > li > a {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
  }

  .slick-dots button {
    width: 3rem;
  }

  .slick-arrow {
    top: calc(50% - 1.5rem);
    bottom: auto;
  }

  #home {
    height: calc(90vh - 5rem);
    padding-top: 6vw;
  }

  #hero {
    position: relative;
    width: 50%;
  }

  #logo {
    top: -10rem;
    left: 3rem;
  }

  #team {
    width: 120%;
    bottom: -3rem;
    left: 1.5rem;
  }

  #home_content {
    width: 50%;
    min-height: 70vh;
    padding: 0;
    justify-content: space-evenly;
  }

  #title h1 {
    font-size: 3.25rem;
    padding: 1.75rem;
    margin: 1.5rem auto 0;
  }

  #date_location {
    font-size: 1.5rem;
    width: auto;
    padding: 2rem;
    margin-top: -2rem;
    transform: translateX(10%) rotate(-4deg);
  }

  #time {
    padding-right: 2rem;
  }

  #lineup {
    font-size: 2.25rem;
    padding: 1rem 6rem;
  }

  #lineup span {
    font-size: 2.25rem;
    display: inline;
  }

  #moderation {
    font-size: 1.5rem;
  }

  #news_title {
    padding: 1.5rem 5.5rem 4.5rem 6.5rem;
    margin: 1rem 0 0 5rem;
  }

  #news_title h2 {
    font-size: 3.5rem;
  }

  #news {
    padding: 3rem 5rem 10rem;
  }

  #gallery {
    padding: 10rem 5rem;
  }

  #articles {
    flex-direction: row;
  }

  #articles article {
    flex: 0 1 30%;
  }

  #gallery .transition {
    height: 25rem;
    top: -8rem;
    right: 10rem;
  }

  .gallery_item {
    margin: 3rem 1.5rem 3rem;
  }

  .gallery_item a {
    pointer-events: auto;
  }

  #press {
    padding: 10rem 5rem 5rem;
  }

  #press h2 {
    text-align: center;
  }

  #press .transition {
    height: 22rem;
    top: -7rem;
    left: 10rem;
  }

  #reports .slick-track .slick-slide {
    padding-bottom: 0;
  }

  #tv {
    flex-direction: row;
    align-items: center;
  }
  
  #video_screen {
    width: 55%;
  }

  #video_selection {
    width: 45%;
    /*gap: 2rem;*/
    padding: 1rem;
    margin: 0 1rem;
  }

  #video_selection .slick-prev {
    left: 0;
  }
  
  #video_selection .slick-next {
    right: 0;
  }
  
  .video_thumbnail {
    padding: 1rem;
  }

  #downloads {
    flex-direction: row;
  }

  .package img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 1.5rem;
  }
  
  .package .pkg_title {
    font-size: 1.25rem;
  }

  #bepartofit {
    padding: 5rem 5rem 25vw;
  }

  .partner_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  #footer {
    flex-direction: row;
  }

  #sponsor {
    height: 12rem;
    flex-direction: row;
  }
  
  #sponsor > * {
    padding: 0 2rem;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  #sponsor > #footer_nav {
    border-top: none;
    border-left: none;
  }

  #nav_btn {
    display: none;
  }

  #meta_content {
    font-size: 1rem;
    background-size: 100% 100%;
    width: 70%;
    height: 90vh;
    margin: 3rem auto;
    padding: 6rem 5rem 6rem 5rem;
  }

  #imprint,
  #privacy {
    max-height: calc(90vh - 12rem);
  }

}