:root {
  --breakpoint-mobile-portrait: 576px;
  --breakpoint-600: 600px;
  --breakpoint-mobile-landscape: 768px;
  --breakpoint-1100: 1100px;
  --breakpoint-1400: 1400px;
  --breakpoint-count: 5 ;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter-Regular, sans-serif;
  color: var(--font-color-dark);
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 11px;
  }
}
@media only screen and (max-width: 576px) {
  html {
    font-size: 11px;
  }
}

body {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  line-height: 1.7;
}

:root {
  --color-white: #fff;
  --color-light-grey: #dadbdc;
  --color-mid-grey: #bfbfbf;
  --color-dark-grey: #2d343a;
  --color-black: #000;
  --color-green: #5A9854;
  --color-dark: #232A31;
  --color-light-green: #BBD8B8;
  --font-color-dark: var(--color-dark);
  --font-color-light: var(--color-white);
  --font-color-mid: var(--color-light-grey);
  --font-color-green: var(--color-green);
  --background-color-light: var(--color-white);
  --background-color-dark: var(--color-dark);
  --background-color-light-grey: var(--color-light-grey);
  --background-color-dark-grey: var(--color-dark-grey);
  --background-color-green: var(--color-green);
  --background-color-light-green: var(--color-light-green);
  --background-color-footer: var(--color-light-grey);
}

.text-light {
  color: var(--font-color-light);
}

.text-mid {
  color: var(--font-color-mid);
}

.text-dark {
  color: var(--font-color-dark);
}

.text-accent {
  color: var(--font-color-green);
}

.background-light {
  background-color: var(--background-color-light);
}

.background-dark {
  background-color: var(--background-color-dark);
}

.background-grey {
  background-color: var(--background-color-dark-grey);
}

.background-green {
  background-color: var(--background-color-green);
}

.background-light-green {
  background-color: var(--background-color-light-green);
}

.background-footer {
  background-color: var(--background-color-footer);
}

:root {
  --breakpoint-mobile-portrait: 576px;
  --breakpoint-600: 600px;
  --breakpoint-mobile-landscape: 768px;
  --breakpoint-1100: 1100px;
  --breakpoint-1400: 1400px;
  --breakpoint-count: 5 ;
}

@font-face {
  font-family: Inter-Regular;
  src: url("../../assets/fonts/Inter-Regular.eot");
  src: url("../../assets/fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Regular.woff") format("woff"), url("../../assets/fonts/Inter-Regular.woff2") format("woff2"), url("../../assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-Bold;
  src: url("../../assets/fonts/Inter-Bold.eot");
  src: url("../../assets/fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Bold.woff") format("woff"), url("../../assets/fonts/Inter-Bold.woff2") format("woff2"), url("../../assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-ExtraBold;
  src: url("../../assets/fonts/Inter-ExtraBold.eot");
  src: url("../../assets/fonts/Inter-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-ExtraBold.woff") format("woff"), url("../../assets/fonts/Inter-ExtraBold.woff2") format("woff2"), url("../../assets/fonts/Inter-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-Light;
  src: url("../../assets/fonts/Inter-Light.eot");
  src: url("../../assets/fonts/Inter-Light.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Light.woff") format("woff"), url("../../assets/fonts/Inter-Light.woff2") format("woff2"), url("../../assets/fonts/Inter-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-ExtraLight;
  src: url("../../assets/fonts/Inter-ExtraLight.eot");
  src: url("../../assets/fonts/Inter-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-ExtraLight.woff") format("woff"), url("../../assets/fonts/Inter-ExtraLight.woff2") format("woff2"), url("../../assets/fonts/Inter-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-family-inter: "Inter-Regular", sans-serif;
  --font-family-alata: "Alata", sans-serif;
  --font-family-work-sans: "Work Sans", sans-serif;
}

.font-bold {
  font-family: Inter-Bold, sans-serif;
}

.font-extrabold {
  font-family: Inter-ExtraBold, sans-serif;
}

.font-light {
  font-family: Inter-Light, sans-serif;
}

.font-extralight {
  font-family: Inter-ExtraLight, sans-serif;
}

.text-s {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .text-s {
    font-size: 1.2rem;
  }
}

.text-m {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .text-m {
    font-size: 1.4rem;
  }
}

.text-l {
  font-size: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .text-l {
    font-size: 3rem;
  }
}

.text-xl {
  font-size: 5.75rem;
}

.text-xxl {
  font-size: 8rem;
}

:root {
  --breakpoint-mobile-portrait: 576px;
  --breakpoint-600: 600px;
  --breakpoint-mobile-landscape: 768px;
  --breakpoint-1100: 1100px;
  --breakpoint-1400: 1400px;
  --breakpoint-count: 5 ;
}

@font-face {
  font-family: Inter-Regular;
  src: url("../../assets/fonts/Inter-Regular.eot");
  src: url("../../assets/fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Regular.woff") format("woff"), url("../../assets/fonts/Inter-Regular.woff2") format("woff2"), url("../../assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-Bold;
  src: url("../../assets/fonts/Inter-Bold.eot");
  src: url("../../assets/fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Bold.woff") format("woff"), url("../../assets/fonts/Inter-Bold.woff2") format("woff2"), url("../../assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-ExtraBold;
  src: url("../../assets/fonts/Inter-ExtraBold.eot");
  src: url("../../assets/fonts/Inter-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-ExtraBold.woff") format("woff"), url("../../assets/fonts/Inter-ExtraBold.woff2") format("woff2"), url("../../assets/fonts/Inter-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-Light;
  src: url("../../assets/fonts/Inter-Light.eot");
  src: url("../../assets/fonts/Inter-Light.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-Light.woff") format("woff"), url("../../assets/fonts/Inter-Light.woff2") format("woff2"), url("../../assets/fonts/Inter-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Inter-ExtraLight;
  src: url("../../assets/fonts/Inter-ExtraLight.eot");
  src: url("../../assets/fonts/Inter-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Inter-ExtraLight.woff") format("woff"), url("../../assets/fonts/Inter-ExtraLight.woff2") format("woff2"), url("../../assets/fonts/Inter-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-family-inter: "Inter-Regular", sans-serif;
  --font-family-alata: "Alata", sans-serif;
  --font-family-work-sans: "Work Sans", sans-serif;
}

.font-bold {
  font-family: Inter-Bold, sans-serif;
}

.font-extrabold {
  font-family: Inter-ExtraBold, sans-serif;
}

.font-light {
  font-family: Inter-Light, sans-serif;
}

.font-extralight {
  font-family: Inter-ExtraLight, sans-serif;
}

.text-s {
  font-size: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .text-s {
    font-size: 1.2rem;
  }
}
.text-m {
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .text-m {
    font-size: 1.4rem;
  }
}
.text-l {
  font-size: 4.5rem;
}

@media only screen and (max-width: 768px) {
  .text-l {
    font-size: 3rem;
  }
}
.text-xl {
  font-size: 5.75rem;
}

.text-xxl {
  font-size: 8rem;
}

h1 {
  font-family: Inter-ExtraBold, sans-serif;
  font-size: 6.5rem;
  color: var(--font-color-dark);
  letter-spacing: 0;
  z-index: 3;
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 4rem !important;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 3rem !important;
  }
}
h1 span {
  display: block;
  color: var(--font-color-green);
}
h1.light {
  color: var(--font-color-light);
}
h1.mid {
  color: var(--font-color-mid);
}
h1.dropshadow {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}
h1.exclude {
  mix-blend-mode: exclusion;
}

h2 {
  font-family: Inter-ExtraBold, sans-serif;
  font-size: 4.5rem;
  color: var(--font-color-dark);
  letter-spacing: 0;
}
h2 span {
  display: block;
  color: var(--font-color-green);
}
h2.light {
  color: var(--font-color-light);
}
h2.mid {
  color: var(--font-color-mid);
}
h2.dropshadow {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.call-to-action, h3 {
  font-family: Inter-Bold, sans-serif;
  font-size: 3.5rem;
  color: var(--font-color-dark);
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .call-to-action, h3 {
    font-size: 1.8rem;
  }
}
.light.call-to-action, h3.light {
  color: var(--font-color-light);
}
.mid.call-to-action, h3.mid {
  color: var(--font-color-mid);
}

h4 {
  font-family: Inter-Light, sans-serif;
  font-size: 3.25rem;
  color: var(--font-color-dark);
  letter-spacing: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 2.2rem;
  }
}
h4.light {
  color: var(--font-color-light);
}
h4.mid {
  color: var(--font-color-mid);
}
@media only screen and (max-width: 768px) {
  h4.topper {
    font-size: 2.4rem;
  }
}

.allow-linebreak {
  white-space: pre-line;
}

.menu-item {
  letter-spacing: 0;
  text-decoration: none;
  padding: 0 0.5rem 1rem;
  border-bottom: 0.5rem solid transparent;
  color: var(--font-color-light);
}
.menu-item.dark {
  color: var(--font-color-dark);
}
.menu-item:hover, .menu-item :focus {
  border-bottom: 0.5rem solid var(--background-color-light-green);
}
.menu-item.active {
  border-bottom: 0.5rem solid var(--background-color-green);
}

.plain-link {
  color: var(--font-color-green);
}

.internal-link {
  font-family: Inter-Bold, sans-serif;
  color: var(--font-color-green);
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  border: 0.15rem solid var(--font-color-green);
  padding: 1.2rem;
  border-radius: 30px;
  display: inline-block;
  white-space: nowrap;
}
.internal-link img {
  width: 18px;
  height: auto;
  margin-left: 2rem;
}
.internal-link:hover {
  background-color: var(--background-color-light-green);
}
.internal-link.dark {
  color: var(--font-color-light);
  border: 0.15rem solid var(--font-color-light);
}
.internal-link.transparent {
  background-color: transparent;
  color: var(--font-color-light);
  border: 0.15rem solid var(--font-color-light);
}
@media only screen and (max-width: 576px) {
  .internal-link.highlight-on-mobile {
    font-size: 2.4rem;
    padding: 2rem;
  }
}
@media only screen and (max-width: 576px) and (max-width: 768px) {
  .internal-link.highlight-on-mobile {
    font-size: 1.4rem;
  }
}

.expand {
  color: var(--font-color-green);
  text-decoration: none;
}
.expand::after {
  content: "+";
  margin-left: 0.5rem;
}

.expand-box {
  color: var(--font-color-light);
  background-color: var(--background-color-dark-grey);
  padding: 1.5rem 7rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.7em;
}
.expand-box #content1::after {
  content: "\a";
  white-space: pre;
}
.expand-box #content2 {
  font-size: 3rem;
}

.call-to-action {
  text-decoration: none;
  padding: 0 1rem;
  background: linear-gradient(0deg, var(--background-color-light-green) 50%, var(--background-color-light) 50%);
}

.tech-chapter {
  font-family: Inter-Bold, sans-serif;
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  border-radius: 2px;
  width: fit-content;
}

.tech-pill {
  font-family: Inter-ExtraLight, sans-serif;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  background-color: #343a42;
  color: var(--color-light-grey);
  border: 1px solid var(--color-mid-grey);
  border-radius: 2px;
  width: fit-content;
  appearance: none;
}

.mt-05 {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 576px) {
  .mt-05 {
    margin-top: 0.1666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-05 {
    margin-top: 0.25rem;
  }
}

.mt-1 {
  margin-top: 1rem;
}
@media only screen and (max-width: 576px) {
  .mt-1 {
    margin-top: 0.3333333333rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-1 {
    margin-top: 0.5rem;
  }
}

.mt-2 {
  margin-top: 2rem;
}
@media only screen and (max-width: 576px) {
  .mt-2 {
    margin-top: 0.6666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-2 {
    margin-top: 1rem;
  }
}

.mt-3 {
  margin-top: 3rem;
}
@media only screen and (max-width: 576px) {
  .mt-3 {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-3 {
    margin-top: 1.5rem;
  }
}

.mt-4 {
  margin-top: 4rem;
}
@media only screen and (max-width: 576px) {
  .mt-4 {
    margin-top: 1.3333333333rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-4 {
    margin-top: 2rem;
  }
}

.mt-5 {
  margin-top: 5rem;
}
@media only screen and (max-width: 576px) {
  .mt-5 {
    margin-top: 1.6666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-5 {
    margin-top: 2.5rem;
  }
}

.mt-6 {
  margin-top: 6rem;
}
@media only screen and (max-width: 576px) {
  .mt-6 {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-6 {
    margin-top: 3rem;
  }
}

.mt-7 {
  margin-top: 7rem;
}
@media only screen and (max-width: 576px) {
  .mt-7 {
    margin-top: 2.3333333333rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-7 {
    margin-top: 3.5rem;
  }
}

.mt-8 {
  margin-top: 8rem;
}
@media only screen and (max-width: 576px) {
  .mt-8 {
    margin-top: 2.6666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-8 {
    margin-top: 4rem;
  }
}

.mt-12 {
  margin-top: 12rem;
}
@media only screen and (max-width: 576px) {
  .mt-12 {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-12 {
    margin-top: 6rem;
  }
}

.mt-14 {
  margin-top: 14rem;
}
@media only screen and (max-width: 576px) {
  .mt-14 {
    margin-top: 4.6666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-14 {
    margin-top: 7rem;
  }
}

.mt-45 {
  margin-top: 45rem;
}
@media only screen and (max-width: 576px) {
  .mt-45 {
    margin-top: 15rem;
  }
}
@media only screen and (max-width: 768px) {
  .mt-45 {
    margin-top: 22.5rem;
  }
}

.allow-linebreak {
  white-space: pre-line;
}

.content-section {
  padding: 0 20px;
}
.content-section.full {
  padding: 0;
}

@media only screen and (min-width: 600px) {
  .content-section {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .content-section.wide {
    padding: 0 calc((100% - 950px) / 2);
  }
  .content-section.narrow {
    padding: 0 calc((100% - 850px) / 2);
  }
}
@media only screen and (min-width: 1400px) {
  .content-section.wide {
    padding: 0 calc((100% - 1200px) / 2);
  }
  .content-section.narrow {
    padding: 0 calc((100% - 1000px) / 2);
  }
}
.icon {
  display: inline-block;
  height: 19px;
  min-width: 20px;
  filter: invert(60%) brightness(30%);
}
.icon:after {
  content: " ";
}

.copyable:hover > .icon {
  filter: invert(0%) brightness(100%);
}
.copyable.animate {
  filter: hue-rotate(270deg);
  transition: all 0.8s;
}
.copyable.animate > .icon {
  zoom: 93%;
  transition: all 0.2s;
}

.icon-clipboard {
  background-image: url("../../assets/graphics/clipboard.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.main-header {
  position: absolute;
  top: 0;
  height: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 2rem auto auto;
  transition: height 0.2s;
  z-index: 100;
  /**
  .logo {
    align-self: center;
    img {
      width: 100px;
    }
  }
  */
}
@media only screen and (max-width: 768px) {
  .main-header {
    padding: 0 20px;
  }
}
.main-header .logo {
  align-self: center;
}
.main-header .logo img {
  width: 125px;
  transition: width 0.2s;
}

.main-footer {
  background-color: var(--background-color-light-grey);
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
  overflow: hidden;
  margin-top: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .main-footer {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
  }
}
.main-footer .logo img {
  width: 150px;
  margin-top: -2rem;
}
.main-footer .logo-wrapper {
  z-index: 5;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .main-footer .logo-wrapper {
    display: none;
  }
}
.main-footer .navigation-wrapper {
  z-index: 5;
  flex: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  height: 150px;
  width: auto;
  min-width: 500px;
  column-gap: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .main-footer .navigation-wrapper {
    flex-flow: row wrap;
  }
  .main-footer .navigation-wrapper * ul {
    gap: 7.28rem;
  }
}
@media only screen and (max-width: 768px) {
  .main-footer .navigation-wrapper {
    height: auto;
    justify-content: center;
    gap: 2rem;
  }
}
.main-footer .navigation-wrapper > div {
  min-height: 50%;
  display: flex;
  align-items: center;
}
.main-footer .navigation-wrapper > div.centered {
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .main-footer .navigation-wrapper > div {
    min-height: 5rem;
    align-self: center;
  }
}
@media only screen and (max-width: 768px) {
  .main-footer .navigation-wrapper .group-imprint {
    order: 100;
  }
}
.main-footer .navigation-wrapper * li.no-footer {
  display: none;
}
.main-footer .footer-navigation {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 2.12rem;
}
@media only screen and (min-width: 1400px) {
  .main-footer .footer-navigation {
    gap: 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .main-footer .footer-navigation {
    gap: 4.28rem;
  }
}
@media only screen and (max-width: 768px) {
  .main-footer .footer-navigation {
    gap: 3.56rem;
  }
}
@media only screen and (max-width: 600px) {
  .main-footer .footer-navigation {
    gap: 2.84rem;
  }
}
@media only screen and (max-width: 576px) {
  .main-footer .footer-navigation {
    gap: 2.12rem;
  }
}
.main-footer .footer-navigation li {
  display: flex;
  align-items: stretch;
}
.main-footer .footer-navigation a {
  font-family: Inter-Bold, sans-serif;
  font-size: 1.425rem;
  text-decoration: none;
  color: var(--font-color-dark);
  padding: 0;
}
.main-footer .social-links {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
.main-footer .social-links img {
  width: 2rem;
}

img.svg-light {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(325deg) brightness(105%) contrast(101%);
}

nav.navigation-mobile img.open.dark {
  filter: invert(100%);
}

div.component-twocolimgleft {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
  padding: 2rem 5rem;
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  column-gap: 10%;
  row-gap: 1rem;
  align-items: flex-start;
  margin: auto;
  max-width: 200rem;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  div.component-twocolimgleft {
    padding: 2rem 0;
  }
}
div.component-twocolimgleft img.profile {
  object-fit: cover;
  width: 100%;
  height: auto;
}
div.component-twocolimgleft h4 {
  margin-block-start: 0;
}
div.component-twocolimgleft .placeholder, div.component-twocolimgleft .column1 {
  flex: 40%;
  flex-grow: 1;
}
div.component-twocolimgleft .column1 {
  margin: 0.75rem 0;
}
div.component-twocolimgleft .headline, div.component-twocolimgleft .column2 {
  flex: 40%;
  max-width: 80rem;
  min-width: 20rem;
}

div.component-twocolimgright {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
  padding: 2rem 5rem;
  display: flex;
  flex-flow: row-reverse wrap;
  box-sizing: border-box;
  column-gap: 10%;
  row-gap: 1rem;
  align-items: flex-start;
  margin: auto;
  max-width: 200rem;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  div.component-twocolimgright {
    padding: 2rem 0;
  }
}
div.component-twocolimgright img.profile {
  object-fit: cover;
  width: 100%;
  height: auto;
}
div.component-twocolimgright h4 {
  margin-block-start: 0;
}
div.component-twocolimgright .placeholder, div.component-twocolimgright .column1 {
  flex: 40%;
  flex-grow: 1;
}
div.component-twocolimgright .column1 {
  margin: 0.75rem 0;
}
div.component-twocolimgright .headline, div.component-twocolimgright .column2 {
  flex: 40%;
  max-width: 80rem;
  min-width: 20rem;
}

div.component-twocoltext {
  width: 100%;
  height: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
div.component-twocoltext .content-wrapper {
  padding: 2rem 0;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  gap: 10%;
  justify-content: flex-start;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  div.component-twocoltext .content-wrapper {
    gap: 45px;
  }
}
div.component-twocoltext .column1 {
  flex: 30%;
}
div.component-twocoltext .column2 {
  flex: 60%;
}

div.component-halfhalf {
  width: 100%;
  height: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
div.component-halfhalf .content-wrapper {
  padding: 2rem 0;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  gap: 10%;
  justify-content: flex-start;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  div.component-halfhalf .content-wrapper {
    gap: 45px;
  }
}
div.component-halfhalf .column1 {
  flex: 45%;
}
div.component-halfhalf .column2 {
  flex: 45%;
}

div.component-fullwidth {
  width: 100%;
  height: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}
div.component-fullwidth .content-wrapper {
  padding: 2rem 0;
  margin: auto;
  box-sizing: border-box;
  justify-content: flex-start;
  z-index: 2;
}
div.component-fullwidth .column {
  width: 100%;
}

@keyframes turnaround-even {
  from {
    transform: rotate(0deg) scale(1) translateX(0px);
  }
  to {
    transform: rotate(-30deg) scale(1.2) translateX(100px);
  }
}
@keyframes turnaround-odd {
  from {
    transform: rotate(0deg) scale(1) translateX(0px);
  }
  to {
    transform: rotate(30deg) scale(0.8) translateX(-100px);
  }
}
.niere-on-top span {
  z-index: 0;
}
.niere-on-top img:nth-child(odd) {
  animation-duration: 60s;
  animation-name: turnaround-odd;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.niere-on-top img:nth-child(even) {
  animation-duration: 50s;
  animation-timing-function: ease-in-out;
  animation-name: turnaround-even;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.niere-on-top-left {
  display: inline;
  overflow: hidden;
  z-index: -1;
  max-width: 100%;
}
.niere-on-top-left span {
  position: absolute;
  margin-left: -30rem;
  margin-top: -30rem;
}
.niere-on-top-left span img {
  position: absolute;
  top: 0;
  left: 0;
}

.niere-on-top-right {
  overflow: hidden;
  position: absolute;
  right: 0;
  height: auto;
  width: 100%;
  margin-top: -25rem;
  overflow-y: visible;
  overflow-x: clip;
}
.niere-on-top-right div, .niere-on-top-right span {
  position: absolute;
  width: 100%;
  height: 100%;
}
.niere-on-top-right div img, .niere-on-top-right span img {
  position: absolute;
  right: -350px;
}

.niere-on-top-center {
  display: inline;
  overflow: hidden;
  z-index: -1;
  max-width: 100vh;
}
.niere-on-top-center span {
  position: absolute;
  margin-left: 0;
  margin-top: 0;
}
.niere-on-top-center span img {
  position: absolute;
  max-height: 100vh;
  top: 0;
  left: 0;
}

div.section-headline {
  position: relative;
  width: 100%;
  height: 100%;
}
div.section-headline h1 {
  position: absolute;
  left: 10%;
  top: 20%;
}

div.section-quote {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  background-color: var(--background-color-green);
  color: var(--font-color-mid);
  text-align: center;
  padding: 2rem 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
div.section-quote .content {
  z-index: 2;
  margin: auto;
}
div.section-quote .content .quote {
  font-family: Inter-ExtraLight, sans-serif;
  font-size: 3.5rem;
  color: rgb(255, 255, 255);
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  div.section-quote .content .quote {
    font-size: 2rem;
  }
}
div.section-quote .content .who {
  font-family: Inter-Bold, sans-serif;
  font-size: 1.8rem;
}

div.section-oneimage {
  height: 50rem;
  width: 100%;
  position: relative;
}
div.section-oneimage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

div.section-twoimages {
  height: 40rem;
  width: 100%;
  position: relative;
  display: flex;
  gap: 1rem;
}
div.section-twoimages picture {
  flex: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 576px) {
  div.section-twoimages picture:nth-child(1) {
    flex: 100%;
    max-width: 100%;
  }
  div.section-twoimages picture:nth-child(2) {
    display: none;
  }
}
div.section-twoimages img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

div.section-calltoaction {
  width: 100%;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  div.section-calltoaction {
    padding: 2rem 5rem;
  }
}
div.section-calltoaction .content {
  margin: auto;
  max-width: 100rem;
  z-index: 2;
}
div.section-calltoaction .content p {
  line-height: 1.3;
}
div.section-calltoaction .action {
  margin-top: 4rem;
}

div.section-forward {
  width: 100vw;
  height: 50vh;
  position: relative;
  text-align: center;
  padding: 2rem 0;
  box-sizing: border-box;
  color: var(--font-color-light);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  div.section-forward {
    padding: 0;
  }
}
div.section-forward img.background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 85% 10%;
}
div.section-forward picture.brightness-20 > img.background {
  filter: brightness(20%);
}
div.section-forward picture.brightness-30 > img.background {
  filter: brightness(30%);
}
div.section-forward picture.brightness-40 > img.background {
  filter: brightness(40%);
}
div.section-forward picture.brightness-50 > img.background {
  filter: brightness(50%);
}
div.section-forward picture.brightness-60 > img.background {
  filter: brightness(60%);
}
div.section-forward picture.brightness-70 > img.background {
  filter: brightness(70%);
}
div.section-forward picture.brightness-80 > img.background {
  filter: brightness(80%);
}
div.section-forward .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
}
div.section-forward .content .headline {
  font-family: Inter-Bold, sans-serif;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  div.section-forward .content .headline {
    font-size: 1.4rem;
  }
}
div.section-forward .content .text {
  font-family: Inter-Light, sans-serif;
  font-size: 2.8rem;
  margin-top: 2rem;
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  div.section-forward .content .text {
    font-size: 1.8rem;
  }
}
div.section-forward .content .link {
  margin-top: 5rem;
}

.navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 5rem;
}
.navigation li {
  display: flex;
  align-items: stretch;
}
.navigation a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.425rem;
  padding: 0 1rem;
  font-weight: 600;
}
.navigation.home a.home, .navigation.technik a.technik, .navigation.menschen a.menschen, .navigation.workshops a.workshops {
  border-bottom: 0.5rem solid var(--background-color-green);
}
@media only screen and (max-width: 768px) {
  .navigation {
    display: none;
  }
}

nav.navigation-mobile {
  display: none;
}
nav.navigation-mobile label {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  nav.navigation-mobile {
    display: block;
  }
}

#menustate,
nav.navigation-mobile ul,
nav.navigation-mobile .close {
  display: none;
}

nav.navigation-mobile img.close {
  margin-left: -36px;
  position: fixed;
}

nav.navigation-mobile img {
  cursor: pointer;
}

:is(#menustate:checked, #menustate:target) ~ nav :is(ul.navigation, div) {
  display: flex;
}

:is(#menustate:checked, #menustate:target) ~ nav :is(ul) {
  display: flex;
}

:is(#menustate:checked, #menustate:target) ~ nav :is(.close) {
  display: block;
}

#menustate:checked ~ nav .open {
  display: none;
}

nav.navigation-mobile div.navigation-footer {
  position: fixed;
  bottom: 3rem;
  height: 40px;
  left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 1rem;
}
nav.navigation-mobile div.navigation-footer a {
  font-size: 1rem;
  color: var(--font-color-dark);
}

nav.navigation-mobile ul.navigation {
  z-index: -1;
  background-color: var(--background-color-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 10rem;
  display: none;
  align-items: center;
  flex-direction: column;
}
nav.navigation-mobile ul.navigation li a {
  color: var(--font-color-dark);
  font-size: 2rem;
}
nav.navigation-mobile ul.navigation li a.internal-link {
  color: var(--font-color-green);
  font-size: 1rem;
  padding: 3rem 1rem 1rem;
  border: none;
}
nav.navigation-mobile ul.navigation li a.internal-link span {
  display: none;
}

ul.navigation.dark a.menu-item {
  color: var(--font-color-dark);
}

ul.imprint-items {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
ul.imprint-items li {
  display: flex;
  align-items: stretch;
}
ul.imprint-items a {
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--font-color-dark);
  padding: 0;
}
@media only screen and (max-width: 768px) {
  ul.imprint-items a {
    font-size: 1.2rem;
  }
}

.showcase-block {
  margin-top: 2rem;
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding: 2rem;
}

.showcase-content {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.showcase-box {
  min-width: 5rem;
  min-height: 5rem;
  border: 1px solid var(--color-dark);
  padding: 1rem;
}

.component-resizer {
  width: 80%;
  height: 400px;
  overflow: auto;
  resize: both;
  margin-top: 1rem;
  background: repeating-linear-gradient(45deg, white, white 20px, mistyrose 20px, mistyrose 40px);
}

div.section-unsere-staerken {
  width: 100%;
  box-sizing: border-box;
}
div.section-unsere-staerken .strength-list {
  z-index: 1;
  margin-top: 25rem;
  display: flex;
  flex-flow: column wrap;
  row-gap: 25rem;
}
@media only screen and (max-width: 576px) {
  div.section-unsere-staerken .strength-list {
    margin-top: 4.1666666667rem;
  }
}
@media only screen and (max-width: 768px) {
  div.section-unsere-staerken .strength-list {
    margin-top: 6.25rem;
  }
}
@media only screen and (max-width: 576px) {
  div.section-unsere-staerken .strength-list {
    display: block;
  }
}
div.section-unsere-staerken .strength-item {
  max-width: 50rem;
}
@media only screen and (max-width: 576px) {
  div.section-unsere-staerken .strength-item {
    margin-top: 6rem !important;
  }
}
div.section-unsere-staerken .strength-item:nth-child(odd) {
  margin-left: auto;
}
div.section-unsere-staerken .strength-item:nth-child(even) {
  margin-right: auto;
}
div.section-unsere-staerken .strength-item h4 {
  margin-top: 1.3rem;
}
@media only screen and (min-width: 1400px) {
  div.section-unsere-staerken .strength-item h4 {
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 1100px) {
  div.section-unsere-staerken .strength-item h4 {
    margin-top: 0.7rem;
  }
}
@media only screen and (max-width: 768px) {
  div.section-unsere-staerken .strength-item h4 {
    margin-top: 0.9rem;
  }
}
@media only screen and (max-width: 600px) {
  div.section-unsere-staerken .strength-item h4 {
    margin-top: 1.1rem;
  }
}
@media only screen and (max-width: 576px) {
  div.section-unsere-staerken .strength-item h4 {
    margin-top: 1.3rem;
  }
}

section.hero-homepage {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media only screen and (max-width: 576px) {
  section.hero-homepage {
    height: 60vh;
  }
}
section.hero-homepage div.headline {
  position: absolute;
  top: 35vh;
}

picture.hero-homepage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
picture.hero-homepage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.path-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  overflow: hidden;
  z-index: 2;
}
div.path-container #snake {
  min-height: 1px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}
div.path-container #snake path {
  stroke: #5A9854;
  stroke-width: 5px;
}

section.hero-technik {
  width: 100%;
  min-height: 70vh;
}
@media only screen and (max-width: 576px) {
  section.hero-technik {
    min-height: 60vh;
  }
}
section.hero-technik .headline {
  position: absolute;
  top: 25vh;
}

section.technik-overview {
  background-color: var(--background-color-dark);
  color: var(--font-color-mid);
  font-family: Inter-Light, sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10%;
}

img.next {
  margin-top: 10rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div.technik-overview-toc {
  padding: 8rem 0;
  flex: 30%;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  div.technik-overview-toc {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  div.technik-overview-toc {
    display: none;
  }
}
div.technik-overview-toc ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.technik-overview-toc ul li {
  border-top: 1px solid #4b5056;
  border-bottom: 1px solid #4b5056;
  padding: 2rem 0;
  margin-top: -1px;
}
div.technik-overview-toc ul a {
  text-decoration: none;
  color: var(--font-color-light);
}
div.technik-overview-toc ul a:hover {
  font-family: Inter-Bold, sans-serif;
}
div.technik-overview-toc ul a.active {
  font-family: Inter-Bold, sans-serif;
}

div.technik-overview {
  padding: 8rem 0;
  flex: 60%;
}

section.technik-overview-item-container {
  position: relative;
  z-index: 4;
  scroll-margin-top: 8rem;
}

div.techbubble {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-dark-grey);
  box-shadow: 0 -1px 0 #000;
}
div.techbubble:first-of-type {
  margin-top: 6rem;
}
div.techbubble .tech-chapter {
  background-color: var(--background-color-light);
  color: var(--font-color-dark);
}
div.techbubble ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.techbubble ul li {
  font-family: Inter-ExtraLight, sans-serif;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  background-color: #343a42;
  color: var(--color-light-grey);
  border: 1px solid var(--color-mid-grey);
  border-radius: 2px;
  width: fit-content;
  appearance: none;
  margin-right: 1rem;
  margin-top: 1.5rem;
}

section.hero-workshops {
  position: relative;
  width: 100%;
  height: 70vh;
  filter: grayscale(30%);
}
@media only screen and (max-width: 576px) {
  section.hero-workshops {
    height: 60vh;
  }
}
section.hero-workshops .headline {
  position: absolute;
  top: 25vh;
}

picture.hero-workshops-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
picture.hero-workshops-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.workshop-list {
  position: relative;
  z-index: 4;
}

section.workshop-list {
  background-color: var(--background-color-dark);
  color: var(--font-color-mid);
  font-family: Inter-Light, sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10%;
}

img.next {
  margin-top: 10rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div.workshop-list-toc {
  padding: 8rem 0;
  flex: 30%;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
}
@media only screen and (max-width: 768px) {
  div.workshop-list-toc {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  div.workshop-list-toc {
    display: none;
  }
}
div.workshop-list-toc ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.workshop-list-toc ul li {
  border-top: 1px solid #4b5056;
  border-bottom: 1px solid #4b5056;
  padding: 2rem 0;
  margin-top: -1px;
}
div.workshop-list-toc ul a {
  text-decoration: none;
  color: var(--font-color-light);
}
div.workshop-list-toc ul a:hover {
  font-family: Inter-Bold, sans-serif;
}
div.workshop-list-toc ul a.active {
  font-family: Inter-Bold, sans-serif;
}

div.workshop-list {
  padding: 8rem 0;
  flex: 60%;
}

section.workshop-list-item-container {
  scroll-margin-top: 8rem;
}

div.techbubble {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-dark-grey);
  box-shadow: 0 -1px 0 #000;
}
div.techbubble:first-of-type {
  margin-top: 6rem;
}
div.techbubble .tech-chapter {
  background-color: var(--background-color-light);
  color: var(--font-color-dark);
}
div.techbubble ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.techbubble ul li {
  font-family: Inter-ExtraLight, sans-serif;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  background-color: #343a42;
  color: var(--color-light-grey);
  border: 1px solid var(--color-mid-grey);
  border-radius: 2px;
  width: fit-content;
  appearance: none;
  margin-right: 1rem;
  margin-top: 1.5rem;
}

div.section-workshop-item {
  padding: 2rem;
  border: 1px solid var(--color-mid-grey);
  border-radius: 2px;
}
div.section-workshop-item div.topline {
  font-family: Inter-ExtraLight, sans-serif;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
div.section-workshop-item h4 {
  padding: 1rem 0;
}
div.section-workshop-item .collapsible {
  font-family: Inter-ExtraLight, sans-serif;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1.5rem;
  background-color: #343a42;
  color: var(--color-light-grey);
  border: 1px solid var(--color-dark-grey);
  border-radius: 2px;
}
div.section-workshop-item .collapsible.active, div.section-workshop-item .collapsible:hover {
  background-color: var(--background-color-light);
  color: var(--font-color-dark);
}
div.section-workshop-item .collapsible:after {
  content: "+";
  float: right;
  margin-left: 5px;
}
div.section-workshop-item .collapsible.active:after {
  content: "-";
}
div.section-workshop-item .description, div.section-workshop-item .audience, div.section-workshop-item .costs {
  padding-top: 0.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
div.section-workshop-item .highlight {
  font-family: Inter-Bold, sans-serif;
  position: relative;
  width: auto;
  margin: -2rem -2rem 1rem;
  height: 1.5rem;
  padding: 0.8rem;
  background: var(--background-color-green);
  color: var(--font-color-light);
  text-transform: uppercase;
  text-align: center;
}

section.hero-menschen {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media only screen and (max-width: 576px) {
  section.hero-menschen {
    height: 60vh;
  }
}
section.hero-menschen .headline {
  position: absolute;
  top: 25vh;
}

picture.hero-menschen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
picture.hero-menschen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.menschen-kernteam {
  width: 100%;
  background-color: var(--background-color-dark);
  color: var(--color-mid-grey);
  padding-top: 14rem;
  padding-bottom: 14rem;
}
div.menschen-kernteam div.technik-referenz {
  margin-top: 12rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5rem;
  line-height: 1.5;
}
div.menschen-kernteam div.technik-referenz .text {
  flex: 60%;
  min-width: 20rem;
}
div.menschen-kernteam div.technik-referenz .link {
  flex: 30%;
  z-index: 2;
}

section.imprint-data p {
  margin-top: 2rem;
}

section.imprint-data a.plain-link {
  margin-top: 2rem;
}

section.imprint-data h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

section.datenschutz ul {
  margin-left: 2rem;
}
section.datenschutz ul li {
  margin-top: 1rem;
  list-style: square;
}

section.datenschutz p {
  margin-top: 2rem;
  line-height: 1.3;
}

section.hero-datenschutz {
  width: 100%;
  min-height: 70vh;
}
@media only screen and (max-width: 576px) {
  section.hero-datenschutz {
    min-height: 60vh;
  }
}
section.hero-datenschutz .headline {
  position: absolute;
  top: 25vh;
}

/*# sourceMappingURL=main.css.map */
