@font-face {
  font-family: 'Book';
  src:
    url('../fonts/SuisseIntl-Book-WebM.woff');
  src:
    url('../fonts/SuisseIntl-Book-WebM.woff2') format('woff2'),
    url('../fonts/SuisseIntl-Book-WebM.woff') format('woff')
}

@font-face {
  font-family: 'Regular';
  src:
    url('../fonts/SuisseIntl-Regular-WebM.woff');
  src:
    url('../fonts/SuisseIntl-Regular-WebM.woff2') format('woff2'),
    url('../fonts/SuisseIntl-Regular-WebM.woff') format('woff')
}

@font-face {
  font-family: 'Recife';
  src:
    url('../fonts/RecifeDisplayWeb-Light.woff');
  src:
    url('../fonts/RecifeDisplayWeb-Light.woff2') format('woff2'),
    url('../fonts/RecifeDisplayWeb-Light.woff') format('woff')
}

:root {
  --font-size-0: 10px;
  --font-size-1: 18px;
  --font-size-2: 1.6vw;
  --font-size-3: 20px;
  --font-size-4: 28px;
  --font-size-5: 50px;
  --font-size-6: 8vw;
}

html, body {
  background: white;
  z-index: 1;
  font-size: var(--font-size-1);
  font-family: 'Regular';
  margin: 0;
  padding: 0;
  color: black;
  font-weight: normal;
  /* -webkit-text-stroke: 0.015em blue; */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
}

a, button, input, label {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  order-color: black;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
a[href^="tel"] {
  color: inherit;
  /* Inherit text color of parent element. */
  text-decoration: none;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

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

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  // box-sizing: inherit;
  box-sizing: border-box overflow-y: hidden !important;
}

*::-webkit-scrollbar {
  display: none;
}

h1, h2, h3, h4, h5, h6, ul, li, p {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: var(--font-size-5);
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 1.5vw;
}

h2 {
  text-align: center;
  font-weight: normal;
  font-size: var(--font-size-4);
  font-family: 'Recife';
  line-height: normal;
  margin-bottom: 20px;
}

h3 {
  text-align: center;
  /* text-transform: uppercase; */
  font-weight: normal;
  font-size: var(--font-size-4);
  font-family: 'Recife';
}

h4 {
  text-align: center;
  font-weight: normal;
  font-size: var(--font-size-2);
}

h5 {
  display: inline-block;
  font-weight: normal;
  font-size: var(--font-size-2);
  margin-bottom: 1vw;
  font-family: 'Regular';
}

h6 {
  display: inline-block;
  font-weight: normal;
  font-size: var(--font-size-0);
}

p {
  font-weight: normal;
  font-family: 'Regular';
  font-size: var(--font-size-1);
  line-height: 1.5em;
}
@media screen and (max-width: 900px) {
  :root {
    --font-size-2: 2.2vw;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --font-size-0: 10px;
    --font-size-1: 4.3vw;
    --font-size-2: 18px;
    --font-size-3: 20px;
    --font-size-4: 5.6vw;
    --font-size-5: 27px;
    --font-size-6: 27px;
  }
  h1 {
    margin-bottom: 30px;
  }
  h2 {
    margin-bottom: 10px;
  }
}


@media screen and (min-width: 1920px) {
  :root {
    --font-size-0: 10px;
    --font-size-2: 32px;
    --font-size-3: 30px;
    --font-size-6: 140px;
  }
}



/* MENU */
.header-desktop {
  display: block;
}
.header-mobile{
  display: none;
}

@media screen and (max-width: 500px) {
  .header-desktop {
    display: none;
  }
  .header-mobile{
    display: block;
  }
}
header {
  position: fixed;
  width: 100vw;
  display: block;
  z-index: 1000;
  margin: auto;
  -webkit-tap-highlight-color: #ffffff;
  -ms-user-select: None;
  -moz-user-select: None;
  -webkit-user-select: None;
  user-select: None;
  padding-bottom: 12px;
  top: 0;
  left: 0;
  font-size: var(--font-size-2);
}

.header-c-shadow {
  background: white;
  -webkit-box-shadow: 0px 6px 22px 8px #FFFFFF;
  box-shadow: 0px 6px 22px 8px #FFFFFF;
}

.startseite-header-c-shadow {
  background: white;
  -webkit-box-shadow: 0px 6px 22px 8px #FFFFFF;
  box-shadow: 0px 6px 22px 8px #FFFFFF;
}

.startseite-header-c-shadow-2 {
  background: white;
  -webkit-box-shadow: 0px 6px 22px 8px #FFFFFF;
  box-shadow: 0px 6px 22px 8px #FFFFFF;
}

.header-c {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  width: auto;
  padding: 30px;
  padding-bottom: 3px;
  margin: auto;
}
.header-c-mobile {
  padding: 20px;
  padding-top: 18px;
  padding-bottom: 2px;
}

.menu-link, .menu-c {
  text-align: center;
}
.lang-link {
  text-align: right;
}

/* Language Menu */
.menu {
  display: none;
}

.active-language {
  display: none;
}

.header-menu {
  margin-top: 10px;
  text-align: center;
  line-height: 1.1;
  padding: 15px 0;
}

.header-menu a {
  display: block;
  font-size: var(--font-size-5);
  text-transform: uppercase;
}

.header-menu a:hover {
  color: orange;
  text-decoration: none;
}

main {
  padding: 30px;
  margin-top: 80px;
  min-height: 100vh;
  overflow-y: hidden;
}

.content-start {
  margin-top: 100vh;
}
#content-star {
  margin-top: 99vh;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}
.h1-start {
  margin-bottom: 80px;
}


@media screen and (max-width: 500px) {
  .lang-link {
    text-align: right;
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
  }
  main {
    padding: 5vw;
    margin-top: 80px;
  }
  .content-start {
    margin-top: 100vh;
  }
  .h1-start {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1920px) {
  main {
    max-width: 1920px;
    display: block;
    margin: auto;
    margin-top: 80px;
  }


}
/* COVER */
/* STARTSEITE */
.about-block {
  margin-bottom: 100px;
}

.triennale-start-grid {
  display: grid;
  margin-top: 40px;
  grid-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
}
.triennale-start-grid-fake {
  max-width: 1900px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: grid;
  padding: 0 30px;
  grid-gap: 2vw;
  pointer-events: none;
  grid-template-columns: 1fr 1fr 1fr;
}
.fake-empty-div {
  pointer-events: none;
}
.buttoncontainer {
  margin-right: auto;
  border-radius: 30px;
  background-color: none;
  pointer-events: all;
  width: 100%;
}

@media screen and (min-width: 1920px) {
  .buttoncontainer {
    margin-right: auto;
    border-radius: 30px;
  }
  .triennale-start-grid-fake {
    padding: 0 20px;

  }
}
.triennale-start-grid .start:nth-child(3) {
  grid-column: -4;
}

.event-block-start {
  padding: 20px;
}

.start-event-rows {
  display: grid;
  align-items: center;
  min-height: 15vw;
  grid-template-rows: auto 15vh auto;
  text-align: center;
}

.start-title {
  text-align: center;
  font-family: 'Recife';
  margin: 40px 4px;
}
.start-title span{
  display: block;
  margin-bottom: 5px;
}


.buttoncontainer-mobile {
  display: none;
}

.start.buttoncontainer:hover {
  background-color: none;
}

.start.blackbutton:hover {
  background-color: black;
  color: white;
}

.Vortrag:hover, .Lesung:hover, .Reading:hover, .Speech:hover {
  background-color: #c3d0bc;
}

.Film:hover, .Movie:hover, .Concert:hover, .Konzert:hover {
  background-color: #a28a15;
}

.Ausstellung:hover, .Exhibition:hover, {
  background-color: #f59c00;
}

.Workshop:hover, .Theater:hover, .Theatre:hover {
  background-color: #e7d035;
}
.Eröffnung:hover, .Opening:hover {
  background-color: #fa4d00;
}
.News:hover {
  background-color: #fa4d00;
}

@media screen and (max-width: 500px) {
  .triennale-start-grid {
    grid-template-columns: 1fr;
    grid-gap: 6vw;
  }

  .triennale-start-grid div {
    padding: 10px;
  }

  .triennale-start-grid .start:nth-child(3) {
    grid-column: auto;
  }
}

/* PROGRAMM */
.date-nav {
  font-size: var(--font-size-6);
  display: flex;
  justify-content: space-between;
}

.date-nav a:hover {
  color: #f59c00;
}

.event {
  font-size: var(--font-size-2);
  margin: 20px 0;
  padding: 40px;
  background-color: white;
  transition-delay: 0.3s;
}
.programm-text a {
  text-decoration: underline;
}
.event-top-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 6fr 4fr;
}

.dates-grid {
  display: grid;
  text-align: left;
  grid-template-columns: 1fr 1.5fr;
}

.dates-grid span {
  white-space: nowrap;
}

.event-rollout-grid {
  display: grid;
  grid-template-columns: 6fr 10fr;
  grid-gap: 0;
  margin-top: 20px;
}

.event-rollout-grid img {
  width: 90%;
  height: auto;
  margin-top: 0.5vw;
}

.programm-headline {
  margin-bottom: 20px;
  font-family: 'Recife';
}

.event-place {
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-place-mobile {
  display: none;
}

.event-titel {
  font-family: 'Recife';
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .event.workshop:hover {
  background-color: #e7d035;
}
.event.film:hover {
  background-color: #a28a15;
}
.event.ausstellung:hover {
  background-color: #f59c00;
} */
@media screen and (max-width: 500px) {
  .event-place {
    display: none;
  }

  .event-place-mobile {
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .event-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dates-grid {
    display: block;
    text-align: center;
    grid-template-columns: 1fr 1fr;
  }

  .dates-grid span {
    margin: 0 1vw;
  }

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

  .event-titel {
    margin: 40px 4px;
  }

  .event-rollout-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event {
    padding: 25px;
  }
}

/* KATEGORIEN FELDER */

.triennale-start-grid div .buttoncontainer {
  padding: 0;
  font-family: 'Recife';
}

.blackbutton {
  margin-bottom: 10px;
  background-color: white;
  border: 2px solid #black !important;
  width: 100%;
  padding: 20px;
  border-radius: 2vw;
  font-family: 'Regular';
  border-style: solid !important;
  border-color: black !important;
}

.Vortrag, .Speech, .Reading, .Lesung, .Green {
  border-radius: 30px;
  border: 2px solid #c3d0bc;
}

.Film, .Movie, .Konzert, .Concert {
  border-radius: 30px;
  border: 2px solid #a28a15;
}

.Ausstellung, .Exhibition {
  border-radius: 100px;
  border: 2px solid #f59c00;
}

.Workshop, .Theater, .Theatre, .Yellow {
  border-radius: 100px;
  border: 2px solid #e7d035;
}

.News, .Eröffnung, .Opening, .Red {
  border-radius: 30px;
  border: 2px solid #fa4d00;
}

.start-kategorie::first-letter {
  text-transform: uppercase;
}

.event-site-kategorie::first-letter {
  text-transform: uppercase;
}

.event-site-kategorie {
  display: block;
}

.event-site-kategorie-mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  .event-site-kategorie-mobile {
    display: block;
  }

  .event-site-kategorie {
    display: none;
  }

  .buttoncontainer-mobile {
    border-radius: 30px;
    background-color: none;
    width: 100%;
    display: block;
    margin-top: 30px;
  }
  .triennale-start-grid-fake {
   display: none;
  }
  .buttoncontainer {
    display: none
  }

  .blackbutton {
    width: 100%;
    border-radius: 5vw;
  }
  /* .vortrag{
    border-radius: 30px;
  }
  .film{
    border-radius: 30px;
  }
  .ausstellung{
    border-radius: 50px;
  }
  .workshop{
    border-radius: 50px;
  }
  .news{
    border-radius: 30px;
  } */
  .Vortrag, .Speech, .Reading, .Lesung, .Green {
    border-radius: 10vw;
  }
  .Film, .Movie, .Konzert, .Concert {
    border-radius: 25vw;
  }
  .Ausstellung, .Exhibition {
    border-radius: 20vw;
  }
  .Workshop, .Theater, .Theatre, .Yellow {
    border-radius: 15vw;
  }
  .News, .Eröffnung, .Opening, .Red {
    border-radius: 10vw;
  }
  .programm-text {
    text-align: left;
  }
}

/* NEWS */
.news-seite {
  padding: 70px 12vw;
  padding-bottom: 100px;
  margin-bottom: 40px;
}

.news-title {
  text-align: center;
  margin: 40px 4px;
}

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

.news-text {
  /* margin-left: 8vw;
    margin-right: 8vw; */
}

/* KURATION */
.kuration {
  padding: 35px 10vw;
  border: 2px solid orange;
  border-radius: 110px;
}

.beteiligte {
  padding: 35px 5vw;
  border: 2px solid orange;
  border-radius: 110px;
}

.chefin img {
  width: 40%;
  display: block;
  margin: 30px auto;
}

.kuration h4 {
  margin-top: 0;
  margin-bottom: 2vw;
}


.team-grid {
  display: grid;
  width: 100%;
  grid-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 6vw;
}


.team h4 {
  margin-top: 8vw;
  margin-bottom: 2vw;
}

.team-grid img {
  display: block;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    grid-gap: 90px;
  }
  .team h2 {
    text-align: left;
  }
  .team-grid img {
    margin-top: 5px;
  }
  .team-grid-member {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1.2fr 2fr;
  }
}

@media screen and (max-width: 500px) {
  .team-grid-member {
    grid-template-columns: 1fr;
  }
  .kuration {
    border-radius: 50px;
  }
  .kuration h4 {
    margin-top: 0;
  }
  .chefin img {
    width: 100%;
    margin: 20px 0;
  }
  .chefin h2 {
    margin-bottom: 2.5vw;
  }
  .team {
    margin-top: 12vw;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-grid img {
    margin-top: 6vw;
  }
}

.beteiligte-grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.job {
  font-weight: bold;
  margin-bottom: 6px;
}
.beteiligte-grid span {
  font-family: 'Recife' !important;
}
.beteiligte-grid div {
  margin-bottom: 18px;
}

.beteiligte-grid p {
  line-height: 1em;
}
@media screen and (max-width: 1000px) {
  .beteiligte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .beteiligte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {

  .beteiligte-grid {
    grid-template-columns: 1fr;

  }
}

/* ABOUT */
.about {
  padding: 5vw 5vw;
  padding-bottom: 6vw;
  border: 2px solid #c3d0bc;
  border-radius: 5vw;
  margin-bottom: 50px;
}

/* .about-block .schmal {
  margin-bottom: 6vw;
  padding: 0vw 8vw 0vw 8vw;
} */
.about-block p {
  text-align: left;
  padding: 0vw 7vw 0vw 7vw;
}
.konzeption p {
  padding: 0vw 17vw 0vw 17vw;
}
.triennale-history-grid {
  display: grid;
    margin: auto;
  margin-top: 50px;
  grid-gap: 1vw;
  max-width: 1200px;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
}
.triennale-history-grid-bubble {
  padding: 20px;
  border: 2px solid #c3d0bc;
  border-radius: 3vw;
}
.triennale-history-grid-bubble p {
  padding: 20px;
  padding-top: 25px;
}

.triennale-history-grid div:hover {
  background-color: #c3d0bc;
}

.triennale-history-grid div h2 {
  margin-bottom: 0;
}

.about-block-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2vw;
  max-width: 1000px;
  padding-left: 5vw;
  margin: auto;
}
.about-block-grid-3 {
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-gap: 3vw;
  width: auto;
  padding-right: 4vw;
}
.about-block-grid-3 p{
  padding: 0;
}
.about-block-grid-3 h2{
  padding: 0;
  min-height: 7.5vw;
}
.about-block-grid-3 div{
  padding: 0;
}
.about-block-grid-3 h1 {
  text-align: center;
}

@media screen and (max-width: 879px) {
  .about-block-grid-3 {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 1fr;
  }
  .about-block-grid-3 h2{
    padding: 0;
    min-height: auto;
  }
  .about-block-grid-2 {
    padding-left: 0vw;
  }
  .konzeption p {
    padding: 0vw 0vw 0vw 0vw;
  }
  .about-block p {
    text-align: left;
    padding: 0vw 0vw 0vw 0vw;
  }
}

/* künstler+innen */
.artists {
  height: 75vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  border: 2px solid orange;
  border-radius: 40px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.artist-content-grid p {
  overflow-x: hidden;
  overflow-y: scroll;
}

.artist-content-artistsite, .artist-content-index {
  padding: 3vw;
  border-right: 2px solid orange;
  overflow-y: scroll;
}
.artist-content-grid {
  display: grid;
  margin-top: 20px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2vw;
}
.arrow {
  display: none;
}
.artist-content-grid-mobile {
  display: none;
}
.artist-content-artistsite h2, .artist-content-index h2 {
  text-align: left;
}
.art-desc {
  margin-top: 40px;
}

.artist-list-artistsite, .artist-list-index {
  margin: 0 3vw;
  line-height: 1vw;
  padding-top: 1vw;
  overflow-y: scroll;
}

.list-letter {
  font-family: 'Book';
  margin-top: 30px;
}
.artist-list-index h1, .artist-list-artistsite h1 {
  display: block;
  text-align: left;
}

.artist-list-index h4, .artist-list-artistsite h4 {
  margin-left: 5px;
  margin-bottom: 0px;
  margin-top: 30px;
  display: block;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .artist-list-artistsite h2, .artist-list-index h2{
    text-align: left;
  }
  .artist-content-grid-mobile {
    display: block;
  }
  .artist-content-grid-mobile {
    margin: 30px 0;
  }
  .artist-content-grid-mobile p{
    margin-top: 20px;
    text-align: left;
  }
  .art-desc {
    margin-top: 0px;
  }
  .artist-content-grid{
    display: none;
  }
  .artist-content-grid-mobile-img-g {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .artist-content-artistsite h2, .artist-content-index h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .artist-content-grid-mobile-img-g {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .artist-content-index, .artist-content-artistsite {
    padding: 5px 4vw;
    overflow-x: hidden;
    border-right: 2px solid orange;
  }

  .artist-content-index, .artist-content-artistsite {
    border-right: 0px solid orange;
  }
  .art-desc {
    margin-top: 5px;
    margin-bottom: 25px;
  }
  .artist-content-index {
    display: none;
    border-right: 0px solid orange;
  }
  .arrow {
    display: inline-block;
    width: 7vw;
    margin-right: 2vw;
  }
  .artists-link {
    display: flex;
    align-items: center;
    text-align: center;
    display: inline-block;
    margin: auto;
    justify-content: space-around;
  }
  .artist-list-artistsite {
    display: none;
    line-height: 1.2;
    border: 2px solid orange;
    border-radius: 5vw;
  }
  .artist-content-grid-mobile {
    display: block;
  }
  .artist-content-grid-mobile h2{
    text-align: center !important;
  }
  .artist-content-grid{
    display: none;
  }
  .artists {
    grid-template-columns: 1fr;
    border: none;
    height: auto;
        text-align: center;
    border-radius: 5vw;
  }
  .artist-list-index {
    margin: 0 3vw;
    border: 2px solid orange;
    border-radius: 5vw;
    height: 80vh;
    padding: 2vw;
    text-align: center !important;
    overflow-y: scroll;
  }
  .artist-list-index h2 {
    line-height: 1.2;
    text-align: center !important;
  }

  .artist-content-grid {
    grid-template-columns: 1fr;
  }
}


/* BESUCH */
.besuch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #e7d035;
  border-radius: 3vw;
  padding: 4vw 4vw;
  margin-bottom: 6vw;
  grid-gap: 5vw;
}

.besuch-block {
  margin-bottom: 1vw;
}

.besuch-block h4 {
  text-align: left;
  margin-bottom: 1.5vw;
}

.barriere {
  display: block;
}

.orte {}

.details {}

.besuch h2 {
  text-align: left;
  margin-bottom: 15px;
}

.besuch.headlinemitte h2 {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .about-block-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-block-grid-2 span {
    display: block;
  }

  .about-block {
    display: grid;
    grid-template-columns: 1fr;
  }

  .besuch {
    grid-template-columns: 1fr;
    border-radius: 7vw;
    padding: 6vw 6vw;
    margin-bottom: 6vw;
    text-align: left;
  }

  .besuch-block h4 {
    text-align: center;
  }

  .besuch-block h2 {
    text-align: center;
    margin-bottom: 2.5vw;
  }
}

/* Impressum */
.impressum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #c3d0bc;
  border-radius: 70px;
  padding: 35px 4vw;
  margin-bottom: 6vw;
  grid-gap: 5vw;
}

.impressum-block {
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .impressum {
    grid-template-columns: 1fr;
    border: 2px solid #c3d0bc;
    border-radius: 70px;
    padding: 35px 4vw;
    margin-bottom: 6vw;
    grid-gap: 5vw;
  }
}

footer {
  width: 100vw;
  display: block;
  z-index: 1000;
  font-size: var(--font-size-1);
  background: orange;
  margin: auto;
  color: white;
  padding: 30px;
}
footer a:hover {
  text-decoration: underline;
}
.logo-footer {
  width: 15vw;
  margin-left: -1vw;
}
.footer-link-grid {
  display: grid;
  margin-bottom: 30px;
  grid-gap: 1.5vw;
  padding-right: 5vw;
  grid-template-columns: 1.8fr 1fr 0.6fr 0.8fr 1.2fr 1.5fr;
}

.footer-h {
  margin-bottom: 20px;
}

.sponsors-grid {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.sponsors-grid div {
  display: inline-block;
  padding: 7px 15px;
  /* background: orange;
  border-radius: 30px; */
  margin: 5px;
}

.footer-sponsors {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 500px) {
  .footer-sponsors {
    height: 29px;
    width: auto;
  }
}
.empty-space {
  height: 90vh;
  background: grey;
}

/* Language Menu */
.menu {
  display: none;
}
@media screen and (max-width: 900px) {
  .footer-link-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
  }
}
@media screen and (max-width: 500px) {
  .menu {
    margin-top: 6vw;
    margin-bottom: 0vw;
    display: block;
  }
  .footer-link-grid {
    grid-gap: 3vw;
    padding-right: 10vw;
    grid-template-columns:1fr;
  }
  .logo-footer {
    width: 30vw;
    margin-top: 5vw;
    margin-left: -1vw;
  }
  .menu a {
    margin-right: 20px;
    font-size: 18px;
  }

  .deutsch {
    display: none;
  }
}

/* Description & Persons Raster */
.container {
  position: absolute;
  margin-bottom: 40vh;
  z-index: 1000;
  margin-top: 100vh;
}

.row {
  width: 100%;
  margin: 0;
  height: auto;
  padding-top: 2vw;
}

.row p {
  margin-bottom: 30px;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.columns {
  float: left;
  padding-right: 3vw;
}

.contact {
  padding-bottom: 5vh;
  padding-top: 15vh;
}

.name {
  margin-top: 2vw;
}

.text {
  margin-top: 2vw;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  height: auto;
  margin-top: 18vh;
}

@media screen and (max-width: 500px) {
  .row {
    width: 100%;
    height: auto;
  }

  .columns {
    padding-right: 12vw;
  }

  .center-img {
    display: block;
    width: 75%;
    margin: auto;
    height: auto;
    margin-top: 18vh;
    padding-right: 12vw;
  }

  .center-text {
    margin-bottom: 6vw;
    margin-top: 5vw;
    text-align: left;
    padding-right: 12vw;
  }

  .intro-h1 {
    margin-bottom: 5vw;
    margin-top: 10vw;
    font-size: 38px;
  }

  .text {
    margin-top: 3vw;
  }
}

/* Press Contact */
.contact-header {
  margin-bottom: 2vw;
}

@media screen and (max-width: 500px) {
  .contact-header {
    margin-bottom: 3vw;
  }
}

/* News Logo Header */
.news-header {
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 3vw;
  padding-bottom: 1vw;
}

.news-header-left {
  z-index: 100;
  font-size: 5.3vw;
  letter-spacing: -0.05em;
  line-height: 0.9em;
}

.news-header-right {
  z-index: 100;
  font-size: 2.05vw;
  letter-spacing: -0.03em;
  line-height: 1.1em;
  margin-top: 0.2vw;
}

@media screen and (max-width: 500px) {
  .news-header {
    display: block;
    padding-top: 6vw;
  }

  .news-header-left {
    font-size: 7.5vw;
  }

  .news-header-right {
    font-size: 4vw;
    margin-top: 2vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid #e8560c;
  }

}



/* Partner  */
.partners {
  border: 2px solid orange;
  border-radius: 5vw;
  margin-top: 50px;
}
.partners h3 {
  width: 75vw;
  display: block;
  font-size: 4vw;
  margin: auto;
}
.partners figure{
  margin: 0;

}
.partner {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
  .partners h3 {
    width: 75vw;
    display: block;
    font-size: 7.7vw;
    margin-top: 40px;
    margin: auto;
  }
  .partners {
    padding-top: 40px;
  }
  .partner {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
  }
}


/* News Indexes */
.news-container {
  width: auto;
  padding-left: 4vw;
  padding-right: 4vw;
  padding-top: 3vw;
  background: #C3D0BC;
}

.news-top {
  display: flex;
  width: auto;
  margin: 0;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2vw;
}

.news-top a {
  margin-top: 3vw;
  font-size: 1.5vw;
  margin-right: 0.5vw;
}

.news-links-grid {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  width: auto;
  grid-gap: 2%;
  padding-bottom: 4vw;
}

.news-links-grid h1 {
  font-size: 28px;
}

.article {
  border-top: 2px solid #e8560c;
  padding-top: 2.5vw;
}

@media screen and (max-width: 500px) {
  .news-container {
    width: auto;
    padding-left: 6vw;
    padding-right: 6vw;
    background: #C3D0BC;
  }

  .news-top a {
    font-size: inherit;
    margin-right: 2vw;
  }

  .news-top h1 {
    margin: 0;
    margin-bottom: 1vw;
  }

  .news-top div {
    margin-top: 3vw;
  }

  .news-top {
    display: block;
    margin-top: 0vw;
    padding-top: 3vw;
    margin-bottom: 8vw;
  }

  .news-links-grid {
    grid-template-columns: 87%;
    grid-gap: 7vw;
    padding-bottom: 6vw;
  }

  .news-links-grid a {
    margin-bottom: 10vw;
  }

  .image {
    display: none;
  }
}

/* Article  */
.date-container {
  margin-bottom: 0vw;
  margin-top: 2vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.date {
  margin-bottom: 1vw;
  ;
}

.right-date {
  text-align: right;
}

.article-img-container {
  margin-top: 3vw;
  margin-bottom: 3vw;
  width: 100%;
}

.article-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 55%;
  height: auto;
}

.news-article {
  margin-bottom: 15vw;
}

.article-grid {
  display: grid;
  grid-template-columns: 48% auto;
  grid-gap: 4vw;
  margin-top: 5vw;
  width: 100%;
}

.article-title {
  margin-top: 2vw;
}

.article-text {
  margin-top: 5vw;
}

.mobile-article-date {
  display: none;
}

.center-text {
  width: 100%;
  text-align: center;
  padding-bottom: 1vw;
}

@media screen and (max-width: 500px) {
  .article-grid {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10vw;
    width: 100%;
  }

  .article-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 6vw;
    height: auto;
  }

  .date-container {
    display: none;
  }

  .mobile-article-date {
    display: block;
    margin: 0;
    padding: 0;
  }
}

/* Go Back Links */
.goback-link {
  width: 100%;
  margin-left: 0.5vw;
}

.goback-c {
  margin-top: 1vw;
}

/* Large */
.large-1 {
  width: 50%;
  height: auto;
}

.large-2 {
  width: 33%;
  height: auto;
}

.large-3 {
  width: 33%;
  height: auto;
}

.image {
  width: 100%;
}

@media screen and (max-width: 500px) {
  .large-1 {
    width: 100vw;
    height: auto;
  }

  .large-2 {
    width: 100vw;
    height: auto;
  }

  .large-news {
    width: 25%;
    height: auto;
  }
}

/* Impressum & Datenschutz */
.row-pri-imp {
  padding-top: 1vw;
}

.row-pri-imp h2 {
  margin-top: 2vw;
}

.container-pri-imp {
  margin-bottom: 20vh;
  z-index: 1000;
  width: 100%;
  color: #eb4619;
}

.menu-pri-imp {
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.menu-pri-imp a {
  margin-right: 20px;
  font-size: 18px;
}

.container-pri-imp li {
  margin-top: 1vw;
}

@media screen and (max-width: 500px) {
  .row-pri-imp {
    padding-top: 4vw;
  }

  .menu-pri-imp {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }

  .pfeil {
    width: 9vw;
    margin-right: 1vw;
  }

  .row-pri-imp h2 {
    margin-top: 4vw;
  }
}

/* Cover animiert */
div#container {
  height: 500px;
  width: 500px;
}

* cover animation start */ .cover-animation-1 {
  top: 0;
  left: 0;
  /* background: red; */
  width: 100% !important;
  height: auto !important;
  position: absolute;
  -webkit-animation: topbottom 5s infinite linear;
}

@keyframes topbottom {
  % {
    top: 0;
  }

  50% {
    top: 5%;
  }

  100% {
    top: 0%;
  }
}

.cover-animation-2 {
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-animation: zwei 4s infinite linear;
}

@-webkit-keyframes zwei {
  0% {
    left: 0;
  }

  15% {
    left: -1;
  }

  30% {
    left: -2%;
  }

  50% {
    left: -1%;
  }

  70% {
    left: 0%;
  }

  80% {
    left: 1%;
  }

  100% {
    left: 0%;
  }
}

.cover-animation-3 {
  top: 0;
  left: 0;
  width: 100% !important;
  height: auto !important;
  position: absolute;
  -webkit-animation: rotate 8s infinite linear;
  transform-origin: right top;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  20% {
    -webkit-transform: rotate(-3deg);
  }

  50% {
    -webkit-transform: rotate(-6deg);
  }

  70% {
    -webkit-transform: rotate(-3deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

.cover-animation-4 {
  bottom: 0;
  left: 0;
  /* background: red; */
  width: 50vw !important;
  position: absolute;
  -webkit-animation: blop 8s infinite linear;
  transform-origin: right top;
}

@keyframes blop {
  0% {
    -webkit-transform: rotate(0deg);
  }

  20% {
    -webkit-transform: rotate(-1deg);
  }

  50% {
    -webkit-transform: rotate(-3deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

.cover-animation-5 {
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-animation: blur 8s infinite linear;
  transform-origin: right top;
}

@keyframes blur {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.4;
  }

  70% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

/* cover animation ende */
/* Cover */
.cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -0000000;
}

.cover-img img, div {
  transition: all 500ms;
  pointer-events: all;
}

/* .cover-img img:hover, .container:hover {
    filter: blur(10px);
    animation: vibrate 5ms linear infinite forwards;
}
@keyframes vibrate{
    0% {
        transform: translateX(-1px) translateY(1px);
    }
    100% {
        transform: translateX(1px) translateY(-1px);
    }
} */
.desktop, .mobile {
  color: white;
}

.logo {
  width: 160px;
  z-index: 100;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 1.5vw;
  margin-right: 22px;
}

.digital-exh {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  margin-top: 11vw;
  margin-right: 24vw;

}
.kreis1 {
  background-color: #c3d0bc;
  width: 11vw;
  height: 11vw;
  padding: 20px;
  border-radius: 100%;
  z-index: 100;
  filter: drop-shadow(0vw 0.3vw 0.8vw grey);
}
.exh-text {
  color: white;
  text-align: center;
  margin-left: 1vw;
  margin-top: -11vw;
  position: relative;
  z-index: 1200;
  border-radius: 2vw;
  padding: 0.5vw;
  width: auto;
  text-shadow: 0px 0px 0.3vw grey;
  font-size: 1.9vw;
  border-radius: 2vw;
  line-height: 1.2;
}
.exh-text span{
  border-radius: 1vw;
  background: #c3d0bc;
  -webkit-box-shadow: 0px 6px 22px 8px #c3d0bc;
  box-shadow: 0px 6px 22px 8px #c3d0bc;
}
.kreis2 {
  background-color: #c3d0bc;
  width: 11vw;
  height: 11vw;
  margin-left: 5vw;
  margin-top: -7vw;
  padding: 20px;
  border-radius: 100%;
  position: relative;
  z-index: 1100;
  filter: drop-shadow(0vw 0.3vw 0.8vw grey);
}

@media screen and (max-width: 500px) {
  .digital-exh {
    position: absolute;
    z-index: 1000;
    top: auto;
    right: 0;
    bottom: 0;
    margin-bottom: 61vw;
    margin-right: 24vw;

  }
  .exh-text {
    font-size: 7vw;
    margin-left: 1vw;
    margin-top: -30vw;
  }
  .kreis1 {
    background-color: #c3d0bc;
    width: 31vw;
    height: 31vw;
    padding: 20px;
    border-radius: 100%;
    z-index: 100;
    filter: drop-shadow(0vw 0.3vw 0.8vw grey);
  }
  .kreis2 {
    background-color: #c3d0bc;
    width: 31vw;
    height: 31vw;
    margin-left: 15vw;
    margin-top: -22vw;
    padding: 20px;
    border-radius: 100%;
    position: relative;
    z-index: 1100;
    filter: drop-shadow(0vw 0.3vw 0.8vw grey);
  }
}
.text-kreis {
  display: none;
  z-index: 101;
  position: absolute;
  font-size: 1.4vw;
  letter-spacing: -0.03em;
  line-height: 1em;
  top: 14vw;
  right: 24vw;
  text-align: center;
}

.text-bl {
  pointer-events: none;
  position: absolute;
  font-size: 2.4vw;
  margin: 30px;
  letter-spacing: -0.02em;
  line-height: 1em;
  bottom: 0;
  left: 0;
  z-index: 9999;
  color: white;
  filter: drop-shadow(0 0 0.75rem orange);
}

.text-br {
    pointer-events: none;
  position: absolute;
  font-size: 5vw;
  margin-bottom: 9.7vw;
  margin-right: 30px;
  letter-spacing: -0.03em;
  line-height: 1em;
  bottom: 0;
  right: 0;
  z-index: 100;
  color: white;
}

.move.kreis {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.move.kreis.groß {
  position: absolute;
  top: 0;
  left: 26vw;
  width: 50%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.titles-c {
  position: absolute;
  margin-left: 30px;
  z-index: 100;
  top: 0;
  left: 0;
  margin-top: 100px;
}
.dievibrationder {
  width: 55vw;
  max-width: 1900px;
  height: auto;
  margin-left: -0.2vw;
}
.dinge {
  width: 30vw;
  display: block;
  max-width: 1900px;
  height: auto;
  margin-left: -0.16vw;
}
.animated {
  pointer-events: none;
}
.mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .text-tr {
    font-size: 6vw;
    margin-top: 7vw;
    margin-right: 5.7vw;
    letter-spacing: -0.04em;
  }

  .text-br {
    font-size: 10vw;
    margin-bottom: 22vw;
    margin-right: 5vw;
    letter-spacing: -0.03em;
    line-height: 1em;
  }
  .text-bl {
    font-size: 6vw;
    margin-bottom: 20px;
    margin-left: 17px;
    z-index: 200;
    letter-spacing: -0.03em;

  }
  .logo {
    width: 130px;
    margin-right: 4vw;
    margin-bottom: 18px;
  }
  .titles-c {
    position: absolute;
    margin-left: 17px;
    z-index: 100;
    width: 90vw;
    top: 0;
    left: 0;
    margin-top: 16vh;
  }
  .dievibrationder {
    width: 100%;
    max-width: 1900px;
    height: auto;
  }
  .dinge {
    width: 50vw;
    margin-top: 6vh;
    max-width: 1900px;
    height: auto;
  }
}



#nav-icon3 {
  width: 40px;
  height: 40px;
  margin-top: 28px;
  margin-right: 20px;
  position: fixed;
  top: 0;

  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    z-index: 9999;
}
#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 40px;
  background: black;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
  top: 0px;
}
#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 10px;
}
#nav-icon3 span:nth-child(4) {
  top: 20px;
}
#nav-icon3.open span:nth-child(1) {
  top: 20px;
  width: 0%;
  left: 50%;
}
#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}



@media screen and (max-width:550px){
  /* BURGER MENU */
  .menu-links {
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 100px;
    margin-right: 10px;
    text-align: right;
  }
  .menu-links a{
    color: blue;
  }


}




/* FOLLOWER */
.foreground {
  z-index: 0;
  pointer-events: none;
}
#image {
  mix-blend-mode: multiply;
  font-size: 55vh;
  z-index: 9;
  position: absolute;
  pointer-events: none;
}
