body {
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  margin: unset;
}

.hero {
  position: relative;
  width: 100vw;
  height: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: max(5vw, 20px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.1);
  z-index: -2;
  pointer-events: none;
}
.hero .logo {
  filter: drop-shadow(1px 1px 1px black);
}
.hero .logo img {
  max-width: 200px;
  padding-bottom: 20px;
}
.hero .branding {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.main-content {
  position: relative;
  width: 100vw;
  height: 50%;
  padding: 10px 0;
}

.mission {
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: max(90vw, 40px);
  margin: auto;
  height: calc(100% - 30px);
  justify-content: space-between;
}
.mission button {
  margin-top: 10px;
}

.survey-form {
  display: none;
  margin-top: 20px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.survey-form label {
  display: block;
  margin-top: 10px;
}

button {
  padding: 10px 20px;
  background-color: #2b5c7a;
  border: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5em;
}

button:hover {
  background-color: #eb6c4d;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}/*# sourceMappingURL=main.css.map */