* {
  box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.noscroll {
  overflow: hidden;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.tight {
  max-width: 1000px;
}
.container.right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.flex-row {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.flex-row.cg10 {
  column-gap: 10px;
}
.flex-row.cg15 {
  column-gap: 15px;
}
.flex-row.cg20 {
  column-gap: 20px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

form {
  width: 100%;
  position: relative;
  display: block;
}
form .form-group {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 5px 0;
}
form .form-group input[type=text], form .form-group input[type=email], form .form-group input[type=password] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 7px;
  border: 1px solid #DDDDDD;
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  padding: 0 7px;
}
form .form-group input[type=text]:focus, form .form-group input[type=text]:focus-visible, form .form-group input[type=email]:focus, form .form-group input[type=email]:focus-visible, form .form-group input[type=password]:focus, form .form-group input[type=password]:focus-visible {
  outline: none;
  border: 1px solid #0F4C81;
}
form .form-group input[type=text]::placeholder sup, form .form-group input[type=email]::placeholder sup, form .form-group input[type=password]::placeholder sup {
  color: red;
}
form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100px;
  border-radius: 7px;
  border: 1px solid #DDDDDD;
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  padding: 0 7px;
}
form .form-group textarea:focus, form .form-group textarea:focus-visible {
  outline: none;
  border: 1px solid #0F4C81;
}
form .form-group textarea::placeholder sup {
  color: red;
}
form .form-group .login-error {
  font-size: 12px;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  color: red;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
form .form-group .login-error.active {
  opacity: 1;
}
form .form-group .icon-input-wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}
form .form-group .icon-input-wrapper .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  background-color: #F3F3F3;
  border-radius: 8px 0 0 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #DDDDDD;
}
form .form-group .icon-input-wrapper .icon-wrapper i {
  color: #0F4C81;
  font-size: 22px;
}
form .form-group .icon-input-wrapper .icon-input {
  flex-grow: 1;
  position: relative;
  display: block;
}
form .form-group .icon-input-wrapper .icon-input input[type=text], form .form-group .icon-input-wrapper .icon-input input[type=email], form .form-group .icon-input-wrapper .icon-input input[type=password] {
  flex-grow: 1;
  width: 100%;
  position: relative;
  border-radius: 0 8px 8px 0;
  border: 1px solid #DDDDDD;
  border-left: 0;
  padding: 0 10px;
}

.grid {
  display: grid;
}
.grid.grid2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .grid.grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.cg10 {
  column-gap: 10px;
}
.grid.cg15 {
  column-gap: 15px;
}
.grid.cg20 {
  column-gap: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 100%;
  position: relative;
  display: block;
}

h1 {
  font-size: 45px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 55px;
  }
}
@media screen and (min-width: 960px) {
  h1 {
    font-size: 65px;
  }
}

h2 {
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 47px;
  }
}
@media screen and (min-width: 960px) {
  h2 {
    font-size: 55px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 900;
}

h4 {
  font-size: 22px;
  font-weight: 800;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 25px 0;
  line-height: 150%;
}
ul li, ol li {
  font-family: "Poppins", sans-serif;
}

blockquote {
  font-family: "Poppins", sans-serif;
}

.sp-body h2 {
  font-size: 30px;
  color: #0F4C81;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.sp-body h3 {
  font-size: 18px;
  color: #0F4C81;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.sp-body p {
  font-size: 18px;
  line-height: 160%;
}
.sp-body p.intro {
  color: #0F4C81;
  font-weight: 300;
  font-size: 20px;
}
.sp-body p a {
  color: #0F4C81;
}
.sp-body ol, .sp-body ul {
  font-size: 18px;
  margin: 0 0 25px 0;
  padding: 0 0 0 20px;
}
.sp-body ol li, .sp-body ul li {
  margin: 0 0 15px 0;
}

.btn {
  border: 0;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  width: auto;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 1;
}
.btn.primary {
  background-color: #0F4C81;
  color: #FFFFFF;
  height: 50px;
  border-radius: 7px;
}
.btn.primary:hover {
  background-color: #C2E502;
  color: #0F4C81;
}
.btn.text {
  color: #00294D;
}
.btn.text:hover {
  color: #C2E502;
}
.btn.text.white {
  color: #FFFFFF;
}
.btn.text.white:hover {
  color: #C2E502;
}
.btn.md {
  height: 30px;
  border-radius: 5px;
  font-size: 12px;
  padding: 0 12px;
}
.btn.lg {
  height: 50px;
  border-radius: 7px;
}
.btn.fw {
  width: 100%;
}
.btn.nav-cta {
  background-color: #C2E502;
  padding: 10px 15px;
  border-radius: 5px;
  color: #0F4C81;
  font-weight: 600;
}
.btn.nav-cta:hover {
  background-color: #0F4C81 !important;
  color: #C2E502 !important;
}
.btn.cta {
  background-color: #C2E502;
  padding: 10px 15px;
  border-radius: 5px;
  color: #0F4C81;
  font-weight: 700;
}
.btn.cta:hover {
  background-color: #FFFFFF;
}

header.gb-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  padding: 0;
  margin: 0 auto;
  border: 0;
  z-index: 1000;
  transition: height 0.3s ease-in-out;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
header.gb-header.scrolled {
  height: 110px;
}
header.gb-header.scrolled .header-wrapper {
  height: 80px;
}
header.gb-header .utility-bar {
  background-color: #00294D;
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}
header.gb-header .utility-bar a {
  color: #FFFFFF;
  font-size: 11px;
}
header.gb-header .header-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  padding: 0;
  margin: 0 auto;
  border: 0;
  background-color: #FFFFFF;
  transition: height 0.3s ease-in-out;
}
header.gb-header .header-wrapper .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
header.gb-header .header-wrapper .container .header-branding svg {
  max-width: 285px;
  margin: 0;
}
header.gb-header .header-wrapper .container .header-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list {
  list-style: none;
  position: fixed;
  display: block;
  right: -300px;
  top: 0;
  transition: right 0.3s ease-in-out;
  background-color: #0F4C81;
  width: 300px;
  height: 100vh;
  padding: 60px 20px 0 20px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  header.gb-header .header-wrapper .container .header-nav .gb-nav-list {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
    top: unset;
    right: unset;
    width: 100%;
    height: auto;
    padding: 0;
    background-color: #FFFFFF;
  }
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list.active {
  right: 0;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list.active li {
  margin: 0 0 10px 0;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list.active li a {
  color: #FFFFFF;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list.active .nav-close {
  opacity: 1;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list li a {
  text-transform: uppercase;
  color: #0F4C81;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  transition: color 0.3s ease-in-out;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list li a:hover {
  color: #C2E502;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 34px;
  padding: 0;
  display: block;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: 0;
  overflow: hidden;
  text-align: center !important;
  background-color: transparent;
  opacity: 0;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close span:nth-child(1), header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close span:nth-child(2) {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 0;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px !important;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close span:nth-child(2) {
  transform: rotate(-45deg);
  top: 10px !important;
}
header.gb-header .header-wrapper .container .header-nav .gb-nav-list .nav-close span:nth-child(3) {
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  font-size: 8px;
  text-align: center;
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  line-height: 10px;
  padding: 0;
  margin: 0;
  left: 0;
  color: #FFFFFF;
  text-align: center !important;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  bottom: -2px;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle {
  width: 30px;
  height: 34px;
  padding: 0;
  display: block;
  appearance: none;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  overflow: hidden;
  text-align: center !important;
  background-color: transparent;
}
@media screen and (min-width: 1250px) {
  header.gb-header .header-wrapper .container .header-nav .nav-toggle {
    display: none;
  }
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px !important;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 10px !important;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle.active span:nth-child(3) {
  bottom: -13px !important;
  opacity: 0;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle.active span:nth-child(4) {
  bottom: 0px !important;
  opacity: 1;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle:hover span:nth-child(1) {
  top: 7px;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle:hover span:nth-child(2) {
  top: 16px;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(1), header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(2) {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #0F4C81;
  margin: 0;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(1) {
  top: 8px;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(2) {
  top: 15px;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(3), header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(4) {
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  font-size: 8px;
  text-align: center;
  letter-spacing: 0 !important;
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  line-height: 10px;
  padding: 0;
  margin: 0;
  left: 0;
  color: #0F4C81;
  text-align: center !important;
  transition: all 0.3s ease-in-out;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(3) {
  opacity: 1;
  bottom: 0px;
  letter-spacing: 0.18em;
}
header.gb-header .header-wrapper .container .header-nav .nav-toggle span:nth-child(4) {
  opacity: 0;
  bottom: -13px;
}

footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  border: 0;
}
footer .footer-top {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 60px 20px;
  margin: 0 auto;
  border: 0;
  background-color: #373B45;
}
@media screen and (min-width: 768px) {
  footer .footer-top {
    padding: 80px 20px;
  }
}
footer .footer-top .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
  }
}
footer .footer-top .container .column1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column1 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
footer .footer-top .container .column2 {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column2 {
    grid-column-start: 5;
    grid-column-end: 7;
  }
}
footer .footer-top .container .column3 {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column3 {
    grid-column-start: 8;
    grid-column-end: 10;
  }
}
footer .footer-top .container .column4 {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column4 {
    grid-column-start: 11;
    grid-column-end: 13;
  }
}
footer .footer-top .container .column1, footer .footer-top .container .column2, footer .footer-top .container .column3, footer .footer-top .container .column4 {
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column1, footer .footer-top .container .column2, footer .footer-top .container .column3, footer .footer-top .container .column4 {
    text-align: left;
  }
}
footer .footer-top .container .column1 svg, footer .footer-top .container .column2 svg, footer .footer-top .container .column3 svg, footer .footer-top .container .column4 svg {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 960px) {
  footer .footer-top .container .column1 svg, footer .footer-top .container .column2 svg, footer .footer-top .container .column3 svg, footer .footer-top .container .column4 svg {
    margin: 0;
  }
}
footer .footer-top .container .column1 h4, footer .footer-top .container .column2 h4, footer .footer-top .container .column3 h4, footer .footer-top .container .column4 h4 {
  color: #C2E502;
  margin: 0 0 5px 0;
}
footer .footer-top .container .column1 ul.footer-list, footer .footer-top .container .column2 ul.footer-list, footer .footer-top .container .column3 ul.footer-list, footer .footer-top .container .column4 ul.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: block;
  width: 100%;
}
footer .footer-top .container .column1 ul.footer-list li a, footer .footer-top .container .column2 ul.footer-list li a, footer .footer-top .container .column3 ul.footer-list li a, footer .footer-top .container .column4 ul.footer-list li a {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 15px;
}
footer .footer-top .container .column1 p, footer .footer-top .container .column2 p, footer .footer-top .container .column3 p, footer .footer-top .container .column4 p {
  position: relative;
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  margin: 0;
}
footer .footer-top .container .column1 p a, footer .footer-top .container .column2 p a, footer .footer-top .container .column3 p a, footer .footer-top .container .column4 p a {
  color: #FFFFFF;
}
footer .footer-top .container .column1 p a i, footer .footer-top .container .column2 p a i, footer .footer-top .container .column3 p a i, footer .footer-top .container .column4 p a i {
  margin: 0 5px 0 0;
}
footer .footer-bottom {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 0 auto;
  border: 0;
}
footer .footer-bottom .container {
  text-align: center;
}
footer .footer-bottom .container p {
  text-align: center;
  color: #0F4C81;
  margin: 0 auto;
  line-height: 130%;
}

body {
  padding: 130px 0 0 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: block;
  transition: padding 0.3s ease-in-out;
}
body.noheader {
  padding: 0;
}
body.scrolled {
  padding: 110px 0 0 0;
}
body #hp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  min-height: 600px;
  background-color: #0F4C81;
  align-items: flex-start;
  justify-content: center;
  background-image: url("../img/hp-hero.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  body #hp-hero {
    min-height: 690px;
  }
}
body #hp-hero .container {
  padding: 0 20px;
}
body #hp-hero .container h1 {
  color: #FFFFFF;
  line-height: 110%;
  margin: 0 0 20px 0;
}
body #hp-hero .container h1 span {
  color: #C2E502;
  display: block;
  position: relative;
  font-style: italic;
}
body #hp-hero .container p {
  font-size: 18px;
  position: relative;
  font-weight: 300;
  display: block;
  color: #FFFFFF;
  max-width: 650px;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 768px) {
  body #hp-hero .container p {
    font-size: 19px;
  }
}
@media screen and (min-width: 960px) {
  body #hp-hero .container p {
    font-size: 20px;
  }
}
body #hp-how-we-help {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 80px 0;
  margin: 0 auto;
  border: 0;
  background: #0F4C81;
  background: -webkit-linear-gradient(0deg, rgba(15, 76, 129, 0.25) 0%, rgba(15, 76, 129, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(15, 76, 129, 0.25) 0%, rgba(15, 76, 129, 0) 100%);
  background: linear-gradient(0deg, rgba(15, 76, 129, 0.25) 0%, rgba(15, 76, 129, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0F4C81", endColorstr="#0F4C81", GradientType=0 );
}
body #hp-how-we-help .container {
  padding: 0 20px;
}
body #hp-how-we-help .container h2 {
  margin: 0 auto 40px auto;
  color: #0F4C81;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container h2 {
    margin: 0 0 40px 0;
    text-align: left;
  }
}
body #hp-how-we-help .container .kvp {
  background-color: #F3F3F3;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp {
    grid-template-columns: 8fr 4fr;
  }
}
body #hp-how-we-help .container .kvp .kvp-details {
  width: 100%;
  position: relative;
  display: block;
  padding: 40px 30px 10px 30px;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp .kvp-details {
    padding: 40px 30px;
  }
}
body #hp-how-we-help .container .kvp .kvp-details h3 {
  margin: 0 auto 8px auto;
  text-align: center;
  color: #0F4C81;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp .kvp-details h3 {
    margin: 0 0 8px 0;
    text-align: left;
  }
}
body #hp-how-we-help .container .kvp .kvp-details p {
  color: #0F4C81;
  margin: 0;
  position: relative;
  display: block;
  line-height: 140%;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp .kvp-details p {
    text-align: left;
    margin: 0;
  }
}
body #hp-how-we-help .container .kvp .kvp-img {
  width: 100%;
  position: relative;
  display: block;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp .kvp-img {
    padding: 30px 75px 30px 30px;
  }
}
body #hp-how-we-help .container .kvp .kvp-img img {
  position: relative;
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
body #hp-how-we-help .container .kvp .kvp-accent {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 45px;
  right: -45px;
  top: calc(50% - 45px);
  background-color: #0F4C81;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body #hp-how-we-help .container .kvp .kvp-accent {
    display: flex;
  }
}
body #hp-how-we-help .container .kvp .kvp-accent:after {
  content: "\f2fb";
  font-family: "material-design-iconic-font";
  color: #C2E502;
  font-size: 46px;
}
body #hp-pricing {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 80px 20px;
  margin: 0 auto;
  border: 0;
  background-color: #0F4C81;
  text-align: center;
  background-image: url("../img/logo-accent-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200%;
}
body #hp-pricing .container h2 {
  color: #FFFFFF;
  margin: 0 auto 40px auto;
}
body #hp-pricing .container .pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body #hp-pricing .container .pricing-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
body #hp-pricing .container .pricing-grid .pricing-card {
  background-color: #F3F3F3;
  border-radius: 10px;
  padding: 40px;
  text-align: left;
}
body #hp-pricing .container .pricing-grid .pricing-card h3 {
  color: #0F4C81;
  margin: 0 0 20px 0;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  border: 0;
  position: relative;
  display: block;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-list li {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  line-height: 130%;
  color: #0F4C81;
  font-size: 18px;
  font-weight: 300;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-list li:last-of-type {
  margin: 0;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-list li:before {
  content: "\f26b";
  font-family: "material-design-iconic-font";
  color: #0F4C81;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-price {
  font-weight: 800;
  font-size: 50px;
  color: #0F4C81;
  line-height: 100%;
  margin: 0 0 20px 0;
}
body #hp-pricing .container .pricing-grid .pricing-card .pricing-price span {
  font-size: 30px;
  font-weight: 700;
}
body #hp-faqs {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 80px 0;
  margin: 0 auto;
}
body #hp-faqs .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  body #hp-faqs .container {
    grid-template-columns: 5fr 7fr;
    grid-column-gap: 30px;
  }
}
@media screen and (min-width: 960px) {
  body #hp-faqs .container {
    grid-column-gap: 75px;
  }
}
body #hp-faqs .container .left {
  text-align: right;
  padding: 0;
}
body #hp-faqs .container .left h2 {
  color: #0F4C81;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  body #hp-faqs .container .left h2 {
    text-align: right;
  }
}
body #hp-faqs .container .right {
  padding: 0;
}
body #hp-faqs .container .right .accordion-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 30px auto;
  border: 0;
}
body #hp-faqs .container .right .accordion-wrapper .accordion {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 10px auto;
  border: 0;
}
body #hp-faqs .container .right .accordion-wrapper .accordion.active .accordion-header:after {
  content: "\f2f9";
}
body #hp-faqs .container .right .accordion-wrapper .accordion .accordion-header {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  background-color: #FFFFFF;
  padding: 10px 0;
}
body #hp-faqs .container .right .accordion-wrapper .accordion .accordion-header:after {
  content: "\f2fb";
  font-family: "material-design-iconic-font";
  color: #0F4C81;
  position: absolute;
  right: 10px;
  font-size: 22px;
}
body #hp-faqs .container .right .accordion-wrapper .accordion .accordion-header h3 {
  position: relative;
  display: block;
  color: #0F4C81;
  font-size: 20px !important;
  font-weight: 700;
  margin: 0;
}
body #hp-faqs .container .right .accordion-wrapper .accordion .accordion-body {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 30px 15px 0;
  border: none;
  border-bottom: 1px solid #E2F1FF;
  background-color: #FFFFFF;
}
body #hp-faqs .container .right .accordion-wrapper .accordion .accordion-body p:last-of-type {
  margin: 0;
}

main .sp-hero {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  min-height: 200px;
  background-color: #ECF5FC;
  padding: 50px 20px;
  margin: 0 auto;
  border: 0;
  align-items: center;
  justify-content: flex-start;
}
main .sp-hero h1 {
  color: #0F4C81;
  margin: 0;
  line-height: 100%;
  position: relative;
  display: block;
}
main .sp-body {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 75px 20px;
  margin: 0 auto;
  border: 0;
}
main .sp-body .body-section {
  margin: 0 0 40px 0;
}

.rc-login-wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: block;
}
.rc-login-wrapper > .grid {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}
.rc-login-wrapper > .grid .left {
  position: relative;
  display: flex;
  background-color: #E2F1FF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .rc-login-wrapper > .grid .left {
    padding: 60px;
  }
}
.rc-login-wrapper > .grid .left .rc-login-logo {
  position: relative;
  display: block;
  margin: 0 auto 20px 0;
  max-width: 400px;
  width: 100%;
}
.rc-login-wrapper > .grid .left .rc-login-logo svg {
  width: 100%;
  max-width: 400px;
}
.rc-login-wrapper > .grid .left .login-form-wrapper {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.rc-login-wrapper > .grid .left .login-form-wrapper h3 {
  color: #0F4C81;
  margin: 0 0 5px 0;
  font-size: 23px;
  font-weight: 700;
}
.rc-login-wrapper > .grid .left .login-form-wrapper #loginForm {
  margin: 0 0 20px 0;
}
.rc-login-wrapper > .grid .left p {
  margin: 0 0 20px 0;
  font-weight: 300;
  line-height: 140%;
  padding: 0;
}
.rc-login-wrapper > .grid .left p a {
  color: #C2E502;
}
.rc-login-wrapper > .grid .left .forgot-password-link {
  position: relative;
  display: block;
  width: 100%;
  text-align: right;
  margin: 10px auto 0 auto;
}
.rc-login-wrapper > .grid .left .forgot-password-link a {
  color: #00294D;
  font-size: 14px;
}
.rc-login-wrapper > .grid .right {
  position: relative;
  background-color: #00294D;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center bottom;
}
.rc-login-wrapper > .grid .right .my-slider .slide h3 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
  margin: 0 auto 10px auto;
  line-height: 100%;
}
.rc-login-wrapper > .grid .right .my-slider .slide p {
  color: #FFFFFF;
  margin: 0 auto 30px auto;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  width: 100%;
  max-width: 350px;
  position: relative;
  display: block;
}
.rc-login-wrapper > .grid .right .my-slider .slide svg {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 380px;
}

.tns-outer .tns-controls {
  position: absolute;
  left: 0;
  right: 0;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .tns-outer .tns-controls {
    width: 60%;
  }
}
.tns-outer .tns-controls button {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  padding: 0;
  margin: 0;
  appearance: none;
  border: 0;
  background-color: transparent;
}
.tns-outer .tns-controls button:after {
  font-family: "material-design-iconic-font";
  color: #C2E502;
  position: absolute;
  left: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  top: 0;
  z-index: 100;
  color: #C2E502;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tns-outer .tns-controls button[data-controls=prev]:after {
  content: "\f2fa";
}
.tns-outer .tns-controls button[data-controls=next]:after {
  content: "\f2fb";
}
.tns-outer .tns-nav {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 100px;
  column-gap: 8px;
}
.tns-outer .tns-nav button {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  appearance: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
}
.tns-outer .tns-nav button.tns-nav-active {
  background-color: #FFFFFF;
}
.rc-registration-wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: block;
}
.rc-registration-wrapper > .grid {
  width: 100%;
  height: 100vh;
  position: relative;
}
.rc-registration-wrapper > .grid .left {
  position: relative;
  display: flex;
  background-color: #E2F1FF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .rc-registration-wrapper > .grid .left {
    padding: 60px;
  }
}
.rc-registration-wrapper > .grid .left .content-wrapper .rc-login-logo img {
  max-width: 400px;
  width: 100%;
  position: relative;
  display: block;
  margin: 0 0 30px 0;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper h3 {
  color: #0F4C81;
  font-size: 23px;
  margin: 0 0 3px 0;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper p {
  position: relative;
  display: block;
  margin: 0 0 20px 0;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper p.register-link {
  font-size: 14px;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper p.register-link a {
  color: #C2E502;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper .password-rules #password-rules-list {
  position: relative;
  display: block;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper .password-rules #password-rules-list li {
  color: red;
  margin: 0;
  font-size: 12px;
}
.rc-registration-wrapper > .grid .left .content-wrapper .registration-form-wrapper .password-rules #password-rules-list li.valid {
  color: green;
}
.rc-registration-wrapper > .grid .right {
  position: relative;
  background-color: #00294D;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 30px;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center bottom;
  height: auto;
  min-height: 700px;
}
@media screen and (min-width: 768px) {
  .rc-registration-wrapper > .grid .right {
    padding: 60px;
    min-height: 100vh;
  }
}
.rc-registration-wrapper > .grid .right .my-slider .slide h3 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
  margin: 0 auto 10px auto;
  line-height: 100%;
}
.rc-registration-wrapper > .grid .right .my-slider .slide p {
  color: #FFFFFF;
  margin: 0 auto 30px auto;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  width: 100%;
  max-width: 350px;
  position: relative;
  display: block;
}
.rc-registration-wrapper > .grid .right .my-slider .slide svg {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 380px;
}

.templates-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .templates-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
}
.templates-grid .template {
  background-color: #ECF5FC;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.templates-grid .template h3 {
  text-align: left;
  margin: 0 auto 10px auto;
  color: #0F4C81;
  font-size: 25px;
}
.templates-grid .template p {
  text-align: left;
  margin: 0 auto 25px auto;
  font-size: 16px;
}

.pricing-options .pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  max-width: 1000px;
  margin: 0 auto 30px auto;
}
@media screen and (min-width: 768px) {
  .pricing-options .pricing-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
.pricing-options .pricing-grid .pricing-card {
  background-color: #F3F3F3;
  border-radius: 10px;
  padding: 40px;
  text-align: left;
}
.pricing-options .pricing-grid .pricing-card h3 {
  color: #0F4C81;
  margin: 0 0 20px 0;
}
.pricing-options .pricing-grid .pricing-card .pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  border: 0;
  position: relative;
  display: block;
}
.pricing-options .pricing-grid .pricing-card .pricing-list li {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  line-height: 130%;
  color: #0F4C81;
  font-size: 18px;
  font-weight: 300;
}
.pricing-options .pricing-grid .pricing-card .pricing-list li:last-of-type {
  margin: 0;
}
.pricing-options .pricing-grid .pricing-card .pricing-list li:before {
  content: "\f26b";
  font-family: "material-design-iconic-font";
  color: #0F4C81;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}
.pricing-options .pricing-grid .pricing-card .pricing-price {
  font-weight: 800;
  font-size: 50px;
  color: #0F4C81;
  line-height: 100%;
  margin: 0 0 20px 0;
}
.pricing-options .pricing-grid .pricing-card .pricing-price span {
  font-size: 30px;
  font-weight: 700;
}

.contact-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  width: 100%;
  margin: 0 auto;
  border: 0;
}
@media screen and (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }
}

/*
 * Provide sufficient spacing at the top of legal pages. The default
 * page layout uses a tight container without top padding, which causes
 * headings on pages such as the Accessibility statement and the Terms
 * of Use to sit too close to the header. Applying padding here
 * separates the content from the header consistently with other
 * sections of the site.
 */
.legal-page,
.legal-content {
  padding-top: 60px;
}

/*
 * On very small screens (approximately 430px wide and below) the
 * horizontal padding on images in the "How We Help" section can
 * contribute to horizontal scrolling. Reduce the padding on the
 * kvp image container to ensure the content fits within the viewport
 * without introducing a horizontal scroll bar.
 */
@media screen and (max-width: 430px) {
  body #hp-how-we-help .container .kvp .kvp-img {
    padding: 15px;
  }
}
