@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css");
@import url("https://use.typekit.net/riv2kzx.css");
html {
  font-size: 16px;
}

* {
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "Zarathustra Bleeds";
  src: url("../fonts/Zarathustra-Bleeds-Regular.woff2") format("woff2"), url("../fonts/Zarathustra-Bleeds-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "neue-haas-grotesk-text", sans-serif;
}

em {
  font-style: italic;
}

.fliesstext p {
  margin-bottom: 1em;
}
.fliesstext p:last-of-type {
  margin-bottom: 0;
}

@supports (-webkit-hyphenate-limit-before: 4) or (hyphenate-limit-chars: 8 4 4) {
  .headlinehyphy {
    hyphenate-limit-chars: 8 4 4;
    -webkit-hyphenate-limit-before: 4; /* For Safari */
    -webkit-hyphenate-limit-after: 4; /* For Safari */
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  font-weight: inherit;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input {
  font-weight: inherit;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

input {
  border-radius: 0;
}

code, pre {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

body {
  background: #e0ff79;
  padding: 2rem;
}
@media (max-width: 414px) {
  body {
    padding: 1rem;
  }
}

body {
  background-color: #E0FF79;
  cursor: none;
}
body * {
  cursor: none;
}
body.about {
  background-color: #D8CEF9;
}
body.about header {
  background-color: #D8CEF9;
}
body.community-care {
  background-color: #75E571;
}
body.community-care header {
  background-color: #75E571;
}
body.home {
  background-color: #D8CEF9;
}
body.home header {
  background-color: #D8CEF9;
}
body.network {
  background-color: #D8CEF9;
}
body.network header {
  background-color: #D8CEF9;
}
body.research {
  background-color: #75E571;
}
body.research header {
  background-color: #75E571;
}
body.works {
  background-color: #75E571;
}
body.works header {
  background-color: #75E571;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 136px;
  height: 136px;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
#custom-cursor.cursor-is-active {
  visibility: visible;
}
#custom-cursor > div {
  transform: translate(-14.5%, -2%);
  position: absolute;
  width: 100%;
  height: 100%;
}
#custom-cursor svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#custom-cursor svg path {
  stroke: rgb(0, 0, 0);
}
#custom-cursor .hover-cursor {
  display: none;
}
#custom-cursor.hover .hover-cursor {
  display: block;
}
#custom-cursor.hover .default-cursor {
  display: none;
}
#custom-cursor.hover-sonderelement .default-cursor {
  display: none;
}

@media (pointer: coarse) {
  #custom-cursor {
    display: none;
  }
}
header {
  position: sticky;
  top: 0;
  width: 100vw;
  margin-left: -2rem;
  margin-top: -2rem;
  z-index: 1000;
  background: #e0ff79;
  padding: 1rem 2rem 0 2rem;
  transition: padding 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* Zugänglichkeit: reduzierte Bewegung */
}
@media (max-width: 768px) {
  header {
    margin: 0;
    padding: 0;
    width: 100%;
    align-items: start;
  }
}
@keyframes vibratePop {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  10% {
    transform: translate(-3px, 2px) scale(1.03) rotate(-1deg);
  }
  20% {
    transform: translate(3px, -2px) scale(1.02) rotate(1deg);
  }
  30% {
    transform: translate(-4px, 0) scale(1.04) rotate(0.8deg);
  }
  40% {
    transform: translate(4px, 0) scale(1.05) rotate(-0.8deg);
  }
  50% {
    transform: translate(-3px, 2px) scale(1.03) rotate(1deg);
  }
  60% {
    transform: translate(3px, -2px) scale(1.02) rotate(-1deg);
  }
  70% {
    transform: translate(-2px, 1px) scale(1.02) rotate(0.6deg);
  }
  80% {
    transform: translate(2px, -1px) scale(1.01) rotate(-0.6deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .logo figure {
  width: 18rem;
  transition: width 0.3s ease, opacity 0.5s ease;
  display: none;
  transform-origin: center;
  will-change: transform;
}
header .logo figure.is-visible {
  display: flex;
}
header .logo figure:hover {
  animation: vibratePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  header .logo figure:hover {
    animation: none;
    transform: scale(1.03);
  }
}
header .menu-toggle {
  display: none;
  background: none;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 1.4rem;
  cursor: pointer;
}
header nav {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  font-family: "neue-haas-grotesk-text", sans-serif;
  z-index: 0;
}
header nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
header nav ul li a {
  font-size: 2.4rem;
  line-height: 2.5rem;
  text-decoration: none;
  color: black;
  transition: all 0.3s ease;
}
header nav .menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
}
header.shrink {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  header.shrink {
    padding: 0;
  }
}
header.shrink .logo figure {
  width: 12rem;
}
header.shrink nav ul li a {
  font-size: 1.8rem;
  line-height: 2rem;
}

@media (max-width: 1390px) {
  header .logo figure {
    width: 17rem;
  }
}
@media (max-width: 1306px) {
  header .logo figure {
    width: 12rem;
  }
  header nav ul {
    gap: 1.3333333333rem;
  }
}
@media (max-width: 1185px) {
  header nav ul li a {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media (max-width: 988px) {
  /* weitere Anpassungen */
}
@media (max-width: 783px) {
  /* weitere Anpassungen */
}
@media (max-width: 975px) {
  header .menu-toggle {
    display: block;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #E0FF79;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1050;
    padding: 1.25rem 2rem;
    /* "Schliessen" text sichtbar machen */
  }
  header nav ul {
    display: none;
    flex-direction: column;
    gap: 1.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  header nav ul li a {
    font-size: 2.4rem;
    line-height: 2.5rem;
    text-align: center;
    padding: 0.2rem 0;
  }
  header nav .menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
  }
  /* Wenn das Menü offen ist */
  header.nav-open nav {
    transform: translateY(0);
  }
  header.nav-open nav ul {
    display: flex;
  }
}
body.home header .logo {
  opacity: 0;
}

body.home {
  padding: 0;
  overflow-x: hidden;
}
body.home > footer {
  padding: 0 2rem 2rem 0;
}
@media (max-width: 414px) {
  body.home > footer {
    padding: 0 1rem 1rem 0;
  }
}
body.home header {
  position: fixed;
  margin-top: 0;
  margin-left: 0;
  background-color: transparent;
}
body.home header .menu-toggle {
  padding: 1.5rem 1rem 0.5rem 1rem;
}
body.home header.shrink {
  background-color: #D8CEF9;
}
body.home header.shrink .logo figure::after {
  font-size: 59px;
  transform: translate(-14px, 0px);
  -webkit-text-stroke: 0.8px black;
}

.home-content {
  --header-height: 110px;
  --container-height: calc(100vh - var(--header-height));
  --home-grid-gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
  z-index: 10;
  padding-top: var(--header-height);
  height: 100vh;
  top: 0;
  overflow: hidden;
  /* Home Content */
}
.home-content .starterkitinfo {
  width: 100vw;
  overflow: hidden;
  position: absolute;
  top: var(--header-height);
}
.home-content .starterkitinfo h2 {
  font-family: "Zarathustra Bleeds";
  font-size: 14vw;
  width: 100%;
  text-align: center;
  color: #75E571;
  -webkit-text-stroke: 1.5px black;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: -12px;
}
@media (max-width: 768px) {
  .home-content .starterkitinfo h2 {
    -webkit-text-stroke: 1.5px black;
    letter-spacing: -6px;
  }
}
@media (max-width: 414px) {
  .home-content .starterkitinfo h2 {
    letter-spacing: -2px;
    font-size: 14vw;
    -webkit-text-stroke: 1px black;
  }
}
.home-content .starterkitfooter {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.home-content .starterkitfooter .shuffle-button {
  position: relative;
  font-size: 0.8rem;
  display: block;
  width: 100%;
  position: relative;
  z-index: 100;
  text-align: center;
  margin-bottom: 0;
  background: #825cff;
  font-family: "Zarathustra Bleeds";
  font-size: 4.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px #D8CEF9;
  white-space: nowrap;
  display: block;
  animation: ImHavingAStroke 10s infinite;
}
@media (max-width: 414px) {
  .home-content .starterkitfooter .shuffle-button {
    font-size: 2.4rem;
  }
}
.home-content .starterkitfooter .shuffle-button:hover {
  background: #000000;
}
@keyframes ImHavingAStroke {
  0% {
    -webkit-text-stroke: 1.5px rgb(255, 113, 113);
  }
  16% {
    -webkit-text-stroke: 1.5px orange;
  }
  33% {
    -webkit-text-stroke: 1.5px yellow;
  }
  50% {
    -webkit-text-stroke: 1.5px #75E571;
  }
  66% {
    -webkit-text-stroke: 1.5px rgb(141, 149, 255);
  }
  83% {
    -webkit-text-stroke: 1.5px rgb(188, 94, 255);
  }
  100% {
    -webkit-text-stroke: 1.5px #D8CEF9;
  }
}
.home-content .flame {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 1.5rem;
  pointer-events: none;
  animation: flyUp 1s ease-out forwards;
  opacity: 0.9;
  z-index: 999;
}
@keyframes flyUp {
  0% {
    transform: translate(-50%, 0) scale(3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -200px) scale(1);
    opacity: 0;
  }
}
.home-content .image-sets-container {
  position: relative;
  width: 100%;
  position: center;
  height: var(--container-height);
  background: linear-gradient(to top, #BFFF00 0%, #BFFF00 20%, transparent 100%);
}
.home-content .image-set {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: grid;
  grid-template-columns: repeat(3, 33.333333333%);
  grid-template-rows: repeat(3, calc(var(--container-height) / 3 - var(--home-grid-gap)));
  gap: var(--home-grid-gap);
  place-items: center;
}
.home-content .image-set.active {
  opacity: 1;
}
.home-content .image-set .main-image {
  z-index: 15;
  position: absolute;
  opacity: 1;
  width: 20%;
  top: 50px;
}
@media (max-width: 768px) {
  .home-content .image-set .main-image {
    width: 60%;
  }
}
.home-content .image-set .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-content .image-set .other-image {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
  z-index: 15;
}
.home-content .image-set .other-image img {
  width: auto;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1130px) {
  .home-content .image-set .other-image img {
    width: 80%;
  }
}
.home-content .image-set .other-image img:hover {
  transform: scale(1.25) rotate(20deg);
}
.home-content .image-set .other-image:nth-child(6) {
  grid-column-start: 3;
}
.home-content .image-set .other-image:nth-child(2) {
  justify-self: center;
  transform: scale(1.2) translateY(50%);
}
.home-content .image-set .other-image:nth-child(2):hover {
  transform: scale(1.25) rotate(-20deg);
}
.home-content .image-set .other-image:nth-child(2) img {
  animation: scaleALittle 2s infinite;
}
.home-content .image-set .other-image:nth-child(3) {
  justify-self: end;
  transform: rotate(10deg) translateX(110%) translateY(50%) scale(1.4);
}
.home-content .image-set .other-image:nth-child(3):hover {
  transform: scale(1.25) rotate(-20deg);
}
.home-content .image-set .other-image:nth-child(3) img {
  animation: moveUpDown 2s infinite;
}
.home-content .image-set .other-image:nth-child(4) {
  justify-self: center;
  transform: translateY(50%);
}
.home-content .image-set .other-image:nth-child(4):hover {
  transform: scale(1.25) rotate(-20deg);
}
.home-content .image-set .other-image:nth-child(4) img {
  animation: floatFunny 4s infinite;
}
.home-content .image-set .other-image:nth-child(5) {
  justify-self: end;
  transform: rotate(20deg) translateX(40%) scale(1.25);
}
.home-content .image-set .other-image:nth-child(5):hover {
  transform: scale(1.5) rotate(-20deg);
}
.home-content .image-set .other-image:nth-child(5) img {
  animation: rotateALittle 2s infinite;
}
.home-content .image-set .other-image:nth-child(6) {
  justify-self: end;
  transform: translateX(-30%);
}
.home-content .image-set .other-image:nth-child(6):hover {
  transform: scale(1.25) rotate(-20deg);
}
.home-content .image-set .other-image:nth-child(6) img {
  animation: rotateALittle 2s infinite;
}
.home-content .image-set .other-image:nth-child(7) {
  justify-self: left;
  transform: translateX(30%);
}
.home-content .image-set .other-image:nth-child(7):hover {
  transform: scale(1.25) translateX(70%);
}
.home-content .image-set .other-image:nth-child(7) img {
  animation: rotateComplete 6s infinite;
}
.home-content .image-set .other-image:nth-child(8) {
  justify-self: left;
}
.home-content .image-set .other-image:nth-child(8):hover {
  transform: scale(1.25);
}
.home-content .image-set .other-image:nth-child(8) img {
  animation: drive 6s infinite;
}
.home-content .image-set .other-image:nth-child(9) {
  justify-self: center;
  transform: translateX(-70%);
}
.home-content .image-set .other-image:nth-child(9):hover {
  transform: scale(1.75);
}
.home-content .image-set .other-image:nth-child(9) img {
  animation: rotateLeftRight 6s infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(-10%);
  }
}
@keyframes rotateALittle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scaleALittle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotateComplete {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes floatFunny {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(-360deg);
  }
}
@keyframes drive {
  0% {
    transform: translateX(-60%);
  }
  50% {
    transform: translateX(60%);
  }
  100% {
    transform: translateX(-60%);
  }
}
@keyframes rotateLeftRight {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.network-content {
  padding: 8rem 0;
}
.network-content .columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.network-content .columns .column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.network-content .columns .column h2 {
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2rem;
}
.network-content .columns .column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
.network-content .columns .column ul li {
  border-bottom: 1px solid black;
  display: flex;
  align-items: center;
  min-height: calc(1.6rem + 1rem);
  padding: 0.5rem 0;
}
.network-content .columns .column ul li a {
  text-decoration: none;
  color: black;
  font-size: 1.4rem;
  line-height: 1.6rem;
  display: inline-block;
  width: 100%;
  transition: transform 0.25s ease, color 0.25s ease;
}
.network-content .columns .column ul li a:hover {
  transform: translateX(14px);
}

@media (max-width: 1185px) {
  .network-content .columns .column h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 988px) {
  .network-content .columns {
    grid-template-columns: 1fr;
  }
  .network-content .columns .column h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.workcom-content {
  scroll-snap-type: y mandatory;
}
.workcom-content .workcom-items {
  display: block;
  margin-top: 4rem;
}
.workcom-content .workcom-items .workcom-item {
  scroll-snap-align: start;
  width: calc(100vw - 4rem);
  height: auto;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .workcom-content .workcom-items .workcom-item {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media (max-width: 414px) {
  .workcom-content .workcom-items .workcom-item {
    margin-bottom: 1rem;
  }
}
.workcom-content .workcom-items .workcom-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.workcom-content .workcom-items .workcom-item img.cover {
  width: 100%;
  aspect-ratio: 16/7;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.workcom-content .workcom-items .workcom-item .workcom-item-title {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  font-size: 2.4rem;
  line-height: 2.5rem;
  background-color: #75E571;
  color: black;
}
@media (max-width: 768px) {
  .workcom-content .workcom-items .workcom-item .workcom-item-title {
    font-size: 1.8rem;
    line-height: 2rem;
    flex-direction: column;
  }
}
@media (max-width: 414px) {
  .workcom-content .workcom-items .workcom-item .workcom-item-title {
    font-size: 1.4rem;
    line-height: 1.6rem;
    flex-direction: column;
  }
}
.workcom-content .workcom-items .workcom-item .workcom-item-title > div:first-child {
  margin-right: 8rem;
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 768px) {
  .workcom-content .workcom-items .workcom-item .workcom-item-title > div:first-child {
    margin-right: 0;
  }
}
.workcom-content .workcom-items .workcom-item .workcom-item-title > div:last-child {
  flex-shrink: 0;
  white-space: nowrap;
}

.link-list {
  padding: 0;
  border-top: 1px solid black;
  font-size: 2.4rem;
  line-height: 2.5rem;
  margin-bottom: 8rem;
}
.link-list li {
  border-bottom: 1px solid black;
}
.link-list li a {
  text-decoration: none;
  padding: 2rem 0;
  color: inherit;
  display: block;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.link-list li a:hover {
  transform: translateX(8px);
}
.link-list li a .pfeil {
  display: inline-block;
  margin: 0 calc(2rem / 2) 0 0;
  transition: transform 0.2s ease;
  width: 2rem;
}
.link-list li a:hover .pfeil {
  transform: translateX(8px);
}

.logo-gallery {
  margin-top: 8rem;
  margin-bottom: 8rem;
  border-top: 1px solid black;
  padding: 2rem 0;
}
.logo-gallery::before {
  content: "mit freundlicher Unterstützung von";
  display: block;
  font-size: 2.4rem;
  margin-bottom: 4rem;
  text-align: left;
}
.logo-gallery .logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .logo-gallery .logos {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
.logo-gallery .logos .support-logo {
  width: 100%;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
}

body:has(.special-column-effect) {
  overflow-x: hidden;
}

main.special-column-effect {
  --gap: 50px;
  --animationSpeed: .5s;
  --bigSize: 60vw;
  --smollSize: 20vw;
}
@media (max-width: 1366px) {
  main.special-column-effect {
    --bigSize: 50vw;
    --smollSize: 30vw;
  }
}
@media (max-width: 1024px) {
  main.special-column-effect {
    --bigSize: 45vw;
    --smollSize: 35vw;
  }
}
@media (max-width: 768px) {
  main.special-column-effect {
    --bigSize: 100vw;
    --smollSize: 100vw;
  }
}
main.special-column-effect .big, main.special-column-effect .bigsize {
  font-size: 128.57%;
}
main.special-column-effect .columns {
  padding: 10rem 0;
}
@media (min-width: 769px) {
  main.special-column-effect .columns {
    padding: 10rem 2rem;
    display: flex;
    width: 100vw;
    margin-left: -2rem;
    overflow: clip;
  }
}
main.special-column-effect .columns.galIsBig > div.text-one {
  animation: var(--animationSpeed) ease-in forwards toSmollColumn;
}
main.special-column-effect .columns.galIsBig > div.text-two {
  animation: var(--animationSpeed) ease-in forwards toSmollColumn;
}
main.special-column-effect .columns.oneIsBig > div.text-one {
  animation: var(--animationSpeed) ease-in forwards toBigColumn;
}
main.special-column-effect .columns.oneIsBig > div.text-two {
  animation: var(--animationSpeed) ease-in forwards toSmollColumn;
}
main.special-column-effect .columns.twoIsBig > div.text-one {
  animation: var(--animationSpeed) ease-in forwards toSmollColumn;
}
main.special-column-effect .columns.twoIsBig > div.text-two {
  animation: var(--animationSpeed) ease-in forwards toBigColumn;
}
main.special-column-effect .columns > div {
  position: relative;
}
main.special-column-effect .columns > div button.klickbutton {
  transform: translateY(calc(-100% - 2rem));
  position: absolute;
  cursor: inherit;
  font-size: 16px;
}
@media (max-width: 768px) {
  main.special-column-effect .columns > div button.klickbutton {
    display: none;
  }
}
main.special-column-effect .columns > div.text-one, main.special-column-effect .columns > div.text-two {
  font-size: 22.4px;
}
@media (min-width: 769px) {
  main.special-column-effect .columns > div.text-one {
    width: var(--bigSize);
    padding-left: var(--gap);
  }
  main.special-column-effect .columns > div.text-two {
    width: var(--smollSize);
    padding-left: var(--gap);
  }
}
main.special-column-effect .columns > div:first-of-type {
  flex: 1;
  top: 0;
  position: relative;
}
main.special-column-effect .columns > div .image-info {
  font-size: 1rem;
  line-height: 1.1rem;
  margin: 0.25rem 0 1rem 0;
  display: block;
}
@media (min-width: 769px) {
  main.special-column-effect .columns > div.sticky {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
main.special-column-effect .columns > div > div {
  position: relative;
  width: 100%;
}
main.special-column-effect .columns > div > div.hidden {
  display: none;
}
@media (min-width: 769px) {
  main.special-column-effect .columns > div > div {
    position: absolute;
    top: 0;
    transform-origin: 0 0;
    transition: none;
  }
  main.special-column-effect .columns > div > div.smoll {
    width: calc(var(--smollSize) - var(--gap));
  }
  main.special-column-effect .columns > div > div.big, main.special-column-effect .columns > div > div.bigsize {
    width: calc(var(--bigSize) - var(--gap));
  }
  main.special-column-effect .columns > div > div.hidden {
    visibility: hidden;
    position: relative;
    pointer-events: none;
    display: block;
  }
}
main.special-column-effect .text-one .smoll {
  display: none;
}
@media (min-width: 769px) {
  main.special-column-effect .text-one .smoll {
    display: block;
    opacity: 0;
    position: absolute;
    width: calc(var(--smollSize) - var(--gap));
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
main.special-column-effect .text-two .big {
  display: none;
}
@media (min-width: 769px) {
  main.special-column-effect .text-two .big {
    display: block;
    opacity: 0;
    position: absolute;
    width: calc(var(--bigSize) - var(--gap));
  }
}
main.special-column-effect .goBig .smoll {
  animation: var(--animationSpeed) ease-in forwards scaleUp;
}
main.special-column-effect .goBig .big {
  animation: var(--animationSpeed) ease-in forwards show;
}
main.special-column-effect .goBig .klickbutton {
  display: none;
}
main.special-column-effect .goSmoll .big {
  animation: var(--animationSpeed) ease-in forwards scaleDown;
}
main.special-column-effect .goSmoll .smoll {
  animation: var(--animationSpeed) ease-in forwards showSmoll;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2857);
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.775);
  }
}
@keyframes show {
  0% {
    opacity: 0;
    transform: scale(0.775);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showSmoll {
  0% {
    opacity: 0;
    transform: scale(1.2857);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes toBigColumn {
  0% {
    width: var(--smollSize);
  }
  100% {
    width: var(--bigSize);
  }
}
@keyframes toSmollColumn {
  0% {
    width: var(--bigSize);
  }
  100% {
    width: var(--smollSize);
  }
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }
  .columns > div.text-one, .columns > div.text-two, .columns > div.gallery {
    padding: 2rem 0;
  }
  .columns > div.text-two {
    margin-top: 2rem;
  }
  .columns > div.gallery {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .project-header {
    margin: 2rem 0;
  }
}
.project-header .project-title,
.project-header .project-subtitle,
.project-header .project-year {
  font-size: 2.4rem;
  line-height: 2.5rem;
  text-align: right;
  margin-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .project-header .project-title,
  .project-header .project-subtitle,
  .project-header .project-year {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

main.about-content.special-column-effect .columns {
  padding: 8rem 0;
}
@media (min-width: 769px) {
  main.about-content.special-column-effect .columns {
    padding: 8rem 2rem;
  }
}
main.about-content.special-column-effect .columns .network-content .columns {
  grid-template-columns: 1fr;
}
main.about-content.special-column-effect .columns > div:first-of-type {
  order: 3;
  padding-left: 0;
}
main.about-content.special-column-effect .columns > div:first-of-type img {
  margin-bottom: 0.5rem;
}
main.about-content.special-column-effect .columns > div.text-one,
main.about-content.special-column-effect .columns > div.text-two {
  padding-left: 0;
}
main.about-content.special-column-effect .columns > div > div > div:first-of-type {
  margin-bottom: var(--gap);
}

main.research-content.special-column-effect {
  padding: 8rem 0;
}
main.research-content.special-column-effect .intro {
  width: 85%;
  font-size: 2.4rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
main.research-content.special-column-effect .researchtext {
  margin-bottom: 4rem;
}
main.research-content.special-column-effect .columns {
  padding: 4rem 0;
}
@media (min-width: 769px) {
  main.research-content.special-column-effect .columns {
    padding: 4rem 2rem;
  }
}
main.research-content.special-column-effect .columns > div:first-of-type {
  order: 3;
  padding-left: 0;
}
main.research-content.special-column-effect .columns > div:first-of-type img {
  margin-bottom: 0.5rem;
}
main.research-content.special-column-effect .columns > div.text-one,
main.research-content.special-column-effect .columns > div.text-two {
  padding-left: 0;
}
main.research-content.special-column-effect .columns > div > div h2 {
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
main.research-content.special-column-effect .columns > div > div .entry {
  margin-bottom: 1.5rem;
}
main.research-content.special-column-effect .columns > div > div .entry .label {
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.impressum-content {
  padding: 8rem 0;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
  width: 70vw;
}
.impressum-content h1, .impressum-content h2 {
  font-size: 2.4rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.impressum-content h1:first-of-type, .impressum-content h2:first-of-type {
  margin-top: 0;
}
.impressum-content p {
  margin-bottom: 1rem;
}
.impressum-content a {
  color: black;
  text-decoration: none;
}
.impressum-content a:hover {
  color: rgb(50, 162, 117);
}

.footer-content {
  font-size: 1.4rem;
  line-height: 1.6rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}/*# sourceMappingURL=index.css.map */