@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeuil.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeuisl.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeui.ttf') format('truetype');
    font-weight: 500;
}  
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/seguisb.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeuib.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/seguibl.ttf') format('truetype');
    font-weight: 800;
}
   
:root {
    --red-color: #C70039;
    --grey-color: #333333;

    --bg-color-grey: #F0F0F0;

    --font-main: 'Segoe UI';

    --section-gap: 50px;
    --p-gap: 30px;
  }

/*-------------------------------------
 GLOBAL
-------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white-color);
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    position: relative;
    background-color: #fff;
    overflow-x: hidden;
}

.bg_grey {
    background-color: var(--bg-color-grey);
}

.block_max, .block_min, .block_ultra {
    max-width: 940px;
    margin: 0 auto;
    /* padding-bottom: 50px; */
}

.block_ultra {
    max-width: 1820px;
}

.block_min {
    max-width: 620px;
}

h1, h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;  
    line-height: 1.1;
}

h2 {
    font-weight: 500;
}

h3 {
    font-weight: 700;
    font-size: 16px;
}

p.subline {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}
p.subline.orientiert {
    font-weight: 600;
    margin-bottom: 20px;
}

p, input, label,
#formular .counter_wrapper,
#kontakt textarea {
    font-size: 16px;
    line-height: 1.3;
    color: var(--grey-color);
}

ul {
    list-style-type: none;
}

li {
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

strong {
    font-weight: 700;
}

section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.desktop_only {
    display: block;
}
.mobile_only {
    display: none;
}

@media (max-width:1000px) {
    .padding_content {
        padding-inline: 20px;
    }
}

@media (max-width:550px) {
    .desktop_only {
        display: none;
    }
    .mobile_only {
        display: block;
    }
    h2 {
        font-size: 36px;
        font-weight: 400;
        line-height: 120%; /* 36px */
    }
}


/*-------------------------------------
 NAV
-------------------------------------*/
nav {
    /* position: fixed; */
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px;
    color: #fff;
    gap: 20px;
    z-index: 11;
}

/* nav.kompakt {
    color: #000;
    position: fixed;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
}

nav.kompakt.open {
    transform: translateY(0);
} */

/* nav.kompakt svg {
    max-width: 160px;
    height: 60px;
}
nav.kompakt svg > * {
    fill: #000;
} */

nav ul {
    display: flex;
    gap: 35px;
    height: 100%;
    align-items: center;
}

nav li {
    cursor: pointer;
    text-transform: uppercase;
}

nav li.buy {
    text-transform: none;
    font-weight: 600;
    padding: 10px 25px;
    background-color: var(--red-color);
    border-radius: 60px;
    color: #fff;
    transition: transform .1s ease-in-out;
}

nav li:hover {
    transform: scale(1.05);
}

nav li.focus {
    font-weight: 700;
}

nav .burger_menu {
    display: none;
}

nav .burger_menu img {
    width: 100%;
    max-width: 80px;
}


nav .logo.black,
nav.active .logo.white,
nav.scrolled .logo.white,
nav .burger_menu .burger_open.black,
nav.scrolled .burger_menu .burger_open {
    display: none;
}

nav.active .logo.black,
nav.scrolled .logo.black,
nav.scrolled .burger_menu .burger_open.black {
    display: block;
}

body.prevent_scroll {
    /* overflow-y: hidden; */
}

@media (max-width:1200px) {
    nav .logo {
        position: relative;
        height: 105px;
        width: 240px;
        z-index: 2;
    }
}

@media (max-width:1090px) {
    nav {
        padding-left: 10px;
        padding-right: 16px;
    }
    nav ul {
        display: none;
    }

    nav.active ul {
        display: flex;
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #fff;
        color: #000;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 250px;
        gap: 15px 35px;
    }

    nav.active li {
        font-size: 22px;
    }

    nav.active li.buy {
        font-size: 16px;
        padding: 15px;
        border-radius: 15px;
        /* max-width: 500px; */
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }


    nav .burger_menu,
    nav .burger_menu .burger_open,
    nav.active .burger_menu .burger_close {
        position: relative;
        display: block;
    }
    nav .burger_menu > * {
        display: none;
        cursor: pointer;
    }
    nav.active .burger_menu .burger_open,
    nav.active .burger_menu .burger_open.black {
        display: none;
    }
}

@media (max-width:440px) {
    nav.active ul {
        padding-right: 20px;
        padding-left: 20px;
    }
    nav .logo {
        height: 65px;
        width: 160px;
    }
}

/*-------------------------------------
 HEADER
-------------------------------------*/

header {
    position: relative;
    height: 820px;
    background-color: #000;
}

header .bg_container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1820px;
    background: url(./images/header/Header1.jpg);
    background-color: #000;
    background-position: center left 41%;
    background-size: cover;
    color: #fff;
    padding-bottom: 60px;
    margin-inline: auto;
    overflow: hidden;
}

header .bg_container::before,
header .bg_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%); 
    opacity: 0.5;
}


header .bg_container::after {
    content: "";
    top: auto;
    bottom: 0;
    background: linear-gradient(00deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%); 

}

header .bg_container > div:not(.video_bg) {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
    z-index: 3;
}

header video {
    position: absolute;
    top: 0;
    width: min(100%,1800px);
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center top;
    z-index: 2;
}

header .video_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

header p.subline {
    margin-inline: auto;
}

button.cta {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--red-color);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 15px;
    width: 100%;
    max-width: 490px;
    cursor: pointer;
    transition: transform .1s ease-in-out;
}

button.cta:hover {
    transform: scale(1.05);
}



@media (max-width:1360px) {
    header video {
        width: min(300%,1370px);
    }
}

@media (max-width:550px) {
    header video {
        width: min(300%,1370px);
    }
    header h1 {
        font-size: 30px;
        font-weight: 600;
        line-height: 120%; /* 36px */
    }
    header p.subline {
        font-size: 16px;
        max-width: 100%;
    }
    button.cta {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/*-------------------------------------
 INTRO
-------------------------------------*/

#intro p:has(+ p) {
    margin-bottom: var(--p-gap);
}

#intro p:has(+ img) {
    margin-bottom: 20px;
    text-align: center;
}

#intro img {
    margin-inline: auto;
}

#intro .koop_partner_logo {
    max-width: 350px;
    max-height: 75px;
}

#intro .koop_partner_logo:not(:last-of-type){
    margin-bottom: 40px;
}

@media (max-width:550px) {
    #intro img {
        max-width: 290px;
    }
}

/*-------------------------------------
 SPEAKER
-------------------------------------*/

#speaker {
    padding-bottom: 80px;
}

#speaker .text_wrapper {
    padding-bottom: var(--section-gap);
}

#speaker .text_wrapper p:has(+ p) {
    margin-bottom: var(--p-gap);
}

#speaker .text_wrapper p:last-child {
    font-weight: 600;
}

#speaker .kacheln_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

#speaker .kachel_wrapper:hover figure ul {
    opacity: 1;
}

#speaker .kachel_wrapper figure {
    position: relative;
    border-radius: 15px;
    background: url(./images/speaker/Placeholder.jpg);
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    height: 300px;
    transition: transform .1s ease-in-out;
}

#speaker .kachel_wrapper figure:hover {
    transform: scale(1.04);
}

/* #speaker .kachel_wrapper:nth-child(2) figure {
    background: url(./images/speaker/Placeholder.jpg);
} */

#speaker .kachel_wrapper:nth-child(1) figure {
    background: url(./images/speaker/Susanna_Eibner.jpg);
}

/* #speaker .kachel_wrapper:nth-child(2) figure {
    background: url(./images/speaker/Thomas_Lindner.jpg);
} */

#speaker .kachel_wrapper:nth-child(2) figure {
    background: url(./images/speaker/Ben_Ballensiefen.jpg);
}

#speaker .kachel_wrapper:nth-child(3) figure {
    background: url(./images/speaker/Speaker_Dohman.jpg);
}
#speaker .kachel_wrapper:nth-child(4) figure {
    background: url(./images/speaker/Anne_Junge.jpg);
}
/* #speaker .kachel_wrapper:nth-child(6) figure {
    background: url(./images/speaker/Placeholder.jpg);
} */
#speaker .kachel_wrapper:nth-child(5) figure {
    background: url(./images/speaker/Hanns_Kronenberg.jpg);
}

#speaker .kachel_wrapper:nth-child(6) figure {
    background: url(./images/speaker/Paula_Menninghaus.jpg);
}
#speaker .kachel_wrapper:nth-child(7) figure {
    background: url(./images/speaker/Jonas_Noureddine.jpg);
}
#speaker .kachel_wrapper:nth-child(8) figure {
    background: url(./images/speaker/Jens_Paschmann.jpg);
}
#speaker .kachel_wrapper:nth-child(9) figure {
    background: url(./images/speaker/Jesko_Perrey.jpg);
}
#speaker .kachel_wrapper:nth-child(10) figure {
    background: url(./images/speaker/Thorsten_Wiesel.jpg);
}
#speaker .kachel_wrapper:nth-child(11) figure {
    background: url(./images/speaker/Ben_Ellermann.jpg);
}
#speaker .kachel_wrapper:nth-child(12) figure {
    background: url(./images/speaker/Daniel_Stroh.jpg);
}
#speaker .kachel_wrapper:nth-child(13) figure {
    background: url(./images/speaker/Christina_Fiege.jpg);
}
#speaker .kachel_wrapper:nth-child(14) figure {
    background: url(./images/speaker/Volker_Meise.jpg);
}

#speaker .kachel_wrapper figure ul {
    opacity: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 30px;
    background-color: #000000ab;
    border-radius: 15px;
    transition: opacity 0.15s ease-in-out;
}

#speaker .kachel_wrapper .name {
    margin: 25px 0;
    font-weight: 700;
    font-size: 16px;
}

#speaker .kachel_wrapper .bio {
    margin-bottom: 15px;
}

#speaker .kachel_wrapper .bio div {
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
}

#speaker .kachel_wrapper a {
    position: relative;
    color: var(--red-color);
    font-weight: 700;
}

#speaker .kachel_wrapper a::before {
    content: "";
    border-style: solid;
    border-width: 0px 5px 7px 5px;
    border-color: transparent transparent var(--red-color) transparent;
    transform: rotate(90deg);
    display: inline-block;
    margin-bottom: 2px;
}

@media (max-width:1024px) {
    #speaker {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #speaker .kacheln_container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px 10px;
        max-width: 800px;
        box-sizing: border-box;
    }
    #speaker .kachel_wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}
@media (max-width:550px) {
    #speaker .kacheln_container {
        grid-template-columns: repeat(1, 1fr);
        display: flex;
        gap: 0px;
        width: 100%;
        box-sizing: content-box;
    }
    #speaker .kachel_wrapper {
        max-width: inherit;
        max-width: inherit;
    }
}

/*-------------------------------------
 LOGO LOOP
-------------------------------------*/

#logo_loop {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    pointer-events: none;
}

#logo_loop .swiper-container-free-mode > .swiper-wrapper{
    transition-timing-function : linear;
    align-items: center;
    
}

#logo_loop img.swiper-slide {
    /* width: 100px; */
    height: 100px;
    object-fit: contain;
}
  
#logo_loop img.swiper-slide.syte {
    height: 50px;
}
#logo_loop img.swiper-slide.birdsonmArs {
    height: 70px;
}

#logo_loop img.swiper-slide.vw {
    height: 80px;
    transform: scale(1.1);
}


/*-------------------------------------
 VERANSTALTUNG
-------------------------------------*/

#veranstaltung {
    position: relative;
    padding-top: 0;
}

#veranstaltung .top_part {
    padding-top: 0;
    padding-bottom: 0;
    position: inherit !important;
    top: 0 !important;
    transform: none !important;
}

#veranstaltung .bottom_part {
    position: relative;
    padding-top: 0;
    background-color: #fff;  
}

#veranstaltung .parallax_container {
    background-color: #000;
}

#veranstaltung .bg_container {
    height: 450px;
    background: url(./images/galerie/Header_Location.jpg);
    background-position: top center;
    background-position-y: 30%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1800px;
    margin-inline: auto;
}

#veranstaltung .information_container {
    padding-top: var(--section-gap);
}

#veranstaltung h2 {
    margin-bottom: 50px;
}

#veranstaltung .information_content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: var(--section-gap);
}

#veranstaltung .text_wrapper {
    width: 44%;
}

#veranstaltung .text_wrapper > *:has(+ *) {
    margin-bottom: 20px;
}

#veranstaltung .swiper_galerie {
    width: 100%;
    height: 100%;
    position: relative;
  }

#veranstaltung .swiper_galerie .swiper-slide {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 370px;
    /* width: 100%; */
    border-radius: 20px;
}

#veranstaltung .swiper_galerie .swiper-slide.galerie_1 {
    background: url(./images/galerie/Galerie01.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_2 {
    background: url(./images/galerie/Galerie02.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_3 {
    background: url(./images/galerie/Galerie03.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_4 {
    background: url(./images/galerie/Galerie04.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_5 {
    background: url(./images/galerie/Galerie05.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_6 {
    background: url(./images/galerie/Galerie06.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_7 {
    background: url(./images/galerie/Galerie07.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_8 {
    background: url(./images/galerie/Galerie08.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_9 {
    background: url(./images/galerie/Galerie09.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_10 {
    background: url(./images/galerie/Galerie10.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_11 {
    background: url(./images/galerie/Galerie11.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_12 {
    background: url(./images/galerie/Galerie12.jpg);
}
#veranstaltung .swiper_galerie .swiper-slide.galerie_13 {
    background: url(./images/galerie/A2amSee.jpg);
}

#veranstaltung .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#veranstaltung .swiper-button-next,
#veranstaltung .swiper-button-prev {
    color: var(--red-color);
    background-color: #fff;
    padding: 40px;
    border-radius: 50%;
    border: none;
    margin-top: -50px;
}

#veranstaltung .swiper-button-next {
    right: 40px;
  }
#veranstaltung .swiper-button-prev {
    left: 40px;
}

@media (max-width:900px) {
    #veranstaltung .bg_container {
        height: 360px;
        background-size: 150%;
    }
}

@media (max-width:700px) {
    #veranstaltung .swiper-button-next,
    #veranstaltung .swiper-button-prev {
        display: none;
    }
}

@media (max-width:550px) {
    #veranstaltung .bg_container {
        height: 310px;
        background-size: 200%;
    }

    #veranstaltung .information_content {
        flex-direction: column;
    }
    #veranstaltung .text_wrapper {
        width: 100%;
    }
    #veranstaltung h2 {
        margin-bottom: 30px;
    }
}

/*-------------------------------------
 ABLAUF
-------------------------------------*/

#ablauf h2 {
    margin-bottom: 50px;
}

#ablauf .ablauf_wrapper {
    border-top: 1px #D9D9D9 solid;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#ablauf .ablauf_wrapper:last-child {
    border-bottom: 1px #D9D9D9 solid;
}

#ablauf .ablauf_wrapper span:nth-child(1) {
    font-weight: 800;
    font-size: 40px;
    margin-right: 100px;
    line-height: 1;
    width: 102px;
}
#ablauf .ablauf_wrapper span:nth-child(1) small {
    font-size: 25px;
    font-weight: 500;
}

#ablauf .ablauf_wrapper span:nth-child(2):has(+ span) {
    margin-right: 250px;
}

#ablauf .ablauf_wrapper span:not(:nth-child(1)) {
    font-size: 22px;
}

#ablauf .ablauf_wrapper .overline {
    color: #C70039;
    font-size: 15px;
    font-weight: 900;
    line-height: 120%;
    margin-bottom: 8px;
}
#ablauf .ablauf_wrapper .headerline {
    color: #333;
    font-family: "Segoe UI";
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 8px;
}
#ablauf .ablauf_wrapper .sub_text {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
}

#ablauf a button {
    margin-top: 30px;
}

#ablauf .ablauf_wrapper .sub_text:has(+ .sub_text) {
    margin-bottom: 4px;
}

@media (max-width:900px) {
    #ablauf .ablauf_wrapper span:nth-child(2):has(+ span) {
        margin-right: 90px;
    }
}

@media (max-width:675px) {
    #ablauf .ablauf_wrapper span:nth-child(1){
        font-size: 22px;
        margin-right: 40px;
        width: 57px;
    }
    #ablauf .ablauf_wrapper span:not(:nth-child(1)) {
        font-size: 15px;
    }
    #ablauf .ablauf_wrapper .headerline {
        font-size: 18px;
    }
}

@media (max-width:550px) {
    #ablauf .ablauf_wrapper span:nth-child(2):has(+ span) {
        margin-right: 0;
    }
    #ablauf .ablauf_wrapper span:nth-child(1){
        margin-right: 20px;
    }
}

/*-------------------------------------
 GOOGLE MAPS
-------------------------------------*/

#google_maps {
    padding-top: 25px;
    padding-bottom: 25px;
}

#google_maps #map {
    /* height: 600px; */
    height: 400px;
    width: 100%;
}

/*-------------------------------------
 FAQ
-------------------------------------*/

#faq {
    padding-bottom: 200px;
}

#faq h2 {
    margin-bottom: 50px;
}

#faq .faq_wrapper {
    position: relative;
    border-top: 1px #D9D9D9 solid;
    padding-top: 15px;
    padding-bottom: 15px;
}

#faq .faq_wrapper:last-child {
    border-bottom: 1px #D9D9D9 solid;
}

#faq .faq_wrapper > p {
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    padding-right: 60px;
}

#faq .faq_wrapper .arrow {
    content: '';
    display: block;
    position: absolute;
    right: 35px;
    top: 26px;
    transform: translateY(-50%) rotate(135deg);
    width: 12px;
    height: 12px;
    border: solid var(--grey-color);
    border-width: 3px 3px 0 0;
    pointer-events: none;
}

#faq .faq_wrapper .faq_slide_text {
    max-width: 800px;
    margin-top: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 1px;
}

#faq .faq_wrapper .faq_slide_text p:has(+ p) {
    margin-bottom: var(--p-gap);
}

#faq .faq_wrapper .faq_slide_text p:has(> strong) {
    margin-bottom: 15px;
}

#faq .faq_wrapper a {
    text-decoration: underline;
    color: var(--red-color);
}

@media (max-width:550px) {
    #faq .faq_wrapper > p {
        font-size: 17px;
    }
}

/*-------------------------------------
 TICKETS
-------------------------------------*/

#tickets {
    position: relative;
    padding-bottom: 220px;
    background-color: #000;
}

#tickets .bg_container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    max-width: 1800px;
    background: url(./images/footer/ticket_bg.jpg);
    background-position: top center;
    background-position-y: 0;
    background-size: 120%;
    background-repeat: no-repeat;
}

#tickets .tickets_container {
    position: relative;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    margin-top: -130px;
    background-color: #fff;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px -3px 13px -3px #00000027;
}

#tickets .stoerer {
    position: absolute;
    top: 6px;
    right: 50px;
    z-index: 1;
}

#tickets h3 {
    font-size: 30px;
    font-weight: 400;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 15px 15px 0 0 ;
}

#tickets .text_wrapper {
    position: relative;
    padding: 45px 0;
    padding-inline: 20px;
}

#tickets .text_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.00) 100%);
    mix-blend-mode: multiply;
}

#tickets .text_wrapper h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

#tickets .text_wrapper p.subline {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 26px;
    color: var(--grey-color);
}

#tickets .text_wrapper button {
    margin-bottom: 15px;
    max-width: 450px;
}

#tickets .text_wrapper .extern_link {
    color: var(--red-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 20px;
}

#tickets .text_wrapper .wrapper {
    max-width: 410px;
    margin: 0 auto;
}

#tickets .text_wrapper ul {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

#tickets .text_wrapper li {
    font-size: 16px;
}

@media (max-width:1360px) {
    #tickets .bg_container {
        background-size: 200%;
    }
}
@media (max-width:840px) {
    #tickets .stoerer {
        top: -34px;
    }
    #tickets .bg_container {
        background-size: cover;
    }
}
@media (max-width:550px) {
    #tickets .stoerer {
        max-width: 120px;
        width: 100%;
        right: 20px;
    }
    #tickets h3 {
        text-align: start;
        padding-left: 25px;
    }
    #tickets .text_wrapper h4 {
        font-size: 21px;
    }
    #tickets .text_wrapper p.subline {
        font-size: 16px;
    }
    button.cta {
        font-size: 15px;
    }
    #tickets .text_wrapper ul {
        flex-direction: column;
        gap: 5px 10px;
    }
}


/*-------------------------------------
 FOOTER
-------------------------------------*/

footer {
    position: relative;
    padding-bottom: 120px;
    background-color: #16191B;
    text-align: center;
}

footer .connect_container {
    padding-top: 40px;
    padding-bottom: 40px;
}
footer .connect_container > * {
    margin: 0 auto;
}

footer .connect_container h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

footer .connect_container ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

footer .text_wrapper {
    position: relative;
    padding-top: 50px;
}
footer .text_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.00) 100%);
    mix-blend-mode: multiply;
}

footer .text_wrapper li {
    color: #fff;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 400;
}

footer .text_wrapper li.gap {
    margin-bottom: 20px;
}

footer .text_wrapper li a{
    text-decoration: underline;
}

.link {
    color: var(--red-color);
    text-decoration: underline;
}