@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css");
@import "resets/_normalize.css";
@import url("https://use.typekit.net/piz8yob.css");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Signika+Negative:300,400&display=swap");
body {
  --text-color: #012326;
  --bkg-color: #77D9BD;
  --hightlight-color: #77D9BD;
  --tile-color: #F3F9FD;
  overflow-x: hidden;
}
body section.about > article > ul > li:nth-child(1) > p {
  color: var(--hightlight-color);
}
body .formfield__select__chevron {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' aria-labelledby='title' aria-describedby='desc' role='img' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EArrow Down%3C/title%3E%3Cdesc%3EA line styled icon from Orion Icon Library.%3C/desc%3E%3Cpath data-name='layer2' fill='none' stroke='%23012326' stroke-miterlimit='10' stroke-width='2' d='M31.999 50V14' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Cpath data-name='layer1' fill='none' stroke='%23012326' stroke-miterlimit='10' stroke-width='2' d='M18 36l14 14 14-14' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
}
body .about ul.milestones li {
  background: #027373;
  color: var(--hightlight-color);
}

body.dark-theme {
  --text-color: #F3F9FD;
  --bkg-color: #012326;
  --tile-color: #1C1D21;
}
body.dark-theme .formfield__select__chevron {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' aria-labelledby='title' aria-describedby='desc' role='img' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EArrow Down%3C/title%3E%3Cdesc%3EA line styled icon from Orion Icon Library.%3C/desc%3E%3Cpath data-name='layer2' fill='none' stroke='%23f3f9fd' stroke-miterlimit='10' stroke-width='2' d='M31.999 50V14' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Cpath data-name='layer1' fill='none' stroke='%23f3f9fd' stroke-miterlimit='10' stroke-width='2' d='M18 36l14 14 14-14' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
}
body.dark-theme #themeToggle svg {
  transform: rotate(180deg);
}

#logostart > svg > g > g:nth-child(5) > g > path,
#logostart > svg > g > g:nth-child(7) > g > path,
#logostart > svg > g > g:nth-child(8) > g > path,
#logostart > svg > g > g:nth-child(6) > g > path {
  fill: #F3F9FD;
}

@media (prefers-color-scheme: dark) {
  /* defaults to dark theme */
  body {
    --text-color: #F3F9FD;
    --bkg-color: #012326;
    --tile-color: #1C1D21;
  }
  body.light-theme {
    --text-color: #012326;
    --bkg-color: #77D9BD;
    --tile-color: #F3F9FD;
  }
}
body {
  background: var(--bkg-color);
  color: var(--text-color);
  transition: background 0.25s ease-in;
}

#grad1 .top {
  stop-color: #006365;
}
#grad1 .bottom {
  stop-color: #fff;
}

.gradientText {
  color: #F3F9FD !important;
}

figure.hasEffect, picture.hasEffect {
  position: sticky;
  top: 60rem;
  line-height: 0;
  align-self: flex-start;
  overflow: hidden;
}
figure.hasEffect .gradientFilter, picture.hasEffect .gradientFilter {
  background: linear-gradient(269.71deg, #77D9BD -6.18%, #03A6A6 102.42%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.55s ease-in-out;
  z-index: 1;
}
figure.hasEffect img, picture.hasEffect img {
  filter: grayscale(1);
}
figure.hasEffect:hover .gradientFilter, picture.hasEffect:hover .gradientFilter {
  opacity: 0;
}
figure.hasEffect:hover img, picture.hasEffect:hover img {
  filter: grayscale(0);
}

figure.revealMe img, .coaching article.vScroll figure img {
  transition: all 1.75s ease-in-out;
  opacity: 0;
  transform: scale(1.05);
}
figure.revealMe img.noBlur, .coaching article.vScroll figure img.noBlur {
  transform: scale(1);
  opacity: 1;
}

#themeToggle {
  position: fixed;
  display: none;
  right: 60rem;
  top: 60rem;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 769px) {
  #themeToggle {
    display: block;
  }
}
#themeToggle circle {
  stroke: var(--text-color);
}
#themeToggle path {
  stroke: var(--text-color);
  fill: var(--text-color);
}
#themeToggle svg {
  transition: transform 0.75s ease-in;
}
#themeToggle.visible {
  visibility: visible;
  opacity: 1;
}
#themeToggle:hover svg {
  transform: rotate(180deg);
}

.full-screen {
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

article > * {
  margin-bottom: 60rem;
}
@media (min-width: 769px) {
  article > * {
    margin-bottom: 180rem;
  }
}

article {
  padding: 30rem;
}
@media (min-width: 769px) {
  article {
    padding: 60rem 0;
  }
}
@media (min-width: 1201px) {
  article {
    padding: 60rem;
  }
}

@media (min-width: 769px) {
  .col {
    display: grid;
    grid-gap: 60rem;
  }
}
@media (min-width: 1201px) {
  .col {
    grid-gap: 180rem;
  }
}
@media (max-width: 1199px) {
  .col.col-2.first {
    grid-template-columns: 55% auto;
  }
  .col.col-2.snd {
    grid-template-columns: auto 55%;
  }
}
@media (min-width: 1201px) {
  .col.col-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.col.col-2 .text {
  max-width: 40ch;
}
@media (min-width: 769px) {
  .col.col-3 {
    grid-gap: 30rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1201px) {
  .col.col-3 {
    grid-gap: 60rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30rem;
}
@media (min-width: 769px) {
  form {
    grid-column-gap: 30rem;
    grid-row-gap: 60rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1201px) {
  form {
    grid-column-gap: 60rem;
    grid-row-gap: 60rem;
  }
}
form [data-id=datenschutz] legend {
  display: none;
}
form [data-id=datenschutz] label {
  display: grid;
  grid-template-columns: 20rem auto;
  grid-gap: 20rem;
}
form [data-id=datenschutz] label a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}
form [data-id=anliegen] {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  form [data-id=anliegen] {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
form [data-id=anliegen] label {
  display: block;
  position: absolute;
  left: 0;
}
form [data-id=anliegen] .formfield__select__wrapper {
  width: 100%;
}
form .form-block-message {
  display: none;
}
form .formblock__message--success {
  grid-column-start: 1;
  grid-column-end: 3;
  background: var(--text-color);
  color: var(--bkg-color);
  margin-bottom: 120rem;
  padding: 30rem;
}
@media (min-width: 769px) {
  form .formblock__message--success {
    padding-right: 60rem;
  }
}
form .formblock__submit {
  text-align: right;
}
@media (min-width: 1201px) {
  form .formblock__submit {
    transform: translateY(calc(-100% - 60rem));
  }
}
form fieldset {
  grid-column-end: 3;
  grid-column-start: 1;
}
form .form-block-field {
  margin-bottom: 60rem;
}
@media (min-width: 769px) {
  form .form-block-field {
    margin-bottom: 30rem;
  }
}
form label {
  display: none;
}
form *::-webkit-input-placeholder {
  color: var(--text-color);
}
form *:focus {
  outline: none !important;
}
form fieldset {
  position: relative;
}
form fieldset legend {
  position: absolute;
  color: var(--text-color);
  margin-bottom: 15rem;
}
form select {
  background: transparent;
  border: none;
  width: 100%;
  text-align: right;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  direction: rtl;
  color: inherit;
  padding-right: 35rem;
}
@media (min-width: 769px) {
  form select {
    padding-right: 60rem;
  }
}
form .formfield__select__chevron {
  width: 23px;
  height: 23px;
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
}
@media (min-width: 769px) {
  form .formfield__select__chevron {
    width: 46px;
    height: 46px;
  }
}
form textarea {
  height: 100%;
}
form input, form textarea {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  border-bottom: 1px solid var(--text-color);
}
form input[type=submit], form textarea[type=submit] {
  cursor: pointer;
  padding: 10rem 40rem;
  transition: 0.25s transform ease-in;
  width: auto;
  background: var(--text-color);
  color: var(--bkg-color);
  margin-left: auto;
}
form input[type=submit]:hover, form textarea[type=submit]:hover {
  transform: translateY(-10px);
}
form input[type=radio], form textarea[type=radio] {
  border: 1px solid;
  color: inherit;
  width: 20rem;
  height: 20rem;
  margin-top: 0.2em;
  cursor: pointer;
}
form input[type=radio]:checked, form textarea[type=radio]:checked {
  background: var(--text-color);
}

.accordion-imgs {
  display: none;
}
@media (min-width: 769px) {
  .accordion-imgs {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
  }
}
.accordion-imgs li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.75s ease-in-out, transform 1.75s linear;
}
.accordion-imgs li figure {
  height: 100%;
}
.accordion-imgs li figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accordion-imgs li.open {
  opacity: 1;
  transform: scale(1);
}

.accordion button {
  padding: 30rem 0;
  width: 100%;
  text-align: left;
  position: relative;
}
.accordion button:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
  bottom: 0;
  left: 0;
  position: absolute;
  transition: width 0.25s ease-in;
}
@media (min-width: 769px) {
  .accordion button:hover:after {
    width: 75%;
  }
}
.accordion.open .accordioncontent {
  visibility: visible;
  display: block;
}
.accordion .accordioncontent {
  visibility: hidden;
  display: none;
  padding: 30rem 0;
}
.accordion .accordioncontent figure {
  height: 200rem;
  margin-bottom: 30rem;
}
.accordion .accordioncontent figure img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (min-width: 769px) {
  .accordion .accordioncontent {
    padding: 60rem 0 60rem 60rem;
  }
  .accordion .accordioncontent figure {
    display: none;
  }
}

footer.mains {
  background: var(--text-color);
  color: var(--bkg-color);
  margin: 30rem;
  padding: 15rem;
  border-radius: 17rem;
}
@media (min-width: 769px) {
  footer.mains {
    border-radius: 30rem;
  }
}
@media (min-width: 769px) {
  footer.mains {
    margin: 60rem;
    padding: 60rem;
    display: flex;
    justify-content: space-between;
  }
}
footer.mains > div {
  display: grid;
  grid-template-columns: 110rem auto;
  grid-gap: 10rem;
  margin-bottom: 30rem;
}
@media (min-width: 769px) {
  footer.mains > div {
    grid-template-columns: 200rem 1fr;
    grid-gap: 30rem;
    margin-bottom: 0;
  }
}
footer.mains > div > p {
  align-self: end;
}
footer.mains > div > p span {
  display: block;
}
footer.mains > div > p span:last-of-type {
  padding-left: 1ch;
}
footer.mains > nav {
  align-self: flex-end;
  justify-self: end;
}
footer.mains > nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 10rem;
}
footer.mains > nav a {
  display: block;
  margin: 0 10rem;
}
@media (min-width: 769px) {
  footer.mains > nav ul {
    margin-bottom: 0;
  }
  footer.mains > nav a {
    margin: 0 0 0 20rem;
  }
}

#fullscreenmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  color: var(--hightlight-color);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
#fullscreenmenu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#fullscreenmenu.open a {
  animation-name: hellomenu;
  animation-duration: 0.55s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  transform: translateX(10%);
  opacity: 0;
  display: block;
}
#fullscreenmenu.open a:nth-of-type(2) {
  animation-delay: 0.25s;
}
#fullscreenmenu.open a:nth-of-type(3) {
  animation-delay: 0.5s;
}
#fullscreenmenu.open a:nth-of-type(4) {
  animation-delay: 0.75s;
}
@keyframes hellomenu {
  from {
    transform: translateX(10%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#fullscreenmenu nav {
  margin-top: 60rem;
}
@media (min-width: 769px) {
  #fullscreenmenu nav {
    min-width: 5em;
    margin-top: 0;
  }
}
#fullscreenmenu nav a {
  padding: 20rem 0;
  display: none;
}
#fullscreenmenu nav a span {
  transition: all 0.5s;
}
#fullscreenmenu nav a:hover span {
  font-variation-settings: "wght" 700;
}
#fullscreenmenu .close {
  width: 120rem;
  height: 120rem;
  top: 22px;
  right: 0px;
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  line-height: 1;
  padding: 0;
  margin: 0;
  transition: transform 0.75s ease-in-out;
}
@media (min-width: 769px) {
  #fullscreenmenu .close {
    width: 240rem;
    height: 240rem;
    top: 71px;
    right: 71px;
  }
}
#fullscreenmenu .close:hover {
  transform: rotate(360deg);
}
#fullscreenmenu .close svg {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
}
#fullscreenmenu .close svg path {
  stroke-width: 1;
}

body.noStairs section.horizontal .pin-wrap, body.noStairs section.horizontal .animation-wrap {
  display: block;
  height: auto;
}
body.noStairs .full-screen {
  height: auto;
}
body.noStairs .chaptertitle, body.noStairs .chapterintro {
  opacity: 1;
}
body.noStairs section.horizontal .chapter .container {
  display: block;
  margin-bottom: 0;
}
body.noStairs .quoteanimation .container {
  margin-top: 60rem;
}
body.noStairs section.horizontal .chapter .container h2 {
  padding: 15rem;
  background: var(--text-color);
  color: var(--bkg-color);
}

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

html {
  font-size: 1px;
}

body {
  font-family: sans-serif;
  font-size: 22rem;
  font-family: "Archivo", sans-serif;
  font-variation-settings: "wght" 300;
}

.superlarge {
  font-size: 36rem;
  line-height: 0.95;
}
@media (min-width: 769px) {
  .superlarge {
    font-size: 80rem;
  }
}
@media (min-width: 1201px) {
  .superlarge {
    font-size: 120rem;
  }
}

.almosthuge {
  line-height: 1.13;
  font-size: 36rem;
}
@media (min-width: 769px) {
  .almosthuge {
    font-size: 50rem;
  }
}
@media (min-width: 1201px) {
  .almosthuge {
    font-size: 80rem;
  }
}

.bisselmehr, body.legal h2 {
  font-size: 28rem;
  line-height: 1.13;
}
@media (min-width: 769px) {
  .bisselmehr, body.legal h2 {
    line-height: 1.02;
    font-size: 40rem;
  }
}
@media (min-width: 1201px) {
  .bisselmehr, body.legal h2 {
    line-height: 1.02;
    font-size: 60rem;
  }
}

.bissel, body.legal h3 {
  font-size: 20rem;
}
@media (min-width: 769px) {
  .bissel, body.legal h3 {
    font-size: 30rem;
  }
}
@media (min-width: 1201px) {
  .bissel, body.legal h3 {
    font-size: 40rem;
  }
}

.tiny {
  font-size: 15rem;
}
@media (min-width: 769px) {
  .tiny {
    font-size: 22rem;
  }
}

.superheavy {
  font-variation-settings: "wght" 900;
}

.bold {
  font-variation-settings: "wght" 700;
}

.thin, body.legal h2 {
  font-variation-settings: "wght" 100;
}

form input, form textarea, form select {
  font-variation-settings: "wght" 100;
}

.text {
  font-size: 22rem;
  line-height: 1.13;
  font-variation-settings: "wght" 100;
}
@media (min-width: 769px) {
  .text {
    font-size: 28rem;
  }
}
.text p {
  margin-bottom: 0.5em;
}
.text p:last-of-type {
  margin-bottom: 0;
}

blockquote {
  max-width: 80ch;
}
@media (max-width: 768px) {
  blockquote {
    margin: 0;
  }
}
blockquote footer {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  blockquote footer span {
    display: block;
  }
}
blockquote .line {
  transform-origin: left;
  display: inline-block;
  background: var(--text-color);
  height: 1px;
  margin: 0.3em 0;
  width: 16ch;
}
@media (min-width: 769px) {
  blockquote .line {
    width: 9ch;
  }
}

body.legal .block a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}

footer.mains a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.about ul.milestones li {
  hyphenate-limit-chars: 8 4 4;
  -webkit-hyphenate-limit-before: 4;
  -webkit-hyphenate-limit-after: 4;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 768px) {
  #panel-2 > div > header > p > span:nth-child(2),
  body > main > section.coaching > article.hasIntro.vScroll.fifth > h3,
  body > main > section.coaching > article.hasIntro.vScroll.fourth > h3,
  #coaching > div > div > article.panel.full-screen.chapter > div > header > p {
    hyphenate-limit-chars: 8 4 4;
    -webkit-hyphenate-limit-before: 4;
    -webkit-hyphenate-limit-after: 4;
    -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;
}

/* Most of these styles could be removed but are for the demo to look better */
section.horizontal {
  overflow-x: hidden;
  transition: background 1s ease-in-out;
}
section.horizontal.bg {
  background: #006365;
}

.chapterintro {
  max-width: 30ch;
  line-height: 1;
  margin-top: 40rem;
}

@media (min-width: 769px) {
  .coaching, .contact {
    padding: 0 30rem;
  }
  .contact article {
    padding: 0 30rem;
  }
}
@media (min-width: 1201px) {
  .coaching, .contact {
    padding: 0 60rem;
  }
  .contact article {
    padding: 0 60rem;
  }
}
.coaching h3 {
  margin-bottom: 30rem;
}
@media (min-width: 769px) {
  .coaching h3 {
    margin-bottom: 60rem;
  }
}
.coaching .topics h3 {
  margin-bottom: 30rem;
  max-width: 18ch;
}
@media (min-width: 769px) {
  .coaching .topics h3 {
    margin-bottom: 120rem;
  }
}
.coaching .hasIntro h3 {
  margin-bottom: 30rem;
  max-width: 36ch;
}
@media (min-width: 769px) {
  .coaching .hasIntro h3 {
    margin-bottom: 120rem;
  }
}
@media (min-width: 769px) {
  .coaching .vScroll:not(.hasIntro) figure {
    margin-top: 150rem;
  }
  .coaching .vScroll figure {
    position: sticky;
    top: 170rem;
  }
}
@media (max-width: 768px) {
  .coaching .first > .col, .coaching .fourth > .col {
    display: flex;
    flex-direction: column-reverse;
  }
  .coaching .first figure, .coaching .scnd figure, .coaching .fourth figure, .coaching .fifth figure {
    margin-bottom: 60rem;
  }
}

.logostartcontainer {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translateY(-80%) translateX(-50%);
  filter: hue-rotate(335deg);
  cursor: pointer;
  margin: 20px;
  font-size: 8px;
}
@media (min-width: 769px) {
  .logostartcontainer {
    font-size: 22rem;
  }
}
.logostartcontainer > div {
  transform: translateX(-20px);
}

section#home {
  height: 100vh;
  position: relative;
}
section#home div {
  position: absolute;
}
section#home img {
  opacity: 0;
}
section#home h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 300%);
  letter-spacing: -2.5px;
  line-height: 1;
  display: flex;
}
section#home h1 span {
  display: block;
  color: #F3F9FD !important;
  font-variation-settings: "wght" 300;
}
section#home h1 .daniel span {
  transform: translateX(-10%);
  opacity: 0;
  animation: hidaniel 2s ease-in-out 1s forwards;
}
@keyframes hidaniel {
  from {
    transform: translateX(20%);
    opacity: 0;
    font-variation-settings: "wght" 300;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
    font-variation-settings: "wght" 700;
  }
}
section#home h1 .toepfer span {
  transform: translateX(-3%);
  opacity: 0;
  animation: hidtoeper 1.5s ease-in-out 1.5s forwards;
}
@keyframes hidtoeper {
  from {
    transform: translateX(-10%);
    opacity: 0;
    font-variation-settings: "wght" 300;
  }
  to {
    transform: translateX(3%);
    opacity: 1;
    font-variation-settings: "wght" 100;
  }
}
section#home .main {
  display: none;
}

section.horizontal {
  overflow: hidden;
}
section.horizontal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
section.horizontal#about p.sub {
  margin-top: 0;
}
@media (min-width: 769px) {
  section.horizontal .chapter {
    padding: 60rem;
  }
}
@media (min-width: 1201px) {
  section.horizontal .chapter {
    padding: 60rem 120rem;
  }
}

div.spacer {
  height: 25vh;
}

section.mainintro {
  display: flex;
  height: 100vh;
}
@media (min-width: 769px) {
  section.mainintro {
    height: 200vh;
  }
}
section.mainintro .kw-wrapper {
  position: absolute;
  height: 100%;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
}
section.mainintro .kw-container {
  position: sticky;
  top: 35vh;
  overflow: hidden;
  align-self: flex-end;
  width: 100%;
  z-index: 2;
  padding-left: 60rem;
}
@media (min-width: 1201px) {
  section.mainintro .kw-container {
    padding-left: calc(40% - 30rem);
  }
}
section.mainintro .kw {
  margin-bottom: 10rem;
  text-transform: uppercase;
}

.backgroundimage {
  position: relative;
  top: 0;
  pointer-events: none;
  top: 30rem;
  left: 30rem;
  width: calc(100% - 60rem);
  height: calc(100vh - 60rem);
  overflow: hidden;
  z-index: -1;
}
@media (min-width: 769px) {
  .backgroundimage {
    position: sticky;
  }
}
@media (min-width: 1201px) {
  .backgroundimage {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 120rem;
    left: 120rem;
    width: calc(100% - 240rem);
    height: calc(100vh - 240rem);
  }
}
.backgroundimage picture {
  opacity: 0;
  display: block;
  transform-origin: top;
  position: absolute;
  visibility: hidden;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
}
@media (min-width: 769px) {
  .backgroundimage picture {
    left: -10%;
    width: 120%;
  }
}
.backgroundimage img {
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}

.chaptertitle, .chapterintro {
  opacity: 0;
}

main, #masthead, #themeToggle {
  transition: opacity 0.25s ease-in;
}

body.scrolling main, body.scrolling #masthead, body.scrolling #themeToggle {
  opacity: 0.17;
}
body.scrolling #transitioncontainer {
  opacity: 1;
}

#transitioncontainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease-in;
}
#transitioncontainer .filter {
  background: linear-gradient(269.71deg, #07E6E2 -6.18%, #05B6F0 102.42%);
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
  opacity: 0.5;
}
#transitioncontainer img {
  width: 10vw;
}
#transitioncontainer svg {
  width: 30vw;
}

#intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60rem;
}

.about {
  padding: 0;
}
@media (min-width: 769px) {
  .about {
    padding: 60rem;
  }
}
@media (max-width: 768px) {
  .about .first {
    display: flex;
    flex-direction: column-reverse;
  }
  .about figure {
    margin-bottom: 60rem;
  }
}
.about ul.milestones li {
  background-color: var(--tile-color);
  color: var(--bkg-color);
  margin-bottom: 30rem;
  padding: 20rem;
}
@media (min-width: 769px) {
  .about ul.milestones li {
    padding: 30rem;
    margin-bottom: 0;
  }
}

#masthead {
  position: fixed;
  z-index: 999;
  top: 62rem;
  right: 60rem;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 769px) {
  #masthead > nav {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 20rem;
  }
}
#masthead.visible a {
  opacity: 1;
  visibility: visible;
}
#masthead a {
  transition: opacity 0.25s ease-in;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  padding: 4rem 10rem 3rem 10rem;
  border: 1px solid;
  border-radius: 40rem;
  cursor: pointer;
  position: relative;
  background: var(--text-color);
  color: var(--bkg-color);
  border: 1px solid var(--text-color);
}
#masthead a span {
  transition: all 0.25s ease-in;
  pointer-events: none;
}
#masthead a:nth-of-type(2) {
  transition-delay: 0.25s;
}
#masthead a:nth-of-type(3) {
  transition-delay: 0.5s;
}
#masthead a:nth-of-type(4) {
  transition-delay: 0.75s;
}
#masthead a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: width 0.25s ease-in;
  background: linear-gradient(269.71deg, #77D9BD -6.18%, #03A6A6 102.42%);
}
#masthead a:hover span {
  color: #F3F9FD !important;
}

section {
  width: 100%;
  height: 100%;
  position: relative;
}

section.horizontal .pin-wrap,
section.horizontal .animation-wrap {
  display: flex;
  position: relative;
  z-index: 1;
  height: 100vh;
}
section.horizontal .pin-wrap article,
section.horizontal .animation-wrap article {
  width: 100vw;
  position: relative;
}

section.horizontal .animation-wrap.to-left {
  counter-reset: item 11;
  float: right;
}

body.legal #themeToggle {
  opacity: 1;
  visibility: visible;
}
body.legal .legallogo {
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5em;
  filter: hue-rotate(335deg);
  cursor: pointer;
  margin: 20px;
}
body.legal article {
  padding: 240rem 30rem 30rem 30rem;
}
@media (min-width: 769px) {
  body.legal article {
    padding: 180rem 120rem 60rem 440rem;
  }
}
body.legal article h1 {
  margin-bottom: 60rem;
}
@media (min-width: 769px) {
  body.legal article h1 {
    margin-bottom: 120rem;
  }
}
body.legal article section {
  margin-bottom: 30rem;
}
@media (min-width: 769px) {
  body.legal article section {
    margin-bottom: 60rem;
  }
}
body.legal article section.block-type-text {
  max-width: 50ch;
}
body.legal article section.block-type-text ul li {
  position: relative;
  padding-left: 1.5em;
  max-width: 45ch;
}
body.legal article section.block-type-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1em;
  background: var(--text-color);
  height: 1px;
  top: 0.5em;
}
body.legal article section.block-type-text ul li * {
  display: inline;
}/*# sourceMappingURL=index.css.map */