.footer {
  background: black;
}
.footer-desktop {
  display: flex;
}
.footer-mobile {
  display: none;
}
.footer-connect {
  display: none;
}
.footer-desktop.footer-desktop-hidden {
  display: none;
}
.footer-connect.footer-connect-shown {
  display: flex;
  align-items:  center;
}
@media (max-width: 767px) {
  .footer-desktop {
    display: none;
  }
  .footer-connect.footer-connect-shown {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
}

.footer-email {

}
.footer-social-inner {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 500px;
}
.footer-social-image {
  width: 35px;
}

/* Desktop Footer*/
.footer-desktop {
  width: 100vw;
  justify-content: space-around;
  align-items: center;
}
.footer-desktop > * {
  width: 33%;
}
.footer-collective,
.footer-email {
  text-align: center;
}
.footer-collective-image {
  width: 100%;
  max-width: 200px;
}


/* Connect Page Footer */
.footer-connect > * {
  width: 33%;
}
.footer-terms {
  text-align: center;
  display:  flex;
}
.footer-terms-link {
  color:  white;
  text-decoration:  none;
  margin: 0 5px;
}

/* Mobile Footer */
.footer-mobile {
  padding: 5px 20px;
}

/* Footer Email */
.footer-email-inner {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
}
.footer-email-form {
  width: 100%;
  margin:  10px 0;
}
.footer-email-input {
  width: calc(100% - 24px);
  max-width: 300px;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance:  none;
  border: 2px solid #058ECB;
  padding:  3px 10px;
  font-size:  18px;
  font-family: 'Century Gothic';
  font-style:  italic;
}
.footer-email-cta {
  color: white;
}
.footer-email-submitted {
  color: white;
  font-size:  20px;
  height: 28px;
}
@media (max-width: 767px) {
  .footer-email {
    margin-bottom: 15px;
  }
