:root {
  --brand: #0944A1;
  --white: #ffffff;
  --light-gray: #efefef;
  --gray: #ccc;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0;
}

p {
  line-height: 1.5;
}

.container, .footer, .header {
  padding: 1rem;
}
@media (min-width: 32em) {
  .container, .footer, .header {
    padding: 2rem;
  }
}
.container > *, .footer > *, .header > * {
  margin: 0 auto;
  max-width: 72rem;
}

.header {
  background-color: var(--brand);
  color: var(--white);
  text-align: center;
}
.header .logo {
  text-align: left;
}
.header__title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0;
}
@media (min-width: 32em) {
  .header__title {
    font-size: 6rem;
  }
}
.header__byline {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.75;
  line-height: 1.25;
}
@media (min-width: 32em) {
  .header__byline {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 0;
  }
}
.header__body {
  margin: 4rem auto;
}
@media (min-width: 32em) {
  .header__body {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
  }
}

.footer {
  background-color: var(--brand);
  color: var(--white);
  text-align: center;
}
.footer a {
  color: var(--white);
}

.section {
  margin-bottom: 8rem;
}
.section__header {
  text-align: center;
}
.section__hero {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.section__hero + .section__title {
  margin-top: 0;
  margin-bottom: 2rem;
}
.section__title {
  color: var(--brand);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 32em) {
  .section__title {
    font-size: 4rem;
  }
}
.section__title + p {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto 8rem auto;
}
.section .subsection__header {
  text-align: center;
}
@media (min-width: 32em) {
  .section .subsection__header {
    text-align: left;
    align-items: center;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.section .subsection__header .image {
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 32em) {
  .section .subsection__header .image {
    width: calc(33% - 1rem);
    margin-bottom: 0;
  }
}
.section .subsection__title {
  color: var(--brand);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.section .subsection__byline {
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.75;
  margin: 0;
}
.section .subsection__byline + p {
  font-size: 1.25rem;
  max-width: 48rem;
}
.section .subsection__footer p {
  font-size: 1.25rem;
  margin-top: 2rem;
  text-align: center;
}
.section .subsection + .subsection {
  margin-top: 6rem;
}

.box {
  background-color: var(--light-gray);
  padding: 1.5rem;
}
.box__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
}
.box__byline {
  opacity: 0.5;
  margin: 0;
}
.box .icon--emoji + .box__title {
  margin-top: 1rem;
}
.box__container {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 32em) {
  .box__container {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
.box__container + .box__container {
  margin-top: 1.5rem;
}

.icon--emoji {
  margin: 0;
  font-size: 3rem;
}

.team__photo {
  border-radius: 3rem;
  background-color: var(--white);
  margin-bottom: 1rem;
}

.form__field {
  margin-bottom: 2rem;
}
.form__field label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form__field input, .form__field textarea {
  border: 2pt solid var(--gray);
  font-size: 1.5rem;
  width: calc(100% - 1rem);
  padding: 0.25rem 0.5rem;
}
.form__field input:focus, .form__field textarea:focus {
  border: 2pt solid var(--brand);
  box-shadow: 0 0 0 2pt rgba(9, 68, 161, 0.33);
  outline: none;
}
.form__field textarea {
  max-width: calc(100% - 1rem);
  min-width: calc(100% - 1rem);
}

.partners {
  text-align: center;
}
.partners img {
  height: 3rem;
  margin: 2rem;
}

.contact {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}
.contact a {
  color: var(--brand);
}
.contact a:hover {
  opacity: 0.75;
}

.button--send {
  border: 0;
  background-color: var(--brand);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 3rem;
  cursor: pointer;
}
.button--send:hover {
  background-color: rgba(9, 68, 161, 0.9);
}

/*# sourceMappingURL=main.css.map */
