@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Pacifico:wght@300;400;700&display=swap";
.rotate {
  transform-origin: center;
  transform-box: fill-box;
  animation: 8s linear infinite forwards rotate;
}

.rotate--rev {
  transform-origin: center;
  transform-box: fill-box;
  animation: 8s linear infinite reverse forwards rotate;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-.5rem);
  }

  100% {
    transform: translateY(.5rem);
  }
}

* {
  margin: 0;
  padding: 0;
}

*, :before, :after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (max-width: 68.75em) {
  html {
    font-size: 50%;
  }
}

a {
  cursor: pointer;
}

body, html {
  height: 100%;
  width: 100%;
  z-index: -5;
  background: #000;
  position: relative;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #bababa #eee;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background-color: #bababa;
  border: 0 #000;
  border-radius: 0;
}

body {
  color: #333;
  background-color: #eee;
  font-family: roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.heading-hero {
  color: #eee;
  margin: 0 0 1rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1;
}

.paragraph-hero {
  font-size: 3rem;
  line-height: 1.4;
}

.heading-primary {
  color: #333;
  margin: 0 0 1rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: .9;
}

.heading-primary--sub {
  letter-spacing: 1.75rem;
  font-size: 2rem;
  font-weight: 700;
  animation: 1s ease-out moveInRight;
  display: block;
}

@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    letter-spacing: .5rem;
  }
}

.section-title {
  opacity: 0;
  letter-spacing: .1rem;
  text-align: center;
  visibility: hidden;
  margin-bottom: 5rem;
  font-size: max(3rem, 3vw);
  font-weight: 400;
  line-height: 1;
  transform: translateX(-100vw);
}

.highlight {
  background: linear-gradient(135deg, #ff5964, #ff9d73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.external-link {
  color: #35a7ff;
  text-decoration: none;
  transition: transform .25s;
  display: inline-block;
}

.external-link:hover {
  transform: scale(1.1)rotate(-1deg);
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-large {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-huge {
  margin-bottom: 10rem !important;
}

.u-padding-bottom-small {
  padding-bottom: 1.5rem !important;
}

.u-padding-bottom-medium {
  padding-bottom: 4rem !important;
}

.u-padding-bottom-large {
  padding-bottom: 8rem !important;
}

.u-padding-bottom-huge {
  padding-bottom: 10rem !important;
}

.u-padding-bottom-extreme {
  padding-bottom: 36rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-large {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-font-size-large {
  font-size: 3rem !important;
}

.btn {
  color: #333;
  background: #eee;
  border-radius: 100vw;
  padding: 0 2rem;
  font-size: 2rem;
  text-decoration: none;
  transition: transform .25s;
}

.btn:hover, .btn:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 2px 2px #33333380;
}

.btn:active {
  box-shadow: none;
  transform: translateY(0);
}

.btn--accent-3 {
  color: #eee;
  background-color: #628b48;
}

.section-devider {
  height: 4.1rem;
  width: 4.1rem;
  z-index: 3;
  cursor: pointer;
  transition: transform .25s;
  position: absolute;
  top: 95vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 37.5em) {
  .section-devider {
    top: 90vh;
  }
}

.section-devider:hover, .section-devider:active {
  transform: translate(-50%, -50%)scale(1.1);
}

.section-devider:hover > .section-devider__arrow, .section-devider:active > .section-devider__arrow {
  transform: scale(1.1);
}

.section-devider__arrow {
  animation: 1s ease-in-out infinite alternate bounce;
}

.section-devider--about {
  z-index: 1;
  top: 97vh;
}

.menu-burger {
  z-index: 9999999;
  width: 3.5rem;
  height: 7rem;
  z-index: 99;
  background: #d9d9d9f2;
  border-radius: 0 3.5rem 3.5rem 0;
  transition: all .25s, width .25s ease-in, height .25s ease-in;
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}

.menu-burger:hover {
  transform: translate(0%, -50%);
}

.menu-burger--expanded {
  width: 45%;
  height: 100%;
  border-radius: 0;
  transform: translate(0%, -50%);
}

@media only screen and (max-width: 75em) {
  .menu-burger--expanded {
    width: 65%;
  }
}

@media only screen and (max-width: 56.25em) {
  .menu-burger--expanded {
    width: 100%;
  }
}

.menu-burger svg {
  z-index: 100;
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  border-radius: 0 50% 50% 0;
  transition: all .25s;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 .2rem .2rem #0003;
}

.menu-burger svg:hover {
  transform: translate(0%, -50%);
}

.menu-burger svg path {
  fill: #fff;
}

.menu-burger svg line {
  stroke-width: .3rem;
  stroke: #333;
  fill: #333;
  transform-origin: center;
  transition: transform .3s;
}

.menu-burger .burger-button-open {
  transform: translate(0%, -50%);
}

.menu-burger .burger-top-open {
  transform: rotate(45deg)translate(0, -1rem);
}

@media only screen and (max-width: 75em) {
  .menu-burger .burger-top-open {
    transform: rotate(45deg)translate(0, -1.2rem);
  }
}

.menu-burger .burger-bottom-open {
  transform: rotate(-45deg)translateY(1rem);
}

@media only screen and (max-width: 75em) {
  .menu-burger .burger-bottom-open {
    transform: rotate(-45deg)translate(0, 1.2rem);
  }
}

.menu-burger .burger-middle-open {
  transform: translateX(-10rem);
}

.menu-burger nav {
  height: auto;
  width: 100%;
  color: #333;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  font-size: 3rem;
  transition: all .25s ease-out;
  position: absolute;
  top: 50%;
  transform: translate(-200%, -50%);
}

.menu-burger nav li {
  margin: 0 0 2rem 6rem;
  list-style: none;
  position: relative;
}

.menu-burger nav li:after {
  content: "";
  height: .1rem;
  width: 0%;
  background: #333;
  transition: width .25s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu-burger nav li:hover:after {
  width: 10%;
}

.menu-burger nav li a {
  color: inherit;
  text-decoration: none;
}

.menu-burger .nav-open {
  opacity: 1;
  pointer-events: all;
  transition-duration: .25s;
  transition-delay: .25s;
  transform: translate(-5%, -50%);
}

:root {
  --card-width: 45%;
  --card-border-radius: 3rem;
  --card-arrow-width: 4rem;
  --card-icon-width: 7rem;
}

.card {
  width: var(--card-width);
  z-index: 1;
  border-radius: var(--card-border-radius);
  left: calc(50% - var(--card-width)  - (var(--card-arrow-width)  + var(--card-icon-width) / 2));
  background: #fff;
  flex-direction: column;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  position: relative;
  transform: translateY(20vh);
}

@media only screen and (max-width: 75em) {
  .card {
    width: 100%;
    left: 0%;
    margin-top: 0 !important;
  }
}

.card--right {
  left: calc(50% + var(--card-arrow-width)  + var(--card-icon-width) / 2);
}

@media only screen and (max-width: 75em) {
  .card--right {
    width: 100%;
    left: 0%;
    margin-top: 0 !important;
  }
}

.card__banner {
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
  width: 100%;
  color: #eee;
  background-color: #333;
  grid-template-columns: 60% auto;
  font-size: max(2rem, 1.6vw);
  display: grid;
}

.card__banner--text {
  padding: 3.5vw 1.5vw 3.5vw 3.5vw;
  line-height: 1;
}

.card__banner--text--year {
  font-weight: 400;
}

.card__banner--text--title {
  font-weight: 100;
}

.card__banner--image {
  width: 100%;
  height: calc(100% + var(--card-border-radius));
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 3;
}

.card__banner--image img {
  border-radius: 0 var(--card-border-radius) 0 var(--card-border-radius);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: -2rem .5rem .1rem .1rem #3333330d;
}

.card__margin--small {
  margin-top: -10rem;
}

.card__margin--middle {
  margin-top: -20rem;
}

.card__margin--large {
  margin-top: -35rem;
}

.card__margin--huge {
  margin-top: -50rem;
}

.card:before, .card:after {
  content: "";
  width: 40%;
  height: 10px;
  z-index: -1;
  position: absolute;
  bottom: 1.5rem;
  box-shadow: 0 .5rem 2rem #000;
}

@media only screen and (max-width: 75em) {
  .card:before, .card:after {
    bottom: 2.5rem;
  }
}

.card:before {
  left: 15px;
  transform: skew(-5deg)rotate(-5deg);
}

.card:after {
  right: 15px;
  transform: skew(5deg)rotate(5deg);
}

.card__arrow {
  right: calc(var(--card-arrow-width) * -1);
  width: 0;
  height: 0;
  border-top: 3rem solid #0000;
  border-bottom: 3rem solid #0000;
  border-left: var(--card-arrow-width) solid #fff;
  position: absolute;
  top: 50%;
}

@media only screen and (max-width: 75em) {
  .card__arrow {
    display: none;
  }
}

.card__arrow:before, .card__arrow:after {
  content: "";
  height: var(--card-icon-width);
  width: var(--card-icon-width);
  top: 50%;
  left: calc(var(--card-icon-width) / 2);
  background-color: #eee;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.card__arrow:after {
  content: "";
  height: calc(var(--card-icon-width)  - 1rem);
  width: calc(var(--card-icon-width)  - 1rem);
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3rem;
}

.card__arrow--card-right {
  border-left: none;
  border-right: var(--card-arrow-width) solid #fff;
  left: calc(var(--card-arrow-width) * -1);
}

.card__arrow--card-right:before, .card__arrow--card-right:after {
  left: calc(var(--card-icon-width) / -2);
  transform: translate(-50%, -50%);
}

.card__arrow[data-work-icon]:after {
  background-image: url("work-icon.9857c4b9.svg");
}

.card__arrow[data-school-icon]:after {
  background-image: url("school-icon.bb892c3c.svg");
}

.card__info {
  max-height: 100%;
  width: 100%;
  border-radius: var(--card-border-radius);
  background-color: #fff;
  padding: 3.5vw;
  line-height: 1.4;
}

@media only screen and (max-width: 37.5em) {
  .card__info {
    padding-top: 4rem;
  }
}

.card__info--subtitle {
  margin-bottom: 1rem;
}

.card__info--list {
  margin-bottom: 1rem;
  margin-left: 2.5rem;
}

.card__info--list ul {
  margin-bottom: 3rem;
}

.card__info--list ul:last-child {
  margin-bottom: 0;
}

.card__info--list li {
  margin-bottom: .5rem;
}

.card__info--list li::marker {
  font-size: .8rem;
}

.card__image {
  max-height: 100%;
  width: 40%;
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.card__image--img--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.project-card__container {
  max-height: 100%;
  transform: rotate(var(--rotation));
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.project-card__top {
  justify-content: center;
  align-items: center;
  display: flex;
  top: 0;
}

.project-card__bottom {
  color: #333;
  background-color: #fff;
  grid-template-columns: 24% 76%;
  margin-top: -7rem;
  padding: 10rem 3rem 2rem;
  display: grid;
  box-shadow: .1rem .1rem .5rem .1rem #0000001a;
}

.project-card__bottom .project-card__text {
  text-align: right;
  padding: .5rem 3rem 0;
  font-size: max(1.2vw, 2rem);
}

@media only screen and (max-width: 75em) {
  .project-card__bottom .project-card__text {
    padding: .5rem 1rem 0;
  }
}

.project-card__bottom .project-card__text--title {
  text-align: left;
  font-weight: 400;
}

:root {
  --carousel-img-height: 36.5rem;
  --carousel-img-width: 50rem;
}

@media only screen and (max-width: 37.5em) {
  :root {
    --carousel-img-height: 22.5rem;
    --carousel-img-width: 32rem;
  }
}

.carousel {
  max-height: var(--carousel-img-height);
  max-width: var(--carousel-img-width);
  z-index: 1;
  transition: transform .25s;
  position: relative;
  overflow: hidden;
}

.carousel:hover {
  transform: scale(1.1);
}

.carousel__arrow-right, .carousel__arrow-left {
  z-index: 9;
  cursor: pointer;
  margin-left: 1rem;
  margin-right: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__arrow-right svg, .carousel__arrow-left svg {
  height: 3.8rem;
  transition: transform .25s;
}

.carousel__arrow-right:hover > svg, .carousel__arrow-left:hover > svg {
  transform: scale(1.2);
}

.carousel__arrow-right:hover > svg g, .carousel__arrow-left:hover > svg g {
  opacity: 1;
}

.carousel__arrow-right:active > svg, .carousel__arrow-left:active > svg {
  transform: scale(1);
}

.carousel__arrow-right {
  right: 0;
}

.carousel img {
  pointer-events: none;
  max-width: var(--carousel-img-width);
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 2rem;
}

.carousel ul {
  height: var(--carousel-img-height);
  width: var(--carousel-img-width);
  border-radius: 2rem;
  overflow: hidden;
}

.carousel ul li {
  transition: all .25s;
  position: absolute;
}

.carousel ul li.slide {
  opacity: 0;
  cursor: pointer;
  height: var(--carousel-img-height);
  width: var(--carousel-img-width);
  z-index: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .3s .3s;
  display: flex;
  position: absolute;
}

.carousel ul li.slide[data-active] {
  opacity: 1;
  height: var(--carousel-img-height);
  width: var(--carousel-img-width);
  z-index: 3;
  transition-delay: 0s;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel ul li.slide[data-active]:after {
  content: "Klicke für Vollbild";
  opacity: 0;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: none;
  letter-spacing: .2rem;
  background-color: #333c;
  border-radius: 1rem;
  padding: .5rem 1rem;
  font-weight: 400;
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel ul li.slide[data-active]:hover:after {
  opacity: 1;
}

.carousel__dots {
  z-index: 4;
  background-color: #eeec;
  border-radius: 50rem;
  padding: .5rem;
  transition: background-color .25s;
  display: flex;
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translate(-50%);
}

.carousel__dots:hover {
  background-color: #eee;
}

.carousel__dots__dot {
  height: 1rem;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background-color: #3333334d;
  border-radius: 1rem;
  margin-right: 1rem;
  transition: background-color .25s;
}

.carousel__dots__dot:last-child {
  margin-right: 0;
}

.carousel__dots__dot:hover {
  background-color: #333c;
}

.carousel__dots__dot[data-active] {
  background-color: #333;
}

.full-screen-image {
  height: 100vh;
  width: 100vw;
  z-index: 999;
  -webkit-backdrop-filter: blur(1rem) brightness(.5);
  -webkit-backdrop-filter: blur(1rem) brightness(.5);
  backdrop-filter: blur(1rem) brightness(.5);
  transition: all .25;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
}

.full-screen-image img {
  max-height: 85%;
  max-width: 70%;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  margin: 2rem;
  display: block;
}

.full-screen-image__arrow-right, .full-screen-image__arrow-left, .full-screen-image__exit {
  z-index: 9;
  height: 3.8rem;
  width: 3.8rem;
  cursor: pointer;
  border-radius: 50rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.full-screen-image__arrow-right svg, .full-screen-image__arrow-left svg, .full-screen-image__exit svg {
  height: 3.8rem;
  transition: transform .25s;
}

.full-screen-image__arrow-right:hover > svg, .full-screen-image__arrow-left:hover > svg, .full-screen-image__exit:hover > svg {
  transform: scale(1.2);
}

.full-screen-image__arrow-right:hover > svg g, .full-screen-image__arrow-left:hover > svg g, .full-screen-image__exit:hover > svg g {
  opacity: 1;
}

.full-screen-image__arrow-right:active > svg, .full-screen-image__arrow-left:active > svg, .full-screen-image__exit:active > svg {
  transform: scale(1);
}

.full-screen-image__arrow-right {
  right: 5rem;
}

.full-screen-image__arrow-left {
  left: 5rem;
}

.full-screen-image__exit {
  top: 5rem;
  right: 5rem;
}

.full-screen-image__description {
  height: 12rem;
  width: 60%;
  color: #eee;
  background: #333333f2;
  border: 1rem solid #3330;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  position: absolute;
  bottom: 5rem;
  overflow-y: auto;
}

@media only screen and (max-width: 75em) {
  .full-screen-image__description {
    height: auto;
    min-height: 10%;
    max-height: 30%;
    width: 100%;
    padding: 1% 2%;
    bottom: 0;
  }
}

.full-screen-image__dots {
  background-color: #eeec;
  border-radius: 50rem;
  padding: .5rem;
  transition: background-color .25s;
  display: flex;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%);
}

.full-screen-image__dots:hover {
  background-color: #eee;
}

.full-screen-image__dots__dot {
  height: 1.5rem;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background-color: #3333334d;
  border-radius: 1rem;
  margin-right: 1rem;
  transition: background-color .25s;
}

.full-screen-image__dots__dot:last-child {
  margin-right: 0;
}

.full-screen-image__dots__dot:hover {
  background-color: #333c;
}

.full-screen-image__dots__dot[data-active] {
  background-color: #333;
}

.blob {
  height: 120%;
  width: 80%;
  transform-style: preserve-3d;
  will-change: border-radius;
  border-radius: 90% 35% 30% 70% / 60% 50% 60% 40%;
  outline: 1px solid #0000;
  animation: 20s linear infinite morph;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blob:before, .blob:after {
  content: "";
  width: 100%;
  height: 100%;
  will-change: border-radius, transform, opacity;
  background-image: linear-gradient(120deg, #f2e8630d 0%, #ef476f33 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  animation-delay: 1s;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 89px #0066ff36;
}

.blob:before {
  opacity: .21;
  animation: 30s linear infinite morph;
}

.blob:after {
  opacity: .89;
  text-indent: -21px;
  line-height: 120px;
  animation: 25s linear 1.5s infinite morph;
}

@keyframes morph {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate(-50%, -50%)translate3d(0, 0, 0)rotateZ(.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate(-50%, -50%)translate3d(0, 5px, 0)rotateZ(.01deg);
  }

  50% {
    opacity: .89;
    transform: translate(-50%, -50%)translate3d(0, 0, 0)rotateZ(.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate(-50%, -50%)translate3d(0, -3px, 0)rotateZ(.01deg);
  }
}

.wave-container {
  width: 100%;
  height: 20rem;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

.wave {
  width: 6400px;
  height: 198px;
  background: url("wave.53b85550.svg") repeat-x;
  animation: 30s cubic-bezier(.36, .45, .63, .53) infinite wave;
  position: absolute;
  bottom: -42px;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  animation: 30s cubic-bezier(.36, .45, .63, .53) -.125s infinite wave, 7s -1.25s infinite swell;
  bottom: -42px;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%, 100% {
    transform: translate3d(0, 5px, 0);
  }

  50% {
    transform: translate3d(0, 15px, 0);
  }
}

.loader {
  min-width: 100vw;
  min-height: 100vh;
  z-index: 2147483647;
  background-color: #eee;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.loader__image {
  height: 5rem;
  aspect-ratio: 1 / 1;
}

.signature-svg {
  width: 30rem;
  align-self: center;
  margin-top: 2rem;
}

.signature-svg--path {
  stroke: #333;
  clip-path: url("#signature");
  stroke-dasharray: 933;
}

.hero {
  height: 95vh;
  z-index: 1;
  background: linear-gradient(45deg, #141e30, #243b55);
  grid-template-columns: 30% 70%;
  justify-items: center;
  display: grid;
}

@media only screen and (max-width: 56.25em) {
  .hero {
    grid-template-columns: 35% 65%;
  }
}

@media only screen and (max-width: 37.5em) {
  .hero {
    height: 90vh;
    grid-template-rows: 35% 65%;
    grid-template-columns: 100%;
    gap: 5rem;
  }
}

.hero__speech-bubble {
  color: #eee;
  z-index: 1;
  align-self: center;
  padding-left: 5vw;
  padding-right: 5vw;
  font-size: 4rem;
  transform: translateY(-20%);
}

@media only screen and (max-width: 56.25em) {
  .hero__speech-bubble {
    padding-left: 12vw;
    padding-right: 5vw;
  }
}

@media only screen and (max-width: 37.5em) {
  .hero__speech-bubble {
    font-size: 3rem;
  }
}

.hero__speech-bubble h1 {
  letter-spacing: .2rem;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1;
}

.hero__speech-bubble p {
  font-weight: 100;
  line-height: 1.2;
}

.hero__canvas {
  z-index: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  overflow: hidden;
  transform: translateY(-50%);
}

.hero__canvas__container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flag {
  height: 90%;
  width: 20rem;
  z-index: 1;
  background-color: #eee;
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .flag {
    width: 15rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .flag {
    height: 100%;
  }
}

.flag__title {
  color: #628b48;
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  font-size: 2.5rem;
  font-weight: 200;
}

@media only screen and (max-width: 56.25em) {
  .flag__title {
    font-size: 2rem;
  }
}

.flag__image-container--outer {
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flag__image-container--inner {
  position: relative;
}

.flag__image {
  width: 25rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 10px 1px #00000040;
}

@media only screen and (max-width: 56.25em) {
  .flag__image {
    width: 20rem;
  }
}

.flag__gears {
  position: absolute;
  top: 30%;
  left: 100%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 56.25em) {
  .flag__gears svg {
    width: 8rem;
  }
}

.flag__img-tag {
  color: #ff5964;
  width: 100%;
  font-size: 4rem;
  font-weight: 600;
  position: absolute;
  transform: translate(-50%, -50%);
}

.flag__img-tag--top {
  top: 1%;
  left: 40%;
}

@media only screen and (max-width: 56.25em) {
  .flag__img-tag--top {
    top: -1%;
    left: 36%;
  }
}

.flag__img-tag--bottom {
  top: 80%;
  left: 110%;
}

.exp {
  background-color: #eee;
  padding: 15rem;
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .exp {
    padding: 5rem;
  }
}

.exp:before {
  content: "";
  height: 100%;
  width: 6rem;
  background-color: #0000;
  background-image: linear-gradient(0deg, #eee 12%, #0000 17% 93%, #eee 98%), url("foot-steps.434ca3c7.svg");
  background-position: 50% -2rem;
  background-repeat: repeat-y;
  background-size: 100%;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  position: absolute;
  top: 20vh;
  left: 50%;
  transform: translateX(-50%);
}

.private-projects {
  max-width: 100vw;
  background-color: #fcfeff;
  padding-top: 5rem;
  position: relative;
  overflow-x: hidden;
}

.project {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 15rem;
  padding-bottom: 5rem;
  font-size: max(1.2vw, 2rem);
  display: grid;
}

.project .bg-light {
  background-color: #eee;
}

.project__title {
  letter-spacing: .1rem;
  width: 100%;
  z-index: 2;
  z-index: 0;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  grid-column: 1 / 3;
  margin-bottom: 4rem;
  padding: 0 15rem;
  font-size: max(1.2vw, 2rem);
  font-weight: 400;
  line-height: .9;
  position: relative;
}

.project__title h2 {
  font-weight: 400;
}

@media only screen and (max-width: 75em) {
  .project__title {
    padding: 0 0 0 10vw;
  }
}

.project__text-container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem 0 15rem;
  display: flex;
}

@media only screen and (max-width: 75em) {
  .project__text-container {
    grid-column: 1 / 3;
    padding: 0 10vw;
  }
}

.project__text-container[data-right] {
  padding: 0 15rem 0 5rem;
}

@media only screen and (max-width: 75em) {
  .project__text-container[data-right] {
    padding: 0 10vw;
  }
}

.project__image-container {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

@media only screen and (max-width: 75em) {
  .project__image-container {
    order: 3;
    grid-column: 1 / 3;
    margin-top: 5rem;
  }
}

.project__title[data-right] {
  text-align: right;
}

@media only screen and (max-width: 75em) {
  .project__title[data-right] {
    text-align: left;
  }
}

.project__title[data-right]:after {
  left: calc(-15rem - 50vw);
}

.project__subtitle {
  font-weight: 400;
}

.project__list {
  margin-bottom: 1rem;
  margin-left: 2.5rem;
}

.project__list ul {
  margin-bottom: 3rem;
}

.project__list li::marker {
  font-size: .8rem;
}

.project p {
  margin-bottom: 3rem;
}

.about {
  background: linear-gradient(#ffafbd 0, #ffc3a0 20%, #7fd1b9 40%, #3a606e 60%, #a390e4 80%, #845a6d 100%);
  position: relative;
}

:root {
  --hobbies-svg-length: 0;
  --hobbies-svg-stroke-dashoffset: 26232;
}

.hobbies__svg {
  height: 3000vh;
  max-width: 500px;
  display: flex;
}

@media only screen and (max-width: 56.25em) {
  .hobbies__svg {
    transform: translateY(-12vh);
  }
}

.hobbies__svg__img {
  height: 100vh;
  position: sticky;
  top: 0;
}

.hobbies__svg__img path.main {
  stroke: #eee;
  stroke-width: 5px;
  transition: all .1s;
  transform: translateX(5rem);
}

.hobbies__svg__img g.bg {
  stroke: none;
  transform: translateX(-450px);
}

.hobbies__svg__text {
  height: 100%;
  color: #eee;
  z-index: 3;
  background: linear-gradient(45deg, #141e30, #243b55);
  align-items: center;
  padding: 4rem 3.5vw;
  display: flex;
  position: fixed;
  top: 50%;
  left: 450px;
  transform: translate(100vw, -50%);
}

@media only screen and (max-width: 56.25em) {
  .hobbies__svg__text {
    width: 100%;
    height: auto;
    padding: 2.5vw;
    top: 100%;
    transform: translate(100vw, -100%);
    left: 0 !important;
  }
}

.hobbies__svg__text__card {
  flex-direction: column;
  align-items: center;
  padding: 3.5vw;
  display: flex;
}

@media only screen and (max-width: 56.25em) {
  .hobbies__svg__text__card {
    padding-right: 8rem;
  }
}

.hobbies__svg__text__card h1 {
  margin-bottom: 2rem;
  padding: 0;
  font-family: Pacifico;
  font-size: max(5vw, 5rem);
  font-weight: 100;
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .hobbies__svg__text__card h1 {
    margin-bottom: 1rem;
  }
}

.hobbies__svg__text__card h1:after {
  content: "über mich...";
  color: #eeeeee1a;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: roboto, sans-serif;
  font-size: max(2.5vw, 2rem);
  font-weight: 100;
  position: absolute;
  top: -2.1rem;
  left: -6rem;
}

@media only screen and (max-width: 56.25em) {
  .hobbies__svg__text__card h1:after {
    top: -1rem;
    left: -2rem;
  }
}

.hobbies__svg__text__card p {
  font-size: max(1.6vw, 2rem);
  font-weight: 100;
  line-height: 1;
}

.hobbies .draw-hobbies {
  stroke-dasharray: var(--hobbies-svg-length);
  stroke-dashoffset: var(--hobbies-svg-stroke-dashoffset);
  transition: stroke-dashoffset 50ms ease-in-out;
}

.hobbies__navigation {
  z-index: 10;
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 56.25em) {
  .hobbies__navigation {
    right: .5rem;
  }
}

.hobbies__navigation__button {
  cursor: pointer;
  opacity: .8;
  margin-bottom: 1rem;
  transition: opacity .25s, transform .3s;
}

.hobbies__navigation__button:last-child {
  margin-bottom: 0;
}

.hobbies__navigation__button:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hobbies__navigation__button:active {
  opacity: 1;
  transform: scale(.95);
}

.scroll-hint {
  color: #eee;
  font-size: max(2.5vw, 2rem);
  font-weight: 400;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact {
  color: #121935;
  min-height: 100vh;
  background: #eee;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  display: flex;
  position: relative;
}

.contact__links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  display: flex;
}

.contact svg {
  height: 15rem;
  cursor: pointer;
  border-radius: 36px;
}

@media only screen and (max-width: 37.5em) {
  .contact svg {
    height: 7.5rem;
  }
}

.contact svg:hover {
  border-radius: 19px;
  transform: translateY(0);
}

.contact .contact-svg__bg {
  transition: rx .25s, fill .25s;
}

.contact .contact-svg__icon-first {
  transition: transform .25s;
}

.contact .contact-svg__icon-second {
  opacity: 0;
  transition: transform .25s, opacity .25s;
  animation-delay: .25s;
  transform: translateY(-20rem);
}

.contact .contact-svg:hover .contact-svg__bg {
  rx: 16;
}

.contact .contact-svg:hover .contact-svg__icon-first {
  transform: translateY(50rem);
}

.contact .contact-svg:hover .contact-svg__icon-second {
  opacity: 1;
  transform: translateY(0);
}

.contact .contact-svg:hover {
  transform: scale(1.2);
}

.contact p {
  font-size: max(1.2vw, 2rem);
}

/*# sourceMappingURL=index.72739ec5.css.map */
