@font-face {
  font-family: 'ObjectSans-Bold';
  src: url(./font/ObjectSans-Bold.woff2) format('woff2');
}

@font-face {
  font-family: 'ObjectSans-Heavy';
  src: url(./font/ObjectSans-Heavy.woff2) format('woff2');
}

@font-face {
  font-family: 'ObjectSans-Regular';
  src: url(./font/ObjectSans-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'ObjectSans-BoldSlanted';
  src: url(./font/ObjectSans-BoldSlanted.woff2) format('woff2');
}

body html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'ObjectSans-Regular';
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  background-color: #ffffff;
  color: #222831;
  margin: 0;
}

p {
  color: #222831;
}

main {
  background-color: aquamarine;
  margin: 0;
}

.container {
  background-color: blue;
  width: 100%;

}

.inhalt {
  margin: auto;
  max-width: 1440px;
  padding: 80px 56px 80px 56px;
}

.stage {
  background-color: white;
}

.animate1 {
  animation: 0.8s fade-up;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate2 {
  animation: fade-upper 1s;
}

@keyframes fade-upper {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate3 {
  animation: 1.2s fade-up-enter;
}

@keyframes fade-up-enter {
  0% {
    opacity: 0;
    transform: translateY(40px)
  }
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}



.stage-content {
  padding: 80px 56px 0px 56px;
  margin: auto;
  max-width: 1440px;
  display: flex;
  height: 90vh;
}

.faq {
  background-color: #E5E5E5;
}

.about {
  background-color: #EEEDF0;
}

.imprint {
  background-color: #EEEDF0;
}

h1 {
  font-family: 'ObjectSans-Regular';
  font-size: 44px;
  line-height: 120%;
}

.imprint h1 {
  font-size: 32px;
}

h2 {
  font-family: 'ObjectSans-Regular';
  font-size: 24px;
  line-height: 120%;
}

h3 {
  font-family: 'ObjectSans-Regular';
  font-size: 18px;
  line-height: 120%;
}

.textlink {
  font-family: 'ObjectSans-Regular';
  margin-right: 32px;
  color: #222831;
  text-decoration: none;
}

.textlink-inline {
  color: #222831;
}

.textlink:hover {
  font-family: 'ObjectSans-Bold';
}

.textlink-about {
  font-family: 'ObjectSans-Regular';
  font-size: 24px;
  margin-top: 24px;
  color: #222831;
  text-decoration: none;
}

.textlink-about:hover {
  font-family: 'ObjectSans-Bold';
}

.hero-left {
  flex-grow: 1;
  width: 60%;
  padding: 15% 0 0 0px;
}

.hero-right {
  flex-grow: 1;
  width: 40%;
}

.links {
  padding: 16px 0px 0px 0px;
  display: flex;
}

.links-about {
  padding: 16px 0px 0px 8px;
  display: flex;
  flex-direction: column;
}

.image {
  background-size: contain;
  background-image: url(./images/profile.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* ACCORDION */

.accordion {
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  border-top: 1px solid #b7b7b7;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-family: 'ObjectSans-Regular';
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #222831;
}

.noborder {
  border: none;
  padding: 16px 8px;
  font-size: 24px;
}

button {
  background-color: transparent;
}

.accordion:after {
  content: '\002B';
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 16px;
  max-width: 1000px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
  margin: 0px 0px 24px 0px;
}


@media (max-width: 1020px) {

  .hero-left {
    padding: 5% 0 0 0px;
  }

}

@media (max-width: 900px) {

  .hero-left {
    padding: 15% 0 0 0px;
    margin: 0;
  }
  
  .image {
    min-height: 320px;
    background-position: right bottom;
  }
  
  h1 {
    font-size: 40px;
    line-height: 120%;
  }

  h2 {
    font-family: 'ObjectSans-Regular';
    font-size: 18px;
    line-height: 120%;
  }

  h3 {
    font-family: 'ObjectSans-Regular';
    font-size: 16px;
    line-height: 120%;
  }
  
  h4 {
    color: #222831;
  }

  .links {
    flex-direction: column-reverse;
  }
  
  .textlink {
    padding-bottom: 8px;
    font-size: 20px;
  }

  .textlink-about {
    font-size: 20px;
  }
  
    }

@media (max-width: 778px) {

  .stage-content {
    height: auto;
  }

  .hero-left {
    padding: 24px 0 0 0px;
  }

}

@media (max-width: 777px) {

.textlink-inline {
  font-size: 16px;
}

.imprint button {
  font-size: 20px;
  padding: 8px;
}

p {
  font-size: 16px;
}

.inhalt {
  padding: 40px 24px;
}

button {
  padding: 16px 4px 16px 4px;
}

.accordion {
  padding: 16px 0px;
  font-size: 16px;
}

.panel {
  padding: 0px;
  font-size: 16px;
}

.stage-content {
  flex-direction: column;
  padding-top: 0;
  margin: 0;
  padding: 0px 24px 0px 24px;
}

.hero-left {
  padding: 40px 0px 24px 0px;
  margin: 0;
  width: auto;
}

.hero-right {
  width: auto;
}

.image {
  min-height: 320px;
  background-position: center bottom;
}

h1 {
  font-size: 24px;
  line-height: 120%;
}

.links {
  flex-direction: column;
  padding: 0px 0px 0px 0px;
}

.textlink {
  padding-bottom: 18px;
  padding-top: 18px;
}

  }