
 /* --- GLOBALES --- */

a:link {color: #000000;}
a:visited {color: #000000;}
a{text-decoration: none}
a:hover,
a:focus{
text-decoration:none;
color: black;
}

*{box-sizing: border-box;}

@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Italic.ttf);
  font-weight: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: normal;
}

body{
  background-image: url("../img/corps_suspendu_hintergrund.jpg");
  background-repeat: repeat;
  background-color: #eaeaea;
  font-family: 'Roboto', 'Verdana', 'Helvetica', 'sans-serif';
  font-size: 14.5px;
  line-height: 170%;
  letter-spacing: 0.01em;
  margin: 0;
}
#wrapper{
  max-width: 1024px;
  position: relative;
  width: 100%;
  margin: auto;
}

.Logo h1{
  margin: 0px;
}
.Logo_1{
  width: 160px;
  background-color: #FFF;
}

.Logo_1 h1{
  margin: 5px 2px 5px 2px;
  padding: 3px;
}



/* --- KOPFBEREICH --- */



/* --- NAVIGATION --- */



@media(min-width:750px) {
  #mobile-nav {display: none;}
}

#nav{
  position: relative;
  width: 100%;
  margin: auto;
  margin-bottom: 13px;
  z-index: 150;
}

.nav-elements ul{
  width: 100%;
  margin: auto;
  padding: 15px 25px 15px 25px; 
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  font-size: 1.2em;
}
.nav-elements ul h1 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  color: #717171;
  font-size: 2rem;
}
.nav-elements ul li a:hover{
  color: #717171;
}

.Insta{padding-bottom: 1px;}
.Face{padding-bottom: 1px;}



/* --- MOBILEBUTTON --- */


@media (max-width: 750px) {
  .nav-elements ul{display: none;}

  #mobile-nav{
  display: block;
  width: 100%;
  background-color: #FFF;
}
#mobile-nav .Logo h1 {
  padding: 10px 0px 10px 15px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  color: #717171;
  font-size: 2rem;
}
  .mobile-button {
    color: #000;
    position: absolute;
    right: 2px;
    top: -26px;
    font-size: 3rem;
    width: 40px;
    height: 40px;
    margin: 20px;
    z-index: 110;
  }

  .mobile-button>span {
    position: absolute;
    bottom: 1px;
    left: 5px;
    color: #000;
  }

  .mobile-dropdown {
    display: none;
    width: 100%;
    background-color: #FFFFFF;
    padding: 1px;
  }

  .mobile-dropdown ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-dropdown ul li {
    border-top: 1px solid rgb(216, 214, 214);
  }

  .mobile-dropdown ul li a {
    display: block;
    padding: 12px 17px;
  }

  .mobile-button-kreuz {
    color: #000000;
    position: absolute;
    right: -8px;
    top: -9px;
    font-size: 2.5rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    margin: 20px;
    z-index: 110;
    cursor: pointer;
    opacity: 0;
  }

  #click:checked~.mobile-dropdown {display: block;}
  #click {display: none;}
  #click:checked~label .mobile-button {display: none;}
  #click:checked~label .mobile-button-kreuz {opacity: 1;}
  
}

.dropdown_social {
  display: flex;
}
.Logo img{
  margin-left: 8px;
  padding: 5px;
}





/* --- MAIN AKTUELLES--- */



#main_aktuelles {
  position: relative;
  width: 100%;
  margin-bottom: 13px;
}

.book_wrapper{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6E6E6;
  /* opacity: 0.9; */
  
}


/* Book */
.book {
  position: relative;
  width: 400px;
  height: 500px;
  transition: transform 0.5s;
}

.paper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  perspective: 1500px;

}

.front,
.back {
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: left;
  transition: transform 0.5s;
}

.front {
  z-index: 1;
  backface-visibility: hidden;
  border-left: 1px solid rgb(163, 163, 163);
}

.back {
  z-index: 0;
}

.front-content,
.back-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-content {
  transform: rotateY(180deg)
}

/* Paper flip effect */
.flipped .front,
.flipped .back {
  transform: rotateY(-180deg);
}

/* Controller Buttons */
button {
  border: none;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  margin: 20px;
  transition: transform 0.5s;
  height: 50%;
}

button:focus {
  outline: none;
}

button:hover i {
  color: #636363;
}

i {
  font-size: 50px;
  color: gray;
}

/* Paper stack order */
#p1 {
  z-index: 3;
}

#p2 {
  z-index: 2;
}

#p3 {
  z-index: 1;
}

#f1{
  background-image: url("../img/buch/cover.jpg");
  background-position: center;
  background-size: contain;
  /* opacity: 1; */
}
#b1{
  background-image: url("../img/buch/seite_1.jpg");
  background-position: center;
  background-size: contain;
}
#f2 {
  background-image: url("../img/buch/seite_2.jpg");
  background-position: center;
  background-size: contain;
}

#b2 {
  background-image: url("../img/buch/seite_3.jpg");
  background-position: center;
  background-size: contain;
}
#f3 {
  background-image: url("../img/buch/seite_4.jpg");
  background-position: center;
  background-size: contain;
}

#b3 {
  background-image: url("../img/buch/back.jpg");
  background-position: center;
  background-size: contain;
}  

.aktuelles_container {
  position: relative;
  width: 100%;
}

.aktuelles_intro h1 {
  padding: 30px 0 30px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #E6E6E6;
  /* opacity: 0.9; */
  font-size: 5em;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .book {
    width: 331px;
    height: 420px;
  }
}
@media (max-width: 800px) {
  .book {
    width: 272px;
    height: 340px;
  }
    button {
     margin: 4px;
    }
}
@media (max-width: 700px) {
  .aktuelles_intro h1 {
    font-size: 4em;
  }
  button {
    margin: 4px;
   }
}

@media (max-width: 550px) {
  .aktuelles_intro h1 {
    font-size: 3em;
  }
}

@media (max-width: 420px) {
  .aktuelles_intro h1 {
    font-size: 2.5em;
  }
  .book {
    width: 237px;
    height: 280px;
  }
}

.aktuelles_text_1 h2 {
  position: relative;
  z-index: 110;
  padding: 15px;
  margin: 0 0 0 0px;
  text-align: center;
  font-size: 3rem;
  background-color: #E6E6E6; 
   /* opacity: 0.9; */
}
@media (max-width: 550px) {
  .aktuelles_text_1 h2 {
    font-size: 2.3em;
  }
}

.aktuelles_text_1 p {
  padding: 2rem 2rem;
  text-align: left;
  background-color: #E6E6E6; 
  /* opacity: 0.9; */
}

.aktuelles_text_2 p {
  position: relative;
  z-index: 110;
  width: 100%;
  /* margin: 0; */
  padding: 0.3rem 2rem;
  text-align: center;
  background-color: #6ba8c6; 
  /* opacity: 0.9; */
  font-size: 1.2rem;
}

.aktuelles_text_2 a h2 {
  padding: 10px;
  text-align: center;
  background-color: #E6E6E6; 
  /* opacity: 0.9; */
}

.aktuelles_text_3 p {
  margin: 0;
  padding: 0.3rem 2rem;
  text-align: center;
  color: #000000;
  background-color: #6ba8c6;
  font-size: 1.2rem;
}
.aktuelles_text_3 p .frag{
  margin-top: 10px;
  padding: 0.3rem 2rem;
  text-align: center;
  color: #000000;
  background-color: #6ba8c6;
  font-size: 1.2rem;
}




/* --- MAIN PRODUKTIONEN--- */



#main_creations{
  position: relative;
  width: 100%;
  margin-bottom: 13px;
  background-color: #FFF;
}
.creations {
  width: 100%;
  background-color: #FFF;
  text-align: center;
}
.creations-text-flex-container{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: auto;
	color: black;
	width: 100%;
}

.creations-text-flex_1{
  margin: auto;
  width: 100%;
  height: 40%;
  background-color: #FFF;
}

.creations-text-flex_1 h1 {
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  background-color: #FFF;
  font-family: Arial;
  font-size: 5em;
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .creations-text-flex_1 h1 {
    font-size: 4em;
  }
}
@media (max-width: 550px) {
  .creations-text-flex_1 h1 {
    font-size: 3em;
  }
}
@media (max-width: 420px) {
  .creations-text-flex_1 h1 {
    font-size: 2.5em;
  }
}
 
.creations_titel {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
  padding: 60px 5px 100px 5px;
  background-color: #FFF;
  cursor: pointer;
}
@media (max-width: 850px) {
  .creations_titel {
    font-size: 3rem;
    line-height: normal;
    padding: 60px 5px 50px 5px;
  }
}
.creations_button {
  font-size: 1.5rem;
  padding: 8px 2px;
}


.creations-text-flex_2 {
  width: 100%;
  height: 40px;
  background-color: #FFF;
}

.creations_flex_container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  
}
.creations_flex_container p{
  padding-right: 10px;
  margin: 0;
  width: 50%;
  padding-right: 30px;
}
.creations_flex_container .foto{
  padding: 5px 0px 20px 0px;
  
}
.creations :hover {
  color: #fff;
  background-color: #393c41;
}


.Stückbeschreibung {
  position: relative;
  background-color: #FFF;
  opacity: 0.9;
  padding: 1em 2em .2em;
  overflow: auto;
  display: none;
  transition: opacity .15s linear;
  opacity: 0;
  z-index: -10;
}
.Stückbeschreibung:target {
  display: block;
  opacity: 1;
  z-index: 10;
}
.close:after {
  position: relative;
  width: 90px;
  margin: auto;
  content: "schließen";
  color: white;
  background: #393c41;
  font-size: 1.1rem;
  border-radius: 3px;
  display: block;
  text-align: center;
  padding: 0.2em 0.5em;
}
.close_en:after {
  position: relative;
  width: 90px;
  margin: auto;
  content: "close";
  color: white;
  background: #393c41;
  font-size: 1.1rem;
  border-radius: 3px;
  display: block;
  text-align: center;
  padding: 0.2em 0.5em;
}
.creations_pdf{
  display: flex;
  justify-content:space-around;
}
.creations_pdf_a{
  width: 130px;
  align-items: center;
  text-align: center;
  background-color: #393c41;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 3px 3px 3px #717171;
  
}
.creations_pdf_button{
color: #FFF;
}

.iframe_container{
  position: relative;
  width: 100%;
  height: 540px;
  margin: auto;
  /* padding: 30px 0 50px 0; */
  /* background-color: #717171; */
}
@media (max-width: 850px) {
  .iframe_container {
    width: 100%;
    height: 416px;
  }
}
@media (max-width: 550px) {
  .iframe_container {
    width: 100%;
    height: 300px;
  }
}
.rezensionen_header {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
  padding: 100px 5px 100px 5px;
  background-color: #FFF;
  opacity: 0.9;
}
.credits{
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .credits {
    padding-bottom: 1px;
  }
  .rezensionen_header {
    padding: 40px 5px 50px 5px;
  }
}

@media (max-width: 550px) {
  .rezensionen_header {
    font-size: 3rem;
    padding: 25px 5px 50px 5px;
  }
}
.rezensionen_titel{
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.logo_wien{
  padding: 10px 0 50px 0;
  text-align: center;
}
.logo_wien img{
 padding-right: 40px;
 width: 20%;
}
@media (max-width: 800px) {
  .logo_wien img{
    width: 30%;
  }
}
@media (max-width: 650px) {
  .logo_wien img {
    width: 35%;
  }
}
@media (max-width: 550px) {
  .logo_wien img {
    width: 40%;
  }
}



/* -----SLIDESHOW----- */


.crie_Slides .fragments_Slides .inhabit_Slides .through_Slides .Jubilaeum_Slides
.danach_Slides .things_Slides .suspendu_Slides .corps_Slides .squatting_Slides
.assemblage_Slides .tubes_Slides .fences_Slides .metal_Slides .pictographic_Slides
.berio_Slides .hamletmaschine_Slides .fiction_in_between_Slides .secret_sight_Slides
.cat_in_a_deep_freeze_Slides .pale_ground_Slides .jours_blancs_Slides .shoreline_Slides
.labyrinth_Slides .superposition_corps_Slides .exposition_corps_Slides 
.combattimento_Slides .other_feature_Slides .intent_frame_2_Slides .rrr_Slides
.frame_1_Slides .chat_gap_Slides .do_your_desires_Slides .duras_trilogy_Slides {display: none}


img {vertical-align: middle;}

.wechsel_container{
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
}


/* Slideshow container */

.slideshow-container {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
  padding: 10px 0 10px 0;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(132, 132, 132, 0.8);
  opacity: 0.5;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 1}
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {font-size: 11px}
}


/* --- MAIN-ENSEMBLE --- */


#main_ensemble{
  position: relative;
  width: 100%;
  margin-bottom: 13px;
  /* box-shadow: 0px 0px 0px 10px #FFF; */
}

.ensemble_intro_container{
  padding: 3%; 
  background-color: #FFF;
}
.ensemble_intro_container h1 {
  /* padding: 30px 0 30px 0; */
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background-color: #FFF;
  font-size: 5em;
  letter-spacing: 0.1em;
}

.ensemble_button{
  width: 120px;
  margin: auto; 
  color: black; 
  text-align: center;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.ensemble_button_close {
  width: 120px;
  margin: auto; 
  color: black; 
  text-align: center;
  padding: 0.2em 0.5em;
  cursor: pointer;
  position: relative;
  z-index: 110;
  cursor: pointer;
  opacity: 0;
}

.ensemble_intro_text {
  position: relative;
  background-color: #FFF;
  overflow: auto;
  display: none;
}

#button:checked~.ensemble_intro_text {display: block;}
#button {display: none;}
#button:checked~label .ensemble_button {display: none;}
#button:checked~label .ensemble_button_close {opacity: 1;}

.persona_untertitel{margin-top: 0;}
.ensemble_flex_container h1 {
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 1010px) {
  .ensemble_intro_container h1{line-height: normal;}
}
@media (max-width: 700px) {
  .ensemble_intro_container h1 {font-size: 4em;}
  .ensemble_flex_container h1 {font-size: 0.8rem;}
  .persona_untertitel {font-size: 0.6rem;}
}

@media (max-width: 550px) {
  .ensemble_intro_container h1 {font-size: 3em;}
  .ensemble_flex_container h1 {font-size: 0.8rem;}
  .persona_untertitel {font-size: 0.6rem;}
}

@media (max-width: 420px) {
  .ensemble_intro_container h1 {font-size: 2.5em;}
  .ensemble_flex_container h1 {font-size: 0.8rem;}
  .persona_untertitel {font-size: 0.5rem;}
}


.ensemble_flex_container {
  display: flex;
  justify-content:space-between;
  position: relative;
  gap: 1em 2em;
  width: 100%;
  padding: 2%;
  background-color: #FFF;
}

.ensemble_flex_box img {
  width: 100%;
  height: auto;
}
.person_container{
  display: flex;
  width: 100%;
  height: auto;
  background-color: #FFF;
  justify-content: center;
}

.person_text{
  background-color: #FFF;
}
.person_text p{
  margin: 0;
  padding:60px 30px 60px 30px;
}
.person img {
  width: 100%;
  height: auto;
} 
.person_link{
  margin: 0;
  padding: 0px 30px 60px 30px !important;
}



/* --- MAIN-DATENSCHUTZ --- */



.datenschutz_header{
  padding: 3%;
  background-color: #FFF;
}

.datenschutz_header h1 {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background-color: #FFF;
  font-size: 4em;
  letter-spacing: 0.1em;
  line-height: normal;
}
@media (max-width: 550px) {
  .datenschutz_header h1 {
    font-size: 3em;
  }
}
.datenschutz{
  position: relative;
  background-color: #FFF;
  padding: 1em 2em .2em;;
}




/* --- FOOTER --- */



#footer_nav {
  position: relative;
  width: 100%;
  margin: auto;
  /* z-index: -10; */
}

.footer_elements ul {
  width: 100%;
  margin: auto;
  padding: 15px 25px 15px 25px;
  background-color: #FFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* box-shadow: 0px 0px 0px 10px #FFF; */
  list-style-type: none;
  font-size: 1.2em;
}

.footer_elements ul li{margin-right: 10px;}

.footer_elements ul h1 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  color: #717171;
  font-size: 2rem;
}

.footer_elements ul li a:hover {
  color: #717171;
}

.scroll-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #141414;
  /* opacity: 50%; */
  border-radius: 2px;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  color: #FFFFFF;
  z-index: 100;
}

.scroll-button>a {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  line-height: 175%;
}

@media (max-width: 768px) {
  .scroll-button {
    display: none;
  }
}

