
.full-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: absolute;
  width: 100vw;
}

.full-logo > img {
  width: 36vw;
}

video#homevid {
  width: 100vw;
}



.home-quote {
  /* background-image: url('/images/placeholder.jpg'); */
  height: 600px;
}

.home-quote > .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-quote > .overlay > div {
  width: calc(100% - 80px);
  max-width: calc(var(--tablet-max) - 20px);
  margin-bottom: 60px;
  color: #fff;
  font-size: min(42px, 5vw);
  font-weight: bold;
  text-align: center;
}

.subscribe {
  background-color: var(--red);
  padding: 80px 0px;
}

.subscribe > div {
  max-width: 760px;;
  margin: 0 auto;
}

.subscribe h1, .subscribe h2 {
  color: #fff;
  border: none;
  text-align: center;
  font-size: 32px;
  padding-bottom: 14px;
}

.subscribe input {
  border: min(4px, 0.5vw) solid #fff;
  background: transparent;
  padding: 13px 20px 14px 20px;
  transform: translateY(-3px);
  width: 574px;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}

.subscribe button {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 27px;
  background: transparent;
  color: #fff;
  border: min(4px, 0.5vw) solid #fff;
  transition: 0.25s all;
}

.subscribe button:hover {
  background: #fff;
  color: var(--red);
  transition: 0.25s all;
}

@media (max-width: 1024px) { /* ideally matches --desktop-min in styles.css */
  .subscribe input {
    width: 90%;
    margin: 0 5%;
  }

  .subscribe button {
    display: block;
    width: 90%;
    margin: 20px 5% 0 5%;
  }
}

#partners h2 {
  text-align: center;
}
