:root {


    --sand: #faf7f0;;
    --red: black;
    --green: black;
    --blue: black;
    --yellow: #fffb00;
/*
    --red: rgb(215, 16, 79);

    --sand: #faf7f0;;
    --red: #a62911; 
    --green: #668071;
    --blue: #3d6ea6;


*/
}

*,
*:after,
*:before {
    padding: 0;
    margin: 0; 
    box-sizing: border-box;
}
a {
    color: var(--blue);
    text-decoration: underline;
}
html {
    font-family: Helvetica, 'Goede Light 60', Arial, 'FL Grotesk 0005', sans-serif, 'Rike Mono 011', 'Takker 1.38', Work Sans;
    font-weight: Regular 92 Narrow;
    font-size: 22px;
/*    letter-spacing: 00.025rem; */
    line-height: 0;
/*    color: #2971c3; */
    color: var(--red);
}

body{
    width: 100%;
    height: 100%;
    display: grid;       
    grid-template-columns: 20% auto;

}

.big {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.25rem;
}

@media screen and (max-width: 600px) {
    .big {
        font-size: 1.5rem; 
        line-height: 1.75rem;

    }
}


h1, h2, h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    position: relative;
    z-index: 20;

}

h2 {
    margin: 1.5rem 0;
/*    font-family: 'Goede Light 60'; */
}

.custom-heading {
    margin-top: 3rem;
}

p, a {
    font-size: 1rem;
/*    font-weight: bold; */
    line-height: 1.5rem;
}
p {
    margin-bottom: 1.5rem;
    display:block;
}

li {
    list-style: disc;
    line-height: 1.5rem;
}


ol li {
    list-style: disc;
    line-height: 1.5rem;
    margin-left: 1rem;
    padding-left: 0.5rem;
}

li:last-child {
    margin-bottom: 1.5rem;
}

.sub ul li:last-child,
footer ul li:last-child {
    margin-bottom: 0;
}


.gallery {
    position: relative;
    max-width: 100%;
    height: calc(100vw / 3);
    display: flex;
    overflow: hidden;
}

.gallery figure img {
    height: 100%;
    margin-right: 1rem;
}

@media screen and (max-width: 600px) {
    .gallery {
        height: fit-content;
    }

    .gallery figure img {
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }
    
}

.bold {
    font-weight: 600;
}

section {
    margin-top: 1.5rem;
    margin-bottom: 4.5rem;
}

footer section {
    padding-bottom: 1.5rem;
}

.bb {
    border-top: 0.1rem solid black;
}

.block ul {
    padding-left: 1rem;
}

.block ul li {
    padding-left: 0.5rem;
}


.button {
    display: inline-block;
    width: fit-content;
    background-color: white;
    border: solid 0.1rem black;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem ;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    margin-right: 1.5rem;
}

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

/* * * * * * * * * * * NAVIGATION * * * * * * * * * * */

.nav-bar {
    position: relative;
    grid-column-start: 1;
    grid-column-end: 2;
    border-right: 0.1rem solid black;
   /* height: calc(100vh - 1.5rem); */
    height: 100vh; 
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;  /* Firefox */
    z-index: 99;
    padding: 1.5rem 0 1.5rem 1.5rem;
}


@media screen and (max-width: 600px) {
    .nav-bar {
        position: fixed;
        display: none;
        width: 100vw;
        min-height: 100%;
        background-color: white;
        border-right: none;
        scrollbar-width: none;  /* Firefox */
        z-index: 88;
        padding: 1rem;
    }
}

.nav-bar a {
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.nav-bar a:hover {
    text-decoration: underline;
/*    background-color: #fffb00; */
}


.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main_nav {
    height: fit-content;

}

.main_nav li {
    list-style: none;
}

.main_nav li:first-child {
    list-style: none;
    margin-bottom: 1.5rem;
}

/*
.main li {
    list-style: none;
    padding: 1rem;
    border-bottom: 0.1rem solid black;
}

*/
/*
.sub {
    border-top: 0.1rem solid black;  
}
*/
.sub li {
    list-style: none;    
}

.sub li a {
    font-weight: 400;
}


@media only screen and (max-width: 600px) {
    .sub {
        border-top: none;
    }
    .flex {
        justify-content: flex-start;
    }
    .desktop-only {
        display: none;
    }
}



.breadcrumb li {
    display: inline;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.breadcrumb ol {
    list-style: none;
  }
  
.breadcrumb a {
    text-decoration: none;
    color: currentColor;
}

.breadcrumb li:not(:last-of-type)::after {
    content: ' /';
    color: currentColor;
}



/* * * * * * * * * * * CONTENT * * * * * * * * * * */

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
/*    height: calc(100vh - 1.5rem); */
    overflow-y: scroll; 
}

.flex_wrapper {
    display: flex;
    flex-direction: column;
    height: 100vw;
    justify-content: space-between;
}

main {
    padding: 1.5rem;
}

.hero {
    width: calc(100% + 3rem);
    margin: -10rem -1.5rem 1.5rem -1.5rem;
    position: relative;
    z-index: 0;

}

@media only screen and (max-width: 600px) {
    .content {
      width: 100vw;
    }
    main {
        padding: 1rem;
        margin-top: 3.5rem;
      }
}


/* * * * * * * * * * * MOBILE * * * * * * * * * * */

.header-mobile {
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    padding: 1rem;
    border-bottom: 0.1rem solid black;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    background-color: white;
    z-index: 99;
}

.header-mobile a {
    text-decoration: none;
    font-weight: 600;
}

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

button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
  


.mt_1 {
    margin-top: 1rem;
}

.mb_1 {
    margin-bottom: 1.5rem;
}


.pt_1{
    padding-top: 1.5rem;
}

.pb_1{
    padding-bottom: 1.5rem;
}


.list-style-none {
    list-style: none;
}

/* * * * * * * * * * * FLAG * * * * * * * * * * */

/*

.flag {
    position: fixed;

}

.flag:after {
    margin: 3rem; 
    content: "Lause bleibt!"; 
    position: absolute; 
    transform: rotate(240deg); 
    -webkit-transform: rotate(-30deg); 
    top: 0; 
    left: 0; 
    z-index: -1; 
    font-size: 25vw;
    font-weight: bold;
    line-height: 100%;
    color: yellow;
    z-index: 01;
}
*/


.w1_2 {
    width: 40%;
}

.is_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
}

@media screen and (max-width: 600px) {
    .is_grid {
        grid-template-columns: 1fr;
    }
}

/* * * * * * * * * * * FOOTER * * * * * * * * * * */

footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 0 1.5rem;
    padding: 1.5rem 0;
}

footer ul li {
    list-style: none;
    display: block;
    margin-right: 0.5rem;
}

.col-1 {
    grid-column-start: 1;
    grid-column-end: 2;
}

.col-2 {
    grid-column-start: 2;
    grid-column-end: 3;
}

.col-3 {
    grid-column-start: 3;
    grid-column-end: 4;
}

.col-4 {
    grid-column-start: 4;
    grid-column-end: 5;
}


footer a {
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    footer {
        grid-template-columns: 1fr;
        padding: 1rem 0;
        margin: 0 1rem;
    }
    .col-1,
    .col-2,
    .col-3,
    .col-4 {
        grid-column-start: 1;
        grid-column-end: 2;
    
    }
}


/* * * * * * * * * * * Support * * * * * * * * * * */

.support {
    border: red 0.1rem solid;
    color: red;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    overflow-x: hidden;
}

.nested {
    line-height: 1.5rem;
}

.nested h2 {
    font-weight: 600;
  }
  .nested h2 + div {
    color: #da7c0d;
  }
  .nested dl {
    padding: 1.5rem;
    margin: 1.5rem;

    background: #fef3c7;

  }
  .nested dl dt {
    font-weight: 600;
    line-height: 1.5rem;
    background: #16b759;
  }
  .nested dl dd {
    font-style: italic;
  }
  
.wrapper-nested {
    display: flex;
    flex-wrap: wrap;
  }

/* * * * * * * * * * * Spacing * * * * * * * * * * */

.mb_1_5 {
    margin-bottom: 1.5rem;
}


/* * * * * * * * * * * Banner Advertisement * * * * * * * * * * */

.advertisement {
    grid-area: 1 / span 2;
    position: relative;
    height: 1.5rem;
    background-color: black;
    color: white;
    font-size: small;
    text-align: center;
    line-height: 1.5rem;
}




/* * * * * * * * * *  Event * * * * * * */


address,
time {
    line-height: 1.5rem;
    margin: 0;
    font-style: normal;
}

address {
    margin-bottom: 1.5rem;
}

article {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.poster {
    position: relative;
    width: 50%;
    height: auto;
    top: 0;
    right: 0;
    margin: 0 0 0 0%;
}

article figure {
    line-height: 0;
    margin-bottom: 1.5rem;
}

article figure img {
    height: 15rem;
    width: auto;
}