:root {
  font-size: 16px;
  --ks-green: #00df6c;
  --pink: #f554af;
}

body {
  background: #000;
  color: #fff;
  font: 200 normal 2rem/1.4 "Inter", sans-serif;
  font-optical-sizing: auto;
  text-wrap-mode: balance;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.25rem);
  font-weight: 900;
}

h2 {
  font-size: 3.25rem;
  font-weight: bold;
  color: var(--ks-green);
  line-height: 1.2;
}

.intro-text {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-wrap-mode: balance;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-80 {
  margin-top: 80px;
}

.sb-logo {
  width: min-content;
  max-width: 100%;
  text-align: center;

  .text {
    max-width: 100%;
    font-size: clamp(12px, 4vw, 58px);
    font-weight: 900;
    color: var(--pink);
    letter-spacing: 2px;
    line-height: 1em;
    text-transform: uppercase;
  }
}

.kick-starter-logo {
  width: 100%;
  max-width: 300px;
}

.parrot-bg-wrapper {
  img {
    display: none;
  }
}

@media screen and (min-width:991px) {
  .parrot-bg-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .parrot-bg {
    position: absolute;

    img {
      display: block;
      margin-top: 300px;
      width: 46vw;
      max-width: 700px;
    }
  }
}

@media screen and (min-width:1170px) {
  .parrot-bg-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  .parrot-bg {
    position: absolute;

    img {
      max-width: 680px;
    }
  }
}

.sign-up-form-container,
.thank-you-message {
  text-wrap-style: balance;
  min-height: 500px;
}

#signupForm {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.thank-you-message {
  display: none;
  min-height: 500px;
}

label {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0;
  display: block;
}

label[for="consent"] {
  font-size: 1rem;
  color: #fff;
}

input[type="text"],
input[type="email"] {
  font-weight: 400;
  font-size: 1.1rem;
  border: 2px solid var(--ks-green);
  border-radius: 0;
  background: #000;
  color: #fff;
}

input[type="submit"] {
  font-weight: 400;
  font-size: 1.1rem;
  background: var(--ks-green);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

#consent {
  width: 20px;
  height: 20px;
  margin-top: -5px;
  margin-right: 0.7rem;
}

footer {
  font-size: 0.8rem;
  padding: 2rem 1rem;
}

.error-message {
  height: 1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1;
  visibility: hidden;
}

.error {
  color: var(--pink);
  visibility: visible;
}

.teaser-image {
  margin-top: -80px;
  z-index: -1;
  position: relative;
}

@media screen and (min-width:991px) {
  .teaser-image {
    margin-top: -180px;
    z-index: -1;
    position: relative;
  }
}

.breakpoint {
  display: none;
  font-size: 0.9rem;
  background: #ffc;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: fit-content;
  z-index: 10;
  padding: 5px 10px;
}

/* div[class^=row] {
  outline: 1px solid magenta;
}

div[class^=col] {
  outline: 1px solid yellow;
}

img {
  outline: 1px solid green;
} */