@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300&family=Spartan:wght@300;400;500;700;800&display=swap");
.lavender-bg {
  background-color: #f3f0fe;
}

body {
  color: #43434B;
  font-family: "Spartan", sans-serif;
  font-size: 16px;
}
body h1 {
  font-size: 3rem;
}
body h2 {
  font-size: 2.1rem;
}
body h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  body h1 {
    font-size: 2.25rem;
  }
  body h2 {
    font-size: 1.75rem;
  }
  body h3 {
    font-size: 1.45rem;
  }
}

a {
  color: #0D6084;
}

img {
  max-width: 100%;
}

.large-text {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.58em;
}
@media screen and (max-width: 767px) {
  .large-text {
    font-size: 1.05em;
  }
}

.skip-to-content-link {
  background: #e77e23;
  height: 30px;
  left: 50%;
  padding: 8px;
  position: absolute;
  transform: translateY(-100%) translateX(-50%);
  transition: transform 0.3s;
}

.skip-to-content-link:focus {
  transform: translateY(0%) translateX(-50%);
}

.button {
  border-radius: 40px;
  padding: 0.6em 2em;
  display: inline-block;
  line-height: 1em;
}
.button:hover {
  text-decoration: none;
}
.button.purple-button {
  background: #7875EA;
  color: white;
}
.button.purple-button:hover {
  background: #4e4bc8;
}

.custom-dropdown {
  width: 100%;
  max-width: 280px;
  text-align: left;
}
.custom-dropdown .dropdown-toggle {
  width: 100%;
  text-align: left;
  font-size: 0.9em;
  line-height: 1em;
  padding: 10px 15px;
}
.custom-dropdown .dropdown-toggle:after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  padding: 0px;
  background: transparent;
  text-indent: -9999px;
  transform: rotate(43deg) translateY(-50%);
  border-width: 1px 1px 0 0;
  border-color: #757575;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  vertical-align: middle;
  float: right;
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -1px;
}
.custom-dropdown .dropdown-toggle:hover {
  background: #0D6084;
  border-color: #0D6084;
}
.custom-dropdown .dropdown-toggle:hover:after {
  border-color: white;
}
.custom-dropdown.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #0D6084;
  border-color: #0D6084;
}
.custom-dropdown.show > .btn-secondary.dropdown-toggle:after {
  border-color: white;
}
.custom-dropdown .dropdown-menu {
  width: 100%;
}

.dropdown-toggle {
  background: white;
  border: 2px solid #BDBDBD;
  color: #757575;
  font-size: 15px;
}

.breadcrumb {
  background-color: transparent;
  padding: 10px 0px;
}
.breadcrumb .breadcrumb-item {
  font-size: 13px;
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}
.breadcrumb .breadcrumb-item a, .breadcrumb .breadcrumb-item span {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-item a {
  color: #0D6084;
}
.breadcrumb .breadcrumb-item span {
  color: #4F4F4F;
}
.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  display: inline-block;
  font-family: "Roboto Condensed";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
}

.accordions .card {
  border: 2px solid #38ACEE;
  border-radius: 12px;
  margin-bottom: 12px;
  max-width: 720px;
}
.accordions .card-header {
  border-bottom: 0px;
  background: transparent;
}
.accordions .card-header .btn {
  padding: 0px;
  color: #0D6084;
  font-size: 1em;
}
.accordions .card-header h3 {
  position: relative;
  padding-right: 24px;
  font-size: 1.22em;
  font-weight: 500;
}
.accordions .card-header h3 .svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 21px;
  height: 14px;
}
.accordions .card-header h3 .svg path {
  stroke: #0D6084 !important;
}
.accordions .card-header .collapsed .svg {
  transform: translateY(-50%);
}
.accordions .card-body {
  padding-top: 0px;
}

@media (min-width: 992px) {
  .container {
    max-width: 986px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
.alert-message {
  background: #03679F;
  padding: 8px 15px;
  text-align: center;
}
.alert-message a {
  color: white;
  font-size: 1.1em;
}
.alert-message a:hover {
  text-decoration: none;
}
.alert-message a img, .alert-message a svg, .alert-message a p {
  display: inline-block;
  vertical-align: middle;
  margin: 2px 2px;
}
.alert-message a p {
  margin-bottom: 0px;
}

.navigation {
  background: #023450;
  padding: 10px 0px;
  position: relative;
}
.navigation div[class*=col-] {
  position: static;
}
.navigation .logo {
  max-width: 100%;
}
.navigation .main-nav {
  list-style-type: none;
  text-align: center;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-left: -15px;
  margin-right: -15px;
}
.navigation .nav-item {
  display: inline-block;
}
.navigation .nav-item .nav-title {
  color: white;
  cursor: pointer;
  font-family: "Spartan", sans-serif;
  font-size: 14px;
  margin: 0px 13px;
}
.navigation .nav-item .nav-title .svg {
  margin-left: 4px;
}
.navigation .nav-item .nav-title.section-active .svg {
  transform: rotate(180deg);
}
.navigation .desktop-search {
  display: inline-block;
  margin-left: 16px;
}
.navigation .mega-nav {
  background-color: #023450;
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 3;
  padding: 0px 0px;
  display: none;
  overflow: hidden;
}
.navigation .mega-nav > .container {
  padding: 3em 15px;
}
.navigation .mega-nav ul {
  text-align: left;
  list-style-type: none;
}
.navigation .mega-nav a {
  font-size: 1.4em;
  color: white;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin-left: 1.2em;
  text-indent: -1.2em;
  vertical-align: top;
  margin-bottom: 0.6em;
  letter-spacing: 0.025em;
}
.navigation .mega-nav .submenu {
  list-style-type: circle;
  color: #38ACEE;
  font-size: 16px;
}
.navigation .mega-nav .submenu li {
  line-height: 26px;
}
.navigation .mega-nav .submenu a {
  color: white;
  font-size: 1.1em;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: initial;
}
.navigation .appointment-button {
  background: #4e4bc8;
  font-size: 14px;
  padding: 0.6em 1.5em;
}
.navigation .appointment-button:hover {
  background: #3d3ab7;
}
@media screen and (max-width: 1199px) {
  .navigation .button {
    padding: 0.7em 1.25em;
  }
}

.desktop-search {
  position: relative;
}
.desktop-search .search-toggle {
  cursor: pointer;
}
.desktop-search .search-box {
  position: absolute;
  max-height: 0px;
  overflow: hidden;
  border: 0px;
  padding: 0px;
  transition: max-height 0.3s ease;
  opacity: 0;
  z-index: 2;
}
.desktop-search .search-box.active {
  max-height: 90px;
  top: calc(100% + 32px);
  right: 0;
  width: 320px;
  border: 10px solid #023450;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  opacity: 1;
}
.desktop-search .search-box.active input {
  padding: 10px;
  width: 100%;
  border: 0px;
}

.nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0px;
  box-shadow: 0px;
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  background: white;
}

.hc-nav-trigger.hc-nav-1 {
  position: relative;
  margin-left: auto;
  top: auto;
}

.hc-offcanvas-nav .nav-container, .hc-offcanvas-nav .nav-wrapper, .hc-offcanvas-nav ul {
  background: #012438;
}
.hc-offcanvas-nav .nav-content > h2, .hc-offcanvas-nav .nav-content > h3, .hc-offcanvas-nav .nav-content > h4, .hc-offcanvas-nav .nav-content > h5 {
  color: white;
}
.hc-offcanvas-nav .nav-close-button span:before, .hc-offcanvas-nav .nav-close-button span:after {
  width: 5px;
  height: 0px;
  margin-top: 1px;
  border-top: 2px solid #fff;
  border-left: 19px solid #fff;
}
.hc-offcanvas-nav .nav-close-button span::after {
  transform: rotate(45deg);
  margin-left: -9px;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link {
  font-size: 16px;
  font-family: "Spartan", sans-serif;
}
.hc-offcanvas-nav .nav-close a, .hc-offcanvas-nav .nav-back a, .hc-offcanvas-nav .nav-item-link {
  font-size: 16px;
  font-family: "Spartan", sans-serif;
}

.hc-offcanvas-nav .nav-content > .nav-close:first-child a, .hc-offcanvas-nav .nav-title + .nav-close a.has-label, .hc-offcanvas-nav li.nav-close a, .hc-offcanvas-nav .nav-back a {
  background: #023450;
  border-top: 0px;
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
.footer a {
  color: white;
}
.footer i {
  color: white;
  position: absolute;
  left: 0;
  top: 6px;
}
.footer .contact-method {
  padding-left: 24px;
  position: relative;
  line-height: 2.2em;
  font-size: 0.9em;
}
.footer .appointment-link {
  font-size: 1.85em;
  font-weight: 600;
}
.footer .appointment-link img {
  margin-left: 14px;
}
@media screen and (max-width: 1199px) {
  .footer .appointment-link {
    font-size: 1.35em;
  }
}
@media screen and (max-width: 400px) {
  .footer .appointment-link {
    font-size: 1.25em;
  }
  .footer .appointment-link img {
    width: 12px;
  }
}
.footer .footer-nav a {
  text-decoration: underline;
}
.footer .footer-nav .footer-link {
  display: inline-block;
  padding-left: 50px;
  font-size: 1.1em;
}
@media screen and (max-width: 991px) {
  .footer .footer-nav .footer-link {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-nav .footer-link {
    display: block;
    padding-left: 0px;
    margin-bottom: 20px;
  }
}
.footer .agency-partners a img {
  margin: 0px 14px 20px;
}

.copyright {
  background: #023450;
  padding: 20px 0px;
  color: white;
  font-size: 0.9em;
}
.copyright a, .copyright span {
  color: white;
  display: inline-block;
}
.copyright a {
  text-decoration: underline;
  padding: 2px;
}

.home-hero {
  background-position: right 48px;
  background-repeat: no-repeat;
  background-size: 837px;
}
.home-hero h1 {
  font-weight: 700;
  font-size: 3.5em;
  color: #0D6084;
  letter-spacing: -0.04em;
  margin-top: 1.15em;
  margin-bottom: 0.75em;
}
.home-hero h1 span {
  color: #38ACEE;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .home-hero h1 {
    font-size: 2.75em;
  }
}
@media screen and (max-width: 540px) {
  .home-hero h1 {
    font-size: 2.25em;
  }
}
.home-hero .embed-responsive {
  border-radius: 25px;
}
.home-hero img {
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  .home-hero {
    background-size: 537px;
  }
}
@media screen and (max-width: 600px) {
  .home-hero {
    background-size: contain;
  }
  .home-hero img {
    border-radius: 25px;
  }
}

.page-tagline {
  font-size: 1.55em;
  font-weight: 100;
  max-width: 870px;
  margin: 30px auto;
  color: #0D6084;
}
@media screen and (max-width: 767px) {
  .page-tagline {
    font-size: 1.3em;
  }
}

.white-lavender-gradient {
  background: white;
  background: -moz-linear-gradient(180deg, white 50%, #f3f0fe 50%);
  background: -webkit-linear-gradient(180deg, white 50%, #f3f0fe 50%);
  background: linear-gradient(180deg, white 50%, #f3f0fe 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f3f0fe",GradientType=1);
}
.white-lavender-gradient .round-divider-bg {
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.section-ctas .section-cta {
  background: white;
  border-radius: 15px;
  padding: 35px 10px 45px;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}
.section-ctas .section-cta.blue-cta {
  border: 2px solid #38ACEE;
}
.section-ctas .section-cta.blue-cta h2 {
  color: #38ACEE;
}
.section-ctas .section-cta.blue-cta:hover {
  box-shadow: 0px 0px 0px 3px #38ACEE;
}
.section-ctas .section-cta.green-cta {
  border: 2px solid #04C0C0;
}
.section-ctas .section-cta.green-cta h2 {
  color: #04C0C0;
}
.section-ctas .section-cta.green-cta:hover {
  box-shadow: 0px 0px 0px 3px #04C0C0;
}
.section-ctas .section-cta.purple-cta {
  border: 2px solid #7875EA;
}
.section-ctas .section-cta.purple-cta h2 {
  color: #7875EA;
}
.section-ctas .section-cta.purple-cta:hover {
  box-shadow: 0px 0px 0px 3px #7875EA;
}
.section-ctas .section-cta a {
  pointer-events: auto;
}
.section-ctas .section-cta a:hover {
  text-decoration: none;
}
.section-ctas .section-cta h2 {
  font-size: 1.3em;
  margin: 22px auto;
}
.section-ctas .section-cta img {
  width: 95px;
}
.section-ctas .section-cta p {
  pointer-events: none;
  max-width: 320px;
  margin: 0px auto 10px;
}

.home-news .split-container, .updates-section .split-container {
  position: relative;
}
.home-news .split-container:after, .updates-section .split-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #0D6084;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .home-news .split-container, .updates-section .split-container {
    overflow: hidden;
    padding: 0px 30px;
  }
  .home-news .split-container > .row, .updates-section .split-container > .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .home-news .split-container .col-lg-6, .home-news .split-container .col-md-6, .updates-section .split-container .col-lg-6, .updates-section .split-container .col-md-6 {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 991px) {
  .home-news .split-container:after, .updates-section .split-container:after {
    display: none;
  }
  .home-news .split-container > .row, .updates-section .split-container > .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .home-news .split-container .col-lg-6, .home-news .split-container .col-md-6, .updates-section .split-container .col-lg-6, .updates-section .split-container .col-md-6 {
    padding: 0px 15px;
  }
  .home-news .split-container .col-lg-6:first-child, .updates-section .split-container .col-lg-6:first-child {
    border-bottom: 1px solid #0D6084;
  }
  .home-news .split-container .news-story, .updates-section .split-container .news-story {
    padding-bottom: 40px;
  }
  .home-news .split-container .news-story .date-link, .updates-section .split-container .news-story .date-link {
    bottom: 15px;
  }
}
.home-news .news-story, .updates-section .news-story {
  pointer-events: none;
  position: relative;
  padding-bottom: 80px;
  padding-top: 40px;
}
.home-news .news-story a:hover, .updates-section .news-story a:hover {
  text-decoration: none;
}
.home-news .news-story a:hover .svg, .updates-section .news-story a:hover .svg {
  transform: translateX(2px);
}
.home-news .news-story h2, .home-news .news-story .learn-more, .updates-section .news-story h2, .updates-section .news-story .learn-more {
  pointer-events: auto;
}
.home-news .news-story h2, .updates-section .news-story h2 {
  color: #0D6084;
  font-family: "Spartan", sans-serif;
  font-weight: 600;
  font-size: 1.4em;
  margin: 20px 0px 10px;
}
.home-news .news-story p, .updates-section .news-story p {
  color: #43434B;
}
.home-news .news-story .date-mobile, .home-news .news-story .date-desktop, .updates-section .news-story .date-mobile, .updates-section .news-story .date-desktop {
  font-weight: 600;
}
.home-news .news-story .date-desktop, .updates-section .news-story .date-desktop {
  margin-bottom: 0px;
}
.home-news .news-story .date-mobile, .updates-section .news-story .date-mobile {
  margin-top: 20px;
}
.home-news .news-story .date-link, .updates-section .news-story .date-link {
  position: absolute;
  width: 100%;
  bottom: 40px;
}
.home-news .news-story .learn-more, .updates-section .news-story .learn-more {
  color: #0D6084;
  font-weight: 600;
}
.home-news .news-story .learn-more span, .home-news .news-story .learn-more .svg, .updates-section .news-story .learn-more span, .updates-section .news-story .learn-more .svg {
  display: inline-block;
  vertical-align: middle;
}
.home-news .news-story .learn-more .svg, .updates-section .news-story .learn-more .svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
  width: 9px;
  height: 24px;
}
.home-news .news-story .learn-more .svg path, .updates-section .news-story .learn-more .svg path {
  stroke: #0D6084 !important;
}

.subpage-intro {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #f3f0fe;
}
.subpage-intro h1 {
  color: #0D6084;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-weight: 800;
}
.subpage-intro p {
  margin-bottom: 2.5rem;
}
.subpage-intro img {
  border-radius: 30px;
}
.subpage-intro.landing-intro {
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: transparent;
}
.subpage-intro.landing-intro h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.subpage-intro.landing-intro .subtitle {
  font-size: 1.7rem;
  font-weight: 100;
  color: #0D6084;
}
.subpage-intro.landing-intro .breadcrumb {
  padding-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .subpage-intro {
    background-image: none !important;
  }
  .subpage-intro.landing-intro .subtitle {
    font-size: 1.2rem;
  }
}

.subpage-intro img, .footer {
  position: relative;
  z-index: 2;
}

.page-content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}
.page-content .bg-circle {
  position: absolute;
  top: -3em;
  right: 0;
  z-index: 1;
  width: 32%;
  margin-top: -30px;
}
.page-content .container {
  position: relative;
  z-index: 2;
}
.page-content h2 {
  font-weight: 800;
  color: #0D6084;
}
.page-content .sidebar-nav {
  background: #023450;
  padding: 24px 30px;
  border-radius: 12px;
}
.page-content .sidebar-nav h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: white;
}
.page-content .sidebar-nav ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.page-content .sidebar-nav ul > li {
  padding-bottom: 15px;
}
.page-content .sidebar-nav ul > li > a {
  font-weight: 500;
  font-size: 1em;
  color: white;
  text-decoration: underline;
}
.page-content .sidebar-nav ul > li > a.active {
  color: #04C0C0;
}
.page-content .sidebar-nav ul .sidebar-sub {
  padding-bottom: 0px;
  list-style-type: none;
  font-size: 1.5em;
  padding-left: 15px;
  color: #38ACEE;
}
.page-content .sidebar-nav ul .sidebar-sub li {
  padding-top: 15px;
  padding-bottom: 0px;
  line-height: 0.9em;
}
.page-content .sidebar-nav ul .sidebar-sub a {
  font-family: "Spartan", sans-serif;
  color: white;
  font-size: 0.55em;
  text-decoration: none;
}
.page-content .sidebar-nav ul .sidebar-sub a.active {
  color: #04C0C0;
}

.content-block ul {
  padding-left: 20px;
}
.content-block ul li::marker {
  color: #38ACEE;
}

.profiles .profile img {
  width: 100%;
  max-width: 320px;
}
.profiles .profile .name {
  font-size: 1.5em;
  color: #0D6084;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 1.7em;
}
.profiles .profile .title {
  font-size: 1.25em;
  font-weight: 300;
  color: #0D6084;
  margin-bottom: 2em;
}
.profiles .profile .contact-method {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 1em;
  line-height: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.profiles .profile .contact-method a {
  color: #0D6084;
}
.profiles .profile .contact-method i {
  background: #38ACEE;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 12px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .profiles .profile .name {
    margin-top: 1em;
  }
  .profiles .profile .title {
    margin-bottom: 20px;
  }
}

.intro-contact a {
  color: #0D6084;
  text-decoration: underline;
  font-weight: 600;
}
.intro-contact i {
  color: #38ACEE;
  position: absolute;
  left: 0;
  top: 6px;
}
.intro-contact .contact-method {
  padding-left: 24px;
  position: relative;
  line-height: 2.2em;
  font-size: 0.9em;
}

.contact-content p {
  margin-bottom: 2em;
}
.contact-content button {
  border: 0px;
  box-shadow: 0px;
  min-width: 180px;
}
.contact-content .form-row {
  margin-bottom: 10px;
}

.large-ol {
  counter-reset: largeNumber;
  list-style-type: none;
  padding-left: 0px;
}
.large-ol li {
  counter-increment: largeNumber;
  margin-bottom: 40px;
}
.large-ol .list-item-heading, .large-ol p {
  position: relative;
  padding-left: 75px;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .large-ol .list-item-heading, .large-ol p {
    font-size: 1.4rem;
    padding-left: 38px;
  }
}
.large-ol p {
  font-size: 1rem;
  font-weight: 400;
}
.large-ol .list-item-heading {
  color: #0D6084;
  line-height: 1.3em;
  margin-bottom: 10px;
}
.large-ol li .list-item-heading:before {
  content: counter(largeNumber);
  height: 53px;
  width: 53px;
  display: block;
  border: 3px solid #38ACEE;
  border-radius: 50%;
  line-height: 53px;
  text-align: center;
  font-variant-numeric: lining-nums;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-57%);
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .large-ol li .list-item-heading:before {
    height: 30px;
    width: 30px;
    line-height: 33px;
    top: 0px;
    transform: translateY(4px);
    font-size: 1em;
  }
}
@media screen and (min-width: 992px) {
  .large-ol li {
    margin-top: 55px;
  }
}

.checkmark-list h3 {
  color: #0D6084;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4em;
  margin-bottom: 1.2em;
}
.checkmark-list ul {
  list-style-type: none;
  padding-left: 0px;
}
.checkmark-list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 1.3em;
}
.checkmark-list img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}

.pre-footer {
  background: #f3f0fe;
  padding: 4.5em 0px;
  margin-top: 1em;
  background-size: contain;
  background-repeat: no-repeat;
}
.pre-footer h2 {
  font-weight: 800;
  color: #0D6084;
}
.pre-footer p {
  max-width: 880px;
  margin: 30px auto;
}
.pre-footer .button {
  font-size: 1em;
  width: 100%;
  max-width: 180px;
  font-weight: 500;
}
.pre-footer.download-prefooter {
  padding-top: 0em;
}
.pre-footer.download-prefooter .resource-box {
  background: white;
  border: 2px solid #0D6084;
  border-radius: 12px;
  padding: 4em 3em;
  max-width: 990px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pre-footer.download-prefooter .resource-box {
    padding: 4em 1.5em;
  }
}
.pre-footer.download-prefooter .download-title {
  font-weight: 700;
  color: #023450;
}
.pre-footer.download-prefooter .download-link img {
  width: 20px;
}
.pre-footer.download-prefooter .download-link img, .pre-footer.download-prefooter .download-link span {
  vertical-align: middle;
}

.hero-skip-links {
  font-size: 0.95rem;
}
.hero-skip-links a {
  font-weight: 600;
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.hero-skip-links a:hover {
  text-decoration: none;
}
.hero-skip-links a .svg path {
  stroke: #0D6084 !important;
}

.updates-section .news-story {
  border: 2px solid #0D6084;
  border-radius: 12px;
  padding: 15px;
  padding-top: 20px;
  padding-bottom: 64px;
}
.updates-section .news-story .date-link {
  bottom: 20px;
}
.updates-section .news-story a:hover h2 {
  color: #38ACEE;
}
.updates-section .news-story a:hover .date-link .learn-more {
  color: #38ACEE;
}
.updates-section .news-story a:hover .date-link .learn-more svg path {
  stroke: #38ACEE !important;
}

/*# sourceMappingURL=main.css.map */
