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

.hidden {
  display: none; }

body {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: white;
  font-family: "Reckless", "Roman", "serif"; }

.top {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.8);
  z-index: 11;
  padding: 20px; }
  @media (min-width: 768px) {
    .top {
      padding: 30px 30px 20px 30px; } }
  @media (min-width: 1440px) {
    .top {
      padding: 30px 60px 20px 60px; } }
  .top .logo {
    font-size: 38px;
    line-height: 14px;
    color: #eb4b01;
    text-decoration: none; }

header {
  height: 100vh;
  display: grid;
  grid-template-rows: 75% 10% 15%;
  grid-template-columns: 100%;
  justify-items: center; }
  header .image {
    height: 70%;
    align-self: end; }
  header .scroll {
    text-transform: uppercase;
    font-family: "neue-haas-grotesk-text", "Helvetica", "Helvetica Neue", "sans-serif";
    align-self: end;
    margin-bottom: 10px; }
  header .arrow {
    height: 50px; }

main {
  width: 100vw;
  height: 100vh;
  padding: 20px; }
  @media (min-width: 768px) {
    main {
      padding: 30px; } }
  @media (min-width: 1440px) {
    main {
      padding: 60px; } }

.menu {
  position: relative;
  width: 50px;
  height: 37px;
  z-index: 1;
  cursor: pointer; }
  .menu .line {
    position: absolute;
    left: 10px;
    height: 3px;
    width: 30px;
    background: #000;
    display: block;
    transition: 0.4s;
    transform-origin: center; }
  .menu .line:nth-child(1) {
    top: 7px; }
  .menu .line:nth-child(2) {
    top: 23px; }
  .menu.active .line:nth-child(1) {
    transform: translateY(8px) rotate(-45deg); }
  .menu.active .line:nth-child(2) {
    transform: translateY(-8px) rotate(45deg); }

nav {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  top: 0;
  font-family: "neue-haas-grotesk-text", "Helvetica", "Helvetica Neue", "sans-serif";
  font-size: 60px;
  font-weight: 300;
  color: black;
  background-color: white;
  visibility: hidden;
  z-index: 10; }
  nav.open {
    visibility: visible; }
  nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0; }
    nav ul li a {
      text-transform: uppercase;
      text-decoration: none;
      line-height: 65px;
      color: inherit; }
      nav ul li a:hover {
        color: #eb4b01; }

section {
  position: relative; }
  section .space {
    height: 100vh; }
  @media (min-width: 768px) {
    section .content {
      display: grid;
      grid-template-columns: 50% 50%;
      grid-template-rows: 100%;
      grid-template-areas: "left right"; } }
  section .text {
    grid-area: right; }
  section p {
    margin: 0 0 20px 0;
    font-size: 20px;
    position: relative;
    z-index: 2; }
    @media (min-width: 768px) {
      section p {
        font-size: 24px;
        line-height: 32px; } }
    @media (min-width: 1440px) {
      section p {
        font-size: 29px;
        line-height: 35px; } }
    section p a {
      color: #eb4b01; }
  section h2 {
    width: 100vw;
    position: fixed;
    bottom: 0;
    margin: 0;
    z-index: 2;
    padding: 0 20px 20px 20px;
    font-family: "neue-haas-grotesk-text", "Helvetica", "Helvetica Neue", "sans-serif";
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 400; }
    @media (min-width: 768px) {
      section h2 {
        padding: 0 30px 20px 30px; } }
    @media (min-width: 1440px) {
      section h2 {
        padding: 0 60px 20px 60px; } }
    @media (min-width: 768px) {
      section h2 {
        font-size: 63px; } }
    @media (min-width: 1440px) {
      section h2 {
        font-size: 75px; } }
    section h2.animated {
      left: -100vw; }
  section.legal {
    height: 50px;
    text-align: center; }
    section.legal a {
      text-decoration: none;
      color: inherit; }
      section.legal a:hover {
        text-decoration: underline; }

.why img {
  width: 100%;
  justify-self: center;
  margin-bottom: 30px;
  position: relative; }
  @media (min-width: 768px) {
    .why img {
      left: 100px; } }

.who img {
  width: 100%;
  justify-self: center;
  position: relative;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .who img {
      left: 200px;
      top: 800px;
      width: 70%; } }

.support img {
  width: 100%;
  justify-self: center;
  position: relative;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .support img {
      width: 50%; } }

.connect .image-container {
  display: flex;
  justify-content: flex-end; }

.connect img {
  width: 100%;
  height: 100%;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .connect img {
      width: 90%; } }

.imprint,
.privacy {
  padding-top: 20vh;
  padding-bottom: 100px; }
  .imprint p,
  .privacy p {
    font-size: 18px;
    line-height: 23px; }
    .imprint p a,
    .privacy p a {
      color: inherit; }

form {
  font-size: 20px;
  margin-top: 60px; }
  @media (min-width: 768px) {
    form {
      font-size: 24px; } }
  @media (min-width: 1440px) {
    form {
      font-size: 29px; } }
  form button[type="submit"] {
    background-color: #eb4b01;
    border: none;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    float: right;
    cursor: pointer;
    border-radius: 0; }
    form button[type="submit"].disabled {
      pointer-events: none;
      opacity: 0.2; }
  form .url {
    display: none; }
  form input,
  form textarea {
    outline-color: #eb4b01;
    border-radius: 0; }
  form textarea {
    display: block;
    width: 100%;
    height: 100px;
    margin-top: 20px;
    resize: vertical; }
  form label[for="message"] {
    margin-top: 30px;
    display: block; }
  form .input {
    position: relative;
    margin-bottom: 20px; }
    form .input label {
      position: absolute;
      top: 10px; }
    form .input input {
      width: 100%;
      border: none;
      border-bottom: 1px solid black;
      padding-left: 70px;
      padding-bottom: 15px;
      padding-top: 10px; }
      @media (min-width: 768px) {
        form .input input {
          padding-left: 100px; } }
      @media (min-width: 1440px) {
        form .input input {
          padding-left: 120px; } }
  form .validation-message {
    font-size: 15px;
    color: #eb4b01; }
    form .validation-message.hidden {
      display: none; }
  form .error,
  form .success {
    font-size: 20px;
    margin-top: 100px; }
