.app {
  display: flex;
  flex-direction: column;
  /*Min high*/
  min-height: 100vh;
}

/*Header*/
.header {
  /*Flexbox*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  /*Layer (Stick in front)*/
  z-index: 99;

  /*Pos*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--HEADER-HEIGHT);

  /* Color */
  background-color: var(--HEADER-FOOTER-COLOR);

  /*Block selection*/
  user-select: none;
}

.header > .header-icon {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  /*Pos*/
  height: 100%;
  aspect-ratio: 1/1;
  margin-left: 20px;
}

.header-icon > * {
  /*Pos*/
  max-height: 100%;
  max-width: 100%;
}

/*Header end*/

/*Navigation*/
.navigation {
  /*Flexbox*/
  display: flex;
  flex-direction: row;
}

.navigation-element {
  /*Pos*/
  position: relative;
  margin-right: 20px;

  /*Cursor*/
  cursor: pointer;

  /*Font*/
  font-size: 2em;

  /*Color/Style*/
  color: var(--COLOR-2);
  transition: scale 0.5s;
}

/*
 * Create fancy animation on click.
 */
.navigation-compact {
  /*Pos*/
  height: 100%;
  aspect-ratio: 1/1;
  margin-right: 20px;
  z-index: 100;

  /*Flexbox*/
  display: none;
  flex-direction: column;
  justify-content: space-between;

  /*Style*/
  cursor: pointer;
}
/*Navigation end*/

/*Main*/
.main {
  /*Flexbox*/
  display: flex;
  flex-direction: column;
  align-items: center;

  /*Pos*/
  margin-top: var(--HEADER-HEIGHT);

  animation: slideIn 1.5s ease-in-out forwards;
}

.main-container {
  /*Flexbox*/
  display: flex;
  flex-direction: column;
  align-items: center;

  /*Pos*/
  width: 100%;
}

.page-header {
  /*Pos*/
  text-align: center;
  height: 750px;
  width: 100%;

  /*Color*/
  color: var(--COLOR-1);

  /* Background */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center 75%;

  /*Flexbox*/
  display: flex;
  justify-content: center;
  align-items: center;

  /*Animation*/
  animation: fadeInOpacity 4s;
  -webkit-animation: fadeInOpacity 4s;
  -moz-animation: fadeInOpacity 4s;
  -o-animation: fadeInOpacity 4s;
  -ms-animation: fadeInOpacity 4s;
}

.page-headline {
  /*Pos*/
  padding: 20px;
  max-width: 50%;

  /* Background */
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-headline > h2 {
  /*Font*/
  font-weight: 600;
  font-size: 80px;
}

.page-headline > h3 {
  font-size: 40px;
}

.page-content {
  /*Flexbox*/
  display: flex;
  flex-direction: column;

  /*Pos*/
  width: 80%;
  overflow: hidden;
}

.page-array {
  /*Flexbox*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  /*Pos*/
  width: 100%;
  margin-bottom: 25px;
}

.page-array-entity {
  /*Pos*/
  position: relative;
  width: 45%;
  max-width: 45%;
}

.page-array-reverse:nth-child(odd) {
  /*Flex box*/
  flex-direction: row-reverse;
}

/*Component*/
.component {
  /*Pos*/
  margin-top: 15px;
  width: 100%;

  /*Animation*/
  animation: fadeInLeft 0.75s, fadeInOpacity 2s;
  -webkit-animation: fadeInLeft 0.75s, fadeInOpacity 2s;
  -moz-animation: fadeInLeft 0.75s, fadeInOpacity 2s;
  -o-animation: fadeInLeft 0.75s, fadeInOpacity 2s;
  -ms-animation: fadeInLeft 0.75s, fadeInOpacity 2s;
}

/*Component Headline*/
h3.component-header {
  /*Font*/
  font-size: 45px;
  font-family: "poppins", sans-serif;
  text-align: left;

  /*Color*/
  color: var(--COLOR-3);

  /*Pos*/
  margin-bottom: 25px;

  /*Border*/
  border-bottom-style: solid;
  border-width: 10px;
  border-color: var(--COLOR-2);
}

/*Component Headline*/
.component-content {
  /*Flexbox*/
  display: flex;
  align-items: center;
  flex-direction: column;

  margin: 10px 15px;
}

.archive-container {
  /*Flexbox*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /*Pos*/
  margin: 25px;
  width: 100%;
}

.archive {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  /*Pos*/
  height: 300px;
  width: 100%;
  margin-bottom: 5px;

  /*Background -> imgage*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  /*Border*/
  border-radius: 10px;

  /*Select*/
  user-select: none;
  cursor: pointer;

  transition: all 0.2s ease-in-out;
}

.archive:hover {
  transform: scale(1.05);
}

.archive-title {
  /*Font*/
  font-size: 70px;
  font-weight: 600;

  /*Pos*/
  padding: 10px;

  /* Background */
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.textbox {
  /*Flexbox*/
  display: flex;

  /*Font*/
  font-size: 30px;

  /*Pos*/
  margin: 15px 0px;
  width: 100%;
  height: 100%;

  /*Color*/
  color: var(--COLOR-3);
}

.textbox h4 {
  /*Font*/
  font-size: 45px;

  /*Pos*/
  margin: 10px 0px;

  /*Color*/
  color: var(--COLOR-2);
}

.textbox ul {
  /*Style*/
  list-style-type: square;

  /*Pos*/
  margin-left: 35px;
}

/*Link*/
.link {
  /*Flexbox*/
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  /*Pos*/
  margin: 25px 0px;
  width: 100%;
}

.link > a {
  /*Font*/
  font-size: 30px;
  text-decoration: none;

  /*Pos*/
  padding: 10px 50px;

  /*Border*/
  border-color: var(--COLOR-2);
  border-style: solid;
  border-radius: 20px 0px 20px 0px;

  /*Color*/
  color: var(--COLOR-3);

  transition: 0.5s;
}

.link > a:hover {
  background-color: var(--COLOR-2);
}
/*Link ende*/

.media-frame {
  /*Border*/
  border-color: var(--COLOR-2);
  border-style: solid;
  border-width: 7px;

  /*Max*/
  max-width: 1270px;
  max-height: 600px;
  height: 600px;
}

/*Picture*/
.picture-list {
  /*Flex*/
  display: flex;
  flex-direction: column;

  /*Pos*/
  width: 100%;
  min-height: 300px;
}

.picture-container {
  /*Flexbox*/
  display: flex;

  /*Pos*/
  max-height: 500px;
  height: 450px;
  width: 100%;
  position: relative;

  align-self: center;
}

.picture-container img {
  /*Pos*/
  width: 100%;
  height: auto;

  /*Set max scale.*/
  object-fit: cover;
}

.picture-caption {
  /*Font*/
  font-family: "poppins", sans-serif;
  font-size: 20px;
  color: var(--COLOR-3);

  /*Background*/
  background-color: rgba(0, 0, 0, 0.5);

  /*Pos*/
  bottom: 0px;
  height: 30px;

  text-align: right;

  width: 100%;
  position: absolute;
}

.picture-caption * {
  margin-right: 5px;
}

/**
 * Controlls
 */
.picture-controlls {
  /*Flexbox*/
  display: flex;
  flex-direction: column;

  /*Font*/
  font-family: "poppins", sans-serif;
  color: var(--COLOR-3);
}

.picture-navigation {
  /*Flexbox*/
  display: flex;
  justify-content: center;

  /*Pos*/
  margin-top: 5px;

  user-select: none;

  /*Font*/
  font-size: 28px;
}

.picture-navigation-button {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.picture-navigation-button:hover {
  /*Scale*/
  transform: scale(1.05);
}

.picture-index {
  /*Flexbox*/
  display: flex;
  justify-content: center;
  align-items: center;

  /*Font*/
  font-size: 20px;

  /*Pos*/
  margin: 0px 20px;
}

.picture-id {
  /*Border*/
  border-color: var(--COLOR-2);
  border-style: solid;
  border-width: 5px;
  /*Border*/
  border-radius: 15px;

  text-align: center;

  /*Pos*/
  padding: 7px;
  margin: 0px 5px;

  width: 27px;
  height: 27px;
}

.picture-id.selecable {
  /*Border*/
  border-radius: 0px 7px;

  transition: 0.5s;
  cursor: pointer;
}

.picture-id.selecable:hover {
  background-color: var(--COLOR-2);
}

/*Picture ende*/

.sketchfab {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  /*Pos*/
  position: relative;
  max-height: 480px;
  height: 450px;
}

.sketchfab > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0px;
}

.video {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  align-self: center;

  /*Pos*/
  position: relative;
  margin: 15px 0px;
  overflow: hidden;
}

.youtube {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  /*Pos*/
  position: relative;
  width: 100%;
  max-height: 600px;
  height: 600px;
}

.youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0px;

  /*Animation*/
  animation: fadeInLeft 0.75s;
  -webkit-animation: fadeInLeft 0.75s;
  -moz-animation: fadeInLeft 0.75s;
  -o-animation: fadeInLeft 0.75s;
  -ms-animation: fadeInLeft 0.75s;
}

.youtube-dsgvo {
  /*Flexbox*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;

  /*Font*/
  color: var(--COLOR-3);
  font-size: 40px;

  /*Pos*/
  height: 100%;
  width: 100%;

  /*Background -> imgage*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(10px);
}

.youtube-dsgvo > div {
  margin: 10px;
  padding: 10px;

  user-select: none;
}

.youtube-dsgvo-button {
  /*Border*/
  border-color: var(--COLOR-2);
  border-width: 7px;
  border-style: solid;
  border-radius: 20px 0px 20px 0px;

  font-family: "poppins", sans-serif;

  /*Color*/
  color: var(--COLOR-3);
  cursor: pointer;

  transition: 0.5s;
}

.youtube-dsgvo-button:hover {
  background-color: var(--COLOR-2);
}

/*Table*/
.table {
  /*Flexbox*/
  display: flex;
  flex-direction: column;

  /*Pos*/
  width: 100%;
}

.table > .table-row {
  /*Flexbox*/
  display: flex;
}

.table-row * {
  /*Pos*/
  margin-bottom: 10px;
  width: 50%;
}

.contact-container {
  /*Flexbox*/
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  align-self: center;

  justify-self: center;
}

.contact {
  /*Flexbox*/
  display: flex;

  /*Pos*/
  width: 50%;

  transition: all 0.2s ease-in-out;
}

.contact:hover {
  /*Scale*/
  transform: scale(1.05);
}

.contact > .contact-icon {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  /*Pos*/
  height: 100px;
  aspect-ratio: 1/1;
  margin: 0px 20px;
}

.contact-icon * {
  /*Pos*/
  max-height: 100%;
  max-width: 100%;
}

.icon-stroke {
  /*Color*/
  stroke: var(--COLOR-2);
}

.icon-fill {
  /*Color*/
  fill: var(--COLOR-2);
}

.contact > .contact-text {
  /*Flexbox*/
  display: flex;
  align-items: center;
  justify-content: center;

  /*Font*/
  font-family: "poppins", sans-serif;
  font-size: 28px;
}

.contact-text > * {
  /*Font*/
  text-decoration: none;
  color: var(--COLOR-3);
}

/*Footer*/
.footer {
  /*Flexbox*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  /*Pos*/
  position: relative;
  margin-top: auto;
  width: 100%;
  height: var(--HEADER-HEIGHT);

  /* Color */
  background-color: var(--HEADER-FOOTER-COLOR);
  color: var(--COLOR-3);

  /*Block selection*/
  user-select: none;

  /*Font*/
  font-size: 18px;
}

.footer-legal {
  /*Flexbox*/
  display: flex;
  align-items: center;
}

.footer-legal * {
  /*Cursor*/
  cursor: pointer;
}
/*Footer end*/

@media screen and (min-width: 2800px) {
  .contact {
    /*Pos*/
    width: 30%;
  }
}

@media screen and (min-width: 1920px) {
  .page-content {
    /*Pos*/
    width: 60%;
  }
}

@media screen and (min-width: 1401px) {
  /* Bar on item hover*/
  .navigation-element::after {
    /*Pos*/
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -4px;

    /*Color/Style*/
    content: "";
    background-color: var(--COLOR-2);
    border-radius: 5px;
    transform: scaleX(0);
    transition: 0.5s;
  }

  /* On item hover (show bar)*/
  .navigation-element:hover::after {
    transform: scaleX(1.05);
  }

  /*Zoom font on hover*/
  .navigation-element:hover {
    /*Color*/
    color: var(--COLOR-3);
  }

  .footer-copyright {
    /*Pos*/
    margin-left: 20px;
  }

  .footer-legal * {
    /*Pos*/
    margin-right: 20px;

    /*Cursor*/
    cursor: pointer;
  }
}
/*Above not mobile*/

/*Here is mobile */
@media screen and (max-width: 1400px) {
  /*
   * Chabge visibility of navigation button
  */
  .navigation-compact {
    display: flex;
  }

  .navigation {
    /*Pos*/
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /*Pos*/
    width: 100%;
    height: 100vh;
    top: 0;

    /*Flexbox*/
    display: none;
    /*Hide nav by default.*/
    position: absolute;

    /*In front of everything.*/
    z-index: 99;

    /*Animation*/
    animation: fadeInRight 0.5s;
    -webkit-animation: fadeInRight 0.5s;
    -moz-animation: fadeInRight 0.5s;
    -o-animation: fadeInRight 0.5s;
    -ms-animation: fadeInRight 0.5s;
  }

  .navigation-element {
    margin: 10px 0px;

    /*Color*/
    color: var(--COLOR-3);
  }

  .archive {
    height: 100px;
  }

  .archive-title {
    /*Pos*/
    font-size: 30px;
  }

  .page-header {
    /*Pos*/
    max-height: 450px;
    height: 450px;
  }
  .page-headline > h2 {
    font-size: 32px;
  }

  .page-headline > h3 {
    font-size: 20px;
  }

  h3.component-header {
    /*Pos*/
    font-size: 30px;
  }

  .textbox {
    /*Pos*/
    font-size: 25px;
  }

  .picture-navigation {
    justify-content: space-around;
  }

  .picture-index {
    display: none;
  }

  .show {
    display: flex;
  }

  .hide {
    display: none;
  }

  .page-array-entity {
    /*Pos*/
    width: 100%;
    max-width: 100%;
  }
  .page-array-reverse:nth-child(odd) {
    /*Flex box*/
    flex-direction: column;
  }

  .contact {
    /*Pos*/
    width: 100%;
  }

  .page-content {
    /*Pos*/
    width: 95%;
  }

  .contact > .contact-text {
    /*Font*/
    font-size: 18px;
  }

  .contact > .contact-icon {
    /*Pos*/
    height: 50px;
    aspect-ratio: 1/1;
  }

  .footer {
    /*Pos*/
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .footer-elements {
    margin: 10px;
  }
}

/*Here is mobile */
@media screen and (max-width: 1000px) {
  .header {
    height: calc(var(--HEADER-HEIGHT) * 0.75);
  }

  .main {
    /*Pos*/
    margin-top: calc(var(--HEADER-HEIGHT) * 0.75);
  }

  .footer {
    /*Pos*/
    height: calc(var(--HEADER-HEIGHT) * 0.75);
  }

  .page-header {
    /*Pos*/
    height: 350px;
    min-height: 350px;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-ms-keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fadeinRight {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-ms-keyframes fadeInRight {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
