@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pragati+Narrow:wght@200;400;500;600;700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,800;1,400&display=swap");
:root {
  --dt-row-selected: 19, 65, 112;
  --dt-row-selected-link: 255, 255, 255;
}

.darkblue-bg {
  background: #134170;
}

.light-bg {
  background: #F3F3F9;
}

.white-bg {
  background: white;
}

.darkblue-text {
  color: #134170;
}

.white-text {
  color: white;
}

body, html {
  overflow-x: hidden;
  font-size: 16px;
  color: #4f4f4f;
}
body h1, body .h1, html h1, html .h1 {
  font-size: 3em;
}
body h2, body .h2, html h2, html .h2 {
  font-size: 2.4em;
}
body h3, body .h3, html h3, html .h3 {
  font-size: 2em;
}
@media screen and (max-width: 1199px) {
  body h1, body .h1, html h1, html .h1 {
    font-size: 2.75em;
  }
  body h2, body .h2, html h2, html .h2 {
    font-size: 2.25em;
  }
  body h3, body .h3, html h3, html .h3 {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 14px;
  }
  body h1, body .h1, html h1, html .h1 {
    font-size: 2.3em;
  }
  body h2, body .h2, html h2, html .h2 {
    font-size: 2em;
  }
}

strong, b {
  font-weight: 700;
}

a {
  color: #038CFE;
}

h1, h2, .h1, .h2, .h3 {
  font-family: "Pragati Narrow", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  max-width: 100%;
}

body {
  font-family: "Work Sans", sans-serif;
}

.wide-container {
  max-width: 1500px;
  margin: 0 auto;
}

.dashed-underline {
  display: inline-block;
  border-bottom: 3px dotted #038CFE;
  padding-right: 1px;
}

.large-text {
  font-size: 1.75em;
  font-family: "Pragati Narrow", sans-serif;
  color: #231F20;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .large-text {
    font-size: 1.4em;
  }
}

.small-title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 20px;
}

.button {
  display: inline-block;
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.5em 1.75em;
  border-radius: 0.35em;
  transition: all 0.3s ease;
}
.button:hover {
  text-decoration: none;
}
.button.border-button {
  border: 2px solid;
}
.button.border-button.white-text:hover {
  background: white;
  color: #134170;
}
.button.border-button.darkblue-text:hover {
  background: #134170;
  color: white;
}
.button.large-button {
  padding: 0.4em 2.3em;
  font-size: 1.2em;
}
.button.blue-button {
  background: #038CFE;
  color: white;
}
.button.blue-button:hover {
  background: #D12B0C;
}
.button.purple-button {
  background: #940AF6;
  color: white;
}
.button.purple-button:hover {
  background: #D12B0C;
}
.button.alt-button {
  background: #3a8fcf;
  color: white;
  text-transform: none;
  padding: 0.4em 2.3em;
  font-size: 1.5em;
  letter-spacing: 0em;
}
.button.alt-button:hover {
  background: #134170;
}
.button span {
  vertical-align: middle;
}
.button i, .button svg {
  vertical-align: middle;
  margin-left: 5px;
}

.arrow-select {
  position: relative;
}
.arrow-select img {
  position: absolute;
  right: 10px;
  width: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.arrow-select select {
  appearance: none;
  width: 100%;
  padding-right: 22px;
  color: #8e8e8e;
}
.arrow-select select::-ms-expand {
  display: none;
}

.partnership-button {
  color: #134170;
}
.partnership-button:hover {
  color: white;
  background: #134170;
  border: 2px solid #134170;
}

.styled-list {
  list-style: none;
  /* Remove default bullets */
  padding-left: 20px;
}
.styled-list li {
  position: relative;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.styled-list li::before {
  content: "•";
  color: #008296;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  font-size: 23px;
  top: 0px;
  line-height: 24px;
}

.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: #134170;
}
.pagination .page-item .page-link:hover {
  color: #038CFE;
}
.pagination .page-item .page-link.active {
  color: #D12B0C;
  pointer-events: none;
}
.pagination .page-item .prev-next {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: white;
  background: #D12B0C;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  padding: 0px;
  padding-top: 3px;
}
.pagination .page-item .prev-next:hover {
  background: #038CFE;
  color: white;
}

.contact-card {
  display: inline-block;
  padding: 8px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.contact-card img {
  display: inline-block;
  width: 174px;
  padding: 7px 17px;
}
.contact-card .contact-info {
  display: inline-block;
  vertical-align: middle;
  padding-right: 17px;
}
.contact-card .name {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1em;
  margin-bottom: 0px;
}
.contact-card .title {
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: white;
  background: #038CFE;
  display: inline-block;
  text-align: center;
  width: 32px;
  font-size: 15px;
  line-height: 32px;
  height: 32px;
  margin-right: 9px;
  border-radius: 50%;
}
@media screen and (max-width: 540px) {
  .contact-card {
    text-align: center;
  }
  .contact-card .img, .contact-card .contact-info {
    display: block;
  }
  .contact-card .contact-info {
    padding-right: 0px;
  }
}

.alert-banner {
  background: #038CFE;
  color: white;
  font-weight: 600;
}
.alert-banner p {
  font-size: 1.2em;
}
.alert-banner a {
  color: white;
}

.header {
  position: relative;
  padding: 0px 0px 8px;
}

.navbar {
  font-family: "Pragati Narrow", sans-serif;
  z-index: 2;
  max-width: 1460px;
  margin: 0 auto;
}
.navbar .navbar-toggler {
  border: none;
  background: transparent !important;
  padding-top: 12px;
  padding-right: 0px;
}
.navbar .navbar-toggler:hover {
  background: transparent !important;
}
.navbar .navbar-toggler:focus {
  outline: none;
}
.navbar .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}
.navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar .navbar-toggler .icon-bar {
  width: 36px;
  transition: all 0.2s;
  background: #134170;
  display: block;
  height: 3px;
  margin-bottom: 7px;
  border-radius: 8px;
}
.navbar .navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar .navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar .navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar .navbar-brand img {
  width: 146px;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    width: 100px;
  }
}
.navbar .nav-link {
  padding: 1rem 1rem;
}
.navbar .nav-link > a {
  color: #134170;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.05em;
}
.navbar .nav-link:hover > a {
  color: #038CFE;
}
.navbar .button {
  text-transform: uppercase;
  background: #940AF6;
  color: white;
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  margin-right: 5px;
  transition: background 0.3s ease;
}
.navbar .button:hover {
  text-decoration: none;
  background: #D12B0C;
}
.navbar .social-media {
  display: inline-block;
  width: 23px;
  height: 23px;
  text-align: center;
  background: #038CFE;
  border-radius: 50%;
  padding: 3px;
  font-size: 12px;
  color: white;
  margin-right: 5px;
}
.navbar #search-expand {
  display: inline-block;
}
.navbar #search-expand input, .navbar #search-expand button {
  position: absolute;
  top: -999px;
  right: 15px;
  width: 0px;
  transition: width 0.2s ease;
}
.navbar #search-expand:focus-within i, .navbar #search-expand:focus i {
  outline: 0;
}
.navbar #search-expand:focus-within input, .navbar #search-expand:focus input {
  top: 100%;
  width: 305px;
  border: 2px solid #038CFE;
  padding: 6px;
  outline: 0px;
  font-size: 20px;
}
.navbar .search-focus:focus + input {
  top: 100%;
  width: 305px;
  border: 2px solid #038CFE;
  padding: 6px;
  outline: 0px;
  font-size: 20px;
}

#search-expand.active input {
  top: 100%;
  width: 305px;
  border: 2px solid #038CFE;
  padding: 6px;
  outline: 0px;
  font-size: 20px;
}

.navbar-nav .nav-link {
  position: relative;
}
.navbar-nav .nav-link:hover .submenu {
  top: 100%;
}
.navbar-nav .nav-link ul {
  list-style-type: none;
  padding-left: 0px;
}
.navbar-nav .nav-link .submenu {
  position: absolute;
  left: 0;
  top: -9999px;
  white-space: nowrap;
  background: white;
  box-shadow: 0px 4px 7px -7px grey;
  border-top: 4px solid #038CFE;
}
.navbar-nav .nav-link .submenu a {
  display: block;
  padding: 12px 12px 12px 12px;
  color: #134170;
}
.navbar-nav .nav-link .submenu .has-tertiary {
  position: relative;
}
.navbar-nav .nav-link .submenu .has-tertiary:hover a, .navbar-nav .nav-link .submenu .has-tertiary:focus a, .navbar-nav .nav-link .submenu .has-tertiary.hovered a {
  background: #e6f2ff;
}
.navbar-nav .nav-link .submenu .has-tertiary:hover .tertiary-menu, .navbar-nav .nav-link .submenu .has-tertiary:focus .tertiary-menu, .navbar-nav .nav-link .submenu .has-tertiary.hovered .tertiary-menu {
  top: -4px;
}
.navbar-nav .nav-link .submenu .has-tertiary:focus-within a {
  background: #e6f2ff;
}
.navbar-nav .nav-link .submenu .has-tertiary:focus-within .tertiary-menu {
  top: -4px;
}
.navbar-nav .nav-link .submenu .has-tertiary .tertiary-menu {
  position: absolute;
  left: 100%;
  top: -9999px;
  white-space: nowrap;
  background: #134170;
  border-top: 4px solid #038CFE;
  padding: 11px 0px;
}
.navbar-nav .nav-link .submenu .has-tertiary .tertiary-menu a {
  background: #134170;
  color: white;
  padding: 1px 26px 1px;
  margin: 10px 0px;
}

.navbar .mobile-nav {
  padding-top: 10px;
  font-size: 16px;
  margin-left: -15px;
  width: calc(100% + 30px);
}
.navbar .mobile-nav a {
  color: #164472;
}
.navbar .mobile-nav form {
  max-width: 420px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}
.navbar .mobile-nav form i {
  position: absolute;
  left: 21px;
  top: 8px;
}
.navbar .mobile-nav form input {
  width: 100%;
  padding-left: 24px;
  font-size: 19px;
  border-radius: 5px;
}
.navbar .mobile-nav form button {
  font-family: "Pragati Narrow", sans-serif;
  width: 100%;
  margin-top: 5px;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #134170;
  background: #134170;
  box-shadow: 0px;
  color: white;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 5px;
}
.navbar .mobile-nav ul {
  padding-left: 0px;
  list-style-type: none;
}
.navbar .mobile-nav ul .nav-link {
  padding: 0px 1rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-right: 0px;
  border-bottom: 2px solid #ececec;
  position: relative;
}
.navbar .mobile-nav ul .nav-link .sub-toggler {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 0px;
  padding: 0px 26px;
  font-size: 21px;
  color: #134170;
  padding-right: 6px;
}
.navbar .mobile-nav ul .nav-link > .sub-toggler {
  font-size: 27px;
  top: -4px;
}
.navbar .mobile-nav ul .nav-link:hover > a {
  color: #134170;
}
.navbar .mobile-nav ul .nav-link > a {
  letter-spacing: 0.05em;
}
.navbar .mobile-nav ul .nav-link > a:hover {
  color: #038CFE;
}
.navbar .mobile-nav ul .nav-link .submenu > li {
  position: relative;
  margin-bottom: 6px;
  margin-top: 5px;
  padding: 4px 8px;
}
.navbar .mobile-nav ul .nav-link .submenu > li:nth-child(odd) {
  background: #ececec;
}
.navbar .mobile-nav ul .nav-link .submenu > li:nth-child(odd):before {
  position: absolute;
  content: "";
  width: 999px;
  height: 100%;
  right: 100%;
  top: 0;
  background: #ececec;
}
.navbar .mobile-nav ul .nav-link .submenu > li:nth-child(odd):after {
  position: absolute;
  content: "";
  width: 999px;
  height: 100%;
  left: 100%;
  top: 0;
  background: #ececec;
}
.navbar .mobile-nav ul .nav-link .submenu {
  display: none;
}
.navbar .mobile-nav ul .nav-link .submenu .sub-toggler {
  top: 3px;
}
.navbar .mobile-nav ul .nav-link .tertiary-menu {
  display: none;
}
.navbar .mobile-nav ul .nav-link .tertiary-menu li {
  background: transparent;
  margin-top: 6px;
}
.navbar .mobile-nav ul .nav-link a {
  font-size: 1.2em;
}
.navbar .mobile-nav ul .has-tertiary ul {
  padding-bottom: 10px;
  padding-left: 10px;
}
.navbar .mobile-nav .purple-button {
  color: white;
  margin: 10px auto;
}
.navbar .mobile-nav .social-media {
  color: white;
  width: 31px;
  height: 31px;
  font-size: 18px;
  margin: 7px 9px;
}

.hero {
  background-color: #008296;
  background-repeat: no-repeat;
  background-position: -146px calc(100% + 88px);
}
.hero img {
  margin: 0px auto;
}

.hero-text {
  padding: 49px 0px;
}
.hero-text .h1, .hero-text .h2 {
  color: white;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: "Pragati Narrow", sans-serif;
}
.hero-text .button {
  color: white;
  white-space: nowrap;
}
.hero-text .button:hover {
  background: white;
  color: #008296;
}

.section-ctas {
  text-align: center;
  background: #F3F3F9;
}
.section-ctas a {
  border-bottom: 12px solid #F3F3F9;
  padding-bottom: 80px;
  padding-top: 40px;
  position: relative;
  text-decoration: none;
}
.section-ctas a:hover {
  background: white;
  border-bottom: 12px solid #038CFE;
}
.section-ctas a:hover .initial {
  display: none;
}
.section-ctas a:hover .hover {
  display: block;
}
.section-ctas a:hover .learn-more {
  color: #038CFE;
}
.section-ctas a:hover .learn-more .svg path {
  fill: #038CFE !important;
}
.section-ctas a img {
  max-width: 130px;
  margin: 20px auto 10px;
}
.section-ctas a p {
  max-width: 220px;
  margin: 20px auto;
  color: #134170;
  font-weight: 600;
  max-width: 270px;
}
.section-ctas a .initial {
  display: block;
}
.section-ctas a .hover {
  display: none;
}
.section-ctas a .learn-more {
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25px;
  letter-spacing: 0.12em;
  color: #D12B0C;
  font-weight: 600;
}
.section-ctas a .learn-more .svg path {
  fill: #D12B0C !important;
}
@media screen and (min-width: 1200px) {
  .section-ctas .container {
    max-width: 1300px;
  }
}

.image-content.grey-bg {
  background: #f3f3f9;
}
.image-content h1, .image-content .h1 {
  color: #134170;
  font-size: 3em;
  font-weight: 600;
}
.image-content img {
  display: block;
  margin: 20px auto;
}
.image-content .learn-more {
  font-weight: 600;
  color: #134170;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.4em;
}
.image-content .button {
  color: #134170;
}
.image-content .blue-button {
  color: #fff;
}
.image-content .button:hover {
  color: white;
  background: #134170;
}
.image-content.subpage-image-content h1 {
  font-weight: 400;
}
.image-content.alternate-image-content h2 {
  font-weight: 600;
  color: #134170;
}
.image-content.alternate-image-content .row {
  position: relative;
}
.image-content.alternate-image-content .col-md-8 {
  position: static;
}
.image-content.alternate-image-content p {
  font-size: 1em;
}
.image-content.alternate-image-content .content-container {
  max-width: 540px;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .image-content .dotted-hr {
    display: block;
    border-top: 3px dotted #134170;
    margin-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .image-content .dotted-hr {
    position: absolute;
    bottom: 60px;
    width: 50%;
  }
}

.latest-posts h1 {
  color: #134170;
}

.post-listing .post .post-info {
  margin-top: 0px;
  text-transform: uppercase;
}
.post-listing .post .post-body h2, .post-listing .post .post-body h3 {
  font-size: 1.4em;
}
.post-listing .post .post-body h3 {
  color: #134170;
  font-weight: 600;
}
.post-listing .post .post-body .time {
  font-size: 1.2em;
}
.post-listing .read-more {
  display: block;
  width: calc(100% - 48px);
}
.post-listing .read-more i {
  float: right;
  padding-top: 4px;
}
.post-listing .read-more .svg {
  float: right;
  margin-top: 4px;
}

.post {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 11px -8px;
  padding-bottom: 45px;
  transition: box-shadow 0.3s ease;
}
.post.hovered {
  box-shadow: 0px 0px 0px 4px #038CFE;
}

.post-info {
  color: #606060;
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  margin-top: 10px;
}
.latest-posts .source {
  margin-left: 8px;
}
.latest-posts .source:before {
  content: "|";
  padding-right: 8px;
}

.post-image {
  padding: 20%;
  background-position: center;
  background-size: cover;
}

.post-body {
  padding: 14px 24px 20px;
}
.post-body h2 {
  font-size: 1.75em;
  font-weight: 600;
  color: #134170;
}
.post-body .post-link:hover {
  text-decoration: none;
}
.post-body .post-link:hover .read-more {
  color: #038CFE;
}
.post-body .read-more {
  position: absolute;
  display: inline-block;
  bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #D12B0C;
  font-family: "Pragati Narrow", sans-serif;
}
.post-body .read-more span {
  vertical-align: middle;
}
.post-body .read-more i {
  display: inline-block;
  font-size: 0.9em;
  margin-left: 4px;
}
.post-body .post-type {
  position: absolute;
  display: block;
  bottom: 10px;
  right: 24px;
  color: #BDBDBD;
  text-transform: uppercase;
  font-family: "Pragati Narrow", sans-serif;
}

.latest-posts .button {
  color: #134170;
  font-size: 1.2em;
}
.latest-posts .button:hover {
  color: #F3F3F9;
  background: #134170;
}

.home-events {
  background: #134170;
  color: white;
}
.home-events h1 {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.home-events .border-button {
  color: white;
  font-size: 1.2em;
}
.home-events .border-button:hover {
  color: #231F20;
  background: white;
}

.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  color: #4f4f4f;
  transition: box-shadow 0.3s ease;
  position: relative;
}
.event-card.hovered {
  box-shadow: 0px 0px 0px 4px #038CFE;
}
.event-card .date {
  background: #038CFE;
  background-position: bottom right;
  background-repeat: no-repeat;
  font-size: 40px;
  text-transform: uppercase;
  color: white;
  font-family: "Pragati Narrow", sans-serif;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.event-card .date span {
  font-size: 130px;
  display: block;
  line-height: 1em;
  margin-bottom: -16px;
  letter-spacing: 0.03em;
}
.event-card .event-info {
  padding-bottom: 60px !important;
}
.event-card .event-info a {
  font-family: "Pragati Narrow", sans-serif;
  color: #134170;
}
.event-card .event-info a:hover {
  text-decoration: none;
}
.event-card .event-info a:hover .read-more {
  color: #038CFE;
}
.event-card .event-info a p {
  font-weight: 600;
  color: #134170;
  font-size: 1.75em;
  line-height: 1.18em;
  margin-bottom: 14px;
}
.event-card .event-info a .read-more {
  color: #D12B0C;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
}
.event-card .event-info a .read-more span {
  vertical-align: middle;
  display: inline-block;
  padding-right: 4px;
}
.event-card .event-info a .read-more svg {
  vertical-align: middle;
}

.event-card.featured-event {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  color: #4f4f4f;
  transition: box-shadow 0.3s ease;
  position: relative;
}
.event-card.featured-event.hovered {
  box-shadow: 0px 0px 0px 4px #008296;
}
.event-card.featured-event .date {
  background: #008296;
  background-position: bottom right;
  background-repeat: no-repeat;
  font-size: 40px;
  text-transform: uppercase;
  color: white;
  font-family: "Pragati Narrow", sans-serif;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.event-card.featured-event .date span {
  font-size: 130px;
  display: block;
  line-height: 1em;
  margin-bottom: -16px;
  letter-spacing: 0.03em;
}
.event-card.featured-event .event-info {
  padding-bottom: 60px !important;
}
.event-card.featured-event .event-info a {
  font-family: "Pragati Narrow", sans-serif;
  color: #134170;
}
.event-card.featured-event .event-info a:hover {
  text-decoration: none;
}
.event-card.featured-event .event-info a:hover .read-more {
  color: #008296;
}
.event-card.featured-event .event-info a p {
  font-weight: 600;
  color: #134170;
  font-size: 1.75em;
  line-height: 1.18em;
  margin-bottom: 14px;
}
.event-card.featured-event .event-info a .read-more {
  color: #D12B0C;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
}
.event-card.featured-event .event-info a .read-more span {
  vertical-align: middle;
  display: inline-block;
  padding-right: 4px;
}
.event-card.featured-event .event-info a .read-more svg {
  vertical-align: middle;
}

.event-callout {
  font-weight: 600;
  font-size: 1.2em;
}
.event-callout * {
  font-family: "Work Sans", sans-serif !important;
}
.event-callout h1, .event-callout h2, .event-callout h3, .event-callout h4 {
  text-align: center;
}
.event-callout h3 {
  font-weight: 600;
  margin-bottom: 20px;
}
.event-callout h2 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 20px;
}
.event-callout.teal {
  color: #fff;
  background: #008296;
}
.event-callout.teal a {
  color: #231F20;
}
.event-callout.green {
  color: #075e7d;
  background: #cfdd81;
}
.event-callout.green a {
  color: #038CFE;
}

.event-gallery {
  background: #F3F3F9;
}
.event-gallery h2 {
  font-family: "Work Sans", sans-serif;
  text-align: center;
  color: #075e7d;
}

.event-types a {
  font-size: 1.2em;
  text-decoration: none;
  color: #008296;
}
.event-types a.active {
  color: #BDBDBD;
}

.map-section {
  background: #F3F3F9;
}
.map-section h1 {
  color: #134170;
}
.map-section h1 strong {
  display: block;
}
@media screen and (min-width: 1200px) {
  .map-section h1 {
    font-size: 3.2em;
  }
}

.map-container {
  margin-top: 40px;
}
.map-container .map {
  color: #134170;
}
.map-container .map path:hover {
  color: #038CFE;
}
.map-container .county-info {
  background: white;
  box-shadow: 0px 0px 10px -6px;
  border-radius: 8px;
  padding: 20px;
}
.map-container .zip-search {
  position: relative;
  padding-right: 40px;
}
.map-container .zip-search input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px 0px 0px 6px;
  padding: 7px;
}
.map-container .zip-search input::placeholder {
  color: #8e8e8e;
}
.map-container .zip-search button {
  background: #D12B0C;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #D12B0C;
  width: 40px;
  position: absolute;
  right: 0;
  border-radius: 0px 6px 6px 0px;
}
.map-container .zip-search button i {
  padding: 10px 0px;
  text-align: center;
}
.map-container .program-counties {
  position: relative;
  margin-bottom: 22px;
}
.map-container .program-counties img {
  position: absolute;
  right: 10px;
  width: 12px;
  top: 55%;
  transform: translateY(-50%);
}
.map-container .county-select {
  width: 100%;
  border-radius: 6px;
  padding: 7px 10px;
  appearance: none;
  border: 1px solid #e0e0e0;
  margin-top: 7px;
  color: #8e8e8e;
}
.map-container .county-select::-ms-expand {
  display: none;
}
.map-container .partnership {
  font-family: "Pragati Narrow", sans-serif;
  color: #134170;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 1.1em;
}
.map-container .read-more {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #D12B0C;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 18px;
}
.map-container .read-more span {
  vertical-align: middle;
}
.map-container .read-more svg, .map-container .read-more i {
  display: inline-block;
  font-size: 0.9em;
  margin-left: 4px;
}
.map-container .read-more:hover {
  color: #038CFE;
  text-decoration: none;
}

.contact-method {
  position: relative;
  padding-left: 36px;
  line-height: 1.1em;
  margin-bottom: 22px;
}
.contact-method strong {
  display: block;
  margin-bottom: 2px;
}
.contact-method .svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  color: #008296;
}
.contact-method a {
  color: #4f4f4f;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.tooltip {
  position: absolute;
  z-index: 1020;
  display: block;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -2px;
}

.tooltip.right {
  margin-left: 2px;
}

.tooltip.bottom {
  margin-top: 2px;
}

.tooltip.left {
  margin-left: -2px;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
  border-bottom-color: transparent !important;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
  border-top-color: transparent !important;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
  border-left-color: transparent !important;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
  border-right-color: transparent !important;
}

.tooltip-inner {
  max-width: 200px;
  padding: 6px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #940AF6;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.tooltip-arrow {
  display: none;
}

.view-providers {
  background: #008296;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
}
.view-providers a {
  color: white;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.1em;
  text-transform: uppercase;
}
.view-providers a:hover {
  text-decoration: none;
}
.view-providers .logo {
  width: 100%;
  max-width: 160px;
}

.cta-triptych {
  background-color: #f3f3f8;
}
.cta-triptych .col-md-6 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.cta-triptych .triptych-item {
  background: white;
  border-radius: 16px;
  padding: 60px 40px 20px;
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 1px 11px 61px -26px black;
}
.cta-triptych .triptych-item img {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-triptych .triptych-item a {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.2em;
  color: #134170;
  transition: color 0.4s ease;
}
.cta-triptych .triptych-item a:hover {
  text-decoration: none;
  color: #038CFE;
}
.cta-triptych .triptych-item p {
  color: #231f20;
}

.preschool-cta {
  padding: 2em 15px 3.4em;
}
.preschool-cta .container {
  background: #008296;
  max-width: 868px;
  padding: 20px 20px;
  border-radius: 20px;
}
.preschool-cta img {
  max-width: 120px;
  margin: 0 auto;
}
.preschool-cta a {
  color: white;
}
.preschool-cta a h2 {
  margin-top: 0.5em;
}
.preschool-cta a p {
  font-size: 1.1em;
}

.criteria-listing .criteria {
  border-top: 6px solid #038CFE;
  position: relative;
  max-width: 475px;
  margin: 80px auto 20px;
  padding: 0px 30px;
}
.criteria-listing .criteria img {
  width: 190px;
  height: 100px;
  margin: -55px auto 20px;
}
.criteria-listing .alt-button {
  margin-top: 40px;
  min-width: 272px;
  line-height: 1.2em;
}
.criteria-listing h1 {
  font-weight: 600;
  color: #134170;
}
.criteria-listing h2 {
  font-size: 2em;
  font-weight: 600;
  color: #134170;
  margin-bottom: 0.75em;
}
.criteria-listing ul {
  font-size: 1.1em;
  padding-left: 20px;
}
.criteria-listing ul li {
  margin-bottom: 14px;
}

.how-it-works {
  background-color: #f3f3f8;
}
.how-it-works .content-container p {
  font-size: 1em;
}
.how-it-works .alt-button {
  color: white;
  min-width: 230px;
  text-align: center;
  line-height: 1.2em;
  margin-top: 20px;
}

.community-impact {
  padding: 4em 0;
}

.nav-footer {
  background: #134170;
}
.nav-footer .nav-link {
  color: white;
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 18px;
  padding: 0.5em 0 0.75em;
}
.nav-footer .footer-nav .button {
  margin-top: 20px;
  padding: 0.25em 1.75em;
}
.nav-footer .footer-nav .americorps-logo {
  float: right;
  width: 91px;
  height: 62px;
}
.nav-footer .social-link {
  color: white;
  display: inline-block;
  width: 37px;
  height: 37px;
  border: 1px solid white;
  text-align: center;
  padding: 4px 0px;
  border-radius: 50%;
  font-size: 19px;
}
.nav-footer .social-link:hover {
  color: #00ADEE;
  border: 1px solid #00ADEE;
}
.nav-footer .social-link:hover i {
  color: #00ADEE;
}

.newsletter-signup {
  color: white;
}
.newsletter-signup form input {
  width: 100%;
  border-radius: 6px;
  padding: 8px 10px;
  -webkit-appearance: none;
  appearance: none;
  border: 0px;
  border: 2px solid white;
}
.newsletter-signup form button {
  width: 100%;
  border-radius: 6px;
  padding: 8px 0;
  -webkit-appearance: none;
  appearance: none;
  border: 0px;
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  background: #134170;
  color: white;
}
.newsletter-signup form button:hover {
  background: #038CFE;
}
.newsletter-signup p {
  font-size: 14px;
  letter-spacing: 300;
}
.newsletter-signup .title {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-size: 1.75em;
  margin-bottom: 10px;
  line-height: 1.2em;
}

.contact-legal {
  background: #01284F;
}
.contact-legal .copyright {
  color: white;
  font-size: 14px;
  margin-bottom: 30px;
}
.contact-legal .copyright img, .contact-legal .copyright svg {
  margin-bottom: 14px;
}
.contact-legal .copyright p {
  margin-bottom: 0px;
}
.contact-legal .copyright a {
  color: white;
}
.contact-legal .contact-method {
  color: white;
  position: relative;
  font-size: 14px;
  padding-left: 100px;
  margin-bottom: 15px;
}
.contact-legal .contact-method strong {
  position: absolute;
  left: 0;
  top: 0;
}
.contact-legal .legal {
  font-size: 14px;
}
.contact-legal .legal a {
  color: white;
  display: block;
  margin-bottom: 15px;
}
.contact-legal .legal p {
  margin-top: 35px;
  color: white;
}
@media screen and (max-width: 767px) {
  .contact-legal .contact-method {
    width: 100%;
    max-width: 280px;
    margin: 0px auto 15px;
    padding-left: 75px;
  }
  .contact-legal .legal {
    margin-top: 30px;
  }
}

.subpage-header {
  background: #018FD5;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-size: auto 100%;
  padding: 40px 0;
  color: white;
  text-shadow: 0 0 6px #016596;
}
.subpage-header.image-header img {
  border-radius: 8px;
}
.subpage-header h1 {
  font-weight: 600;
  display: inline-block;
}
.subpage-header p {
  max-width: 680px;
}
.subpage-header.white-header {
  background-color: white;
  color: #134170;
  text-shadow: 0px 0px;
}
.subpage-header.white-header .breadcrumb a {
  color: #008296;
}
.subpage-header.provider-header {
  background-color: #683db8;
}
.subpage-header.program-header {
  position: relative;
}
.subpage-header.program-header .program-map {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 49%;
  width: 48%;
  max-width: 650px;
  max-height: 100%;
  max-height: calc(100% - 14px);
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.4));
}
.subpage-header.program-header .map-info {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 100;
}
.subpage-header.program-header .map-info a {
  color: #FFD900;
}
.subpage-header .title-location.d-block {
  font-size: 1.3rem;
  font-family: "Work Sans";
}
.subpage-header.large-text-header p {
  max-width: 780px;
}
.subpage-header .print-page {
  float: right;
}
.subpage-header .print-page .print-button {
  color: #134170;
  border: 2px solid currentColor;
  border-radius: 6px;
  display: inline-block;
  padding: 8px 18px;
  text-transform: uppercase;
}
.subpage-header .print-page .print-button:hover {
  background: #134170;
  color: white;
  text-decoration: none;
}
.subpage-header .print-page .print-button span {
  display: inline-block;
  vertical-align: middle;
}
.subpage-header .print-page .print-button .svg {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  margin-left: 4px;
}
@media screen and (max-width: 991px) {
  .subpage-header .print-page {
    float: none;
  }
}

.header-tag {
  background: #24a7e9;
  display: inline-block;
  padding: 10px 21px;
  text-align: center;
  border-radius: 6px;
}
.header-tag .svg, .header-tag p {
  display: inline-block;
  vertical-align: middle;
}
.header-tag p {
  margin-bottom: 0px;
  padding: 10px;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.5em;
  letter-spacing: 0.02em;
}

.tab-section {
  padding: 40px 0;
}
.tab-section .tab-container {
  background: white;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0px 0px 34px -22px black;
}
.tab-section .tab-container .back-link {
  color: #D12B0C;
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.tab-section .tab-container .back-link .svg {
  transform: rotate(180deg);
}
.tab-section .tabs {
  border-bottom: 3px solid #F3F3F9;
}
.tab-section .tabs .tab {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.4em;
  line-height: 1em;
}
.tab-section .tabs .tab a {
  color: #008296;
  padding: 9px 21px;
  display: inline-block;
}
.tab-section .tabs .tab a .svg {
  transform: rotate(180deg);
}
.tab-section .tabs .tab a:focus {
  outline: 0;
}
.tab-section .tabs .tab.active {
  font-weight: 700;
  background: #EBF3F3;
}
.tab-section .tab-pane {
  padding: 10px 0px;
}
.tab-section .tab-pane:focus {
  outline: 0px;
}
.tab-section .tab-pane h2 {
  font-size: 1.6em;
  font-weight: 700;
  color: #134170;
}
.tab-section .tab-pane hr {
  margin: 30px 0;
  border-top: 2px solid #dadada;
}
.tab-section .tab-pane .button {
  color: #134170;
}
.tab-section .tab-pane .button:hover {
  color: white;
  background: #134170;
  border: 2px solid #134170;
}
.tab-section .tab-header-img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.tab-section .sidebar-map {
  background: #134170;
  padding: 10% 10px;
  text-align: center;
  border-radius: 10px;
}
.tab-section .sidebar-map svg {
  color: white;
  max-width: 300px;
  width: 88%;
}
@media screen and (min-width: 1200px) {
  .tab-section .tab-container {
    max-width: 1110px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .tab-section .nav {
    display: block;
  }
  .tab-section .nav .tab {
    display: block;
  }
  .tab-section .back-link {
    float: right;
  }
}

.breadcrumb {
  font-family: "Pragati Narrow", sans-serif;
  background: transparent;
  padding: 0px;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 1.1em;
}
.breadcrumb a {
  color: white;
  letter-spacing: 0.1em;
}
.breadcrumb .svg {
  margin-left: 6px;
  width: 17px;
  height: 10px;
  margin-bottom: 2px;
}
.breadcrumb .svg path {
  fill: white !important;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  padding: 0px 0px;
}

.tab-pane .program-listing .program {
  margin: 5px 0px 20px;
}
.tab-pane .program-listing img {
  border-radius: 8px;
}

.divider-heading {
  background: #EBF3F3;
  border-radius: 6px;
  margin: 0 0 30px;
}
.divider-heading h1 {
  color: #134170;
  font-size: 1.2em;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  padding: 12px 22px;
  margin-bottom: 0px;
}

.resource-link {
  position: relative;
  padding-left: 35px;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.resource-link a:hover {
  text-decoration: none;
}
.resource-link a:hover .link-type {
  color: #038CFE;
}
.resource-link a:hover .link-text {
  color: #038CFE;
}
.resource-link a:hover .link-text .link-tag {
  color: #134170;
}
.resource-link.simple-link {
  padding-bottom: 0px;
}
.resource-link.simple-link .link-text {
  font-weight: 400;
  margin-bottom: 0px;
}
.resource-link .fas {
  position: absolute;
  left: 2px;
  width: 20px;
  background: #008296;
  color: white;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  top: 3px;
}
.resource-link .link-text {
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: 600;
  color: #134170;
}
.resource-link .link-tag {
  display: inline-block;
  font-weight: 400;
  padding: 4px 8px;
  border: 1px solid #134170;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  line-height: 1em;
  margin-left: 4px;
}
.resource-link .link-type {
  color: #D12B0C;
  position: absolute;
  bottom: 0px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tab-sidebar .contact-method {
  font-size: 0.9em;
}
.tab-sidebar .sidebar-pagelink {
  display: table;
  width: auto;
  background: #008296;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
}

.social-media-link {
  background: #008296;
  color: white;
  width: 25px;
  height: 26px;
  display: inline-block;
  text-align: center;
  padding: 3px;
  font-size: 15px;
  border-radius: 50%;
}
.social-media-link:hover {
  background: #038CFE;
  color: white;
}

.search-bar {
  background: #134170;
  color: white;
  padding: 20px 0px;
}
.search-bar.light-bar {
  background: #018FD5;
}
.search-bar form input, .search-bar form select {
  width: 100%;
  padding: 8px 16px;
  font-size: 15px;
  border: 0px;
  border-radius: 6px;
  margin: 10px 0;
}
.search-bar .red-button {
  background: #D12B0C;
  border: 0px;
  appearance: none;
  color: white;
  margin: 10px 0;
  width: 90%;
}

.program-circle-icon {
  width: 100%;
  max-width: 220px;
  margin: 0px auto;
  border-radius: 50%;
}

.program-listing h1, .program-listing h2 {
  font-weight: 600;
  color: #134170;
}
.program-listing .program {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 0px 22px -15px black;
}
.program-listing .program .category {
  font-family: "Pragati Narrow", sans-serif;
  color: #7b7b7b;
  font-size: 18px;
  margin-bottom: 0px;
  letter-spacing: 0.05em;
}
.program-listing .program .program-name {
  font-family: "Pragati Narrow", sans-serif;
  color: #134170;
  font-weight: 600;
  font-size: 1.5em;
}
.program-listing .program .summary {
  font-size: 14px;
  margin-bottom: 0px;
}

.program-map path {
  fill: #134170;
}
.program-map path:hover {
  fill: #038CFE;
}
.program-select {
  background: white;
  border-radius: 8px;
}
.program-select .select-heading {
  background: #134170;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 1.1em;
  font-weight: 600;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.program-select .select-heading p {
  margin-bottom: 0px;
}
.program-select .select-content {
  padding: 20px;
}
.program-select .select-content .legend {
  font-size: 14px;
  text-align: center;
}
.program-select .select-content .legend span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F6920A;
  display: inline-block;
}
.program-select .select-content .program-toggle {
  padding: 10px 20px;
  border-radius: 6px;
}
.program-select .select-content .program-toggle.active {
  background: #EBF3F3;
}
.program-select .select-content .program-toggle.active p {
  cursor: initial;
  font-weight: 600;
  margin-bottom: 3px;
}
.program-select .select-content .program-toggle.active a {
  font-size: 0.9em;
  line-height: 1em;
}
.program-select .select-content .program-toggle a {
  font-size: 0px;
  color: #D12B0C;
  font-size: 0px;
  display: block;
  line-height: 0px;
  text-transform: uppercase;
  font-weight: 600;
}
.program-select .select-content .program-toggle p {
  margin-bottom: 0px;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.2em;
  cursor: pointer;
  color: #134170;
}
.program-intro img {
  display: inline-block;
  min-width: 74px;
  max-width: 130px;
}
.program-intro h2 {
  font-weight: 600;
  color: #134170;
  margin-bottom: 0px;
}
.program-intro p {
  margin-bottom: 0px;
}
.program-intro .contact-method {
  margin: 4px auto;
}
@media screen and (max-width: 575px) {
  .program-intro .contact-method {
    text-align: left;
    display: inline-block;
    max-width: 320px;
  }
}

.program-details h2 {
  font-weight: 600;
  color: #134170;
}
.program-details .border-line {
  position: absolute;
  width: 1px;
  left: 50%;
  height: 100%;
  background: #eaeaea;
}
.program-details .program-detail {
  border: 3px solid #dce2e8;
  padding: 20px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}
.program-details .program-detail h3 {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  color: #134170;
}
.program-details .program-detail p {
  font-size: 14px;
  margin-bottom: 0px;
}
.program-details .program-detail img, .program-details .program-detail svg {
  margin: 10px 0;
  max-width: 100px;
}

.stat-highlight {
  color: white;
  overflow: hidden;
}
.stat-highlight h2 {
  font-weight: 600;
  margin-bottom: 30px;
}
.stat-highlight .wide-container {
  position: relative;
  padding: 20px;
  background: #008296;
  background: -moz-linear-gradient(90deg, #008296 32%, #134170 32%);
  background: -webkit-linear-gradient(90deg, #008296 32%, #134170 32%);
  background: linear-gradient(90deg, #008296 32%, #134170 32%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008296",endColorstr="#134170",GradientType=1);
}
.stat-highlight .wide-container:before {
  content: "";
  position: absolute;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #008296;
  top: 0;
}
.stat-highlight .wide-container:after {
  content: "";
  top: 0;
  position: absolute;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #134170;
}
.stat-highlight p {
  margin-bottom: 0px;
}
.stat-highlight p span {
  display: inline-block;
  border-bottom: 2px dotted white;
}
.stat-highlight .stat-intro {
  max-width: 360px;
  margin: 40px auto;
  padding: 20px;
}
.stat-highlight .number {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  line-height: 1em;
}
.stat-highlight .stat-block {
  max-width: 320px;
  margin: 0 auto;
  background: #2c547d;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .stat-highlight .wide-container {
    background: #134170;
    filter: initial;
  }
  .stat-highlight .stat-intro {
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: #008296;
  }
}

.parent-resources {
  background-color: #d2eceb;
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 20%;
  position: relative;
}
.parent-resources .white-bar {
  position: absolute;
  width: 100%;
  height: 40px;
  background: white;
  left: 0;
  top: 0;
}

.program-card {
  box-shadow: 1px 2px 15px -8px;
  border-radius: 12px;
}
.program-card .card-head {
  background: #f3f3f9;
  padding: 4px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.program-card .card-head img {
  width: 100%;
  max-width: 230px;
  display: block;
  margin: 10px auto;
}

.resource-card {
  background: white;
  box-shadow: 1px 1px 11px -6px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.resource-card .card-top {
  background: #008296;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.resource-card .card-top img {
  width: 72px;
  height: 72px;
}
.resource-card .card-top .top-text {
  padding: 10px 15px;
}
.resource-card .card-top .top-text h2 {
  margin-bottom: 0px;
  font-size: 1.75em;
}
.resource-card .card-top .top-text p {
  font-size: 0.9em;
  margin-bottom: 0px;
}
.resource-card.grant-card {
  padding-bottom: 20px;
}
.resource-card.grant-card .card-top {
  background: #134170;
  padding: 1.25rem;
}
.resource-card.grant-card .card-top h2 {
  font-size: 1.75em;
  margin-bottom: 0px;
  font-weight: 600;
}
.resource-card .icon-detail {
  padding-left: 50px;
  position: relative;
  margin-bottom: 20px;
}
.resource-card .icon-detail img, .resource-card .icon-detail .svg {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 36px;
  height: 36px;
}
.resource-card .learn-more {
  position: absolute;
  bottom: 20px;
  color: #D12B0C;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.resource-card .learn-more:hover {
  text-decoration: none;
  color: #038CFE;
}

.impact-stories h1 {
  color: #134170;
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
}

.impact-stories .bx-wrapper {
  box-shadow: 0px 0px;
}
.impact-stories .bx-wrapper .bx-pager.bx-default-pager a {
  background: #a5a5a5;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.impact-stories .bx-wrapper .bx-pager.bx-default-pager a:focus, .impact-stories .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #038CFE;
}

.testimonial-slider p {
  margin-bottom: 30px;
}
.testimonial-slider .attribution {
  font-size: 1.1em;
  margin-bottom: 0px;
  color: #134170;
}
.testimonial-slider .testimonial-image {
  width: 100%;
  display: block;
  max-width: 220px;
  margin: 0px auto 40px;
  border-radius: 14px;
}
.testimonial-slider .slide {
  padding-top: 30px;
  box-shadow: 0px;
  border: 0px;
}

.community-impact {
  background: #008296;
}
.community-impact h2 {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
}
.community-impact .stat-block {
  background: #339bab;
  color: white;
  padding: 40px 30px;
}
.community-impact .stat-block p {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 24px;
  max-width: 213px;
  margin: 0 auto;
  line-height: 1.1em;
}
.community-impact .stat-block p span {
  display: inline-block;
  border-bottom: 2px dotted white;
}
.community-impact .stat-block .large-stat {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
  max-width: 300px;
}

.grant-opening h1 {
  font-weight: 600;
  color: #134170;
}
.grant-opening .breadcrumb a {
  color: #008296;
}
.grant-opening .breadcrumb .svg path {
  fill: #008296 !important;
}
.grant-opening .icon-details {
  padding: 16px 0px;
}
.grant-opening .icon-detail {
  position: relative;
  padding-left: 90px;
  margin: 20px auto;
}
.grant-opening .icon-detail strong {
  color: #231F20;
}
.grant-opening .icon-detail .svg, .grant-opening .icon-detail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: auto;
}

section.calculator .calculator-bg {
  background: #134170;
}
section.calculator h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}
section.calculator input, section.calculator select {
  width: 100%;
  padding: 8px 16px;
  font-size: 18px;
  border: 0px;
  border-radius: 6px;
  margin: 10px 0;
}
section.calculator .results {
  background: #fff;
  padding: 10px 10%;
  border-radius: 6px;
  margin: 10px 0;
  font-size: 20px;
}
section.calculator .results button {
  color: #fff;
  background: #D12B0C;
  border: 0px;
  border-radius: 6px;
  font-family: "Pragati Narrow", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  padding: 5px;
}

#result-line {
  display: none;
  margin-top: 10px;
}

.grey-white {
  background: #f3f3f9;
  background: -moz-linear-gradient(180deg, #f3f3f9 50%, #ffffff 50%);
  background: -webkit-linear-gradient(180deg, #f3f3f9 50%, #ffffff 50%);
  background: linear-gradient(180deg, #f3f3f9 50%, #ffffff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f9",endColorstr="#ffffff",GradientType=1);
}

.white-grey {
  background: #f3f3f9;
  background: -moz-linear-gradient(180deg, #ffffff 50%, #f3f3f9 50%);
  background: -webkit-linear-gradient(180deg, #ffffff 50%, #f3f3f9 50%);
  background: linear-gradient(180deg, #ffffff 50%, #f3f3f9 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f3f3f9",GradientType=1);
}

.apply {
  background-color: #134170;
  background-repeat: no-repeat;
  background-position: center right;
  color: white;
  padding: 3em 3rem;
  border-radius: 14px;
  box-shadow: 0px 0px 17px -6px black;
}
.apply h1 {
  font-weight: 600;
  margin-bottom: 20px;
}
.apply p {
  margin-bottom: 20px;
}
.apply a {
  color: #FFD900;
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-right: 20px;
}
.apply a img, .apply a .svg {
  margin-left: 12px;
}

.accordion {
  margin-bottom: 30px;
}
.accordion .accordion-title {
  background: #F3F3F9;
  padding: 25px 30px;
  border-bottom: 5px solid #038CFE;
  position: relative;
  cursor: pointer;
  padding-right: 60px;
}
.accordion .accordion-title h2 {
  margin-bottom: 0px;
  font-weight: 200;
  font-size: 2em;
  letter-spacing: 0.03em;
}
.accordion .accordion-title img {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 26px;
  transform: translateY(-50%);
}
.accordion .accordion-content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.35s ease-out;
  background: #f5f5f5;
}
.accordion .accordion-content li {
  margin-bottom: 20px;
}
.accordion .accordion-content .content-container {
  padding: 30px;
  border-bottom: 1px solid #d6d6d6;
}
.accordion .accordion-content .content-container ul {
  padding-left: 20px;
}
.accordion.active .accordion-title img {
  transform: translateY(-50%) rotate(180deg);
}
.accordion.active .accordion-content {
  max-height: 4000px;
  transition: all 0.3s ease;
}

.custom-dropdown {
  position: relative;
  display: block;
  width: 260px;
  margin-top: 30px;
}
.custom-dropdown:after {
  content: "▼";
  font-size: 13px;
  color: #D12B0C;
  text-shadow: 0 0 0 black;
  position: absolute;
  right: 3px;
  top: 8px;
  z-index: 1;
  text-align: center;
  width: 10%;
  pointer-events: none;
}

.custom-dropdown select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0.5em 1em 0.5em 1em;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  background: white;
  font-weight: 600;
  color: #134170;
  border-radius: 4px;
}

.custom-dropdown select::-ms-expand {
  display: none;
}

.staff h1 {
  color: #134170;
  font-weight: 600;
}

.staff-member {
  color: #231F20;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 30px auto 0;
}
.staff-member:hover {
  color: #00ADEE;
  text-decoration: none;
}
.staff-member.active {
  color: #038CFE;
}
.staff-member.active img {
  padding: 5px;
  background: #038CFE;
}
.staff-member img {
  border-radius: 16px;
  margin-bottom: 10px;
}
.staff-member .name {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.7em;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.1em;
}
.staff-member .title {
  line-height: 1.1em;
}

.extended-bio {
  background: #F3F3F9;
  padding: 20px;
}
.extended-bio .name {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 2em;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.1em;
}
.extended-bio .title {
  line-height: 1.1em;
  margin-bottom: 0px;
}
@media screen and (min-width: 992px) {
  .extended-bio .border-md-right {
    padding-top: 13px;
    padding-bottom: 13px;
    border-right: 1px solid #038CFE;
  }
  .extended-bio .contact-method {
    padding-left: 40px;
  }
}

.contact-method.staff-contact {
  margin-bottom: 16px;
  margin-top: 16px;
}
.contact-method.staff-contact .contact-icon {
  position: absolute;
  left: 6px;
  top: 50%;
  background: #008296;
  color: white;
  width: 22px;
  text-align: center;
  height: 22px;
  padding-top: 3px;
  transform: translateY(-50%);
  font-size: 10px;
  border-radius: 50%;
}

.single-bio-intro .back {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Pragati Narrow", sans-serif;
  letter-spacing: 0.05em;
  color: #134170;
}
.single-bio-intro .back:hover {
  color: #038CFE;
  text-decoration: none;
}
.single-bio-intro h1 {
  font-weight: 600;
  color: #134170;
  line-height: 1.1em;
  margin-bottom: 0px;
}
.single-bio-intro p {
  color: #134170;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 20px;
}
.single-bio-intro .contact-method.staff-contact {
  margin-bottom: 21px;
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .single-bio-intro .container {
    max-width: 320px;
  }
}

.back-link a {
  color: #134170;
  font-family: "Pragati Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.back-link a .svg {
  margin-right: 10px;
}
.back-link a:hover {
  text-decoration: none;
  color: #038CFE;
}

.report-link {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 0 12px -4px;
}
.report-link h1 {
  font-size: 2em;
  font-weight: 600;
  max-width: 690px;
  color: #134170;
}
.report-link a:hover {
  text-decoration: none;
  color: #038CFE;
}
.report-link a:hover h1, .report-link a:hover .read-more {
  color: #038CFE;
}
.report-link .read-more {
  position: absolute;
  bottom: 0;
  right: 1.5em;
  color: #D12B0C;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.report-link .report-content {
  position: relative;
}
.report-link .report-type {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.3em;
  color: #606060;
}
.report-link .summary {
  margin-bottom: 30px;
  max-width: 692px;
}
.report-link .col-md-3 {
  min-height: 185px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (min-width: 768px) {
  .report-link .col-md-3 {
    min-height: 0px;
    border-right: 1px solid #e2e2e2;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-bottom: 0px;
  }
}

.credit-usage {
  background: #008296;
  color: white;
}
.credit-usage p {
  font-weight: 200;
  margin-bottom: 0px;
  padding-top: 29px;
  padding-bottom: 29px;
}
.credit-usage a {
  color: white;
  font-weight: 600;
}
.credit-usage .row {
  position: relative;
}
.credit-usage .divider {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: white;
  left: 50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .credit-usage .divider {
    width: 90%;
    height: 1px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.blog-info h1 {
  color: #134170;
  font-weight: 600;
  margin: 20px auto;
}
.blog-info .post-info .category {
  color: #00ADEE;
}
.blog-info .post-info .category:before {
  content: "|";
  padding-right: 10px;
  color: #606060;
  padding-left: 8px;
}

.tags {
  color: #828282;
  font-size: 0.9em;
}

.share span {
  color: #134170;
  float: left;
  padding-right: 13px;
}

.author-info .author {
  background: white;
  box-shadow: 0px 0px 19px -10px #231F20;
  border-radius: 8px;
  padding: 20px;
}
.author-info .author img {
  max-width: 160px;
  margin: 0 auto;
}
.author-info .author .name {
  font-family: "Pragati Narrow", sans-serif;
  margin-bottom: 5px;
  color: #134170;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.1em;
}
.author-info .author .title {
  font-family: "Pragati Narrow", sans-serif;
  margin-bottom: 0px;
}
.author-info .author .author-bio {
  margin-bottom: 0px;
  font-size: 0.9em;
}

.research-intro h1 {
  color: #134170;
  font-weight: 600;
}
.research-intro p {
  font-weight: 500;
}

.peer-reviewed h1 {
  font-weight: 600;
}
.peer-reviewed .peer-link {
  padding-bottom: 40px;
}
.peer-reviewed .peer-link .read-more {
  position: absolute;
  bottom: 10px;
  font-family: "Pragati Narrow", sans-serif;
  color: #D12B0C;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.peer-reviewed .peer-link .read-more i {
  font-size: 0.9em;
}

.insights-intro h1 {
  font-weight: 600;
}

.research-request {
  color: white;
  background: #008296;
}

.research-contact {
  background: #2494a5;
  padding: 10px 20px;
}
.research-contact .name {
  margin-bottom: 0px;
  margin-top: 1em;
  font-weight: 600;
  font-size: 1.1em;
}
.research-contact .contact-method {
  font-size: 0.9em;
}
.research-contact .contact-method .contact-icon {
  background: white;
  color: #008296;
}
.research-contact .contact-method a {
  color: white;
}
@media screen and (min-width: 768px) {
  .research-contact .border-md-right {
    border-right: 1px solid white;
  }
}

.bio-holder-2,
.bio-holder-3,
.bio-holder-4 {
  display: none;
}

@media (min-width: 526px) {
  .bio-holder-1 {
    display: none;
  }

  .bio-holder-2 {
    display: block;
  }
}
@media (min-width: 774px) {
  .bio-holder-2 {
    display: none;
  }

  .bio-holder-3 {
    display: block;
  }
}
@media (min-width: 1022px) {
  .bio-holder-3 {
    display: none;
  }

  .bio-holder-4 {
    display: block;
  }
}
.need-infographics .h2 {
  font-size: 2.4em;
  color: #134170;
  font-weight: 700;
  max-width: 980px;
  margin: 0px 0px 8px;
}
.need-infographics p {
  max-width: 1100px;
  margin: 20px auto;
  font-size: 1.1em;
}
.need-infographics .not-ready {
  max-width: 380px;
  margin: 10px auto;
}
.need-infographics .infographic-grid {
  margin: 2em auto;
}
.need-infographics .infographic-grid .col-sm-6 {
  border-bottom: 2px dotted #134170;
}
@media screen and (min-width: 576px) {
  .need-infographics .infographic-grid .col-sm-6:nth-child(3) {
    border-bottom: 0px;
  }
  .need-infographics .infographic-grid .col-sm-6:nth-child(4) {
    border-bottom: 0px;
  }
  .need-infographics .infographic-grid .col-sm-6:nth-child(odd) {
    border-right: 2px dotted #134170;
  }
}

.explore-more {
  background: #f3f3f8;
  border-top: 10px solid #038CFE;
  padding: 20px;
}
.explore-more .explore-title {
  position: relative;
  padding-left: 50px;
}
.explore-more .explore-title img {
  position: absolute;
  width: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.explore-more .explore-title h2 {
  font-size: 2.75em;
  font-weight: 600;
  color: #134170;
  letter-spacing: 0.025em;
  margin-bottom: 0px;
}
.explore-more .explore-link {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 530px;
}
.explore-more .explore-link:first-child {
  padding-top: 20px;
}
.explore-more .explore-link p {
  margin-bottom: 0.5em;
}
.explore-more .learn-more {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ec6038;
  font-family: "Pragati Narrow", sans-serif;
}
.explore-more .learn-more span {
  vertical-align: middle;
}
.explore-more .learn-more i {
  display: inline-block;
  font-size: 0.9em;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .explore-more {
    padding: 40px;
  }
  .explore-more .col-md-7 {
    border-left: 1px solid #134170;
  }
  .explore-more .explore-title {
    padding: 20px;
    padding-left: 70px;
  }
  .explore-more .explore-title img {
    width: 50px;
  }
  .explore-more .explore-link {
    padding: 0px 25px;
  }
}

.footnotes {
  padding-top: 30px;
}
.footnotes ol {
  margin-left: 0;
  padding-left: 20px;
  border-top: 3px solid #038CFE;
}
.footnotes ol > li {
  margin-bottom: 20px;
}
.footnotes ol > li:first-child {
  padding-top: 30px;
}

.brain-development {
  font-size: 1em;
}
.brain-development .text-infographic {
  width: 100%;
  max-width: 480px;
  margin: 20px 0;
}

.brain-dev-select {
  max-width: 405px;
  margin: 20px auto;
}

.brain-select path {
  pointer-events: none;
}
.brain-select .color-bar {
  pointer-events: initial;
  cursor: pointer;
}
.brain-select.active path {
  fill: white !important;
}
.brain-select.active .color-bar {
  fill: #f79420 !important;
}

.brain-img {
  display: none;
}
.brain-img.active {
  display: block;
}

.brain-dev-infographic {
  max-width: 440px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .brain-dev-infographic {
    margin-left: auto;
    margin-right: 0px;
  }

  .brain-dev-select {
    margin-left: auto;
    margin-right: 0px;
  }
}
.benefits-infographics p {
  font-size: 2.4em;
  font-weight: 600;
  font-family: "Pragati Narrow", sans-serif;
  line-height: 1.2em;
  color: #134170;
  margin-bottom: -30px;
  position: relative;
  z-index: 9;
}
.benefits-infographics p strong {
  font-weight: 600;
  color: #ec6038;
  font-size: 1.5em;
  display: block;
  padding: 10px 0px;
}
.benefits-infographics img {
  max-width: 200px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 540px) {
  .benefits-infographics p {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
  .benefits-infographics p strong {
    font-size: 1.5em;
  }
}

.more-info .container {
  border-top: 3px dotted #134170;
  padding: 40px 0px;
}
.more-info img {
  max-width: 250px;
  margin: 20px auto;
}
.more-info h1 {
  font-weight: 600;
  color: #134170;
}
.more-info p {
  font-size: 1.5em;
}

.community-info .container {
  background-position: 85% top;
  background-repeat: no-repeat;
  background-size: 40%;
  padding-top: 3em;
  padding-bottom: 3em;
}
.community-info .benefit-infographic {
  margin: 40px 0px 20px;
  max-width: 565px;
  border-top: 3px dotted #134170;
  border-bottom: 3px dotted #134170;
  padding: 20px 0px;
}
@media screen and (max-width: 992px) {
  .community-info .container {
    background-image: none !important;
  }
}

.first-steps-banner {
  background: #940AF6;
  color: white;
  padding: 40px 0px;
  text-align: center;
}
.first-steps-banner p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.first-steps-banner a {
  color: #BDBDBD;
}

.contact button {
  margin-top: 15px;
  margin-bottom: 15px;
}

.provider-page {
  margin: 3em 0px;
  font-size: 1.15em;
}
.provider-page h2 {
  font-weight: 600;
  color: #134170;
}
.provider-page .sub-title {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1.7em;
  color: #0882e8;
  font-weight: 700;
}
.provider-page .address {
  color: #04506d;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.3em;
}
.provider-page .address .phone {
  color: #04506d;
  display: block;
  margin: 10px auto;
}
.provider-page .provider-details {
  margin: 3em auto;
}
.provider-page .provider-details h3 {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 600;
  color: #134170;
  font-size: 1.75em;
}
.provider-page .provider-details p {
  margin-bottom: 0px;
}
.provider-page .provider-details .col-md-6 {
  border-right: 3px dotted #134170;
  padding: 8px 20px;
}
.provider-page .provider-details .col-md-6:last-child {
  border-right: 0px;
  border-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .provider-page .provider-details .col-md-6 {
    border-bottom: 3px dotted #134170;
  }
  .provider-page .provider-details .col-md-6:nth-child(3) {
    border-bottom: 0px;
  }
  .provider-page .provider-details .col-md-6:nth-child(2) {
    border-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .provider-page .provider-details .col-md-6 {
    border-right: 0px;
  }
  .provider-page .provider-details .col-md-6:nth-child(3) {
    border-bottom: 3px dotted #134170;
  }
}
.provider-page .provider-images img {
  display: inline-block;
  margin: 10px 0px;
}
.provider-page .provider-images .bx-wrapper {
  border: none;
  box-shadow: none;
}
.provider-page .provider-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .provider-page .provider-map {
    position: relative;
    padding-top: 45%;
    min-height: 220px;
  }
}
.provider-page .transport-offered h4 {
  margin-bottom: 0;
  font-weight: 600;
  color: #134170;
  font-size: 1.75em;
  display: inline-block;
  vertical-align: middle;
}
.provider-page .transport-offered .transport-icon {
  max-width: 150px;
  display: inline-block;
  vertical-align: middle;
}
.provider-page .transport-offered .transport-icon path, .provider-page .transport-offered .transport-icon circle {
  fill: #134170 !important;
}
.provider-page .license-info {
  border: 2px solid #dddddd;
  border-radius: 2px;
  padding: 20px;
}
.provider-page .license-info span {
  font-weight: 600;
}
.provider-page .license-info .row {
  margin-bottom: 0.75em;
}
.provider-page .license-info .history-link {
  color: #4c86b8;
}
.provider-page .license-info .history-link i {
  color: #134170;
  padding-right: 5px;
}
.provider-page .license-info .dss-link {
  margin-top: 1.2em;
  font-size: 0.9em;
  color: #696969;
  margin-bottom: 0;
}
.provider-page .license-info .dss-link a {
  color: #4f4f4f;
  text-decoration: underline;
}
.provider-page .provider-contact {
  background: #3a8fcf;
  color: white;
  border-radius: 32px;
}
.provider-page .provider-contact h2, .provider-page .provider-contact p, .provider-page .provider-contact a {
  color: white;
}
.provider-page .provider-contact .chat-icon {
  background: #FFD900;
  border-radius: 50%;
  border: 5px solid white;
  max-width: 85px;
  display: inline-block;
  margin-top: -46px;
}
.provider-page .provider-contact .contact-content h2 {
  margin-bottom: 20px;
}
.provider-page .provider-contact .contact-content p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 1.1em;
}
.provider-page .provider-contact .contact-content a {
  font-weight: 600;
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.75em;
}
.provider-page .provider-contact .contact-content-exempt {
  top: 50%;
  width: 100%;
  left: 0;
  margin-bottom: 20px;
}
.provider-page .provider-contact .contact-content-exempt h2 {
  margin-bottom: 20px;
}
.provider-page .provider-contact .contact-content-exempt p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 1.1em;
}
.provider-page .provider-contact .contact-content-exempt a {
  font-weight: 600;
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 992px) {
  .provider-page .provider-contact {
    margin-top: 60px;
  }
  .provider-page .provider-contact .contact-content {
    transform: none;
    position: static;
  }
  .provider-page .provider-contact .contact-content-exempt {
    transform: none;
    position: static;
    margin-bottom: 0px;
  }
}

.associations {
  overflow: hidden;
  margin-bottom: 8px;
}
.associations .sub-title {
  display: block;
  font-size: 1.5em;
}

.association-pills {
  margin-bottom: 8px;
}
.association-pills a {
  text-decoration: none;
}
.association-pills img {
  max-width: 140px;
  display: inline-block;
  background: white;
  border: 3px solid #038CFE;
  border-radius: 9px;
}

.provider-search .dataTables_filter {
  display: none;
}
.provider-search .button i {
  font-size: 0.8em;
  margin-left: 0;
  vertical-align: unset;
}
.provider-search .provider-search-map {
  height: 500px;
}
.provider-search .provider-label {
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 10px;
}
.provider-search .provider-label .label-sub {
  font-weight: normal;
}
.provider-search .table-image {
  max-width: 30%;
  margin: 0 auto;
}

.eligibility-checker .card-title {
  font-size: 2rem;
}
.eligibility-checker .card {
  border: none !important;
}
.eligibility-checker .card-style {
  border: none;
}
.eligibility-checker .btn-primary {
  background: #134170;
  appearance: none;
  border: 0px;
  box-shadow: 0px 0px;
}
.eligibility-checker .progress-row {
  margin-bottom: 20px;
}
.eligibility-checker .progressbar {
  counter-reset: current_step;
  width: 100%;
  list-style-type: none;
  color: #038CFE;
  font-weight: 600;
}
.eligibility-checker .progressbar li {
  float: left;
  width: 20%;
  position: relative;
  text-align: center;
  color: #134170;
}
.eligibility-checker .progressbar li:before {
  content: "";
  counter-increment: current_step;
  width: 40px;
  height: 40px;
  border: 1px solid #bebebe;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 37px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold;
}
.eligibility-checker .progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bebebe;
  top: 20px;
  left: -50%;
  z-index: -1;
}
.eligibility-checker .progressbar li.active:before {
  border-color: #134170;
  background: #134170;
  color: white;
}
.eligibility-checker .progressbar li.active:after {
  background: #134170;
}
.eligibility-checker .progressbar li.active li:after {
  background: #134170;
}
.eligibility-checker .progressbar li.active li:before {
  border-color: #134170;
  background: #134170;
  color: white;
}
.eligibility-checker .progressbar li:first-child:after {
  content: none;
}
.eligibility-checker .programs-services {
  background: #edf4ef;
}
.eligibility-checker .programs-services .container {
  position: relative;
  margin-bottom: 2em;
}
.eligibility-checker .programs-services h2 {
  margin: 30px auto 2em;
}
.eligibility-checker .programs-services .section-title {
  color: #038CFE;
  margin-bottom: 30px;
}
.eligibility-checker .programs-services .col-md-12 {
  position: relative;
  padding-bottom: 50px;
  padding-top: 20px;
  margin-bottom: 30px;
}
.eligibility-checker .programs-services .program-name {
  font-size: 1.6em;
  font-weight: 800;
  color: #134170;
  line-height: 1.2em;
  display: block;
  margin-bottom: 10px;
}
.eligibility-checker .programs-services .learn-more {
  position: absolute;
  bottom: 20px;
  right: 3rem;
  color: #038CFE;
}
@media screen and (min-width: 768px) {
  .eligibility-checker .programs-services .md-border {
    position: absolute;
    height: 100%;
    background: #bbbbbb;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.subpage-header.summit-header p {
  max-width: 608px;
}

.summit-hero {
  background-color: #f7f7ee;
  background-size: 56%;
  background-position: 106% 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .summit-hero {
    background-image: none !important;
  }
}

.registration-banner {
  background: #86b53c;
}
.registration-banner .white-text {
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  color: white;
}

.summit-about h2 {
  color: #075e7d;
  font-family: "Work Sans", sans-serif;
  font-size: 2.2em;
  font-weight: 600;
}

.keynote {
  background: #3595ad;
}
.keynote .keynote-title {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 555px;
  margin: 0 auto 11px;
}
.keynote .keynote-title h2 {
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 2em;
  display: inline-block;
  font-weight: 600;
  background: #3595ad;
  padding: 10px;
}
.keynote .container {
  max-width: 740px;
}
.keynote .container p {
  text-align: center;
  color: white;
  font-size: 1.4em;
  font-weight: 500;
  margin-top: 20px;
}
.keynote .container img {
  width: 100%;
  max-width: 310px;
  display: block;
  margin: 12px auto 0px;
}

.children-champ {
  background-size: cover;
  background-position: bottom right;
}
.children-champ .container {
  position: relative;
}
.children-champ .container > img {
  position: absolute;
  width: 120px;
  bottom: 0px;
  left: -10px;
  z-index: 2;
}
.children-champ .col-md-7 img {
  max-width: 130px;
  margin: 20px auto 33px;
}
.children-champ h2, .children-champ p {
  font-size: 2.1em;
  font-family: "Work Sans", sans-serif;
  color: #075e7d;
  margin: 10px auto 20px;
  max-width: 400px;
  font-weight: 400;
}
.children-champ p {
  font-weight: 600;
}

.sponsors .sponsor-level {
  max-width: 199px;
  margin: 50px auto 20px;
}
.sponsors img {
  margin-bottom: 10px;
}

.summit-prefooter {
  background: #dceae5;
}
.summit-prefooter .container {
  padding: 30px 0;
  max-width: 540px;
}

.base-resources h2 {
  font-weight: 600;
}
.base-resources h3 {
  font-size: 1.7rem;
  font-weight: 600;
}
.base-resources .base-resource {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.base-resources .base-resource .read-more {
  position: absolute;
  width: 100%;
  display: flex;
  left: 0;
  bottom: 0px;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #D12B0C;
}
.base-resources .base-resource .read-more img {
  margin-left: auto;
  margin-right: 20px;
}

.top-resources {
  background: #018FD5;
}
.top-resources h2 {
  color: white;
  font-weight: 600;
}
.top-resources .top-resource-card {
  background: white;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.top-resources .top-resource-card .resource-top {
  background: #134170;
  color: white;
  padding: 15px 25px;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
}
.top-resources .top-resource-card .resource-top p {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 1.1em;
}
.top-resources .top-resource-card .resource-bottom {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-resources .top-resource-card .resource-bottom p {
  flex: 1;
}
.top-resources .top-resource-card .read-more {
  display: flex;
}
.top-resources .top-resource-card .read-more span {
  text-transform: uppercase;
  font-weight: 600;
  color: #D12B0C;
}
.top-resources .top-resource-card .read-more img {
  margin-left: auto;
}

.video-section {
  background: #038cfe;
}

.interest-sessions {
  background: #038CFE;
}
.interest-sessions .blog-post {
  color: white;
}
.interest-sessions .blog-post a {
  color: #134170;
}

.job-posting .small-title {
  letter-spacing: 0.01em;
  text-transform: none;
}
.job-posting .contact {
  text-transform: uppercase;
}
.job-posting h3 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #134170;
  margin-bottom: 0.25em;
  margin-top: 30px;
}
.job-posting hr {
  border-top: 1px solid #231f20;
  margin: 30px 0;
}
.job-posting ul {
  padding-left: 20px;
}

.job-cards {
  background: #f2f2f2;
}
.job-cards .job-card {
  background: white;
  border-radius: 16px;
}
.job-cards .job-card .job-card-head, .job-cards .job-card .job-card-body {
  padding: 15px 25px;
}
.job-cards .job-card .job-card-head ul, .job-cards .job-card .job-card-body ul {
  padding-left: 20px;
}
.job-cards .job-card .job-card-head ul li, .job-cards .job-card .job-card-body ul li {
  margin-bottom: 10px;
}
.job-cards .job-card .job-card-head {
  padding: 15px 25px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.job-cards .job-card .job-card-head.blue-bg {
  background: #47abff;
}
.job-cards .job-card .job-card-head.yellow-bg {
  background: #f6ca4c;
}
.job-cards .job-card .job-card-head.green-bg {
  background: #92c759;
}
.job-cards .job-card .job-card-head h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #134170;
  margin-bottom: 0px;
}

.job-posting-section h3 {
  margin-bottom: 25px;
}
.job-posting-section .job-post a {
  font-weight: 600;
  font-size: 1.05em;
}

.job-table th {
  font-size: 1.2em;
  text-transform: uppercase;
  color: #4f4f4f;
  letter-spacing: 0.05em;
  border-top: 0px;
}
.job-table td {
  font-size: 1.1em;
}
.job-table a {
  font-weight: 600;
}
.job-table .location {
  font-weight: 600;
}
.job-table .city-state {
  font-size: 0.9em;
}

.provider-compare .card-top {
  position: relative;
}

.provider-compare .card-top h2 {
  font-size: 1.65rem;
  font-weight: 600;
  padding-right: 30px;
}

.provider-compare .card-top .remove {
  position: absolute;
  right: 15px;
  top: 9px;
  font-size: 24px;
  line-height: 1em;
  cursor: pointer;
}

.provider-compare .card-info .association-pill img {
  max-width: 100px;
  display: inline-block;
  background: white;
  border: 2px solid #038CFE;
  border-radius: 9px;
  margin-bottom: 10px;
}
.provider-compare .card-info .card-contact {
  font-weight: 600;
  font-size: 1.1rem;
}
.provider-compare .card-info .card-detail strong {
  display: block;
}

.provider-compare .card-footer {
  padding: 0px;
}

.provider-compare .card {
  border: 3px solid #038CFE;
}

.provider-compare .card-footer a {
  display: block;
  width: 100%;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 600;
  background: #028fd6;
  color: white;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.provider-compare .card-footer a:hover {
  background: #940AF6;
}

@media screen and (min-width: 768px) {
  .section-ctas a:nth-child(even):before {
    content: "";
    position: absolute;
    right: 100%;
    background: #DAE2E2;
    height: calc(100% + 12px);
    width: 2px;
    top: 0;
    z-index: 1;
  }
  .section-ctas a:nth-child(even):after {
    content: "";
    position: absolute;
    left: 100%;
    background: #DAE2E2;
    height: calc(100% + 12px);
    width: 2px;
    top: 0;
    z-index: 1;
  }
}

/*# sourceMappingURL=main.css.map */
