h1 {
  margin-bottom: 2rem 
}
p {
  margin-bottom: 1rem;
}

/* SPACING HELPER STYLES */
.m-0 {margin: 0;}
.mt-0 {margin-top: 0;}
.mt-1 {margin-top: 1rem;}
.mt-2 {margin-top: 2rem;}
.mt-3 {margin-top: 3rem;}
.mt-4 {margin-top: 4rem;}
.mt-5 {margin-top: 5rem;}

.mb-0 {margin-bottom: 0;}
.mb-1 {margin-bottom: 1rem;}
.mb-2 {margin-bottom: 2rem;}
.mb-3 {margin-bottom: 3rem;}
.mb-4 {margin-bottom: 4rem;}
.mb-5 {margin-bottom: 5rem;}

.mx-0 {margin-left: 0; margin-right: 0;}
.mx-1 {margin-left: 1rem; margin-right: 1rem;}
.mx-2 {margin-left: 2rem; margin-right: 2rem;}
.mx-3 {margin-left: 3rem; margin-right: 3rem;}
.mx-4 {margin-left: 4rem; margin-right: 4rem;}
.mx-5 {margin-left: 5rem; margin-right: 5rem;}

.my-0 {margin-top: 0; margin-bottom: 0;}
.my-1 {margin-top: 1rem; margin-bottom: 1rem;}
.my-2 {margin-top: 2rem; margin-bottom: 2rem;}
.my-3 {margin-top: 3rem; margin-bottom: 3rem;}
.my-4 {margin-top: 4rem; margin-bottom: 4rem;}
.my-5 {margin-top: 5rem; margin-bottom: 5rem;}
/* SPACING HELPER STYLES */


/* CONTENT HELPER STYLES */
.back-link {
  line-height: 3rem;
}
.thank-you {
  color: #486A40;
  font-size: 1.25rem;
}
.error {
  color: #AE3030;
  font-size: 1.25rem;
}

.ext-pdf-after {
  white-space: nowrap;
}
.ext-pdf-before {
  white-space: initial;
}
.ext-pdf-before::before {
  background: url(../images/pdfIcon.svg) no-repeat;
	background-size: contain;
	content: '';
	height: 12px;
	width: 11px;
	display: inline-block;
	margin-right: 2px;
}
.ext-pdf-after::after {
  background: url(../images/pdfIcon.svg) no-repeat;
	background-size: contain;
	content: '';
	height: 12px;
	width: 11px;
	display: inline-block;
	margin-left: 5px;
}
.ext-link-after {
  white-space: nowrap;
}
.ext-link-before {
  white-space: initial;
}
.ext-link-before-white::before {
  background: url(../images/external-white.svg) no-repeat left center;
  background-size: contain;
  content: '';
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
}
.ext-link-after-white::after {
  background: url(../images/external-white.svg) no-repeat left center;
  background-size: contain;
  content: '';
  height: 14px;
  width: 12px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
.ext-link-before-blue::before {
  background: url(../images/external-blue.svg) no-repeat left center;
  background-size: contain;
  content: '';
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
}
.ext-link-after-blue::after {
  background: url(../images/external-blue.svg) no-repeat left center;
  background-size: contain;
  content: '';
  height: 14px;
  width: 12px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
/* end CONTENT HELPER STYLES */


/* BUTTON STYLES */
.button {
  border: solid 2px #006cb7;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: .6rem 1.5rem;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
  background-color: #006cb7;
  color: #fff;
  border-radius: 32px;
  width: auto;
  min-width: 110px;
  max-width: 237px;
}
.button.secondary, .secondary .button {
  color: #006cb7;
  background-color: transparent;
}
.button.secondary:hover, .secondary .button:hover {
  color: #FFFFFF;
  background-color: #006cb7;
}
.button.secondary:focus, .secondary .button:focus {
  color: #FFFFFF;
  background-color: #006cb7;
}
.button.primary, .primary .button {
  color: #FFFFFF;
  background-color: #006cb7;
}
.button.primary:hover, .primary .button:hover {
  color: #006cb7;
  background-color: transparent;
}
.button.primary:focus, .primary .button:focus {
  color: #006cb7;
  background-color: transparent;
}
/* end BUTTON STYLES */


/* CUSTOM FORM STYLES */
.privacy-act-form input[type='text'], .privacy-act-form textarea {
  width: 100%;
  max-width: none;
}
.checkbox-wrapper input[type='checkbox'] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
}
.checkbox-wrapper label {
  position: relative;
  padding-left: 2em;
  cursor: pointer;
}
.checkbox-wrapper label::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #0f6dbe;
  content: "";
  cursor: pointer;
}
.checkbox-wrapper [type='checkbox']:checked + label::before {
  background-color: #0f6dbe;
}
.checkbox-wrapper label::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-wrapper [type='checkbox']:checked + label::after {
  display: block;
}
.form-section-title {
  border-bottom: 1px solid #979797;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  padding-bottom: .5rem;
}
.text-light {
  color: #747678;
  padding-left: .5rem;
}
/* end CUSTOM FORM STYLES */


/* HEADER STYLES */
header {
  border-bottom: 1px solid #979797;
  margin-bottom: 3rem;
}
header .logo-container {
  padding: 3rem 0;  
}
/* end HEADER STYLES */

/* FOOTER STYLES */
.footer-inline-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #729ae3;
  border-top: 1px solid #729ae3;
}
.footer-inline-links li {
  list-style: none;
  border-right: 1px solid #a5fdfa;
  margin: 0;
  text-align: center;
  padding: 0 1rem;
}
.footer-inline-links li:last-child{
  border-right: none;
}
.footer-inline-links a {
  white-space: nowrap;
  vertical-align: text-bottom;
}
.legal-container {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}
.legal-container p {
  margin-bottom: 1.5rem;
}
.legal {
  border-bottom: 1px solid #729ae3;
  margin: 0;
  padding: 1.5rem 0;
  font-size: 17px;
}
.copyright {
  margin: 1.5rem 0;
}
/* end FOOTER STYLES */