:root {
  --eggshell: #ffebdc;
  --schwarz: #111;
  --blau: #2e778e;
  --rot: #932715;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--eggshell);
  color: var(--schwarz);
  font-family: franklin-gothic-atf, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 15rem;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: franklin-gothic-atf, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 7rem;
}

h4 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: franklin-gothic-atf, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 120%;
}

p {
  margin-bottom: 0;
  font-family: franklin-gothic-atf, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}

a {
  color: var(--eggshell);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
  overflow: clip;
}

.navbar_component {
  z-index: 1000;
  background-color: var(--eggshell);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 6vh;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar_component.is-eggshell {
  border-bottom: .4rem solid #000;
}

.navbar_container {
  justify-content: space-between;
  width: 100%;
  max-width: 72rem;
  display: flex;
}

.navbar_container.is-black {
  color: var(--schwarz);
}

.navbar_link {
  text-transform: uppercase;
  color: currentColor;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0;
  font-family: League Gothic, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-decoration: none;
}

.navbar_link.w--current {
  color: var(--schwarz);
}

.navbar_link.navbar_link-shop {
  display: none;
}

.section_hero {
  background-color: var(--eggshell);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}

.padding-global {
  padding-left: 3rem;
  padding-right: 3rem;
}

.container-holder {
  flex-flow: column;
  display: flex;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.hero_content-box {
  flex-flow: column;
  width: 100%;
  height: 90svh;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.is-eggshell {
  color: var(--eggshell);
  font-weight: 500;
}

.header_tag-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero_image-holder {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 70vh;
  display: block;
  overflow: hidden;
}

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

.section {
  background-color: var(--eggshell);
  padding-top: 1rem;
  padding-bottom: 1rem;
  scroll-margin-top: 4.5rem;
  position: relative;
}

.section.shop {
  display: block;
}

.section.has-top-no-padding {
  padding-top: 0;
}

.section.has-bottom-double-padding {
  padding-bottom: 2rem;
}

.section.is-display-none {
  display: none;
}

.content-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
}

.content-box.is-white-on-blue {
  background-color: var(--blau);
}

.content-box.is-red-on-white {
  border: .5rem solid var(--rot);
  color: var(--rot);
  font-size: 1.25rem;
}

.content-box.is-red-on-white.container_border-bottom {
  border-width: .4rem;
}

.content-box.is-red {
  background-color: var(--rot);
  color: var(--eggshell);
}

.content-box.is-red.is-hero-box {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: .5rem;
  padding-bottom: 1rem;
}

.content-box.is-blue-on-white {
  border: .5rem solid var(--blau);
  color: var(--blau);
  padding: 0;
}

.content-box.is-impressum {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  align-items: center;
  padding-top: 0;
}

.grid-text-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: grid;
}

.is-red {
  color: var(--rot);
}

.heading-component {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.navbar-wrapper {
  flex-flow: row;
  justify-content: center;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.item-head {
  width: 100%;
  max-width: 100%;
}

.item-head.is-head-01, .item-head.is-head-02 {
  max-width: 83%;
}

.item-head.is-head-03, .item-head.is-head-04 {
  max-width: 93%;
}

.is-head-01 {
  max-width: 89%;
}

.nametag-box {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--eggshell);
  border-radius: 0;
  flex-flow: column;
  padding: .5rem .75rem .75rem;
  display: flex;
  transform: rotate(0);
}

.nametag-box.is-box1 {
  transform: rotate(-5deg);
}

.nametag-box.is-box2 {
  transform: rotate(5deg);
}

.prename-wrapper {
  color: var(--rot);
  text-align: center;
  max-width: 12.6rem;
  font-family: Archivo Black;
  font-size: 2rem;
}

.surname {
  color: var(--schwarz);
  text-align: center;
  text-transform: none;
  font-family: Yellowtail, sans-serif;
  font-size: 2.5rem;
  line-height: 70%;
}

.instrument-box {
  color: var(--eggshell);
  text-transform: uppercase;
}

.grid-star {
  color: var(--eggshell);
}

.sub-text {
  color: var(--schwarz);
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}

.sub-text.font-untertitel {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.anker-target {
  margin-top: -4.5rem;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
}

.anker-target.is-booking {
  margin-top: -5rem;
}

.star-small {
  width: 31px;
  line-height: 100%;
}

.star-big {
  width: 64px;
}

.star-big.is-flipped {
  display: none;
}

.star-medium {
  width: 45px;
}

.heading-flex-center {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-color-eggshell {
  background-color: var(--eggshell);
}

.concert-cell {
  color: currentColor;
  padding: .5rem;
}

.font-untertitel {
  text-align: center;
  text-transform: uppercase;
  font-family: Archivo Black;
  font-size: 1.25rem;
}

.heading-box {
  background-color: var(--blau);
  color: var(--eggshell);
  padding: 1.5rem 2rem;
}

.heading-box.is-white-on-red {
  background-color: var(--rot);
  color: var(--eggshell);
}

.subtext-booking-container {
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  display: flex;
}

.anfragen-container {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.anfragen-cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.mail-button {
  background-color: var(--rot);
  color: var(--eggshell);
  text-align: center;
  text-transform: uppercase;
  border-radius: 0;
  align-self: center;
  max-width: 80%;
  padding: .75rem 1.5rem;
  font-weight: 800;
}

.hero-heading {
  text-align: center;
  font-size: 20cqw;
  line-height: 90%;
}

.hero-heading_container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  container-type: inline-size;
}

.team_grid {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(10rem, 1fr) 32px minmax(10rem, 1fr) 32px minmax(10rem, 1fr) 32px minmax(10rem, 1fr);
}

.team-grid_person {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.grid_booking {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 2px solid var(--blau);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container_booking {
  flex-flow: row-reverse;
  width: 100%;
  display: flex;
  position: relative;
}

.booking-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 83.3%;
  display: flex;
}

.image {
  object-fit: cover;
}

.image_cocktail {
  width: 116%;
  position: absolute;
  inset: 2% auto 0% -95%;
}

.rotated_instrument-1 {
  transform: rotate(2deg);
}

.rotated_instrument-2 {
  transform: rotate(-2deg);
}

.heading-style-h4 {
  text-align: center;
  text-transform: uppercase;
  font-family: franklin-gothic-atf, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 120%;
}

.heading-style-h4.padding-bottom--5rem {
  width: 100%;
  padding-bottom: .5rem;
}

.heading-style-h4.title_popup {
  color: var(--rot);
  font-size: 1.75rem;
}

.songtable-wrapper {
  border-bottom: .15rem solid var(--rot);
  width: 100%;
  overflow: visible;
}

.song_element {
  width: 100%;
  height: 5rem;
  padding-bottom: 0;
  position: absolute;
  inset: auto 0% 0%;
}

.box_artist {
  color: var(--schwarz);
  text-align: center;
}

.box_toltitle {
  text-align: right;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.grid_song {
  grid-column-gap: 1.5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.song_line {
  z-index: 0;
  background-color: var(--eggshell);
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.song_vinyl-target {
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: visible;
  transform: translate(0);
}

.song_vinyl-element {
  width: 100%;
  max-width: 36rem;
}

.song_popup {
  z-index: 1001;
  display: none;
  position: fixed;
  inset: 0%;
}

.song_item {
  height: 100%;
  position: relative;
}

.song_vinyl-trigger {
  z-index: 0;
  height: 5rem;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.song_design {
  border-top: .15rem solid var(--rot);
  border-right: .15rem solid var(--rot);
  border-left: .15rem solid var(--rot);
  background-image: none;
  position: absolute;
  inset: 0%;
}

.concert_link {
  color: var(--rot);
  width: 100%;
  text-decoration: none;
}

.container_konzerte {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: visible;
}

.image-konzerte {
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  display: flex;
  position: relative;
}

.popup-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.popup-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: .4rem solid var(--rot);
  background-color: var(--eggshell);
  box-shadow: 0 0 19px -5px var(--schwarz);
  outline-color: var(--rot);
  outline-offset: 0px;
  text-overflow: ellipsis;
  border-radius: 0;
  outline-width: .4rem;
  outline-style: none;
  flex-flow: column;
  justify-content: space-around;
  width: 100%;
  max-width: 72rem;
  height: 100%;
  max-height: 80svh;
  margin-left: 3rem;
  margin-right: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vinyl_player {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 100%;
  max-height: 40rem;
  display: flex;
}

.songinfo-wrapper {
  color: var(--blau);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vinyl_image_holder {
  width: 100%;
  height: 100%;
  max-height: 50cqh;
  display: flex;
}

.accordion_trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: .5rem;
  display: flex;
}

.accordion_panel {
  overflow: hidden;
}

.accordion_titel {
  text-align: left;
}

.accordion_icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.accordion_icon.popup_close_button {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  transform: rotate(45deg);
}

.text-wrap {
  max-width: 50rem;
}

.accordion_icon-line {
  background-color: var(--rot);
  width: 100%;
  height: .4rem;
  position: absolute;
}

.accordion_icon-line.is-horizontal {
  transform: rotate(90deg);
}

.accordion_icon-line.is-horizontal.is-black {
  background-color: var(--schwarz);
}

.accordion_icon-line.popup_close_line {
  background-color: var(--rot);
}

.accordion_icon-line.is-black {
  background-color: var(--schwarz);
}

.image_konzerte-holder {
  width: 70%;
  height: 120%;
  min-height: 5vh;
  position: absolute;
  overflow: hidden;
}

.image_tubax-holder {
  flex-flow: column;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

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

.linkbox-spotify {
  justify-content: center;
  align-items: center;
  width: 3rem;
  display: flex;
}

.footer_component {
  z-index: 0;
  background-color: var(--blau);
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 24rem;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.footer_wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.footer_container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  max-width: 72rem;
  display: flex;
}

.footer_middle {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--eggshell);
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.findus_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--eggshell);
  flex-flow: column;
  align-items: center;
  display: flex;
}

.icon_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  display: flex;
}

.linkbox_instagram {
  width: 3rem;
}

.footer_line {
  background-color: var(--eggshell);
  height: .4rem;
}

.footer_star {
  align-self: center;
  display: none;
}

.cheers_component {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer_flex_horizontal {
  justify-content: space-between;
  display: flex;
}

.footer_star-holder {
  color: var(--eggshell);
  flex-flow: column;
  justify-content: space-around;
  align-self: center;
  height: 100%;
  display: flex;
}

.booking_text {
  max-width: 31.3rem;
  font-weight: 500;
}

.song_initial_pos {
  justify-content: flex-start;
  height: 4rem;
  position: relative;
}

.popup_close {
  position: absolute;
  inset: 5% 5% auto auto;
}

.popup_closing-overlay {
  background-color: #932715a8;
  position: absolute;
  inset: 0%;
}

.code-embed, .play_button_phone {
  display: none;
}

.song_title_cover {
  color: var(--rot);
  padding-bottom: .5rem;
}

.popup_trigger-layer {
  z-index: 0;
  cursor: pointer;
  position: absolute;
  inset: 0%;
}

.illustration_holder {
  position: static;
  inset: 0% auto 0% 0%;
}

.tubax_sound_illu {
  width: 19%;
  display: none;
  position: absolute;
  inset: -1% 13% auto auto;
}

.wtf_illustration {
  position: relative;
}

.tubax_image {
  width: 23%;
  position: absolute;
  inset: auto 10% -1% auto;
  transform: rotate(18deg);
}

.tubax_illu-trigger {
  position: absolute;
  inset: 10% 4% 10% 7%;
}

.heading_subtitel {
  text-align: center;
}

.is-flipped {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.booking_text_cta_box {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  display: flex;
}

.bookus_wrapper {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-block {
  font-family: Yellowtail, sans-serif;
  font-size: 10rem;
  line-height: 10rem;
}

.link-wrap {
  display: inline-block;
  overflow: hidden;
}

.link_underline {
  background-color: var(--schwarz);
  height: .15rem;
}

.bookus_image {
  width: 16.5rem;
}

.navbar {
  border-bottom: .4rem solid var(--schwarz);
  background-color: var(--eggshell);
  padding: .75rem 3rem .25rem;
  position: sticky;
  top: 0;
}

.wrapper_navbar {
  max-width: 72rem;
}

.nav-menu {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.navbar_link-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.navbar_link-wrap.is-hidden {
  display: none;
}

.navbar_link_underline {
  background-color: var(--schwarz);
  height: .15rem;
}

.menu_icon-line {
  background-color: var(--schwarz);
  width: 100%;
  height: .4rem;
  position: absolute;
}

.menu_icon_wrapper {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.navbar_link_box.is-hidden {
  display: none;
}

.heading {
  width: 100%;
}

.ham_nav_link_wrapper {
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.impressuim_holder {
  text-underline-offset: .25rem;
  align-self: center;
  font-size: 1rem;
  text-decoration: underline;
}

.impressum_link {
  color: var(--schwarz);
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--schwarz);
  text-decoration-color: var(--schwarz);
  width: 100%;
}

.impressum_content_wrapper {
  max-width: 39rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.is-background-eggshell {
  z-index: 1;
  background-color: var(--eggshell);
  height: 100%;
  min-height: 100svh;
  position: relative;
}

.impressum_text {
  width: 100%;
  font-size: 1.25rem;
}

.noise_overlay {
  z-index: 2000;
  opacity: .72;
  pointer-events: none;
  mix-blend-mode: hard-light;
  background-image: url('../images/noise_tile.png');
  background-position: 50% 0;
  background-size: 250px 250px;
  background-attachment: scroll;
  position: fixed;
  inset: 0%;
}

.code_sound {
  display: none;
}

.close_icon {
  position: static;
  inset: 5% 5% auto auto;
}

.navbar_impressum {
  border-bottom: .4rem none var(--schwarz);
  background-color: #0000;
  padding: 1rem 3rem .5rem;
  position: sticky;
  top: 0;
}

.wrapper_navbar_impressum {
  flex-flow: row-reverse;
  max-width: 72rem;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.accordion_ico_impressum {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.accordion_ico_impressum.impressum_close_icon {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  transform: rotate(45deg);
}

.text-span-2 {
  display: inline-block;
}

.image-2 {
  object-fit: scale-down;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: 94vh;
  overflow: visible;
}

.spotify_link-block {
  width: 5cqw;
  display: block;
}

.linkbox-spotify-footer {
  justify-content: center;
  align-items: center;
  width: 3rem;
  display: block;
}

.footer_window {
  height: 24rem;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 6rem;
    line-height: 6rem;
  }

  .navbar_link {
    text-align: center;
    font-size: 5rem;
    line-height: 5rem;
    position: static;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero_content-box {
    height: 80svh;
  }

  .section.has-bottom-double-padding {
    padding-bottom: 2rem;
  }

  .content-box.is-white-on-blue {
    padding-bottom: 3rem;
  }

  .content-box.is-white-on-blue.padding-bottom--8rem {
    padding-bottom: 1.5rem;
  }

  .content-box.is-red.is-hero-box {
    padding-top: .5rem;
    padding-bottom: .75rem;
  }

  .content-box.is-impressum {
    padding-top: 0;
  }

  .grid-text-wrapper {
    flex-flow: column;
    display: flex;
  }

  .navbar-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .anker-target {
    margin-top: -1rem;
  }

  .anker-target.is-booking {
    margin-top: 0;
  }

  .hero-heading {
    font-size: 20cqw;
  }

  .team_grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 32px 1fr;
  }

  .team-grid_star.is-hidden-on-tablet {
    display: none;
  }

  .image_cocktail {
    width: 80%;
    left: -55%;
  }

  .song_element {
    height: 5rem;
  }

  .grid_song {
    grid-column-gap: .6rem;
  }

  .song_popup {
    display: none;
  }

  .container_konzerte {
    overflow: visible;
  }

  .popup-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .popup-wrapper {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .accordion_icon-line.is-horizontal.is-black, .accordion_icon-line.is-black {
    height: .25rem;
  }

  .linkbox-spotify {
    width: 3rem;
  }

  .footer_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .linkbox_instagram {
    width: 3rem;
  }

  .song_initial_pos {
    height: 5rem;
  }

  .navbar {
    background-color: #0000;
    border-bottom-width: 0;
    padding-right: 1.5rem;
  }

  .wrapper_navbar {
    flex-flow: row;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }

  .nav-menu {
    z-index: 10;
    background-color: var(--eggshell);
    width: 100svw;
    height: 100vh;
    position: fixed;
    inset: 0% 0% auto;
  }

  .menu-button {
    z-index: 20;
    background-color: #fff0;
    padding: .5rem 0 .5rem 0;
  }

  .menu-button.w--open {
    z-index: 20;
    background-color: #0000;
  }

  .menu_icon-line {
    height: .25rem;
    position: absolute;
    inset: auto 0% 0%;
  }

  .menu_icon-line.is-line1 {
    inset: 0% 0% auto;
  }

  .menu_icon-line.is-line2 {
    opacity: 1;
    top: .633rem;
  }

  .menu_icon_wrapper {
    flex-flow: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
  }

  .menu_icon_wrapper.is-loading {
    opacity: 0;
    pointer-events: none;
  }

  .navbar_link_box.is-hidden {
    display: none;
  }

  .heading {
    width: 100%;
  }

  .ham_nav_link_wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 100svh;
    padding-top: 4rem;
    display: flex;
  }

  .navbar_impressum {
    border-bottom-width: .4rem;
    padding-right: 1.5rem;
  }

  .wrapper_navbar_impressum {
    flex-flow: row;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }

  .accordion_ico_impressum.impressum_close_icon {
    width: auto;
    height: 100%;
  }

  .link-block {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
  }

  .linkbox-spotify-footer {
    width: 3rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  h3 {
    font-size: 5rem;
    line-height: 5rem;
  }

  .page-wrapper {
    background-color: var(--eggshell);
  }

  .navbar_link {
    font-size: 5cqh;
    line-height: 5cqh;
  }

  .section_hero {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero_content-box {
    height: auto;
  }

  .is-eggshell {
    text-align: center;
  }

  .hero_image-holder {
    align-self: center;
    width: 95%;
    overflow: hidden;
  }

  .section {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .section.has-top-no-padding {
    padding-top: 0;
  }

  .section.has-bottom-double-padding {
    padding-bottom: 1rem;
  }

  .content-box.is-white-on-blue {
    padding-bottom: 1.5rem;
  }

  .content-box.is-white-on-blue.padding-bottom--8rem {
    padding-bottom: 1.75rem;
  }

  .content-box.is-red-on-white.container_border-bottom {
    padding: 1rem 1rem 0;
    overflow: hidden;
  }

  .content-box.is-red.is-hero-box {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .content-box.is-impressum {
    padding-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .surname {
    font-size: 2.25rem;
  }

  .sub-text.font-untertitel {
    padding-bottom: 1rem;
  }

  .anker-target {
    margin-top: -.5rem;
  }

  .star-small {
    width: 25px;
  }

  .star-big.is-flipped {
    width: 45px;
  }

  .team_grid {
    grid-column-gap: 4.6rem;
    grid-row-gap: 4.6rem;
    grid-template-columns: 1fr 1fr;
  }

  .team-grid_star, .team-grid_star.is-hidden-on-tablet {
    display: none;
  }

  .booking-wrapper {
    max-width: 100%;
  }

  .image_cocktail {
    width: 110%;
    top: auto;
    bottom: 2%;
    left: -80%;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .songtable-wrapper {
    border-bottom-style: none;
  }

  .song_element {
    height: 100%;
  }

  .box_artist {
    text-align: left;
    order: -9999;
    line-height: 1.25rem;
  }

  .box_toltitle {
    text-align: left;
    display: block;
  }

  .grid_song {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .song_line {
    justify-content: space-between;
    align-items: center;
    height: 6.4rem;
    padding-top: 0;
    display: flex;
  }

  .song_popup {
    display: none;
  }

  .song_item {
    height: auto;
  }

  .song_vinyl-trigger, .song_design {
    height: 6.4rem;
  }

  .faq-wrapper {
    padding-bottom: 1rem;
  }

  .image-konzerte {
    display: none;
  }

  .popup-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .popup-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .vinyl_image_holder {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .linkbox-spotify {
    width: auto;
  }

  .footer_component {
    height: 18rem;
    margin-top: 4rem;
    top: auto;
  }

  .footer_middle {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .icon_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .booking_text {
    text-align: center;
    max-width: 100%;
  }

  .song_initial_pos {
    height: 6.4rem;
  }

  .play_button_phone {
    flex-flow: column;
    order: 9999;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 2.4rem;
    line-height: 0%;
    display: block;
  }

  .booking_text_cta_box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .text-block {
    font-size: 6rem;
    line-height: 6rem;
  }

  .link-wrap {
    overflow: visible;
  }

  .link_underline {
    display: none;
  }

  .bookus_image {
    align-self: center;
    width: 65%;
  }

  .navbar {
    padding-right: 1rem;
  }

  .ham_nav_link_wrapper {
    grid-column-gap: 1cqh;
    grid-row-gap: 1cqh;
    height: 100svh;
    padding-top: 2rem;
  }

  .text-block-2 {
    text-align: left;
  }

  .div-block-7 {
    display: none;
  }

  .impressum_content_wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .impressum_text {
    font-size: 1.25rem;
  }

  .navbar_impressum {
    border-bottom-style: none;
    padding-right: 1rem;
  }

  .code-embed-3, .code-embed-4 {
    width: 2.5rem;
  }

  .spotify_link-block {
    width: 5cqw;
    height: auto;
  }

  .linkbox-spotify-footer {
    width: auto;
  }

  .footer_window {
    height: 18rem;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 3rem;
    line-height: 3rem;
  }

  h4 {
    font-size: 1rem;
  }

  .navbar_link {
    font-size: 4rem;
    line-height: 4rem;
  }

  .section_hero {
    padding-bottom: .125rem;
  }

  .padding-global {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .hero_content-box {
    flex-flow: column-reverse;
    height: 90svh;
    position: relative;
  }

  .is-eggshell {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .header_tag-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .header_tag-wrapper.is-eggshell {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .hero_image-holder {
    flex: 0 auto;
    align-self: center;
    height: auto;
    margin-bottom: 39px;
    overflow: visible;
  }

  .section {
    padding-top: .125rem;
    padding-bottom: .125rem;
  }

  .section.shop.is-display-none {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .section.has-top-no-padding {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .section.has-bottom-double-padding {
    padding-top: .125rem;
    padding-bottom: .25rem;
  }

  .content-box.is-white-on-blue {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    padding: 1rem 1rem 2.5rem;
  }

  .content-box.is-white-on-blue.padding-bottom--8rem {
    padding-bottom: .8rem;
  }

  .content-box.is-red-on-white.container_border-bottom {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding: 1rem 0 0;
  }

  .content-box.is-red.is-hero-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    order: -9999;
    padding: 1.5rem 1rem;
    position: static;
    inset: auto 0% 0%;
  }

  .content-box.is-impressum {
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid-text-wrapper {
    padding-top: 0;
  }

  .heading-component {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
  }

  .surname {
    font-size: 2rem;
  }

  .sub-text.font-untertitel {
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .anker-target {
    margin-top: -.125rem;
  }

  .star-small {
    width: 20px;
    line-height: 1rem;
  }

  .star-big.is-flipped {
    width: 30px;
    line-height: 1rem;
  }

  .heading-flex-center.is-eggshell {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .concert-container.background-color-eggshell {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    display: flex;
  }

  .concert-cell {
    color: var(--rot);
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.25rem;
    line-height: 1rem;
  }

  .concert-cell.is-datum-2 {
    order: -9999;
    line-height: 1rem;
  }

  .concert-cell.is-blue {
    color: var(--blau);
  }

  .heading-box.is-white-on-red {
    padding: 1rem .25rem;
  }

  .subtext-booking-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mail-button {
    font-size: 1rem;
  }

  .hero-heading {
    font-size: 23cqw;
  }

  .team_grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .team-grid_span {
    width: 80%;
  }

  .grid_booking {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-bottom-width: .2rem;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding: .5rem .25rem;
    display: flex;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .heading-style-h4.padding-bottom--5rem {
    font-size: 1.25rem;
  }

  .songtable-wrapper {
    border-bottom-style: none;
  }

  .box_originaltitle, .box_artist, .box_toltitle {
    font-size: 1rem;
    line-height: 1rem;
  }

  .grid_song {
    grid-column-gap: .3rem;
    grid-row-gap: .3rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .song_line {
    height: 5.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .song_popup {
    display: none;
  }

  .song_vinyl-trigger {
    height: 5.5rem;
  }

  .song_design {
    border-left-style: none;
    border-right-style: none;
    height: 5.5rem;
  }

  .concert_trigger {
    position: relative;
  }

  .concert_link {
    height: 100%;
    padding-bottom: 0;
    display: block;
  }

  .faq-wrapper {
    padding-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .container_konzerte {
    justify-content: space-between;
    align-items: stretch;
  }

  .image-konzerte {
    width: 25%;
    display: block;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .popup-container {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .popup-wrapper {
    max-width: none;
    margin-left: .5rem;
    margin-right: .5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .songinfo-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .vinyl_image_holder {
    max-width: 80cqw;
  }

  .accordion_element {
    padding-top: 1.5rem;
  }

  .accordion_trigger {
    padding-top: 0;
    padding-bottom: .25rem;
  }

  .accordion_titel {
    font-size: 1rem;
  }

  .accordion_icon {
    width: 1rem;
    height: 1rem;
  }

  .accordion_icon.popup_close_button {
    width: 1.5rem;
    height: 1.5rem;
  }

  .accordion_icon-line, .accordion_icon-line.is-horizontal.is-black, .accordion_icon-line.is-black {
    height: .25rem;
  }

  .image_konzerte-holder {
    width: 100%;
    top: 114px;
  }

  .image_tubax-holder {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .linkbox-spotify {
    line-height: 100%;
  }

  .footer_component {
    height: 15rem;
  }

  .footer_wrapper {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .booking_text {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .song_initial_pos {
    height: 5.5rem;
  }

  .popup_close {
    position: absolute;
  }

  .popup_closing-overlay {
    inset: 0%;
  }

  .play_button_phone {
    min-width: 2.4rem;
  }

  .song_title_cover {
    text-align: center;
    padding-bottom: 0;
    line-height: 1.25rem;
  }

  .heading_subtitel {
    line-height: 1.2rem;
  }

  .booking_text_cta_box {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block {
    font-size: 3rem;
    line-height: 3rem;
  }

  .link-wrap {
    overflow: visible;
  }

  .navbar {
    padding-right: 1rem;
  }

  .heading {
    font-size: 1rem;
  }

  .ham_nav_link_wrapper {
    height: 100dvh;
    padding-top: 5svh;
  }

  .antwort_faq, .impressum_link, .impressum_text {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .text-span {
    display: inline-block;
  }

  .navbar_impressum {
    padding-right: 1rem;
  }

  .accordion_ico_impressum {
    width: 1rem;
    height: 1rem;
  }

  .text-span-2 {
    display: inline-block;
  }

  .bold-text {
    font-size: 1.5rem;
  }

  .spotify_link-block {
    width: 10cqh;
  }

  .linkbox-spotify-footer {
    line-height: 100%;
  }

  .footer_window {
    height: 17rem;
  }
}

#w-node-_5428259d-5fb6-9784-911d-45a670cb7495-fa92e4f5 {
  place-self: auto;
}

#w-node-bfcb1eda-8f8f-9678-e16c-4bbb44815b3a-fa92e4f5 {
  align-self: center;
}

#w-node-_81ba6aad-1934-cca3-ae63-af02b6b6267e-fa92e4f5 {
  place-self: center;
}

#w-node-_59baf6bd-0317-d664-ce0d-454face88b19-fa92e4f5 {
  align-self: center;
}

#w-node-b8f1dfb1-f795-3f0b-b100-79146d7b5987-fa92e4f5 {
  place-self: center;
}

#w-node-_0b81c3be-2f55-cde5-589d-8c73cc60f77e-fa92e4f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6a102d7c-bfb9-3a57-df4a-8f13e725bfc8-fa92e4f5 {
  place-self: center;
}

#w-node-_6d5ac42a-48ba-c499-8f97-047c40673e44-fa92e4f5 {
  align-self: center;
}


