@font-face {
  font-family: "GT-America-Regular";
  src: url("fonts/GT-America-Regular.woff2") format("woff2"),
       url("fonts/GT-America-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT-America-Medium";
  src: url("fonts/GT-America-Medium.woff2") format("woff2"),
       url("fonts/GT-America-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT-America-Bold";
  src: url("fonts/GT-America-Bold.woff2") format("woff2"),
       url("fonts/GT-America-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT-America-Mono-Medium";
  src: url("fonts/GT-America-Mono-Medium.woff2") format("woff2"),
       url("fonts/GT-America-Mono-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT-America-Mono-Ultra-Light";
  src: url("fonts/GT-America-Mono-Ultra-Light.woff2") format("woff2"),
       url("fonts/GT-America-Mono-Ultra-Light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT-America-Extended-Bold";
  src: url("fonts/GT-America-Extended-Bold.woff2") format("woff2"),
       url("fonts/GT-America-Extended-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #0019ff;
  --brandGradient: linear-gradient(88deg, #0019ff, #0019ff);
  --postive: #65e792;
  --alert: #e7da65;
  --negative: #e1464e;
  --gray0: #fff;
  --gray1: #e5e7e8;
  --gray2: #b3b9ba;
  --gray3: #808a8c;
  --gray4: #4d5c5e;
  --gray5: #1b2d30;
  --gray6: #02161a;
  --black: #222;
  --text: #222;
  --textLight: #555;
  --textHeadline: #222;
  --button: #222;
  --buttonHover: #333;
  --preloadBackground: #f9f9f9;
  --preloadText: #efeded;
  --cubic: cubic-bezier(0.42, 0, 0.58, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: var(--text);
}

body {
  font-family: "GT-America-Regular";
  overflow-x: hidden;
  background-color: #dcc6f7;
}

#root {
  background-color: #dcc6f7;
  height: 100%;
  position: relative;
  z-index: 100000;
}

.wrapper {
  z-index: 0;
  position: relative;
  background-color: #fff;
}

.body {
  background-color: #dcc6f7;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 8rem;
  position: relative;
  z-index: 45;
  min-height: 1000px;
}

.body--home {
  margin: 0 auto;
}

.page--home {
  margin-top: -2.6rem;
}

.page--home .hero {
  background-color: #dcc6f7;
  background-repeat: no-repeat;
}

.page--home .heroWrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  max-height: 700px;
  min-height: 664px;
}

.page--home .hero .heroHeadline {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 6rem 3rem;
  justify-content: center;
}

.page--home .hero .heroText {
  text-align: left;
  max-width: 550px;
}

.page--home .hero .heroSlogan {
  font-size: 3.7rem;
  font-family: "GT-America-Extended-Bold";
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #000;
  line-height: 100%;
  display: block;
  margin: 0 0 1.5rem;
}

.page--home .hero .homepageOneliner {
  font-size: 1.2rem;
  line-height: 140%;
  margin-bottom: 2rem;
  color: #000;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 700ms var(--cubic) forwards;
}

.fade-in.delay-1 {
  animation-delay: 250ms;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: var(--red);
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.2rem;
}

a:hover {
  color: var(--textHeadline);
  text-decoration: none;
}

@media (max-width: 1000px) {
  .page--home .hero .heroHeadline {
    padding: 2rem;
  }

  .page--home .hero .heroText {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .page--home .hero .heroSlogan {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .page--home {
    margin-top: -5rem;
  }

  .page--home .hero {
    margin-top: 2rem;
  }

  .page--home .hero .heroWrapper {
    text-align: center;
    height: auto;
    flex-wrap: wrap;
    min-height: 0;
  }

  .page--home .hero .heroWrapper > div {
    width: 100%;
  }

  .page--home .hero .heroHeadline {
    padding: 0;
    padding-left: 0;
  }

  .page--home .hero .heroImageOuter {
    display: none;
  }

  .page--home .hero .heroText {
    text-align: center;
    max-width: 30rem;
    padding: 3rem 1rem;
    margin: 0 auto;
  }

  .page--home .hero .heroSlogan {
    font-size: 2rem;
  }

  .page--home .hero .slogan span {
    font-size: 1.5rem;
  }

  .page--home .hero .homepageOneliner {
    font-size: 1.1rem;
  }
}

@media (max-width: 470px) {
  .page--home .hero .heroWrapper {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
