/* Basic utility colors */
@font-face {
  font-family: "cursive";
  src: url("../fonts/brannboll.otf") format("opentype");
}
@font-face {
  font-family: "raleway-regular";
  src: url("../fonts/raleway-regular.ttf") format("truetype");
}
@font-face {
  font-family: "raleway-bold";
  src: url("../fonts/raleway-bold.ttf") format("truetype");
}
.contact-form-container .form-row {
  margin-bottom: 2rem;
  gap: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .contact-form-container .form-row {
    flex-direction: column;
  }
}
.contact-form-container .form-row > div {
  display: flex;
  flex: 1;
}
.contact-form-container .form-row > div label {
  display: inline-block;
  font-family: "raleway-bold";
  margin-right: 1rem;
  font-size: 1.4rem;
}
.contact-form-container .form-row > div input {
  display: inline-block;
  flex: 1;
  border: 1px solid #3e7993;
}
.contact-form-container .message-container {
  margin-top: 2rem;
}
.contact-form-container .message-container label {
  font-size: 1.4rem;
  display: block;
  font-family: "raleway-bold";
  text-align: left;
}
.contact-form-container .message-container textarea {
  margin-top: 1rem;
  width: 100%;
  border: 1px solid #3e7993;
  min-height: 300px;
}
.contact-form-container .button-container {
  margin-top: 2.8rem;
  position: relative;
}
.contact-form-container .button-container i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
  font-size: 2rem;
  z-index: 5;
  color: #ffffff;
  animation: spin 2s infinite linear;
}
.contact-form-container .button-container .button {
  border: none;
}
.contact-form-container .button-container .button[disabled] {
  background-color: #cad8e0;
  color: #666767;
  cursor: not-allowed;
}
.contact-form-container .button-container .button.sending {
  background-color: #3e7993;
  color: #3e7993;
}
.contact-form-container .alert {
  margin-top: 1.5rem;
  background-color: #ebffef;
  border-radius: 6px;
  padding: 1.5rem;
}
.contact-form-container .alert .alert-heading {
  font-family: "raleway-bold";
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact-form-container .alert.error {
  background-color: #ffe9e9;
}
.contact-form-container .alert.error .alert-heading {
  color: #a20000;
}
.contact-form-container .alert.error a {
  white-space: nowrap;
  color: #264b5a;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease-in-out;
}
.contact-form-container .alert.error a:hover {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .contact-form-container .form-row {
    align-items: flex-start;
  }
  .contact-form-container .form-row > div {
    width: 100%;
  }
}
.intro h1 {
  font-family: "raleway-bold";
  font-size: 3rem;
  line-height: 1em;
  color: #264b5a;
}
.intro p {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5em;
}

.form-wrapper {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .form-wrapper {
    flex-direction: column;
  }
}
.form-wrapper > div:first-child {
  text-align: center;
  max-width: 30%;
  width: 300px;
}
.form-wrapper > div:first-child > img {
  width: 90%;
  margin: 0 auto;
}
.form-wrapper > div:first-child .executive-summary {
  text-align: center;
  margin: 1.5rem auto;
}
.form-wrapper > div:first-child .executive-summary p {
  font-size: 0.8rem;
  line-height: 1.5em;
  color: #3e7993;
}
.form-wrapper > div:first-child .executive-summary img {
  margin: 0.5rem auto;
  border: 1px solid #040203;
  box-shadow: 6px 6px 12px -4px #040203;
}
.form-wrapper > div:last-child {
  flex: 1;
  margin-left: 1.5rem;
}

.summary-footnote {
  margin-top: 0;
  font-size: 0.8rem;
  color: #3e7993;
  font-style: italic;
}

@media screen and (max-width: 600px) {
  .intro {
    margin-bottom: 0;
  }
  .form-wrapper {
    margin-top: 1.5rem;
  }
  .form-wrapper > div:first-child {
    max-width: 100%;
    width: 100%;
    margin-bottom: 4rem;
  }
  .form-wrapper > div:first-child > img {
    display: none;
  }
  .form-wrapper > div:last-child {
    width: 100%;
    margin-left: 0;
  }
}