/*	Author: Sascha Milivojevic (info@hey-sascha.de):
   
		------------------------------------------------------
   
		Ronald Kolb v1 stylesheet
  
		----------------------------------------------------*/
		
/*	CSS Imports
  
		----------------------------------------------------
*/
@import url('fonts/fonts.css');

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

::selection {
    color: #FFF;
    background: #000;
    text-shadow: none;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;}
    
div img, figure img {
  max-width: 100%;
  width: auto\9; /* ie8 */} 

 
/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --font-family-body: 'Karla', sans serif; /* für Überschriften */
  --font-color: #000000;
  --weiss: #ffffff;
  --mint: #cdffcc;
  --beige: #fef5e6;
  --blassblau: #e9f6fe;
  --rot: #ff121f;
  --petrol: #05a098;
}

.bg-weiss { background-color: var( --weiss); }
.bg-mint { background-color: var( --mint); }
.bg-beige { background-color: var( --beige); }
.bg-blassblau { background-color: var( --blassblau); }
.headline.petrol { color:var( --petrol); }
.headline.rot { color:var( --rot); }
/* ==========================================================================
   Flex Layout
   ========================================================================== */
.flex-row, .flex-column, .flex-row-reverse, .flex-column-reverse { display: flex; flex-wrap: wrap; }   
.flex-row { flex-direction: row; }
.flex-row-reverse  { flex-direction: row-reverse; }
.flex-column { flex-direction: column; }


/* 
 justify-content
 This defines the alignment along the main axis. -> horizontal zueinander
 justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right
*/
.j-center { justify-content: center; }
.j-start { justify-content: flex-start; }
.j-end { justify-content: flex-end; }
.j-between { justify-content: space-between; }
.j-evenly { justify-content: space-evenly; }
.j-around { justify-content: space-around; }

/*
This defines the default behavior for how flex items are laid out along the cross axis on the current line. -> zueinander in der gleichen Zeile/Spalte bei unterschiedlicher ContainerhÃƒÆ’Ã‚Â¶he
  align-items: stretch | flex-start | flex-end | center | baseline | first baseline | last baseline 
*/

.ai-stretch { align-items: stretch; }
.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.ai-baseline { align-items: baseline; }

/* 
 align-content
This aligns a flex container's lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis.
  align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline 
*/
.ac-stretch { align-content: stretch; }
.ac-center { align-content: center; }
.ac-start { align-content: flex-start; }
.ac-end { align-content: flex-end; }
.ac-baseline { align-content: baseline; }
.ac-between { align-content: space-between; }
.ac-evenly { align-content: space-evenly; }
.ac-around { align-content: space-around; }
.text-wrap, .kalender { width: 100%; padding: 0 15px; }
.about-img { width: 100%; }
.about-img .item {}
.wrapper.abstand { padding: 80px 40px 0 40px;}
.w100 { width: 100%;}
.w100.grid-4columns { padding-bottom: 40px; }
.w80 { width: 80%;}
.w50 { width: 50%; }


.w40 { width: 40%; }
.w30 { width: 30%;  }
.w20 { width: 20%;  }

figure { padding: 0; margin: 0 auto 20px auto; text-align: center;}
figcaption { padding-top: 5px; margin: 0; }
@media screen and (max-width: 1380px) {

}
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 820px) {
.w50 { width: 100%; }
}
@media screen and (max-width: 680px) {

}
.nopointer { pointer-events: none; }
/* ==========================================================================
    GRID LAYOUT
   ========================================================================== */
.grid-2columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}    
.grid-3columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}
.wrapper.grid-3columns, .wrapper.grid-2columns { margin-bottom: 10px;}
.grid-4columns { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;}
.grid-4columns-masonry { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: masonry; 
    grid-column-gap: 40px;
    grid-row-gap: 60px;}
.grid-6columns { 
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;} 
.grid-3columns .grid-item.wide { grid-column: 2 / 4;  }
.grid-3columns .grid-item.high img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;}

@media screen and (max-width: 780px) {
.grid-3columns {grid-template-columns: repeat(2, 1fr); }
.wann.grid-3columns {grid-template-columns: repeat(3, 1fr); }
} 
@media screen and (max-width: 680px) {
.grid-2columns {grid-template-columns: repeat(1, 1fr); }
}
@media screen and (max-width: 580px) {
.artists .grid-3columns {grid-template-columns: repeat(1, 1fr); }    
} 
/* ==========================================================================
   HTML BODY BASICS
   ========================================================================== */
html, body {
    margin: 0 !important;
    padding: 0 !important;}
/* 
@media screen and (max-width: 780px) {
html, body {
  position: relative;
  overflow-x:hidden;}
}

@supports (-webkit-overflow-scrolling: touch) {
html, body {
  position: relative;
  overflow-x:hidden;} 
}
*/  
body {
    overflow-x: hidden; 
    font-family: var(--font-family-body);
    font-weight: 400;
    color: var(--font-color); } 
strong {font-weight: 700;}
hr { 
    height: 1px;
    margin-bottom: 7px;
    background: #000;
    font-size: 0;
    border: 0;
}
i, em, q, blockquote, cite { font-family: var(--font-family-body); font-style: normal;}
/* ==========================================================================
   FONT COLORS
   ========================================================================== */
p, h1, h2, h4, h5, h6 { color: var(--font-color); }
.news h3{ color: var( --rot); }
a { color: var(--schwarz); cursor: pointer; text-decoration: underline;}
.listing a { text-decoration: none; display: block; width: 100%;}
.listing a:hover { color: var(--rot);}
.pagination a { color: var(--font-color); }
/*
.cta-button { display: inline-block; padding: 10px 40px; text-align: center; font-weight: 400; border: 1px solid var(--schwarz); color: var(--rot);  font-family: var(--font-family-body);}
*/


/* ==========================================================================
   LINK BASICS
   ========================================================================== */    
p a, ul li a { color: var(--font-color); text-decoration: underline; position: relative;}
h1 a { color: var(--font-color); text-decoration: none !important; }
ul { padding: 0; }
ul li { list-style-type: disc;}
nav ul li a{ color: var(--schwarz); text-decoration: none; }
.list a:hover, nav ul li a:hover, nav ul li.active a, footer ul li a { color: var(--rot); }
footer ul li a { text-decoration: none;}
/* ==========================================================================
   FONT SIZES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {  width: 100%; }  
h1, h2 { font-size: 20px; line-height: 23px; color: var(--font-color); }
h1 { font-weight: 800;}
h2 { padding-bottom: 25px; margin:0; }
.upcoming h2, .outnow h2 {border-bottom: 1px solid var(--font-color);}
.detail .w100 h2 { color: var(--rot); }
.headline {font-size: 32px; line-height: 1.25em; font-weight: 700;}
.left .headline { padding-left: 15%; margin: 100px 0; }
.right .headline { padding-right: 15%; margin: 100px 0; text-align: right; }
h2, h3, h4 {font-weight: 700; }
h3, h4 { font-size: 16px; line-height: 1.25em; margin:0; }
p { font-weight: 400; font-size: 16px; line-height: 1.25em; color: var(--font-color); margin: 0 0 1.25em 0 }
article p { margin: 0;}
.list, .quote-wrapper p { font-size: 20px; line-height: 1.25em;}
.list { margin-right: 60px;}
.inline {width: 100%; padding: 20px 0; border-bottom: 1px solid var(--font-color);}
blockquote { font-size: 32px; line-height: 1.25em; font-weight: 400; margin: 0 0 40px 0; padding: 0;}
figcaption { font-size: 16px; line-height: 1.25em; font-weight: 400; text-align: left; }
.start figcaption { font-size: 20px; }
nav ul.nav > li { font-size: 20px; line-height: 1.5em; font-weight: 700;}
nav ul.subnav > li { font-size: 20px; line-height: 1em; font-weight: 400;} 
nav ul.nav > li.active a, nav ul.nav > li.parent a { color: var(--rot); } 

@media screen and (min-width: 1300px) {
h1, h2 { font-size: 22px; line-height: 25px; }
.headline {font-size: 34px; }
h3, h4, p { font-size: 18px; width: 100%; max-width: 600px; }
.list, .quote-wrapper p { font-size: 22px; }
blockquote { font-size: 34px; }
figcaption { font-size: 18px; }
.start figcaption { font-size: 22px;  }
nav ul.nav > li { font-size: 22px; }
nav ul.subnav > li { font-size: 22px;} 
}

@media screen and (max-width: 820px) {
.left .headline { margin: 50px 0; }
blockquote { font-size: 24px;}
.list { margin-right: 0px; width: 100%; margin-bottom: 5px;}
h1 { font-size: 22px; line-height: 25px;}
h2 { font-size: 19px; line-height: 22px; }
.list, .quote-wrapper p { font-size: 19px; }
nav ul.nav > li { font-size: 19px; }
nav ul.subnav > li { font-size: 19px;} 
}




/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav { 
    width: 100%;}

nav ul li, nav ul { list-style: none; }
nav ul.nav { margin-bottom: 30px; margin-top: 0;;}
nav ul.subnav > li { border: 1px solid var(--font-color); border-radius: 10px; padding: 6px; margin-left: 20px; background-color: var(--weiss);} 
nav ul.nav > li { margin-right: 40px; }
@media screen and (max-width: 600px) {

}

nav ul > li.is-checked, .tablinks.active  { font-weight: 400;}

@media screen and (max-width: 820px) {
nav ul.nav { margin-bottom: 30px; margin-top: 0;}
nav ul.subnav > li, nav ul.nav > li { margin-bottom: 10px; } 
nav ul.subnav { margin-bottom: 6px;}
nav ul.subnav > li { margin-left: 15px;}
nav ul.nav > li { background-color: var(--font-color); border-radius: 10px; padding: 10px; margin-right: 15px; line-height: 1em; font-weight: 400;} 
nav ul.nav > li a { color: var(--weiss);} 
nav ul.nav > li.active { background-color: var(--rot); } 
nav ul.nav > li.active a { color: var(--weiss); } 
}

/* ==========================================================================
    HEADER
   ========================================================================== */
header { margin-top: 20px; margin-bottom: 60px; padding: 0;}

@media screen and (max-width:820px) { 
header { margin-top: 30px; margin-bottom: 20px; padding: 0;}
}   
/* ==========================================================================
   SECTIONS
   ========================================================================== */
.page { width: 100%; max-width: 1600px; padding: 0 25px; margin: 0 auto; }
section  {  margin: 0 auto 60px auto; padding: 0; width: 100%; }
.upcoming, .outnow { padding: 40px 35px;}
.left { padding-right: 35px;}
.right { padding-left: 35px;}
article { padding: 25px 0; border-bottom: 1px solid var(--font-color); }
.quote-wrapper { width: 66%; padding: 40px 35px; }
@media screen and (max-width: 820px) {
.page { padding: 0 10px; }
.left { padding-right: 0;}
.right { padding-left: 0;}
.upcoming, .outnow { padding: 25px 10px;}
.quote-wrapper { width: 100%; padding: 25px 10px; }
}

/* ==========================================================================
    Footer
   ========================================================================== */
footer { width: 100%; padding: 0px;}
footer .abgerundet a { white-space: nowrap;}
.background { position: fixed; left: 0; top: 0; width: 100%; height: 100vh; z-index: -1;}



/* ==========================================================================
   Position
   ========================================================================== */

.relative, .wrapper.relative { position: relative; }
.sticky { position: -webkit-sticky; position: sticky; top: 20px; }
.sticky2 { position: -webkit-sticky; position: sticky; top: 140px; }
.fixed { position: fixed; }
.absolute { position: absolute;}
img.alignleft { margin: 10px 30px 10px 0; }
img.alignright { margin: 10px 0 10px 30px; }
header.scrolled { visibility: hidden; top: -300px;}
nav.scrolled { visibility: visible; top: 0;}
@media screen and (max-width: 1780px) { 
.sticky2 { top: 130px; }
}
@media screen and (max-width: 1580px) { 
.sticky2 { top: 120px; }
}
@media screen and (max-width: 1380px) {
.sticky2 { top: 110px; }
}
@media screen and (max-width: 1180px) {
.sticky2 { top: 100px; }
}
@media screen and (max-width: 1023px) {
.sticky2 { top: 86px; }
}
section.imprint { border-bottom: 20px solid var(--rot);}
@media screen and (max-width: 1380px) { 
section.imprint { padding-left: 120px; }
}
@media screen and (max-width: 1023px) { 
section.imprint { padding-left: 20px; padding-top: 200px;}
}
