*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body,
html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100vw;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: 3.75rem;
  font-weight: 900;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

h3 {
  font-size: 1.625rem;
  font-weight: 900;
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

a {
  text-decoration: none;
}

.container, .container--narrow, .container--small, .container--smaller {
  margin-right: auto;
  margin-left: auto;
  max-width: 1090px;
  box-sizing: content-box;
  padding-left: 24px;
  padding-right: 24px;
}
.container--smaller {
  max-width: 900px;
}
.container--small {
  max-width: 800px;
}
.container--narrow {
  max-width: 650px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.nav {
  background-image: url(../img/blue-swoop.svg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: -10px;
  padding: 24px 24px 44px;
  position: relative;
  z-index: 1000;
  overflow-x: hidden;
}
.nav img {
  width: 136px;
  margin: 24px;
}
.nav h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 24px;
  text-align: center;
}
@media (max-width: 599px) {
  .nav h1 {
    font-size: 1.5rem;
  }
}

.header {
  position: relative;
  margin-top: 75px;
  margin-bottom: 50px;
}

.blue-circle {
  position: absolute;
  right: -5%;
}

.header-content {
  gap: 50px;
}

.header-left,
.header-right {
  position: relative;
  z-index: 1000;
}
@media (min-width: 900px) {
  .header-left,
  .header-right {
    flex: 1;
  }
}

.header-left {
  max-width: 543px;
}
.header-left h1 {
  color: #3C5775;
  margin-bottom: 15px;
}
.header-left .red-text {
  color: #90392B;
}
.header-left .yellow-text {
  color: #FDB734;
  font-style: italic;
}
.header-left .callout {
  margin-top: 45px;
  padding: 30px 40px;
  background-color: #3C5775;
  color: #FFFFFF;
  border-radius: 15px;
}
.header-left .callout:hover .yellow-text {
  color: #FFFFFF;
  transition: 0.3s ease;
}
@media (max-width: 899px) {
  .header-left {
    max-width: none;
  }
}

.header-right img {
  width: 488px;
  height: 413px;
  object-fit: cover;
}
@media (max-width: 899px) {
  .header-right img {
    width: auto;
    height: auto;
  }
}

.access {
  background-image: url(../img/grey-swoop.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: -10px;
  margin-left: -20px;
  margin-top: 150px;
  padding: 100px 0px 75px;
  text-align: center;
  overflow-x: hidden;
}
.access h2 {
  color: #90392B;
  padding-bottom: 25px;
}
.access .container, .access .container--smaller, .access .container--small, .access .container--narrow {
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 899px) {
  .access {
    margin-top: 50px;
  }
}

.access-icons {
  margin-top: 50px;
  align-items: flex-start;
}
@media (max-width: 899px) {
  .access-icons {
    justify-content: center;
    gap: 70px;
  }
}

.access-icon {
  max-width: 206px;
  gap: 25px;
}
.access-icon img {
  height: 99px;
}

.support {
  padding: 75px 0px;
  text-align: center;
  overflow-x: hidden;
}
.support h2 {
  color: #3C5775;
  padding-bottom: 25px;
}
.support .container, .support .container--smaller, .support .container--small, .support .container--narrow {
  padding-left: 48px;
  padding-right: 48px;
}

.support-icons {
  margin-top: 25px;
  align-items: flex-start;
  gap: 25px 75px;
}

.support-icon {
  position: relative;
  width: 338px;
  background-color: #90392B;
  padding: 35px 35px 35px 95px;
  font-size: 1.5625rem;
  color: #FFFFFF;
  margin-top: 35px;
  border-radius: 15px;
  min-height: 145px;
}
.support-icon img {
  height: 75px;
  position: absolute;
  left: -12%;
  top: 50%;
  transform: translateY(-50%);
}
.support-icon p {
  text-align: left !important;
}

.locations-container {
  background-image: url(../img/blue-swoop-2.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: -25px;
  margin-left: -20px;
  padding: 100px 0px 75px;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.blue-border {
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 100px;
  border-bottom: solid 2px #86A4C2;
}
.blue-border h2 {
  color: #3C5775;
  padding-bottom: 25px;
  max-width: 500px;
  text-align: center;
  margin: auto;
}

.locations {
  margin-top: 50px;
  align-items: flex-start;
  gap: 35px;
}

.location {
  width: 340px;
  background-color: #FFFFFF;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
}
.location p {
  font-weight: 500;
  font-size: 1.125rem;
}

.grey-circle {
  position: absolute;
  left: -5%;
}

.locations-contact {
  position: relative;
  margin-top: 75px;
  margin-bottom: 50px;
}

.text-left {
  text-align: left;
  font-size: 2.8125rem;
}

.questions {
  padding-left: 48px;
  padding-right: 48px;
}

.care {
  background-image: url(../img/white-swoop.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: -25px;
  margin-left: -20px;
  padding: 75px 0px;
  position: relative;
  margin-top: -50px;
  overflow-x: hidden;
}
.care h2 {
  color: #90392B;
  padding-bottom: 25px;
}
.care .blue-text {
  margin-top: 25px;
}

.grey-circle-2 {
  position: absolute;
  top: -25%;
  right: 0;
}
@media (max-width: 899px) {
  .grey-circle-2 {
    top: 35%;
  }
}

.care-callout {
  border-radius: 200px;
  background-color: #E7EDF3;
  text-align: center;
  height: 350px;
  width: 350px;
  gap: 10px;
}
.care-callout p {
  width: 255px;
}
.care-callout .red-text {
  font-style: italic;
  color: #90392B;
}

.care-callout-es {
  height: 380px;
}


.blue-text {
  color: #3C5775;
  font-style: italic;
}

.form button[type=submit] {
  background-color: transparent;
  appearance: none;
  color: #273c53;
  text-decoration: none;
  padding: 6px 14px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  font-weight: 700;
  z-index: 1;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  font-size: 0.875rem;
  border-color: #FDB734;
  margin-top: auto;
  align-self: center;
}

.form button[type=submit]:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #3c5775;
  transition: all 0.3s ease;
  background-color: #FDB734;
}

.form button[type=submit]:hover {
  background-color: #273c53;
  color: #fff;
  border-color: #273c53;
}

.form button[type=submit]:focus:after {
  left: 0;
  width: 100%;
}

.form button[type=submit]:active {
  top: 2px;
}

.form button[type=submit]:focus,
.form button[type=submit]:hover {
  background-color: #fdb734;
  color: #273c53;
  border-color: #fdb734;
}

.form-container {
  border-radius: 26px;
  background-image: linear-gradient(#e9f0f8, #fff);
}

@media (min-width: 600px) {
  .form-container {
    padding: 50px;
  }
}
@media (min-width: 900px) {
  .form-container {
    padding: 60px 75px;
  }
}
@media (min-width: 1200px) {
  .form-container {
    padding: 60px 100px;
  }
}
.form-container .impact__h2, .form-container h3 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.form .freeform-row .freeform-column .freeform-label {
  font-weight: 900;
}

.form input.freeform-input, .form select, .form textarea.freeform-input {
  background-color: transparent;
  border: 1px solid #3c5775;
  border-radius: 6px;
}

.form .ff-fieldtype-submit {
  justify-content: center !important;
}

.form button[type=submit] {
  background-color: transparent;
}

.freeform-row {
  flex-wrap: wrap;
}

.form-container {
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 150px;
}
.form-container h2 {
  color: #273C53;
  max-width: 650px;
  text-align: center;
  margin: auto;
  padding: 25px 0px;
}

.freeform-input, .text-input {
  border: none;
  border-radius: 6px;
  background-color: #fff;
  display: block;
  width: 100%;
  padding: 5px 10px;
}

.freeform-input::placeholder, .text-input::placeholder {
  text-transform: uppercase;
  color: #273c53;
  text-align: center;
}

.freeform-label {
  font-weight: 900 !important;
  color: #273C53;
}

.freeform-form [data-freeform-controls] {
  display: flex;
  justify-content: center;
}

.footer {
  background-image: url(../img/dark-blue-swoop.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: -50px;
  margin-left: -20px;
  padding: 75px 0px 50px;
  overflow-x: hidden;
}
.footer .container, .footer .container--smaller, .footer .container--small, .footer .container--narrow {
  padding-left: 48px;
  padding-right: 75px;
}
.footer img {
  margin-left: 35px;
}
.footer p {
  font-style: italic;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.3125rem;
}

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