/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * 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
   ========================================================================== */
:root {
  /* --cBright : #e7e7e7; */
  /* --cBright : #f3f3f3; */
  --cBright : #ffffff;
  /* --cDark : #060601; */
  --cDark : #0B1215;
  --cMain: #444d4c;
  --cBackgroundTransparent: #444d4c;
  --cBackground: #000000;
  --trDuration: 350ms;
  --trEasing: ease-out;
  /* --trEasing: cubic-bezier(0.7, 0, 0.8, 1); */
  --pHeight: 0;
}

/* meta[ name="theme-color" ] {
  content: var(--cBackground);
} */
html {
  color: #222;
  font-size: 1.3em;
  line-height: 1.4;
  width: 100%;
  /* font-family: 'Proxima Nova', Arial, Helvetica, sans-serif; */
  color: var(--cMain);
  margin: 0; padding: 0;
  background: var(--cDark);
  font-family: agenda, sans-serif;
font-weight: 100;
font-style: normal;
}


body.unloaded { opacity: 0; }
body {
  width: 100%;
  margin: 0; padding: 0;
  background-color: var(--cBackground);
  opacity: 1;
  transition: opacity linear 100ms;
}





body.about #aboutButton.navigationButton > div:nth-child(1) {
  width: 50px; 
  height: 50px;
  border-radius: 50%;
  background-color: var(--cBright);
  padding: .25em;
  left: 35%; top: 35%;

  grid-template-areas: 'txt' 'svg';
}

body.about #aboutButton.navigationButton > div:nth-child(1) svg {
  top: auto;
  bottom: 0;
}
body.about #aboutButton.navigationButton > div:nth-child(1) div {
  align-self: end;
}
/* body.about #aboutButton:hover svg path {
  stroke: var(--cMain)
}
body.about #aboutButton:hover .buttonLabel {
  color: var(--cMain)
} */
body.about #About .headerText {
  transform: translateY( 0% );
} 
body.about #Stage .headerText {
  transform: translateY( -200% );
} 


body.about #About,
body.about #About + #Stage,
body.about #About + #Stage + #Detail  {
  transform: translateY( 0% );
}
body.about #detailButton {
  /* opacity: 0; */
  display: none;
  pointer-events: none;
}
body.about #detailButton svg,
body.about #detailButton .buttonLabel {
  display: none;
}

body.about #HeaderName,
body.detail #HeaderName {
  color: var(--cDark);
}

body.detail #About,
body.detail #About + #Stage,
body.detail #About + #Stage + #Detail  {
  transform: translateY( -200% );
}
/* body.detail #About + #Stage + #Detail .detailContent .stageTextItem {
  transform: translateY( 0% );
} */

/* body.detail #detailButton:hover +  #About + #Stage + #Detail,
body.detail #About + #Stage + #Detail  {
  transform: translateY( -191% );
} */
body.detail #Stage > .stageTextItem {
  /* transform: translateY( 360% ); */
  transform: translateY( var(--pHeight) );
  opacity: 0;
}

body.detail #detailButton {
  left: 0%; top: 0%; bottom: auto;
  /* top: 3.75%; */
  /* transform: translateX( -50% ); */
  margin: 0;
  /* transition: none; */

  transition: opacity linear 250ms;
}
body.detail #detailButton svg path {
  stroke: var(--cDark)
}
body.detail #detailButton .buttonLabel {
  color: var(--cDark)
}

body.detail #detailButton.navigationButton > div:nth-child(1) {
  left: 50%;
  transform: translateX( -50% ) translateY( 60% );
  width: 50px;
  height: 50px;
  padding: .25em;
  border-radius: 50%;
  transition: transform var(--trEasing) 200ms;
  /* background-color: #fff; */
  background-color: var(--cBright);
  grid-template-areas: 'svg' 'txt';
}
body.detail #detailButton.navigationButton > div:nth-child(1) svg {
  bottom: auto;
  top: 0;
}

body.detail #detailButton.navigationButton > div:nth-child(1)::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%; bottom: 0; top: auto;
  width: 5px; height: 100%;
  background-color: var(--cBright);
  /* background-color: #f0f; */
  transform: translateX( -50% ) translateY( 90% ) scale( 1, 0 );
}
body.detail #detailButton.navigationButton > div:nth-child(1)::before {
  display: none;
}
/* body.detail #detailButton.navigationButton:hover > div:nth-child(1)::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%; bottom: 0; top: auto;
  width: 3px; height: 100%;
  background-color: var(--cBright);
  transform: translateX( -50% ) translateY( 90% ) scale( 1, 1 );
} */

body.detail #Detail .detailContent .stageTextItem {
  transform: translateY( 0%);
  opacity: 1;
}
/* body.detail #detailButton {
  top: 0; bottom: auto;
} */
/* body.detail #detailButton {
  top: 0; bottom: auto;
} */
body.detail #aboutButton {
  /* opacity: 0; */
  pointer-events: none;
}
body.detail #aboutButton svg,
body.detail #aboutButton .buttonLabel,
body.detail #aboutButton {
  display: none;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * 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;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
#console {
  display: none;
  position: fixed;
  top: 0; left: 0;
  height: 100px; width: 150px;
  padding: 10px;
  background-color: #fff;
  font-size: 12px;
  opacity: 1;
  color: #000;
  transition: all ease-in-out 250ms;
  z-index: 9999999999999999999;
}
#console.hide { transform: translateX( -90% ); opacity: .5; }

#modalForm {
  position: absolute;
  top: 50%; left: 50%;
  width: auto; height: auto;
  transform: translate( -50%, -50% );
  /* box-shadow: 0px 0px 0px 2px #f0f; */
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 20%);
  border-radius: 5px;
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-style: normal;

  background-color: var(--cBright);
}

#modalForm form {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto;
  row-gap: .5em;
  grid-template-areas: 'txtUser inpUser' 'txtPw inpPw' 'bttnLogin bttnLogin';
  margin: 2.5em;
}

#modalForm form > label:nth-child(1) {
  grid-area: txtUser;
}
#modalForm form > input:nth-child(2) {
  grid-area: inpUser;
}
#modalForm form > label:nth-child(3) {
  grid-area: txtPw;
}
#modalForm form > input:nth-child(4) {
  grid-area: inpPw;
}
#modalForm form > button:nth-child(5) {
  grid-area: bttnLogin;
}

#modalForm form * {
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-style: normal;
}

#modalForm form > input {
  border: none;
  border-bottom: 1px solid #000;
  background: none;
}
#modalForm form > input:focus {
  outline: none;
}

#modalForm form > button {
  border: none;
  margin-top: 2em;
  padding: .5em;
  background-color: var(--cDark);
  color: var(--cBright);
  transition: all linear 200ms;
  border-radius: 5px;
}
#modalForm form > button:hover {
  /* background-color: #b1dbd9; */
  background-color: var(--cMain);
}
#logout {
  position: absolute;
  top: 0; right: 0;
  z-index: 9999999999999999999
}
button {
  font-family: inherit;
  font-family: agenda, sans-serif;
  /* font-weight: 100; */
  font-size: .8em;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
svg path {
  transition: stroke linear 100ms;
}

#Head {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  /* min-height: 100px; */
  height: 0px;
  /* background-color: #FFFFFF; */
  z-index: 9999;
  background-color: var(--cBright);
  /* background: var(--cDark); */
  /* box-shadow: 0px 0px 5px rgba( 0, 0, 0, .25 ); */
  /* background-color: #badbd9; */
}
#aboutButton {
  position: absolute;
  top: 0px; left: 0;
  width: 100%; height: 15%;
  /* margin-top: -2%; */
  background: none;
  border: none;
  color: var(--cMain);
  z-index: 99999999;
}
#aboutButton.active {
  bottom: -2%; top: auto;
  color: var(--cDark);
  z-index: 999999999;
}

.navigationButton {

  cursor: pointer;
}


#aboutButton svg {
  width: 15px;
  animation-name: animUpnDown;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX( -50% ) translateY( 25% );
}
#aboutButton svg {
  stroke: var(--cMain)
}
#aboutButton svg path:nth-child(2) {display: none;}
@keyframes animUpnDown {
  0% { transform: translateX( -50% ) translateY( 25% );}
  50% { transform: translateX( -50% ) translateY( -25% );}
  0% { transform: translateX( -50% ) translateY( 25% );}
}
#aboutButton #hiddenSectionLabel {
  font-size: .6em;
  /* margin-top: .2em; */
  text-align: center;
  transition: color linear 100ms;
  /* color: rgba(255, 255, 255, 0.5); */
  /* color: var(--cMain); */
}
#aboutButton.active svg path {
  stroke: var(--cDark);
}
#aboutButton.active svg path:nth-child(1) { display: none; }
#aboutButton.active svg path:nth-child(2) { display: inline; }
/* #aboutButton.active #hiddenSectionLabel {
  color: var(--cDark);
} */


/* #Main #name1, */
#aboutButton #HeaderName {
  display: block;
  position: absolute;
  text-transform: uppercase;
  left: 10%; top: 50%;
  /* color: var(--cMain); */
  font-size: 1.5em;
  font-weight: 100;
  transform: translateY(-50%);

  /* transition: ba  ease-in 1000ms; */
  /* background: linear-gradient( var(--cDark) 0%, var(--cMain) 0% );
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

#Main {
  position: relative;
  width: 100%;
  /* margin-top: 100px; */
  overflow: hidden;
}

#About {
  position: relative;
  transform: translateY( -100% );
  height: 100%;
  color: var(--cDark);
  box-sizing: border-box;
  padding: 10% 0%;

  background: var(--cBright);
  transition: transform var(--trEasing)  var(--trDuration);
}
/* #About #aboutContent {
  display: grid;
  grid-template-columns: 250px auto;
  grid-template-rows: 250px auto;
  grid-template-areas: 'img stats' 'txt txt';
  width: 80%;
  margin: 0 auto;
} */
#About #aboutImage {
  grid-area: img;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background-color: #a7a7a7;
}
#About #aboutImage img {
  max-width: 100%;
  max-height: 100%;
}
#About #aboutStats {
  grid-area: stats;
}
#About #aboutText {
  grid-area: txt;
  width: 50%;
  text-align: center;
  /* text-align: left; */
  margin: 0 auto;
  margin-top: 2em;
}

#About .headerText {
  position: absolute;
  bottom: 2%; left: 10%;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 100;
  color: var(--cDark);
  transform: translateY( 200% );
  transition: transform var(--trEasing)  var(--trDuration);
  z-index: 9999;
}
/* #About > div {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;height:7%;
  text-align: center;
  text-anchor: middle;
} */

#Stage {
  position: relative;
  width: 100%;
  /* min-height: 900px; */
  /* height: 900px; */
  height: 100%;
  /* background-color: #ffffff; */

  background-color: var(--cBackground);
  /* margin-top: 100px; */
  overflow: hidden;
  transform: translateY( -100% );
  transition: transform var(--trEasing)  var(--trDuration), background-color ease-in 250ms;
  /* box-shadow: 0px -1px 10px rgba( 0, 0, 0, .15 ); */
}
#Stage .stageSlideControl {
  position: absolute;
  width: 50px; height: 100px;
  top: 60%;
  transform: translateY( -50% ) translateX( 0% ) scale( 1 );
  transition: transform var(--trEasing) 200ms;
  border: none;
  z-index: 99999999;
  background-color: none;
  background: none
}
#Stage .stageSlideControl:active {
  transform: translateY( -50% ) translateX( 0% ) scale( .9 );
}
#Stage .stageSlideControl > svg {
  width: 100%;
}
#Stage .stageSlideControl > svg path {
  stroke: var(--cMain);
}
#Stage .stageSlideControl.left { 
  left: 2.5%;
  animation-name: slideFromLeft;
  animation-duration: 250ms;
  animation-fill-mode: backwards;
  animation-delay: 500ms;
}
#Stage .stageSlideControl.right { 
  right: 2.5%;
  animation-name: slideFromRight;
  animation-duration: 250ms;
  animation-fill-mode: backwards;
  animation-delay: 500ms;
}
@keyframes slideFromLeft {
  from { transform: translateY( -50% ) translateX( -160% ); }
  to { transform: translateY( -50% ) translateX( 0% ); }
}
@keyframes slideFromRight {
  from { transform: translateY( -50% ) translateX( 160% ); }
  to { transform: translateY( -50% ) translateX( 0% ); }
}



#Stage .headerText {
  position: absolute;
  /* top: 3%;  */
  top: 3vh; 
  left: 10%;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 100;
  text-shadow: 1px 1px 1px rgba(0,0,0,.25);
  transition: transform var(--trEasing)  var(--trDuration);
  z-index: 9999;
}

.stageItem { position: relative;display:block; float: left;width: 100%;height: 100%; transition: transform var(--trEasing)  var(--trDuration)}
.stageItem .stageImage {
  position: absolute;
  width: 100%; height: 100%;
  overflow: hidden;
}
.stageItem .stageImage img,
.stageItem .stageImage video {
  position: absolute;
  left: 50%; top: 0;
  height: 100%; width: auto;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity linear 250ms;
}
.stageItem .stageImage img.loaded,
.stageItem .stageImage video.loaded {
  opacity: 1;
}

.stageItem .stageImage.alignRight {
  width: 50%; right: 0;
}
.stageItem .stageImage.alignRight img,
.stageItem .stageImage.alignRight video {
  position: absolute;
  left: auto; top: 0;
  right: 0;
  /* height: 100%; width: auto; */
  height: 100%; width: auto;
  transform: translateX( 0% );
}

.stageItem .stageText {
  position: absolute;
  top: 96px; left: 13.25%;
  /* font-family: 'Proxima Nova', Arial, Helvetica, sans-serif; */
  color: var(--cMain);
  display: none;
  z-index: 99;
}

.stageItem .stageDetail {
  display: none;
}

#Detail .detailContent .stageTextItem,
#Stage > .stageTextItem {
  /* position: absolute; */
  position: absolute;
  top: 10%; 
  top: 20%; left: 10%;
  min-width: 10%;
  min-height: 10%;
  /* font-family: 'Proxima Nova', Arial, Helvetica, sans-serif; */
  color: var(--cMain);
  /* transition: color linear 100ms, transform var(--trEasing) 200ms; */
  transition: color linear 100ms, opacity var(--trEasing) 200ms, transform var(--trEasing) var(--trDuration);
  z-index: 99999999;
}
#Detail .detailContent .stageTextItem > p,
#Stage > .stageTextItem > p {
  max-width: 460px;
  font-size: 1.2em;
}
#Detail .detailContent .stageTextItem > p:nth-child( 1 ),
#Stage > .stageTextItem > p:nth-child( 1 ) { font-size: 0.77em; text-transform: uppercase; margin: 0px;}
#Detail .detailContent .stageTextItem > p:nth-child( 2 ),
#Stage > .stageTextItem > p:nth-child( 2 ) { font-size: 2.88em; font-weight: normal; text-transform: uppercase; margin-top: .2em; line-height: 1; margin-bottom: .5em }
#Detail .detailContent .stageTextItem > p:nth-child( 3 ),
#Stage > .stageTextItem > p:nth-child( 3 ) { font-size: .8em; text-transform: uppercase; margin-top: .2em; line-height: 1; margin-bottom: .5em; line-height: 1.3em; }

/* #detailButton {
  position: absolute;
  left: 0; bottom: 0%;
  width: 100%; height: 15%;
  border: none;
  background: none;
  z-index: 99999999
} */
/* #detailButton {
  position: absolute;
  left: 0; bottom: 0%;
  width: 10%; height: 14%;
  margin-left: 18%;
  border: none;
  background: var(--cBright);
  z-index: 99999999
} */
#detailButton {
  position: absolute;
  left: 0; bottom: 0%;
  width: 100%; height: 14%;
  /* margin-left: 10%; */
  border: none;
  background: none;
  pointer-events: none;
  transition: transform var(--trEasing) 400ms;
  transform: translateY( 100% );
  z-index: 99999999
}
#detailButton.visible {
  display: block;
  pointer-events: all;
  transform: translateY( 0% );
  /* animation-name: moveUp;
  animation-duration: 400ms;
  animation-timing-function: var(--trEasing); */
}
@keyframes moveUp {
  from { transform: translateY( 200% ) };
  to { transform: translateY( 0% ) };
}

/* #detailButton::before {
  content: '';
  position: absolute;
  top: 0; left:50%;
  transform: translateX( -50% ) translateY( -50% ) rotate( 45deg );
  width: 75%; height: auto;
  padding-top: 75%;
  background-color: var(--cBackground);
} */

#detailButton.active {
  z-index: 999999999;
}

#detailButton svg {
  position: absolute;
  left: 50%; bottom: 0;
  width: 15px;
  animation-name: animUpnDown;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: translateX( -50% ) translateY( 25% );
}

#detailButton.navigationButton > .gooeyElement {
  position: absolute;
  left: 30%; bottom: 0;
  width: 50%; height: 100%;
  transform: translateX( -50% );
  /* box-shadow: 0px 0px 2px #f0f; */
  /* filter: url(#gooey) */
}
#detailButton.navigationButton > .gooeyElement > div:nth-child(1) {
  position: absolute;
  left: 50%; top: 0;
  width: 75px; height: 75px;
  transform: translateX( -50% );
  background-color: var(--cBright);
  border-radius: 50%;
}
#detailButton.navigationButton > .gooeyElement > div:nth-child(2) {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 100%;
  background-color: var(--cBright);
  transform: translateY( 115% );
  transition: transform ease-in-out 200ms;
}
#detailButton.navigationButton:hover > .gooeyElement > div:nth-child(2) {
  transform: translateY( 0% );
}
#detailButton.active svg path:nth-child(1) { display: inline; }
#detailButton.active svg path:nth-child(2) { display: none; }

.navigationButton > div:nth-child(1) {
  position: absolute;
  width: auto;
  /* height: auto; */
  height: 30px;
  transform: translateX( -50% );

  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 50% 50%;
  grid-template-areas: 'svg' 'txt';
}
.navigationButton > div:nth-child(1) svg { grid-area: svg; }
.navigationButton > div:nth-child(1) div { grid-area: txt; }
.navigationButton > div:nth-child(1) > * { margin: 0 auto; }

#aboutButton.navigationButton > div:nth-child(1) {
  /* left: 35%;  */
  left: 50%; 
  /* top: 15%; */
  top: 3.7vh;
}
#aboutButton.navigationButton > div:nth-child(2) {
  position: absolute;
  left: 35%; top: 0;
  transform: translateX( -50% ) translateY( 0% );
  width: 10%; 
  /* height: calc( var( --pHeight ) * .1 ); */
  height: 100%;
  /* filter: url(#gooeyStencil); */
  /* box-shadow: 0px 0px 0px 1px #f0f; */
}
#aboutButton.navigationButton > div:nth-child(2) div:nth-child(2) {
  position: absolute;
  left: 50%; 
  /* bottom: calc( var( --pHeight ) * .025 ); */
  /* bottom: 5.5%; */
  top: 17.5%;
  width: 50px; height: 50px;
  /* background-color: #f00;
  background-color: var(--cBright); */
  /* box-shadow: 0px 0px 0px 1px var(--cBright); */
  border-radius: 50%;
  /* opacity: 0.5; */
  transform: translateY( calc( 0% ) ) translateX( -50% );
  transition: transform var(--trEasing) var(--trDuration), opacity var(--trEasing) 200ms;
}
#aboutButton.navigationButton > div:nth-child(2) div:nth-child(1) {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: calc( var( --pHeight ) * .1 );
  transform: translateY( calc( -100% - 6px ) );
  transition: transform var(--trEasing) var(--trDuration);
  background-color: #f0f;
  /* opacity: 0; */
  background-color: var(--cBright);
}


#detailButton.navigationButton > div:nth-child(1) {
  /* left: 50%; top: 10%; */
  left: 50%; 
  bottom: 3vh;
  /* top: 30%; */
  pointer-events: none;
  width: 50px;
  /* height: 50px; */
  /* padding: .25em; */
  border-radius: 50%;
  /* background-color: var(--cBright); */
  /* box-shadow: 0px 1px 2px rgb( 0 0 0 / 10% ); */
  z-index: 999999;
  transform: translateY( 0% ) translateX( -50% );
  transition: transform var(--trEasing) 150ms;
  grid-template-areas: 'txt' 'svg';
  /* transition: transform var(--trEasing) var(--trDuration); */
}
#detailButton.navigationButton > div:nth-child(2) {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX( -50% );
  width: 50%; height: 100%;
  /* filter: url(#gooey); */
  /* box-shadow: 0px 0px 0px 1px #f0f; */
}
#detailButton.navigationButton > div:nth-child(2) div:nth-child(2) {
  position: absolute;
  left: 50%; 
  /* bottom: calc( var( --pHeight ) * .025 ); */
  /* bottom: 5.5%; */
  top: 10%;
  width: 60px; height: 60px;
  background-color: #f00;
  background-color: var(--cBright);
  border-radius: 50%;
  transform: translateY( calc( 0% ) ) translateX( -50% );
  transition: transform var(--trEasing) var(--trDuration);
}
#detailButton.navigationButton > div:nth-child(2) div:nth-child(1) {
  position: absolute;
  left: 0; 
  /* bottom: 0; */
  bottom: calc( var(--pHeight) * -.05 );
  width: 100%; height: calc( var( --pHeight ) * .1 );
  transform: translateY( calc( 100% + 5px ) );
  transition: transform var(--trEasing) var(--trDuration);
  background-color: #f0f;
  /* opacity: 0; */
  background-color: var(--cBright);
}


body.detail #detailButton.navigationButton > div:nth-child(2) {
  bottom: auto; top: 0;
}

body.detail #detailButton.navigationButton > div:nth-child(2) div:nth-child(2) {
  top: 50%
}
body.detail #detailButton.navigationButton > div:nth-child(2) div:nth-child(1) {
  bottom: auto; top: calc( var(--pHeight) * .05 + 5px );
  transform: translateY( 0% );
}


/* #detailButton.navigationButton > div:nth-child(1)::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%; top: 1%;
  width: 3px; height: 100%;
  background-color: var(--cBright);
  transform: translateX( -50% ) scale( 1, 0 ) translateY( -100% );
  transition: transform var(--trEasing) 200ms;
  z-index: -1;
}
#detailButton.navigationButton:hover > div:nth-child(1)::after {
  transform: translateX( -50% ) scale( 1, 1 ) translateY( -100% );
}
#detailButton.navigationButton > div:nth-child(1)::before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0;
  left: 50%; top: 0%;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 3px solid var(--cBright);
  transform: translateX( -50% ) translateY( -90% ) scale( 0, 0 );
  transition: transform var(--trEasing) 100ms, top var(--trEasing) 200ms;
  transition-delay: 190ms, 0ms;
}
#detailButton.navigationButton:hover > div:nth-child(1)::before {
  top: -100%;
  opacity: 1;
  transform: translateX( -50% ) translateY( -90% ) scale( 1, 1 );
  transition: transform var(--trEasing) 100ms, top var(--trEasing) 200ms;
  transition-delay: 0ms, 0ms;
} */


.navigationButton.active svg path {
  stroke: var(--cDark); 
}
.navigationButton.active svg path:nth-child(1) { display: none; }
.navigationButton.active svg path:nth-child(2) { display: inline; }
.navigationButton.active #hiddenSectionLabel {
  /* color: rgba( 0, 0, 0, 0.5 ); */
  color: var(--cDark);
}

.navigationButton.top svg path:nth-child(1) { display: inline; }
.navigationButton.top svg path:nth-child(2) { display: none; }

.navigationButton.bottom svg path:nth-child(1) { display: none; }
.navigationButton.bottom svg path:nth-child(2) { display: inline; }

.navigationButton.bottom .buttonLabel {
  color: var(--cDark);
}
.navigationButton svg {
  margin-top: .75em
}
.navigationButton.bottom svg path {
  stroke: var(--cDark);
}
.navigationButton .buttonLabel {
  color: var(--cMain);
}
.navigationButton svg path {
  stroke: var(--cMain);
}

/* #detailButton.navigationButton > * {
  margin-left: -50%;
} */
#aboutButton.navigationButton > svg,
#aboutButton.navigationButton > .buttonLabel {
  margin-left: -20%;
}
.buttonLabel {
  font-size: .6em;
  margin-top: .5em;
  text-align: center;
  transition: color linear 100ms;
  color: var(--cMain)
  /* color: rgba(255, 255, 255, 0.5); */
  /* color: var(--cMain); */
}
/* .navigationButton.active:hover #hiddenSectionLabel {
  color: var(--cMain);
}
.navigationButton.active:hover svg path {
  stroke: var(--cMain);
} */

#Detail {
  position: relative;
  width: 100%;
  height: 100%;
  /* background-color: var(--cBackground); */
  transform: translateY( -100% );
  transition: transform var(--trEasing)  var(--trDuration);
  overflow: scroll;
  /* overflow: hidden; */
  /* background-color: var(--cBackground); */
  /* overflow: hidden;
  transform: translateY( -100% );
  transition: transform var(--trEasing) 200ms, background-color ease-in 250ms; */
}
#Detail .detailContent {
  position: relative;
  /* top: -6%; */
  top: 0%;
  /* width: 90%; height: 80%; */
  width: 90%; height: auto;
  margin: 0 auto;
  /* margin-top: 5%; */
  margin-top: calc( var(--pHeight) * .05 );
  border-radius: 5px;
  transition: transform var(--trEasing) 250ms;
  padding: 5% 0;
  background-color: var(--cBright);
  box-shadow: 0px 0px 2px rgb( 0 0 0 / 10% );

  display: grid;
  grid-template-columns: 50% 50%;
  /* grid-template-rows: auto auto auto; */
  /* grid-template-rows: 300px 400px auto; */
  grid-template-rows: auto auto auto;
  /* grid-template-areas: 'head imgs' 'txt imgs'; */
  grid-template-areas: 'head .' 'txt img' 'imgs imgs';
  /* background-color: #e7e7e7; */
}

#Detail .detailContent .stageTextItem {
  grid-area: head;
  align-self: baseline;
  /* width: 100% */
}

.detailContent > div:nth-child(2) {
    grid-area: txt;
    padding: 2em;
    padding-top: 4em;

  font-size: 0.7em;
}
.detailContent > div:nth-child(2) h3 {
    margin: 0;
    margin-top: 1em;
    font-weight: 300;
}
.detailContent > div:nth-child(2) h3:first-child {
    margin: 0;
    margin-top: 0em;
}
.detailContent > div:nth-child(2) p {
    font-weight: 300;
}
.detailContent > div:nth-child(2) li {
    /* margin-top: .25em; */
    margin-top: 1em;
    line-height: 1.4em;
}
.detailContent > div:nth-child(2) ul {
    margin-top: 0;
    padding-left: 2em;
}
.detailContent > div:nth-child(3) {
    grid-area: img;
    margin-top: 2em;
    /* padding: 2em;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas: 'l r'; */
}
.detailContent > div:nth-child(3) img {
  width: 80%;
  margin: 0 auto;
  display: block;
  border-radius: 3px;
}
.detailContent > div:nth-child(4) {
  grid-area: imgs;
  width: 100%; 
  /* height: 300px; */
  height: auto;
  margin-top: 5vw;
  margin-bottom: 5vw;
  display: grid;
  grid-template-columns: calc( 99% / 3 ) calc( 99% / 3 ) calc( 99% / 3 );
  /* grid-template-rows: 300px; */
  grid-template-rows: auto;
  grid-template-areas: 'img1 img2 img3';
  column-gap: .5%;
}
.detailContent > div:nth-child(4) div:nth-child(1) {
  grid-area: img1;
}
.detailContent > div:nth-child(4) div:nth-child(2) {
  grid-area: img2;
}
.detailContent > div:nth-child(4) div:nth-child(3) {
  grid-area: img3;
}
.detailContent > div:nth-child(4) div { 
  overflow: hidden; align-content: center; 
  border-radius: 3px;
}
.detailContent > div:nth-child(4) div img {
  max-width: 100%;
  border-radius: 3px;
}
/*
.detailContent > div:nth-child(4) img {
  max-width: calc( 98% / 3 ); max-height: 100%;
  float: left;
}
.detailContent > div:nth-child(4) img:nth-child(2) {
  margin: 0 1%;
}
*/

/* .detailContent > div:nth-child(3) > div:nth-child(1) {
    grid-area: l;
}
.detailContent > div:nth-child(3) > div:nth-child(2) {
    grid-area: r;
}
.detailContent > div:nth-child(3) > div img {
    max-width: 98%;
    margin: 1%;
    transform: scale( 1 );
    transition: transform ease-in-out 150ms;
} */






/* #Detail .detailContent::before {
  content: '';
  position: absolute;
  top: 0; left: 25%;
  width: 10px; height: 10px;
  border-radius: 2px;
  background-color: var(--cBright);
  transform: translateX( -50% ) translateY( -40% ) rotate( 45deg );
} */
#Detail .detailContent .stageTextItem {
  /* left: 5%; top: 10%; */
  position: relative;
  left: 5.5%; top: 11.3%;
  transition: transform var(--trEasing)  var(--trDuration), opacity var(--trEasing) 200ms;
  opacity: 0;
  /* transform: translateY( -350% ); */
  transform: translateY( var(--pHeight) );
  /* width: 40%;  */
  width: 80%; 
  height: auto;
  padding-bottom: 2%;
  overflow: hidden;
}
#Detail .detailContent .stageTextItem::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0%;
  width: 100%; height: 1px;
  /* background-color: var(--cDark); */
  background: linear-gradient( to right, rgba( 0, 0, 0, .5 ) 90%, rgba( 0, 0, 0, 0 ) 100% );
  transform: translateX( 0% ) scaleX( 1.2 )
}
body.detail #Detail .detailContent .stageTextItem::after {
  animation-name: gradFill;
  animation-duration: 1000ms;
  animation-timing-function: var(--trEasing);
  animation-delay: 250ms;
  animation-fill-mode: backwards;

}
@keyframes gradFill {
  from  { transform: translateX( -50% ) scaleX( 0 ) }
  to    { transform: translateX( 0% ) scaleX( 1.2 ) }
} 

/* #Detail .detailContent .stageTextItem */
#Detail .detailContent p {
  color: var(--cDark);
}
#Detail .detailContent > div.detailParagraph {
  position: relative;
  left: 5.5%; top: 50%;
  margin-top: 5%;
  font-size: 0.7em;
  width: 84%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto; 
  grid-column-gap: 5%;
  align-items: center;
  
  /* box-shadow: 0px 0px 0px 1px #0f0; */
}
#Detail .detailContent > div.detailParagraph.left {
  grid-template-areas: 'image cnt';
}
#Detail .detailContent > div.detailParagraph.right {
  grid-template-areas: 'cnt image';
}
#Detail .detailContent > div.detailParagraph div {
  grid-area: cnt;
}
#Detail .detailContent > div.detailParagraph img {
  grid-area: image;
}

/* #Detail .detailContent > div.detailParagraph > * {
  box-shadow: 0px 0px 0px 1px #f0f;
} */
#Detail .detailContent > div.detailParagraph h3 {
  font-weight: 300;
}

#Detail .detailContent > div.detailParagraph li {
  margin-bottom: 1em;
}

#Detail .detailContent > div.detailParagraph p,
#Detail .detailContent > div.detailParagraph h3,
#Detail .detailContent > div.detailParagraph ul {
  position: relative;
  display: block;
  /* width: 50%;  */
  height: auto;
  /* float: left;  */
  margin-top: 0;
  /* box-shadow: 0px 0px 2px #f0f; */
}
#Detail .detailContent > div.detailParagraph ul {
  padding: 1em;
}
#Detail .detailContent > div.detailParagraph p span {
  display: inline-block;
  margin-bottom: 1em;
}
#Detail .detailContent > div.detailParagraph p span::after {
  content: '\a';
  white-space: pre;
}
#Detail .detailContent > div.detailParagraph img {
  /* position: absolute;
  top: 11.3%; right: 5.5%; */
  /* width: 40%; height: auto; */
  margin: 0 auto;
  max-height: 30em;
  max-width: 100%;
  /* margin-left: 10%; */
}


#Detail .detailContent .detailText {
  position: relative;
  left: 5.5%; top: 50%;
  margin-top: 5%;
  font-size: 0.7em;
  /* width: 44.5%; height: 44.5%; */
  width: 40%; height: auto;
}
#Detail .detailContent .detailImage {
  position: absolute;
  top: 11.3%; right: 5.5%;
  width: 40%; height: 77.4%;
}
#Detail .detailContent .detailImage img {
  width: 40%;
  display: block;
  float: left;
  margin: 0.2em;
}


#mainNavigation {
  position: absolute;
  left: 1%; 
  /* left: 2%;  */
  top: 32%;
  width: auto;
  transform: translateX( -40% ) rotate( -90deg ) translateX( 0% );
  transition: transform var(--trEasing) var(--trDuration);
  /* box-shadow: 0px 0px 0px 1px #f0f; */
  z-index: 99999999999;
}

#mainNavigation button {
  /* transition: transform var(--trEasing) 200ms; */
  /* width: 100px; */
  transition: all linear 100ms;
  transform: scale( 1 ) translateY( 0% );
  /* float: left; */
  display: inline-block;
  background: none;
  border: none;
  /* border: 1px solid #f0f; */
  min-height: 40px;
  color: var(--cMain);
  padding: 0em 0.2em;

  /* font-size: .6em; */
  font-size: 1em;
}
#mainNavigation span {
  /* display: flex; */
  /* transform: translateY( 0.2em ); */
  display: inline-block;
  font-size: .7em;
  transition: opacity linear 100ms;
  /* font-weight: 100; */
  opacity: .25;
  letter-spacing: .15em;
}

#mainNavigation span:nth-child(2),
#mainNavigation span:nth-child(4) {
  display: inline-block;
  position: relative;
}
#mainNavigation span:nth-child(2)::before,
#mainNavigation span:nth-child(2)::after,
#mainNavigation span:nth-child(4)::before,
#mainNavigation span:nth-child(4)::after {
  content: '>';
  display: inline-block;
  transform: translateX( -150% );
  opacity: 0;
  transition: transform linear 100ms, opacity linear 100ms;
}
#mainNavigation span:nth-child(4)::before {
  content: '<';
  transform: translateX( 150% );
}

#mainNavigation span:nth-child(4)::before {
  content: '<';
  transform: translateX( 150% );
}
#mainNavigation span:nth-child(2)::before {
  content: '<';
  transform: translateX( 150% );
}
/* #mainNavigation button:nth-child(1) {
  text-align: right;
}
#mainNavigation button:nth-child(3) {
  text-align: center;
}
#mainNavigation button:nth-child(5) {
  text-align: left;
} */
/* #mainNavigation button:hover { */
  /* transform: scale( 1.2 ); */
  /* transform: scale( 1.2 ); */
  /* width: 150px; */
  /* font-size: .7em; */
/* } */
#mainNavigation button.active {
  /* font-size: .7em; */
  pointer-events: none;
}
/* #mainNavigation button.disabled, */
body.about #mainNavigation button {
  color: var(--cDark);
}
#mainNavigation.about span:nth-child(2),
#mainNavigation.about button:nth-child(1),
#mainNavigation.nodetails span:nth-child(2),
#mainNavigation.nodetails button:nth-child(1) {
  opacity: 0;
  pointer-events: none;
}
#mainNavigation.detail span:nth-child(4),
#mainNavigation.detail button:nth-child(5) {
  opacity: 0;
  pointer-events: none;
}
#mainNavigation button.active span {
  opacity: 1;
}

/* #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation button:nth-child(5),
#detailButton:hover + #About + #Stage + #Detail + #mainNavigation button:nth-child(1) {
  font-size: .7em;
} */

/* body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation button:nth-child(3) { font-size: .7em; } */


#Footer {
  position: relative;
  width: 100%;
  min-height: 100px;
  /* background-color: #e7e7e7; */
  background-color: var(--cDark);
  color: var(--cBright);
  text-align: center;
  /* background-color: #badbd9; */
}
#Footer div {
  position: relative;
  top: 1.5em
}
#Footer button,
#Footer a {
  text-decoration: none;
  text-transform: none;
  color: var(--cBright);
  background: none;
  border: none;
  font-size: .8em;
  /* text-transform: uppercase; */
  font-weight: 100;
  padding: 0;
}

#Impressum {
  position: fixed;
  top: 0%; left: 0%;
  width: 100%; height: 100%;
  background-color: #fff;
  display: none;

  box-sizing: border-box;
  padding: 5%;
  color: var(--cDark);

  font-size: 0.7em;
  overflow-y: scroll;
  z-index: 999999999999999;
}
#Impressum button {
  background: none;
  border: none;
}
#Impressum button.bttnX {
  position: absolute;
  top: 2.5%; right: 2.5%;
  width: 25px; height: 25px;
}
#Impressum button svg {
  width: 100%; height: 100%;
  stroke: var(--cDark)
}
#Impressum h1,
#Impressum h2,
#Impressum h3 {
  font-weight: 300;
}
#Impressum h2 {
  font-size: 1.4em;
}
#Impressum h3 {
  font-size: 1em;
  margin-bottom: .25em;
}


#test {
  position: absolute;
  bottom: 0%; left: 50%;
  width: 200px;
  /* height: 200px; */
  height: calc( var(--pHeight) / 2 );
  /* box-shadow: 0px 0px 0px 1px #f0f; */
  overflow: hidden;
  /* filter: url(#gooey) */
}
#test div:nth-child(1) {
  position: absolute;
  bottom: 0%; left: 0%;
  width: 100%; height: calc( var(--pHeight) * .1 );
  /* background-color: #00f; */
  background-color: var(--cBright);
  transition: transform var(--trEasing) var(--trDuration);
  transform: translateY( 100% );
}
#test div:nth-child(2) {
  position: absolute;
  left: 50%; bottom: 5.5%;
  transform: translateX( -50% );
  width: 60px; height: 60px;
  /* background-color: #f0f; */
  background-color: var(--cBright);
  border-radius: 50%;
}


a-scene > canvas {
  transform: translateX( 7% );
  display: none;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

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

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {

  body.about #aboutButton:hover + #detailButton +  #About,
  body.about #aboutButton:hover + #detailButton +  #About + #Stage {
    transform: translateY( -10% );
    /* transform: translateY( -10% ); */
  }
  body.about #aboutButton:hover + #detailButton +  #About .headerText {
    /* transform: translateY( 100% ); */
    transform: translateY( 200% );
  }
  body.about #aboutButton:hover + #detailButton +  #About + #Stage .headerText {
    transform: translateY( 0% );
    /* transform: translateY( -100% ); */
  }
  body.detail #detailButton:hover +  #About,
  body.detail #detailButton:hover +  #About + #Stage,
  body.detail #detailButton:hover + #About + #Stage + #Detail {
    transform: translateY( -195% );
    /* transform: translateY( -190% ); */
  }
  /* body.detail #detailButton:hover +  #About + #Stage .stageTextItem {
    transform: translateY( 200% ); */
    /* top: auto; bottom: 0; */
  /* } */
  body.detail #detailButton:hover svg path {
    stroke: var(--cDark)
  }
  body.detail #detailButton:hover .buttonLabel {
    color: var(--cDark)
  }
  body.detail #detailButton.navigationButton:hover > div:nth-child(1) {
    transform: translateX( -50% ) translateY( 0% );
  }
  #aboutButton:hover + #detailButton +  #About + #Stage + #Detail + #mainNavigation {
    /* transform: translateX( -40% ) rotate( -90deg ) translateX( -41% ); */
    transform: translateX( -40% ) rotate( -90deg ) translateX( calc(var(--pHeight) * -.1) );
  }
  #aboutButton:hover + #detailButton +  #About,
  #aboutButton:hover + #detailButton +  #About + #Stage {
    transform: translateY( -90% );
  }
  #aboutButton:hover + #detailButton +  #About + #Stage .stageItem {
    transform: translateY( -5% );
  }
  #aboutButton:hover + #detailButton +  #About .headerText {
    transform: translateY( 0% );
  } 
  /* #Main #name1 {
    z-index: 999999999;
    top: 4.8%;
  } */
  #aboutButton:hover #HeaderName {
    color: var(--cDark);
  }
  /* #aboutButton:hover #hiddenSectionLabel {
    color: var(--cDark);
  } */
  /* #aboutButton:hover svg path {
    stroke: var(--cDark);
  } */
  #aboutButton.active:hover #HeaderName {
    color: var(--cMain);
  }
  /* #aboutButton.active:hover #hiddenSectionLabel {
    color: var(--cMain);
  }
  #aboutButton.active:hover svg path {
    stroke: var(--cMain);
  } */

  #Stage .stageSlideControl:hover {
    transform: translateY( -50% ) translateX( 0% ) scale( 1.1 );
  }
  #aboutButton:hover + #detailButton +  #About + #Stage .headerText {
    transform: translateY( -200% );
  } 


  #detailButton:hover + #About + #Stage + #Detail {
    transform: translateY( -116% );
    /* transform: translateY( -105% ); */
  } 


  #detailButton:hover + #About + #Stage + #Detail + #mainNavigation + #test div:nth-child(1) {
    transform: translateY( calc( 0% + 10px ) );
  }
  #detailButton:hover + #About + #Stage + #Detail + #mainNavigation {
    /* transform: translateX( -40% ) rotate( -90deg ) translateX( 40% ); */
    transform: translateX( -40% ) rotate( -90deg ) translateX( calc(var(--pHeight) * .1) );
  }
  #detailButton:hover + #About,
  #detailButton:hover + #About + #Stage {
  /* #detailButton:hover + #About + #Stage + #Detail { */
    
    transform: translateY( -110% );
  }
  /* #detailButton:hover + #About + #Stage .stageItem {
    transform: translateY( 5% );
  } */
  /* #detailButton:hover + #About + #Stage .stageTextItem {
    transform: translateY( 40% );
  } */

  /* #detailButton:hover + #About + #Stage button {
    transform: translateY( -15% ) translateX( 0% ) scale( 1 ) 
  } */
  /* #detailButton:hover + #About + #Stage .headerText {
    transform: translateY( 196% ) 
  } */
  #detailButton:hover + #About + #Stage + #Detail .detailContent {
    /* transform: translateY( 0% );  */
    transform: translateY( -1.5% ); 
  }
  /* #detailButton:hover svg path {
    stroke: var(--cDark);
  } */
  #aboutButton.navigationButton:hover > div:nth-child(2) div:nth-child(2) {
    transform: translateY( 0% ) translateX( -50% );
    opacity: 1;
  }
  #aboutButton.navigationButton:hover > div:nth-child(2) div:nth-child(1) {
    /* bottom: 0px; */
    transform: translateY( -6px );
    /* opacity: 1; */
  }

  #detailButton.navigationButton:hover > div:nth-child(1) {
    transform: translateY( 50% ) translateX( -50% );
  }

  #detailButton.navigationButton:hover > div:nth-child(2) div:nth-child(2) {
    transform: translateY( 50% ) translateX( -50% );
  }
  #detailButton.navigationButton:hover > div:nth-child(2) div:nth-child(1) {
    /* bottom: 0px; */
    transform: translateY( 5px );
    transform: translateY( calc( var( --pHeight ) * -.05 ) );
    /* opacity: 1; */
  }
  body.detail #detailButton.navigationButton:hover > div:nth-child(2) div:nth-child(2) {
    transform: translateY( -80% ) translateX( -50% )
  }
  body.detail #detailButton.navigationButton:hover > div:nth-child(2) div:nth-child(1) {
    transform: translateY( calc( var(--pHeight) * .025 + 7px ) );
  }

  .navigationButton:hover svg path {
    stroke: var(--cDark);
  }
  .navigationButton:hover .buttonLabel {
    color: var(--cDark);
  }
  /* .navigationButton.active:hover #HeaderName {
    color: var(--cMain);
  } */
  .navigationButton.active:hover .buttonLabel {
    color: var(--cMain);
  }
  .navigationButton.active:hover svg path {
    stroke: var(--cMain);
  }
  #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation button:nth-child(5) span,
  #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation span:nth-child(4),
  #detailButton:hover + #About + #Stage + #Detail + #mainNavigation button:nth-child(1) span,
  #detailButton:hover + #About + #Stage + #Detail + #mainNavigation span:nth-child(2),
  #mainNavigation button:hover span {
    opacity: 1;
  }

  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation span:nth-child(4)::before {
    transform: translateX( 0% );
    opacity: 1;
  }
  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation span:nth-child(4)::after {
    opacity: 0;;
  }
  #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation span:nth-child(4)::after {
    transform: translateX( 0% );
    opacity: 1;
  }

  body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation span:nth-child(2)::after {
    transform: translateX( 0% );
    opacity: 1;
  }
  body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation span:nth-child(2)::before {
    opacity: 0;;
  }
  #detailButton:hover + #About + #Stage + #Detail + #mainNavigation span:nth-child(2)::before {
    transform: translateX( 0% );
    opacity: 1;
  }

  /* body.about #aboutButton + #detailButton + #About + #Stage + #Detail + #mainNavigation {
    transform: translateX(-40%) rotate(-90deg) translateX(41%);
  } */
  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation {
    /* transform: translateX(-40%) rotate(-90deg) translateX(41%); */
    transform: translateX(-40%) rotate(-90deg) translateX( calc( var(--pHeight) * .1 ) );
  }
  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation button:nth-child(5) span { opacity: 1;}
  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation button:nth-child(3) span { opacity: 1;}
  body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation span:nth-child(4) { color: var( --cDark)}
  /* body.about #aboutButton:hover + #detailButton + #About + #Stage + #Detail + #mainNavigation button:nth-child(3) { font-size: .7em; } */

  body.detail #detailButton + #About + #Stage + #Detail + #mainNavigation {
    /* transform: translateX( -40% ) rotate( -90deg ) translateX( 20% ); */
    transform: translateX( -40% ) rotate( -90deg ) translateX( calc(var(--pHeight) * .1) );
  }
  body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation {
    /* transform: translateX( -40% ) rotate( -90deg ) translateX( 0% ); */
    transform: translateX( -40% ) rotate( -90deg ) translateX( calc(var(--pHeight) * .05) );
  }
  body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation button:nth-child(1) span { opacity: 1;}
  body.detail #detailButton:hover + #About + #Stage + #Detail + #mainNavigation button:nth-child(3) span { opacity: 1;}
  #Footer button:hover,
  #Footer a:hover {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 35em) {
  /* #console { background-color: #f0f } */
  /* Style adjustments for viewports that meet the condition */
}
/* @media only screen and (max-width: 1000px) {
  #Body > #Hero > #heroArea { min-height: 450px;}
} */
@media only screen and (max-width: 800px) and (orientation: portrait) {
  html { font-size: 1.1em;}
  #console { background-color: #f0f }
  #Body > #Hero > #heroArea { min-height: 350px;}
  #Body > #Hero > #textArea { position: unset;margin: 0 auto; width: 72.5%; margin-top: 5%; margin-bottom: 10%; }
  #Body > #Hero > #textArea > p:nth-child( 2 ) { margin-bottom: 5%; }
  #Body > #subContent { font-size: .75em }

  #Stage > .stageTextItem { 
    width: 80%;
    top: 78%;
    font-size: .7em;
  }

  #Detail .detailContent .stageTextItem > p:nth-child( 1 ), 
  #Stage > .stageTextItem > p:nth-child( 1 ) {
    font-size: 1.3em;
  }
  #Detail .detailContent .stageTextItem > p:nth-child( 2 ), 
  #Stage > .stageTextItem > p:nth-child( 2 ) {
    font-size: 2.5em;
    margin-bottom: .25em;
  }
  #Detail .detailContent .stageTextItem > p:nth-child( 3 ), 
  #Stage > .stageTextItem > p:nth-child( 3 ) {
    font-size: 1em;
    line-height: 1.3em;
  }

  .stageItem .stageImage {
    /* width: 100%; height: 50% */
    width: 100%; height: 75%
  }

  .stageItem .stageImage img,
  .stageItem .stageImage video {
    position: absolute;
    left: 50%; top: 0;
    height: 50%; width: auto;
    transform: translateX(-50%);
  }
  .stageItem .stageImage img.full,
  .stageItem .stageImage video.full {
    top: 0; left: 25%;
    width: auto; height: 100%;
    transform: none;
  }
  .stageItem .stageImage img.full + div,
  .stageItem .stageImage video.full + div {
    display: none;
  }

  /* .stageItem .stageImage.alignRight {
    width: 100%; height: 70%; top: 0%
  } */
  .stageItem .stageImage.alignRight,
  .stageItem .stageImage.alignRight {
    width: 100%
  }

  .stageItem .stageImage.alignRight img,
  .stageItem .stageImage.alignRight video {
    /* height: auto; width: 100%; */
    height: 100%; width: auto;
    left: 50%;
    /* left: auto; top: 0;
    right: 0; */
    /* height: auto; width: 100%; */
    transform: translateX( -50% );
  }


  #About {
    padding-top: 15%
  }
  #About #aboutImage {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: #a7a7a7;
    margin-bottom: 2em;
  }
  #About #aboutText {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }

  #Stage .stageSlideControl > svg {
    transform: scale( 1, 2 );
  }

  #Detail .detailContent {
    height: auto;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        'head'
        'img'
        'txt'
        'imgs';
  }
  .detailContent > div:nth-child(2) {
    padding-top: 0em;
  }
  #Detail .detailContent > div:nth-child(3) {
    margin: 1em 0em;
    margin-top: 2em;
  }


  .detailContent > div:nth-child(4) {
    grid-template-columns: 100%;
    grid-template-areas: 'img1' 'img2' 'img3';
    row-gap: .5%;
    width: 89%;
    margin: 0 auto;
  }
  /* #Detail .detailContent {
    grid-template-rows: auto auto auto;
  } */
  #Detail .detailContent .stageTextItem {
    font-size: .7em;
  }

  /* #aboutButton {
    height: 10%;
    background-color: var(--cBright);
  } */
  #aboutButton.navigationButton > div:nth-child(1) {
    right: 10%; left: auto; top: 0%;
    background-color: var(--cBright);
    width: 15%; 
    height: 25px;
    /* height: 50%; */
    transform: translateX( 0% );
    padding-top: 6%;
    padding-bottom: .5em;
    border-radius: 0 0 4px 4px;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
  }
  #aboutButton:hover + #detailButton + #About, #aboutButton:hover + #detailButton + #About + #Stage {
    transform: translateY(-100%);
  }
  #aboutButton:hover + #detailButton + #About + #Stage .headerText {
    transform: translateY(0%);
  }

  .navigationButton .buttonLabel {
    color: var(--cDark);
  }
  .navigationButton svg path,
  .navigationButton:hover svg path {
    stroke: var(--cDark);
  }

  #detailButton {
    width: 90%; height: 10%;
    left: 50%;
    margin: 0;
    transform: translateX( -50% ) translateY( 100% );
  }
  #detailButton.visible {
    transform: translateX( -50% ) translateY( 0% );
  }
  #detailButton.navigationButton > div:nth-child(1) {
    left: 50%;
    bottom: 2vw;
    /* background-color: var(--cBright); */
    /* width: 15%;
    height: 70%; */
    width: 50px; 
    height: 25px;
    border-radius: 50%;
    padding: 2% 1% 0% 1%;
    /* border-radius: 4px 4px 0 0; */
  }
  body.detail #detailButton.navigationButton > div:nth-child(1) {
    transform: translateX(-50%) translateY(0%);
    top: 3vh;
  }

  #detailButton.navigationButton > div:nth-child(1)::before,
  #detailButton.navigationButton > div:nth-child(1)::after,
  #detailButton.navigationButto:hover > div:nth-child(1)::before,
  #detailButton.navigationButton:hover > div:nth-child(1)::after {
    display: none;
  }
  body.detail #detailButton.navigationButton:hover > div:nth-child(1)::before,
  body.detail #detailButton.navigationButton:hover > div:nth-child(1)::after {
    display: none;
  }
  #detailButton:hover + #About + #Stage + #Detail {
    transform: translateY( 0% );
  }
  #detailButton:hover + #About, #detailButton:hover + #About + #Stage {
    transform: translateY(-100%);
  }


  body.about #aboutButton:hover + #detailButton + #About, 
  body.about #aboutButton:hover + #detailButton + #About + #Stage {
    transform: translateY(0%);
  }
  body.about #aboutButton:hover + #detailButton + #About .headerText {
    transform: translateY( 0% );
  }
  body.about #aboutButton.navigationButton > div:nth-child(1) {
    background: none;
    box-shadow: none;
    left: auto;
    top: auto;
    height: 25px;
    bottom: 5vh;
  }
  body.about #aboutButton.navigationButton:hover > div:nth-child(1) svg path,
  body.about #aboutButton.navigationButton > div:nth-child(1) svg path {
    stroke: var(--cDark);
  }
  body.about #aboutButton.navigationButton:hover > div:nth-child(1) .buttonLabel,
  body.about #aboutButton.navigationButton > div:nth-child(1) .buttonLabel {
    color: var(--cDark);
  }

  body.detail #detailButton {
    left: 50%;
  }
  body.detail #detailButton:hover + #About, body.detail #detailButton:hover + #About + #Stage, body.detail #detailButton:hover + #About + #Stage + #Detail {
    transform: translateY(-198%);
}




  #Detail .detailContent .stageTextItem {
    width: 89%; height: auto; top: 0;
    overflow: hidden;
  }
  #Detail .detailContent .stageTextItem::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; bottom: 0%;
    width: 100%; height: 1px;
    /* background-color: var(--cDark); */
    background: linear-gradient( to right, rgba( 0, 0, 0, .5 ) 90%, rgba( 0, 0, 0, 0 ) 100% );
    transform: translateX( 0% ) scaleX( 1.2 )
  }
  body.detail #Detail .detailContent .stageTextItem::after {
    animation-name: gradFill;
    animation-duration: 1000ms;
    animation-timing-function: var(--trEasing);
    animation-delay: 250ms;
    animation-fill-mode: backwards;
  }
  @keyframes gradFill {
    from  { transform: translateX( -50% ) scaleX( 0 ) }
    to    { transform: translateX( 0% ) scaleX( 1.2 ) }
  } 

  #Detail .detailContent p {
    color: var(--cDark);
  }
  #Detail .detailContent > div.detailParagraph {
    top: 0%;
  }
  #Detail .detailContent > div.detailParagraph p {
    width: 100%; float: unset
  }
  #Detail .detailContent > div.detailParagraph p span {
    display: inline-block;
    margin-bottom: 1em;
  }
  #Detail .detailContent > div.detailParagraph p span::after {
    content: '\a';
    white-space: pre;
  }
  #Detail .detailContent > div.detailParagraph img {
    /* position: absolute;
    top: 11.3%; right: 5.5%; */
    width: 100%; height: auto;
    margin: 0;
  }

  #mainNavigation {
    display: none;
  }


#Impressum button.bttnX {
  width: 50px; height: 50px;
}
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (min-width: 800px) and (orientation: portrait) {
  #aboutButton.navigationButton > div:nth-child(1) {
    left: 50%; top: 15%;
  }

  body.about #aboutButton.navigationButton > div:nth-child(1) {
    left: 50%; top: 35%;
  }
}
@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

