@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700;800;900&display=swap");
.white-text {
  color: white; }

.blue-text {
  color: #203962; }

.mint-bg {
  background: #c8e8e0; }

.blue-bg {
  background: #203962;
  color: white; }

.blue-gradient-vertical {
  background: #3399cc;
  background: -moz-linear-gradient(180deg, #3399cc 0%, #6dd2de 100%);
  background: -webkit-linear-gradient(180deg, #3399cc 0%, #6dd2de 100%);
  background: linear-gradient(180deg, #3399cc 0%, #6dd2de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3399cc", endColorstr="#6dd2de", GradientType=1); }

.red-gradient-vertical {
  background: #da5877;
  background: -moz-linear-gradient(180deg, #da5877 0%, #7f2c6d 100%);
  background: -webkit-linear-gradient(180deg, #da5877 0%, #7f2c6d 100%);
  background: linear-gradient(180deg, #da5877 0%, #7f2c6d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#da5877", endColorstr="#7f2c6d", GradientType=1); }

.yellow-gradient-vertical {
  background: #fbe456;
  background: -moz-linear-gradient(180deg, #fbe456 0%, #fbc02c 100%);
  background: -webkit-linear-gradient(180deg, #fbe456 0%, #fbc02c 100%);
  background: linear-gradient(180deg, #fbe456 0%, #fbc02c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbe456", endColorstr="#fbc02c", GradientType=1); }

.blue-gradient-diagonal {
  color: white;
  background: #4376c6;
  background: -moz-linear-gradient(144deg, #4376c6 0%, #5ca8c6 100%);
  background: -webkit-linear-gradient(144deg, #4376c6 0%, #5ca8c6 100%);
  background: linear-gradient(144deg, #4376c6 0%, #5ca8c6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4376c6", endColorstr="#5ca8c6", GradientType=1); }

.yellow-gradient-diagonal {
  background: #fbc02c;
  background: -moz-linear-gradient(125deg, #fbc02c 57%, #fbe456 100%);
  background: -webkit-linear-gradient(125deg, #fbc02c 57%, #fbe456 100%);
  background: linear-gradient(125deg, #fbc02c 57%, #fbe456 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbc02c", endColorstr="#fbe456", GradientType=1); }

.green-gradient-diagonal {
  background: #72B69E;
  background: -moz-linear-gradient(125deg, #72B69E 35%, #8dd483 94%);
  background: -webkit-linear-gradient(125deg, #72B69E 35%, #8dd483 94%);
  background: linear-gradient(125deg, #72B69E 35%, #8dd483 94%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#72B69E", endColorstr="#8dd483", GradientType=1); }

.red-gradient-diagonal {
  background: #7f2c6d;
  background: -moz-linear-gradient(125deg, #7f2c6d 26%, #da5877 90%);
  background: -webkit-linear-gradient(125deg, #7f2c6d 26%, #da5877 90%);
  background: linear-gradient(125deg, #7f2c6d 26%, #da5877 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7f2c6d", endColorstr="#da5877", GradientType=1); }

.orange-gradient-diagonal {
  background: #e3743e;
  background: -moz-linear-gradient(125deg, #e3743e 19%, #f79334 88%);
  background: -webkit-linear-gradient(125deg, #e3743e 19%, #f79334 88%);
  background: linear-gradient(125deg, #e3743e 19%, #f79334 88%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3743e", endColorstr="#f79334", GradientType=1); }

body {
  font-family: "Mulish", sans-serif;
  color: #58595b; }

img,
svg {
  max-width: 100%; }

h2 {
  color: #203962; }

h3,
.h3 {
  font-size: 1.45em; }

a {
  color: #4780d1; }

.small-hr {
  border-top: 5px solid #203962;
  max-width: 120px;
  margin-left: 0px; }

.button {
  position: relative;
  background: #8adc99;
  color: #203962;
  padding: .35em 2.5em;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  font-size: 1em;
  font-family: 'Raleway', sans-serif;
  transition: .6s;
  overflow: hidden;
  display: inline-block; }
  .button:focus {
    outline: 0; }
  .button:before {
    content: '';
    display: block;
    position: absolute;
    background: white;
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg); }
  .button:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg); }
  .button:hover {
    background: #4dcd64;
    cursor: pointer;
    color: #203962;
    text-decoration: none; }
    .button:hover:before {
      transform: translateX(300px) skewX(-15deg);
      opacity: 0.6;
      transition: 1s; }
    .button:hover:after {
      transform: translateX(300px) skewX(-15deg);
      opacity: 1;
      transition: 1s; }

.button.mint-button {
  background: #c8e8e0; }
  .button.mint-button:hover {
    background: #6eb1a0; }

.button.red-button {
  background-color: red;
  color: white !important; }
  .button.red-button:hover {
    background-color: darkred; }

.button.blue-button {
  background: #203962;
  color: white; }
  .button.blue-button:hover {
    background: #4971a8; }

.section-title {
  font-weight: 900;
  font-size: 2rem; }
  @media screen and (min-width: 992px) {
    .section-title.large-title {
      font-size: 2.75rem; } }

.large-text {
  font-size: 1.3rem; }
  @media screen and (max-width: 991px) {
    .large-text {
      font-size: 1.15rem; } }

.mfp-content {
  max-width: 992px; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
#fadeLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.navbar .navbar-brand {
  max-width: 50%; }
.navbar .navbar-brand img {
  width: 180px;
  max-width: 100%; }
.navbar .nav-link {
  margin-right: 30px;
  cursor: pointer; }
.navbar .translate-button {
  padding-top: 15px;
  padding-bottom: 16px; }
  .navbar .translate-button .button {
    text-transform: capitalize; }
  .navbar .translate-button .nav-item {
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    text-transform: capitalize; }
.navbar a,
.navbar button {
  color: #58595b;
  font-weight: 600;
  border: 0px;
  box-shadow: 0px;
  background: white; }
  .navbar a i,
  .navbar button i {
    vertical-align: middle; }
@media screen and (max-width: 991px) {
  .navbar .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    text-transform: uppercase; }
    .navbar .nav-link .fa-chevron-down {
      float: right;
      margin-top: 5px;
      margin-right: 4px; }
    .navbar .nav-link:focus {
      outline: none; }
  .navbar .nav-item {
    border-bottom: 2px solid #58595b; }
    .navbar .nav-item:last-child {
      border-bottom: 0px; } }

.navbar {
  position: relative;
  z-index: 2; }

.nav-item.has-submenu .sub-nav {
  list-style-type: none;
  padding-left: 10px;
  max-height: 0px;
  overflow: hidden; }
.nav-item.has-submenu.active .fa-chevron-down {
  transform: rotate(180deg); }
.nav-item.has-submenu.active .sub-nav {
  max-height: 9999px;
  margin-bottom: 10px; }
@media screen and (min-width: 992px) {
  .nav-item.has-submenu .sub-nav {
    position: absolute;
    width: 100%;
    top: 100%;
    left: -10000%;
    z-index: 1;
    box-shadow: inset 0px 5px 10px -9px black; }
  .nav-item.has-submenu.active .sub-nav {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    list-style-type: none;
    text-align: center; }
    .nav-item.has-submenu.active .sub-nav li {
      display: inline-block;
      padding: 10px;
      text-align: center; } }

.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: 0px; }
  .navbar-toggler:focus {
    outline: none; }

.navbar-toggler:hover {
  background: transparent !important; }

.navbar-toggler .icon-bar {
  width: 29px;
  height: 4px;
  transition: all 0.2s;
  background: #58595b;
  display: block;
  margin-bottom: 5px; }

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  margin-bottom: 3px; }

.navbar-toggler .middle-bar {
  opacity: 0; }

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%; }

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
  margin-bottom: 5px; }

.navbar-toggler.collapsed .middle-bar {
  opacity: 1; }

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0); }

#search-popup {
  position: relative; }
  #search-popup button.mfp-close {
    color: white;
    font-size: 30px; }

.footer {
  background: #203962;
  color: white; }
  .footer .row > div {
    border-left: 1px solid #4781d3;
    padding: 20px 30px; }
    .footer .row > div:first-child {
      border-left: 0px; }
  .footer .logo {
    width: 180px;
    max-width: 100%; }
  .footer .need-help p {
    font-size: 1.5em;
    max-width: 230px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 30px; }
    .footer .need-help p.large-text {
      margin-bottom: 10px;
      font-size: 2.25em;
      font-weight: 900; }
  .footer .footer-nav a {
    display: block;
    font-size: 1.1em;
    color: white;
    margin-bottom: .75em;
    font-weight: 700; }

.home-hero img,
.home-hero svg {
  max-width: 425px;
  width: 100%; }
.home-hero .hero-text {
  font-size: 1.75em;
  color: #203962;
  font-weight: 900;
  line-height: 1.1em; }
  @media screen and (min-width: 768px) {
    .home-hero .hero-text {
      font-size: 2.4em; } }
  @media screen and (min-width: 1200px) {
    .home-hero .hero-text {
      font-size: 2.6em; } }
.home-hero .hero-subtext {
  font-size: 1.4em;
  color: #203962;
  font-weight: 600;
  line-height: 1.1em; }

.home-search {
  background: #c8e8e0;
  background: -moz-linear-gradient(0deg, #c8e8e0 0%, #d7eee9 25%, white 25%, white 100%);
  background: -webkit-linear-gradient(0deg, #c8e8e0 0%, #d7eee9 25%, white 25%, white 100%);
  background: linear-gradient(0deg, #c8e8e0 0%, #d7eee9 25%, white 25%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c8e8e0", endColorstr="#ffffff", GradientType=1); }
  .home-search p {
    color: #d3d3d3;
    margin-bottom: 6px;
    margin-top: 20px; }
  .home-search .common-search .col {
    padding: 0px; }
    .home-search .common-search .col .button {
      text-transform: none;
      padding: 6px 12px;
      width: 96%;
      font-size: 15px;
      max-width: 196px; }

.search .container {
  background: #203962;
  max-width: 992px;
  margin: auto;
  border-radius: 30px;
  box-shadow: 0px 7px 16px -7px black; }
.search form {
  display: block;
  padding-right: 60px;
  position: relative;
  font-size: 22px; }
  .search form label {
    position: absolute;
    left: 12px;
    top: 9px;
    color: #58595b; }
  .search form input {
    width: 100%;
    border: 0px;
    padding: 9px 12px;
    padding-left: 44px;
    border-radius: 30px; }
  .search form .button {
    position: absolute;
    right: 0px;
    appearance: none;
    padding: 3px;
    width: 51px;
    border: 0px;
    border-radius: 50%;
    color: white;
    font-size: 30px; }
  @media screen and (max-width: 500px) {
    .search form {
      font-size: 16px;
      padding-right: 36px; }
      .search form label {
        top: 5px; }
      .search form input {
        padding: 5px 8px;
        padding-left: 31px; }
      .search form .button {
        font-size: 18px;
        width: 33px; } }

.home-services .home-service {
  padding-bottom: 25px; }
  .home-services .home-service img {
    display: block;
    max-width: 90px;
    margin: 0px auto 10px; }
  .home-services .home-service .learn-more {
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    font-weight: 600;
    color: #4376c8;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .9em; }
  .home-services .home-service .h3 {
    color: #58595b;
    font-weight: 700;
    margin-bottom: 10px;
    display: block; }
  .home-services .home-service p {
    font-size: 1.1em; }

.home-questions {
  background: #c8e8e0;
  overflow-x: hidden; }

.home-questions.top {
  background: white; }

.questions-headline {
  background: #c8e8e0;
  background: -moz-linear-gradient(180deg, #c8e8e0 0%, #c8e8e0 49%, white 49%, white 100%);
  background: -webkit-linear-gradient(180deg, #c8e8e0 0%, #c8e8e0 49%, white 49%, white 100%);
  background: linear-gradient(180deg, #c8e8e0 0%, #c8e8e0 49%, white 49%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c8e8e0", endColorstr="#ffffff", GradientType=1); }
  .questions-headline a {
    text-decoration: none; }
  .questions-headline .container {
    background: #203962;
    max-width: 800px;
    margin: 20px auto;
    padding: 16px 40px;
    padding-right: 70px;
    border-radius: 80px;
    position: relative; }
  .questions-headline h2 {
    color: white;
    font-weight: 900;
    margin-bottom: 0px;
    font-size: 1.8em; }
  .questions-headline p {
    color: white;
    font-size: 1.2em;
    margin-bottom: 0px; }
  .questions-headline .circle-button {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    padding: 1px 15px;
    border-radius: 50%;
    font-size: 32px; }

.home-questions .question {
  border-radius: 20px;
  overflow: hidden;
  padding-left: 30px;
  margin: 15px auto;
  margin-bottom: 15px;
  max-width: 540px; }
  .home-questions .question:hover {
    transform: scale(1.1) !important; }

.question-content {
  background: white;
  padding: 15px 50px 15px 15px;
  position: relative; }
  .question-content a {
    color: #58595b; }
  .question-content p {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1em; }
    .question-content p span {
      font-size: .75em;
      display: block;
      font-weight: 400; }
  .question-content i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px; }

.banner-title {
  background: #c7e3dc; }
  .banner-title h2 {
    font-size: 2.75em;
    font-weight: 900;
    margin-bottom: 20px; }
    @media screen and (max-width: 991px) {
      .banner-title h2 {
        font-size: 2.25em; } }
    @media screen and (max-width: 767px) {
      .banner-title h2 {
        font-size: 2em; } }

.subpage-hero .hero-text {
  font-size: 3em;
  font-weight: 900; }
  @media screen and (max-width: 991px) {
    .subpage-hero .hero-text {
      font-size: 2.25em; } }
  @media screen and (max-width: 767px) {
    .subpage-hero .hero-text {
      font-size: 2em; } }
.subpage-hero svg {
  margin: 30px auto; }
  .subpage-hero svg #icon {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
@media screen and (max-width: 767px) {
  .subpage-hero {
    text-align: center; } }

.sub-hero .large-text {
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1.2em;
  color: #203962; }
  @media screen and (max-width: 1199px) {
    .sub-hero .large-text {
      font-size: 2.1em; } }
  @media screen and (max-width: 991px) {
    .sub-hero .large-text {
      font-size: 1.75em; } }
  @media screen and (max-width: 575px) {
    .sub-hero .large-text {
      font-size: 1.5em;
      font-weight: 600; } }

.split-hero {
  position: relative; }
  .split-hero .image-container {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0; }
  @media screen and (max-width: 767px) {
    .split-hero .image-container {
      background: #c8e8e0;
      position: static; }
      .split-hero .image-container img {
        max-width: 320px;
        margin-top: 20px;
        width: 100%; } }

.service-cards {
  margin-top: -50px; }
  .service-cards .col-md-6 {
    margin-bottom: 30px; }

.service-card {
  background: #e2eee6;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  padding-bottom: 90px; }
  .service-card img {
    display: block;
    margin: 20px auto;
    max-width: 120px; }
  .service-card p {
    font-size: 1.2em;
    max-width: 241px;
    margin: 0 auto 25px; }
  .service-card a {
    font-size: 1.7em;
    font-weight: 700;
    color: #203962;
    line-height: 1.1em;
    margin-bottom: 10px;
    display: inline-block; }
    .service-card a .button {
      font-size: .56em;
      position: absolute;
      bottom: 40px;
      width: 184px;
      left: 50%;
      transform: translateX(-50%);
      display: block;
      padding: .5em 2.5em; }

.image-section .container {
  background-size: contain;
  background-repeat: no-repeat; }
.image-section img {
  width: 100%;
  max-width: 300px;
  border-radius: 24px; }
.image-section .image-text {
  background: rgba(255, 255, 255, 0.44);
  padding: 15px;
  border-radius: 8px; }

.programs-services {
  background: #edf4ef; }
  .programs-services .container {
    position: relative;
    margin-bottom: 2em; }
  .programs-services h2 {
    margin: 30px auto 2em; }
  .programs-services .section-title {
    color: #203962;
    margin-bottom: 30px; }
  .programs-services .col-md-6 {
    position: relative;
    padding-bottom: 50px;
    padding-top: 20px;
    margin-bottom: 30px; }
  .programs-services .program-name {
    font-size: 1.6em;
    font-weight: 800;
    color: #203962;
    line-height: 1.2em;
    display: block;
    margin-bottom: 10px; }
  .programs-services .learn-more {
    position: absolute;
    bottom: 20px;
    right: 3rem;
    color: #184285;
    font-weight: 600; }
  @media screen and (min-width: 768px) {
    .programs-services .md-border {
      position: absolute;
      height: 100%;
      background: #bbbbbb;
      width: 2px;
      left: 50%;
      transform: translateX(-50%);
      top: 0; } }

.helpful-links .container {
  border-top: 2px solid #203962; }

.link-container {
  max-width: 768px;
  margin: 0 auto; }
  .link-container .link {
    font-size: 1.2em;
    margin-bottom: 15px; }
    .link-container .link i {
      display: inline; }
  @media screen and (min-width: 768px) {
    .link-container .row {
      position: relative; }
    .link-container .md-border {
      position: absolute;
      height: 100%;
      background: #bbbbbb;
      width: 2px;
      left: 50%;
      transform: translateX(-50%);
      top: 0; } }

.form-container {
  position: relative;
  border: 2px solid #e5e5e5;
  box-shadow: 6px 9px 47px -29px black;
  border-radius: 16px;
  padding: 80px 60px 30px;
  margin-top: 50px;
  margin-bottom: 60px; }
  .form-container .button {
    color: white !important; }
  .form-container .card-subtitle {
    font-size: 20px;
    font-weight: 500; }
  .form-container label,
  .form-container legend {
    font-size: 18px;
    line-height: 1.1em;
    margin-top: 20px;
    font-weight: 700; }
  .form-container .form-group label {
    font-size: 1em; }
  .form-container .form-check-label {
    font-size: 1em;
    margin-top: 0px;
    font-weight: 500; }
  .form-container .form-control {
    background: #f7f7f7; }
  .form-container .top-image {
    position: absolute;
    top: -45px;
    width: 100px; }
    .form-container .top-image.centered-image {
      left: 50%;
      transform: translateX(-50%); }
  @media screen and (max-width: 767px) {
    .form-container {
      padding: 40px 20px; }
      .form-container label,
      .form-container legend {
        font-size: 1.25em; }
      .form-container .top-image {
        width: 80px; } }

.provider-description .provider-logo {
  max-width: 270px;
  max-height: 320px;
  width: auto; }
.provider-description p {
  font-size: 1.1em; }
.provider-description .provider-intro {
  color: #203962;
  font-weight: 600;
  font-size: 1.4em; }

.provider-contact {
  background: white;
  background: -moz-linear-gradient(180deg, white 50%, #edf4ef 50%);
  background: -webkit-linear-gradient(180deg, white 50%, #edf4ef 50%);
  background: linear-gradient(180deg, white 50%, #edf4ef 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#edf4ef", GradientType=1);
  text-align: center;
  padding: 0px 15px; }
  .provider-contact hr {
    border-top: 2px solid white;
    max-width: 540px;
    margin: 20px auto; }
  .provider-contact .container {
    background: #4376c6;
    color: white;
    border-radius: 18px;
    max-width: 767px; }
  .provider-contact .contact-list {
    display: inline-block; }
  .provider-contact .contact-icon {
    display: inline-block;
    width: 35px;
    text-align: center; }
  .provider-contact .contact-method {
    font-size: 1.45em;
    margin-bottom: 15px; }
    .provider-contact .contact-method a {
      color: white; }
      .provider-contact .contact-method a i {
        font-size: .75em; }

.image-content,
.testimonial {
  background: #edf4ef; }
  .image-content img,
  .testimonial img {
    max-width: 430px;
    margin: 0 auto;
    width: 100%; }
  .image-content p,
  .testimonial p {
    font-size: 1.1em; }

.text-content p {
  font-size: 1.1em; }

.accordion {
  border-top: 2px solid #0071ba; }
  .accordion .card-header {
    background: transparent;
    border-bottom: 0px;
    padding: 16px 0px; }
    .accordion .card-header h4 {
      font-size: 1.15em; }
    .accordion .card-header button {
      color: #58595b;
      font-weight: 600;
      font-size: 1.1em;
      padding: 0px;
      display: block;
      width: 100%;
      text-align: left;
      position: relative;
      white-space: normal;
      padding-right: 30px; }
      .accordion .card-header button .fas {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
  .accordion .card-body {
    padding: 16px 0px;
    padding-top: 3px; }
  .accordion .accordion-group {
    border-bottom: 1px solid #58595b; }

.program-span.active {
  font-weight: 600; }

.about-intro {
  background: #e7f3f0; }
  .about-intro a {
    font-weight: 600; }
  .about-intro .large-text {
    font-weight: 500;
    font-size: 1.15em; }
  @media screen and (min-width: 992px) {
    .about-intro p {
      font-size: 1.15em; }
    .about-intro .large-text {
      font-size: 1.4em; } }

.about-heading {
  font-size: 1.5rem;
  text-align: center;
  color: #203a62; }
  @media screen and (max-width: 767px) {
    .about-heading {
      font-size: 1.25rem; } }

.about-eligibility .eligibility-icon {
  background: #c7e3dc;
  background: -moz-linear-gradient(180deg, #e7f3f0 48%, white 48%);
  background: -webkit-linear-gradient(180deg, #e7f3f0 48%, white 48%);
  background: linear-gradient(180deg, #e7f3f0 48%, white 48%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e7f3f0", endColorstr="#ffffff", GradientType=1); }
  .about-eligibility .eligibility-icon img {
    width: 90px; }
.about-eligibility p {
  max-width: 540px;
  margin: 10px auto -20px;
  text-align: center;
  font-size: 22px; }
  @media screen and (max-width: 991px) {
    .about-eligibility p {
      margin-bottom: 20px; } }
.about-eligibility .illustration {
  position: relative; }
  .about-eligibility .illustration:after {
    background: #203a62;
    content: "";
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    bottom: 16%;
    z-index: 1; }
  .about-eligibility .illustration svg,
  .about-eligibility .illustration img {
    position: relative;
    z-index: 2; }

.logo-grid {
  display: grid;
  max-width: 992px;
  margin: 20px auto;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-gap: 1rem; }
  .logo-grid > div {
    padding: 1rem;
    display: grid;
    place-items: center; }
    .logo-grid > div::before {
      content: "";
      display: block;
      grid-area: 1 / 1 / 2 / 2; }
    .logo-grid > div img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      grid-area: 1 / 1 / 2 / 2;
      max-height: 140px; }

.future-growth {
  background: white;
  background: -moz-linear-gradient(180deg, white 78%, #edf4ef 78%, #edf4ef 100%);
  background: -webkit-linear-gradient(180deg, white 78%, #edf4ef 78%, #edf4ef 100%);
  background: linear-gradient(180deg, white 78%, #edf4ef 78%, #edf4ef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#edf4ef", GradientType=1); }
  .future-growth .growth-container {
    background: #203962;
    color: white;
    border-radius: 26px; }
  .future-growth h3 {
    font-weight: 600;
    margin-bottom: .75em; }
  .future-growth p {
    margin-bottom: 1.2em; }
  @media screen and (min-width: 992px) {
    .future-growth h3 {
      font-size: 2.2em; }
    .future-growth p {
      font-size: 1.15em; }
    .future-growth .large-text {
      font-size: 1.3em; } }
  .future-growth img {
    max-width: 327px;
    width: 100%;
    margin: 0 auto;
    display: block; }

.two-column {
  background: #edf4ef; }
  .two-column h3 {
    max-width: 683px;
    text-align: center;
    margin: 0px auto 35px;
    color: #203962; }
  .two-column ul {
    padding-left: 22px; }
    .two-column ul li::marker {
      font-size: 1.4em;
      color: #4376c6; }
  .two-column .large-text {
    font-size: 1.4em;
    color: #58595b; }
  @media screen and (min-width: 992px) {
    .two-column p,
    .two-column ul {
      color: #333;
      font-size: 1.15em; } }

.partner-listing {
  font-size: 20px; }
  .partner-listing .partner:nth-child(odd) {
    background: #edf4ef; }
  .partner-listing .partner img {
    max-width: 280px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px; }
  .partner-listing .partner h3 {
    font-weight: 700;
    color: #203962;
    font-size: 1.1em;
    margin-bottom: 23px; }
  .partner-listing .partner a {
    font-weight: 600; }
  @media screen and (max-width: 991px) {
    .partner-listing {
      font-size: 16px; } }

.progress-row {
  margin-bottom: 20px; }

.progressbar {
  counter-reset: current_step;
  width: 100%;
  list-style-type: none;
  color: #203962;
  font-weight: 600; }

.progressbar li {
  float: left;
  width: 20%;
  position: relative;
  text-align: center; }

.progressbar li:before {
  content: '';
  counter-increment: current_step;
  width: 40px;
  height: 40px;
  border: 1px solid #bebebe;
  box-shadow: 0 0 4px black;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 37px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold; }

.progressbar li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bebebe;
  top: 20px;
  left: -50%;
  z-index: -1; }

.progressbar li.active:before {
  border-color: #203962;
  background: #203962;
  color: white; }

.progressbar li.active:after {
  background: #203962; }

.progressbar li.active li:after {
  background: #203962; }

.progressbar li.active li:before {
  border-color: #203962;
  background: #203962;
  color: white; }

.progressbar li:first-child:after {
  content: none; }

body {
  counter-reset: mobile_counter; }

.mobile-step {
  display: block;
  margin-bottom: 4px;
  border-radius: 8px;
  padding: 6px 12px;
  color: #203962;
  font-weight: 500;
  font-size: 1.1em;
  position: relative;
  padding-left: 56px;
  opacity: .8; }

.mobile-step:before {
  content: "" counter(mobile_counter) " ";
  counter-increment: mobile_counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  display: block;
  width: 33px;
  height: 33px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid; }

.mobile-step.active {
  opacity: 1;
  font-size: 1.3em;
  font-weight: 600; }
  .mobile-step.active::before {
    color: white;
    background: #203962;
    font-size: 1.1em;
    width: 36px;
    height: 36px; }

.mobile-step.completed {
  opacity: 1; }

.mobile-step.completed::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 560;
  content: "\f058 ";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.9em;
  border: 0px;
  height: auto; }

#search-results em {
  background-color: yellow;
  font-weight: 560; }

.learn-intro {
  font-size: 1.3em;
  font-weight: 600;
  color: #203962; }

.article-intro {
  font-size: 1.1em;
  margin-bottom: 30px; }

.learn-content {
  font-size: 1.1em;
  padding-bottom: 80px; }
  .learn-content .section-title {
    font-size: 2em; }
  .learn-content .card {
    border: 0px;
    background-color: #E2EEE6;
    border-radius: 20px;
    box-shadow: 11px 12px 5px -4px #e6e6e6; }
  .learn-content .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px; }
  .learn-content .card-body {
    padding: 1.25rem 1.5rem;
    padding-bottom: 90px; }
  .learn-content .category img {
    width: 26px; }
  .learn-content .category span {
    font-size: 15px; }
  .learn-content a {
    display: inline-block; }
    .learn-content a:hover {
      text-decoration: none; }
    .learn-content a h4 {
      font-size: 1.2em;
      font-weight: 600;
      color: #203962;
      margin-top: 4px; }
    .learn-content a .learn-more {
      position: absolute;
      width: 100%;
      text-align: right;
      right: 1.5rem;
      bottom: 30px;
      color: #4376c8;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .075em; }
      .learn-content a .learn-more i {
        margin-left: 20px; }

.button-container .view-all-button {
  background: #203962;
  margin-top: 40px;
  margin-bottom: 40px;
  display: inline-block;
  color: white;
  padding: 11px 66px;
  padding-right: 123px;
  font-size: 19px;
  position: relative;
  border-radius: 25px;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 6px 11px 5px -4px #c5c5c5; }
  .button-container .view-all-button:hover {
    color: white; }
  .button-container .view-all-button .arrow {
    position: absolute;
    right: 20px;
    background: #8adc99;
    padding: 9px 12px 9px 14px;
    font-size: 24px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%); }

.resource-card {
  border: 8px solid currentColor;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 11px 12px 5px -4px #e6e6e6; }
  .resource-card.blue-card {
    color: #4376c8; }
  .resource-card.orange-card {
    color: #EB8100; }
  .resource-card.red-card {
    color: #D54463; }
  .resource-card.green-card {
    color: #6CCD9A; }
    .resource-card.green-card .card-title h4 {
      color: #203962; }
  .resource-card.purple-card {
    color: #C93AAA; }
  .resource-card.yellow-card {
    color: #F8D262; }
    .resource-card.yellow-card .card-title h4 {
      color: #203962; }
  .resource-card .card-title {
    background: currentColor;
    border: 5px solid currentColor;
    padding: 30px;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(100% + 2px);
    padding-left: 120px;
    position: relative; }
    .resource-card .card-title img {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 77px;
      border-radius: 50%;
      box-shadow: 6px 5px 22px -8px #141414; }
    .resource-card .card-title h4 {
      color: white;
      max-width: 236px;
      font-weight: 600; }
  .resource-card .card-content {
    color: #58595b;
    padding: 4px 20px 8px; }
    .resource-card .card-content a {
      font-weight: 600; }
  .resource-card .featured-article p {
    background: currentColor;
    margin-left: -1px;
    width: calc(100% + 2px);
    padding: 6px 20px;
    margin-bottom: 0px; }
    .resource-card .featured-article p span {
      color: white;
      font-weight: 600;
      font-size: 1.1em; }
  .resource-card .featured-article .featured {
    font-weight: 600;
    font-size: 1.1em;
    padding: 6px 20px 12px; }

.breadcrumb {
  background: inherit;
  padding: 0px;
  font-size: 1.2em; }
  .breadcrumb a {
    color: #203962;
    font-weight: 600; }

.pagination .page-item:first-child .page-link {
  padding-left: 0px; }
.pagination .page-item:last-child .page-link {
  padding-right: 0px; }
.pagination .page-item .page-link {
  background-color: transparent;
  border: 0px;
  padding: 0px 17px;
  font-weight: 600;
  color: #4971a8; }
  .pagination .page-item .page-link:hover {
    color: #203962; }
  .pagination .page-item .page-link.active {
    color: #D54463;
    pointer-events: none; }
.pagination .page-item .prev-next {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: white;
  background: #D54463;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  padding: 0px;
  padding-top: 3px; }
  .pagination .page-item .prev-next:hover {
    background: #4971a8;
    color: white; }

.submit-story li,
.submit-story p {
  font-size: 1.2em; }
.submit-story .large-text {
  font-weight: 600;
  font-size: 1.4em; }
.submit-story .section-title {
  font-size: 3em; }
.submit-story .border-right {
  border-right: 2px solid #203962 !important; }
.submit-story .mint-button {
  display: block;
  max-width: 230px;
  margin: 20px auto; }
@media screen and (max-width: 767px) {
  .submit-story .border-right {
    border-right: 0px !important;
    border-bottom: 2px solid #203962; } }
@media screen and (max-width: 991px) {
  .submit-story .section-title {
    font-size: 2em; } }

.programs-field h5 {
  font-weight: 600; }
.programs-field .program {
  position: relative;
  padding-left: 20px; }
  .programs-field .program input {
    position: absolute;
    left: 0;
    top: 5px; }
  .programs-field .program label {
    margin-top: 0; }

.arrow-list {
  list-style-type: none;
  padding-left: 0px;
  margin-top: 10px; }
  .arrow-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px; }
  .arrow-list .circle-arrow {
    position: absolute;
    left: 0;
    top: 6px;
    background: #4376c6;
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%; }

.how-it-works .blue-bg {
  position: relative; }
  .how-it-works .blue-bg:after {
    content: "";
    position: absolute;
    top: -71px;
    right: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: #203962;
    -webkit-clip-path: ellipse(50% 60% at 50% 100%);
    clip-path: ellipse(54% 60% at 50% 104%); }
.how-it-works p {
  font-size: 18px;
  max-width: 294px;
  margin: 0px auto 10px; }
.how-it-works .number-circle {
  background: #e0653d;
  font-size: 33px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 800;
  margin: 20px auto 10px; }

.get-involved .container {
  position: relative; }
  .get-involved .container * {
    position: relative;
    z-index: 2; }
  .get-involved .container:after {
    position: absolute;
    content: "";
    background: #c7e3dc;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(100% - 55px);
    z-index: 1; }
.get-involved .large-title {
  padding-left: 54px; }
.get-involved ul {
  max-width: 823px;
  font-size: 20px;
  padding-left: 45px;
  list-style-type: none;
  margin-top: 20px; }
  .get-involved ul li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 20px; }
    .get-involved ul li:before {
      content: "";
      border: 2px solid #4376c8;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      position: absolute;
      left: -40px;
      top: 2px; }
  .get-involved ul .section-title {
    font-size: 24px;
    color: #4376c8; }
.get-involved .involved-circles {
  float: right;
  shape-outside: url("../img/involved-circles.svg");
  max-width: 340px; }
@media screen and (max-width: 991px) {
  .get-involved .involved-circles {
    display: none; } }
.get-involved .for-all {
  padding-top: 40px; }
  .get-involved .for-all p {
    font-size: 22px;
    font-weight: 900;
    color: #4376c8;
    max-width: 680px; }
  .get-involved .for-all .button {
    font-size: 22px;
    border-radius: 60px;
    font-variant-numeric: lining-nums; }
  @media screen and (max-width: 767px) {
    .get-involved .for-all {
      padding-left: 60px; }
      .get-involved .for-all img {
        max-width: 220px;
        margin-bottom: 10px; }
      .get-involved .for-all p {
        font-size: 18px; } }

/*# sourceMappingURL=main.css.map */
