@charset "UTF-8";
/*
 Theme Name:   HAP 2024
 Template:     twentytwenty
 Version:      2.0.0
 Text Domain:  hap
*/
/*  MAIN SASS FILE
=================================================================== /// */
/* 
:::::::::: VARIABLES :::::::::
*/
/* breakpoints */
/* 
:::::::::: COLORS :::::::::
*/
/* ___ theme ___ */
.black {
  color: #000000 !important;
}

.white {
  color: #ffffff !important;
}

.white2 {
  color: #f8f8f8 !important;
}

.dark-grey {
  color: #3A3B3D !important;
}

.mid-grey {
  color: #53575A !important;
}

.light-grey {
  color: #e6e6e6 !important;
}

.purple {
  color: #612166 !important;
}

.green {
  color: #5C9A1B !important;
}

.dark-green {
  color: #114A21 !important;
}

.lime {
  color: #78be20 !important;
}

.text-A {
  color: #3A3B3D !important;
}

.text-B {
  color: #ffffff !important;
}

.link-A {
  color: #007481 !important;
}

.link-B {
  color: #e6e6e6 !important;
}

/* svg fills */
.fill-green {
  fill: #5C9A1B;
}

.fill-dark-green {
  fill: #114A21;
}

.fill-lime {
  fill: #78be20;
}

.fill-purple {
  fill: #612166;
}

.fill-black {
  fill: #000000;
}

.fill-white {
  fill: #ffffff;
}

.fill-white2 {
  fill: #f8f8f8;
}

.fill-light-grey {
  fill: #e6e6e6;
}

.fill-mid-grey {
  fill: #53575A;
}

.fill-dark-grey {
  fill: #3A3B3D;
}

/* transparencies */
/* ___ backgrounds ___ */
.bg-black {
  background-color: #000000;
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
  color: #3A3B3D;
}

.bg-white2 {
  background-color: #f8f8f8;
  color: #3A3B3D;
}

.bg-light-grey {
  background-color: #e6e6e6;
  color: #3A3B3D;
}

.bg-mid-grey {
  background-color: #53575A;
  color: #3A3B3D;
}

.bg-dark-grey {
  background-color: #3A3B3D;
  color: #ffffff;
}

.bg-purple {
  background-color: #612166;
  color: #ffffff;
}

.bg-green {
  background-color: #5C9A1B;
  color: #ffffff;
}

.bg-dark-green {
  background-color: #114A21;
  color: #ffffff;
}

.bg-lime {
  background-color: #78be20;
  color: #114A21;
}

/* ___ borders ___ */
.border-black-thin {
  border: #000000 1px solid;
}

.border-top-black-thin {
  border-top: #000000 1px solid;
}

.border-bottom-black-thin {
  border-bottom: #000000 1px solid;
}

.border-white-thin {
  border: #ffffff 1px solid;
}

.border-top-white-thin {
  border-top: #ffffff 1px solid;
}

.border-bottom-white-thin {
  border-bottom: #ffffff 1px solid;
}

.border-light-grey-thin {
  border: #e6e6e6 1px solid;
}

.border-top-light-grey-thin {
  border-top: #e6e6e6 1px solid;
}

.border-top-light-grey-thick {
  border-top: #e6e6e6 2px solid;
}

.border-bottom-light-grey-thin {
  border-bottom: #e6e6e6 1px solid;
}

.border-light-grey-alt-thin {
  border: #c8c8c8 1px solid;
}

.border-mid-grey-thin {
  border: #53575A 1px solid;
}

.border-top-mid-grey-thin {
  border-top: #53575A 1px solid;
}

.border-bottom-mid-grey-thin {
  border-bottom: #53575A 1px solid;
}

.border-dark-grey-thin {
  border: #3A3B3D 1px solid;
}

.border-top-dark-grey-thin {
  border-top: #3A3B3D 1px solid;
}

.border-top-dark-grey-thick {
  border-top: #3A3B3D 2px solid;
}

.border-bottom-dark-grey-thin {
  border-bottom: #3A3B3D 1px solid;
}

/* ___ system ___ */
/* families */
@font-face {
  font-family: "FSHumana";
  src: url(/wp-content/themes/hap2023/assets/fonts/FSHumana.woff2) format("woff"), url(/wp-content/themes/hap2023/assets/fonts/FSHumana-Bold.woff2) format("woff"), url(/wp-content/themes/hap2023/assets/fonts/FSHumana-Light.woff2) format("woff"), url(/wp-content/themes/hap2023/assets/fonts/FSHumana-Light.woff2) format("woff2");
}
/* 
:::::::::: GRID LAYOUT :::::::::
Written by: Jeremy Kron
Date: September 16, 2015
Update: March 17, 2019

- Make sure headings and other elements that span the full width before or after a multi-column section are located OUTSIDE the "row" in your html. Otherwise padding corrections for alignment on first and last child columns will not work properly (also noted in _base).

::::::::: 
*/
* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1279px;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

.row {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
}

.row:before, .row:after {
  clear: both;
}

[class*=col-] {
  min-height: 1px;
  width: 100%;
}

@media (min-width: 981px) {
  .col-1 {
    width: 8.3333333333%;
  }
  .col-2 {
    width: 16.6666666667%;
  }
}
@media (min-width: 981px) {
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.3333333333%;
  }
  .col-5 {
    width: 41.6666666667%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.3333333333%;
  }
  .col-8 {
    width: 66.6666666667%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.3333333333%;
  }
  .col-11 {
    width: 91.6666666667%;
  }
  .col-12 {
    width: 100%;
  }
  .col-8 + .col-4 {
    width: 33.3333333333%;
  }
  .col-9 {
    width: 75%;
  }
  .col-9 + .col-3 {
    width: 25%;
  }
}
.flexbox {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) {
  .flexbox {
    display: block;
  }
}

.flex-col {
  justify-content: center;
}
@media (max-width: 980px) {
  .flex-col {
    display: block;
  }
}

html {
  font-size: 100%;
}
@media (max-width: 1280px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 1099px) {
  html {
    font-size: 80%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FSHumana", calibri, serif;
  color: #5C9A1B;
}

a:link, a:active, a:visited, a:hover {
  color: #007481;
}

/* 
:::::::::: BASE VARIABLES :::::::::
*/
/* transparencies */
/* degrees */
/* 
:::::::::: BASE STYLES :::::::::
*/
.mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile {
    display: block !important;
  }
}

.desktop {
  display: none;
}
@media (min-width: 768px) {
  .desktop {
    display: block;
  }
}

.laptop {
  display: none;
}
@media (min-width: 1024px) {
  .laptop {
    display: block;
  }
}

.tablet {
  display: none !important;
}
@media (max-width: 1023px) {
  .tablet {
    display: block !important;
  }
}

.hide {
  display: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.nobr {
  white-space: nowrap;
}

.smalltext {
  font-size: 75% !important;
}

.largetext {
  font-size: 150% !important;
}

.anchor {
  position: relative;
}
.anchor a {
  position: absolute;
  left: 0;
  top: -196px;
}
@media (max-width: 980px) {
  .anchor a {
    top: -85px;
  }
}

.flip-x {
  transform: scaleX(-1);
}

.flip-y {
  transform: scaleY(-1);
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.no-pad {
  padding: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.pad {
  padding: 2rem !important;
}

.pad-v {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pad-h {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.pad-top {
  padding-top: 2rem !important;
}

.pad-bottom {
  padding-bottom: 2rem !important;
}

.pad-left {
  padding-left: 2rem !important;
}

.pad-right {
  padding-right: 2rem !important;
}

.pad-lg {
  padding: 4rem !important;
}
@media (max-width: 767px) {
  .pad-lg {
    padding: 1rem 2rem !important;
  }
}

.pad-v-lg {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
@media (max-width: 767px) {
  .pad-v-lg {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.pad-h-lg {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
@media (max-width: 767px) {
  .pad-h-lg {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.pad-top-lg {
  padding-top: 4rem !important;
}
@media (max-width: 767px) {
  .pad-top-lg {
    padding-top: 2rem !important;
  }
}

.pad-bottom-lg {
  padding-bottom: 4rem !important;
}
@media (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 2rem !important;
  }
}

.pad-left-lg {
  padding-left: 4rem !important;
}
@media (max-width: 767px) {
  .pad-left-lg {
    padding-left: 2rem !important;
  }
}

.pad-right-lg {
  padding-right: 4rem !important;
}
@media (max-width: 767px) {
  .pad-right-lg {
    padding-right: 2rem !important;
  }
}

.no-margin {
  margin: 0 !important;
}

.margin {
  margin: 2rem;
}

.margin-v {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.margin-h {
  margin-left: 2rem;
  margin-right: 2rem;
}

.margin-top {
  margin-top: 2rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.margin-left {
  margin-left: 2rem;
}

.margin-right {
  margin-right: 2rem;
}

.margin-lg {
  margin: 4rem;
}

.margin-v-lg {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.margin-h-lg {
  margin-left: 4rem;
  margin-right: 4rem;
}

.margin-top-lg {
  margin-top: 4rem;
}

.margin-bottom-lg {
  margin-bottom: 4rem;
}

.margin-left-lg {
  margin-left: 4rem;
}

.margin-right-lg {
  margin-right: 4rem;
}

.condense-top {
  margin-top: -2rem;
}

.condense-bottom {
  margin-bottom: -2rem;
}

.align-items-center {
  align-items: center !important;
}

.align-items-top {
  align-items: flex-start !important;
}

.align-items-bottom {
  align-items: flex-end !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

a.noarrow:link::after {
  content: "" !important;
}

/** ga **/
.grecaptcha-badge {
  visibility: hidden;
}

.page-template-template-contact .grecaptcha-badge {
  visibility: visible;
}

/** carryover (hap2023/main.scss) **/
* {
  margin: 0;
  padding: 0;
}

.flex {
  display: flex;
}

.flex-justify {
  justify-content: space-around;
  flex-wrap: wrap;
}

.desktopHide {
  display: none;
}

.spacer {
  width: 100%;
  display: block;
  height: 3rem;
  background: #ffffff;
}

button:focus {
  outline: 0;
}

@media (max-width: 980px) {
  .tabletHide {
    display: none;
  }
  .tabletShow {
    display: block;
  }
}
@media (max-width: 767px) {
  .mobileHide {
    display: none;
  }
  .mobileShow {
    display: block;
  }
}
@media (max-width: 899px) {
  .mobileHide899 {
    display: none;
  }
  .mobileShow899 {
    display: block;
  }
}
/** overrides **/
.single [class*=col-] {
  float: left;
}

#site-header {
  border-top: 6px #78be20 solid;
  height: auto;
  display: block;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #C8C8C8;
}
.header-row:first-child {
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .header-row:nth-child(2) {
    display: none;
  }
}

.header-navigation-wrapper {
  width: 100%;
}

.header-inner {
  padding: 0 24px 0 0;
  align-items: center;
  max-width: 370px;
}
@media (max-width: 1000px) {
  .header-inner {
    display: flex;
  }
  .header-inner .logo {
    align-self: center;
  }
}

.logo {
  margin-left: 40px;
  background: #78be20;
  padding: 11px 15px;
  width: 80px;
}
@media screen and (max-width: 1064px) {
  .logo {
    margin-left: 0;
  }
}
@media screen and (max-width: 419px) {
  .logo {
    width: 80px;
    padding: 16px;
  }
}
.logo img {
  display: block;
  margin: 0 auto;
  width: 36px;
}
@media screen and (max-width: 419px) {
  .logo img {
    width: 40px;
  }
}

.wordmark {
  margin: 0 0 0 24px;
  min-width: 182px;
}
@media screen and (max-width: 1064px) {
  .wordmark {
    margin: 0 0 0 24px;
  }
}
@media screen and (max-width: 419px) {
  .wordmark {
    width: 100%;
    max-width: 182px;
    min-width: 100px;
  }
}
.wordmark img {
  width: 182px;
}
@media screen and (max-width: 419px) {
  .wordmark img {
    width: 100%;
    max-width: 182px;
    min-width: 100px;
  }
}

.header-titles-wrapper {
  display: block;
  width: 0%;
  margin-right: unset;
}
.primary-menu-wrapper {
  padding: 16px 0 0 40px;
}
.primary-menu-wrapper .primary-menu {
  display: block;
  margin: 0 auto;
  padding: 0 0;
}
.primary-menu-wrapper .primary-menu li {
  display: inline-block;
  margin: 0 0;
  line-height: auto;
  padding: 0;
  margin-right: 2rem;
}
.primary-menu-wrapper .primary-menu li::after {
  content: "";
  display: block;
  padding-top: 16px;
  width: 100%;
  border-bottom: #FFF 5px solid;
}
.primary-menu-wrapper .primary-menu li:hover::after, .primary-menu-wrapper .primary-menu li.current_page_item::after {
  border-bottom: #5C9A1B 5px solid;
}
.primary-menu-wrapper .primary-menu li a {
  color: #3A3B3D !important;
  font-size: 16px;
  line-height: 16px;
  display: inline;
}

.primary-menu li.current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current_page_ancestor {
  text-decoration: none;
}

.primary-menu .icon {
  margin-top: -0.65rem;
}
.primary-menu .icon::before {
  color: #3A3B3D;
  height: 0.5rem;
  width: 0.1rem;
}
.primary-menu .icon::after {
  color: #3A3B3D;
  height: 0.1rem;
  width: 0.5rem;
}
.primary-menu .sub-menu {
  background: #ffffff !important;
  color: #3A3B3D !important;
  border: #e6e6e6 1px solid;
  border-radius: 0;
  top: 100%;
  width: 100%;
  padding: 0;
}
.primary-menu .sub-menu::after {
  display: none;
}
.primary-menu .sub-menu::before {
  display: none;
}
.primary-menu .sub-menu li {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0 0 0;
  text-align: center;
}
.primary-menu .sub-menu li::after {
  border-bottom: none;
}
.primary-menu .sub-menu li:hover, .primary-menu .sub-menu li.current_page_item {
  background: #f8f8f8;
}
.primary-menu .sub-menu li:hover::after, .primary-menu .sub-menu li.current_page_item::after {
  border-bottom: none;
}
.primary-menu .sub-menu a {
  padding: 0;
}

.mobile-menu-toggle {
  display: none;
}
@media screen and (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: right;
  }
}

.mobile-menu-wrapper {
  display: none;
}
@media screen and (max-width: 980px) {
  .mobile-menu-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 67px;
    left: 0;
    z-index: 1000;
    text-align: center;
    background: #ffffff;
  }
  .mobile-menu-wrapper .wordmark {
    width: 100%;
    padding: 1rem 0;
    margin: 0 auto;
  }
  .mobile-menu-wrapper .wordmark img {
    display: block;
    margin: 0 auto;
  }
  .mobile-menu-wrapper ul {
    padding: 3rem 1rem 0;
  }
  .mobile-menu-wrapper ul li {
    display: block;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  .mobile-menu-wrapper ul li a {
    color: #007481;
    text-decoration: none;
    font-weight: bold;
  }
  .mobile-menu-wrapper ul.sub-menu {
    padding: 0 1rem 0;
  }
  .mobile-menu-wrapper ul.sub-menu li {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .mobile-menu-wrapper ul.sub-menu li:first-child {
    margin-top: 20px;
  }
  .mobile-menu-wrapper ul.sub-menu li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-wrapper ul .cta-btn a {
    width: 50%;
    margin: 1rem auto;
    background: #612166;
    color: #ffffff !important;
    font-family: FSHumana, calibri, arial, helvetica, sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 24px;
    font-weight: 300;
    border-radius: 4px;
  }
  .mobile-menu-wrapper .search-form {
    border: #e6e6e6 1px solid;
    border-radius: 4px;
    margin: 0 auto;
    width: 70%;
  }
}
@media screen and (max-width: 980px) and (min-width: 981px) {
  .mobile-menu-wrapper .search-form {
    max-width: 50%;
  }
}
@media screen and (max-width: 980px) {
  .mobile-menu-wrapper .search-form .search-field {
    border: none;
    margin: 0 0;
    background: #f8f8f8;
    padding: 0.5rem 1rem 0.25rem;
  }
  .mobile-menu-wrapper .search-form .search-submit {
    background: #5C9A1B;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    margin: 0 0;
    padding: 0.5rem 1rem 0.25rem;
  }
  .mobile-menu-wrapper .search-form .search-submit i {
    color: #ffffff;
  }
}

#provider-git-btn {
  cursor: pointer;
}

.utility {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 980px) {
  .utility {
    display: none;
  }
}
.utility ul {
  margin: 0 0 0 0;
  list-style-type: none;
}
.utility ul li {
  display: inline-block;
  margin: 0 0 0 2rem;
}
.utility ul li a {
  text-decoration: none;
}
.utility .cta-btn > a {
  font-family: "FS Humana", calibri, arial, helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 16px;
  background: #5C9A1B;
  color: #ffffff !important;
  padding: 12px 16px;
  margin: 0;
  border-radius: 4px;
}
.utility .cta-btn > a::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}
.utility .cta-btn > a:hover {
  background: #487815;
}
.utility .cta-btn > a:hover::after {
  transition-duration: 200ms;
}
.utility .nav-search a {
  color: #114A21 !important;
  font-size: 16px;
  font-weight: normal;
}
.utility .nav-search a::before {
  content: "\f002";
  display: inline-block;
  margin-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  color: #5C9A1B;
}
.utility .search-form {
  display: none;
  position: absolute;
  right: 0;
  top: 66px;
  width: 25%;
}
@media screen and (max-width: 980px) {
  .utility .search-form {
    display: block;
    position: relative;
    top: unset;
    right: unset;
    margin: 2rem auto;
    width: 90%;
    max-width: 480px;
  }
  .utility .search-form label {
    border: #e6e6e6 1px solid;
    border-radius: 4px;
  }
}
.utility .search-form .search-field {
  padding: 0.5rem 1rem;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .utility .search-form .search-field {
    font-size: 36px;
    margin: 0 0 0 2px;
  }
}
@media screen and (max-width: 419px) {
  .utility .search-form .search-field {
    font-size: 18px;
    padding: 17px 1rem;
  }
}
.utility .search-form .search-submit {
  display: block;
  position: absolute;
  background: #ffffff;
  top: 8px;
  right: 2px;
  width: 50px;
  height: 30px;
  font-size: 20px;
  padding: 0 0;
}
@media screen and (max-width: 980px) {
  .utility .search-form .search-submit {
    background: #5C9A1B;
    font-size: 36px;
    border-radius: 0 4px 4px 0;
    top: 0;
    right: 1px;
    width: 80px;
    height: 58px;
  }
}
.utility .search-form .search-submit i {
  color: #53575A;
}
@media screen and (max-width: 980px) {
  .utility .search-form .search-submit i {
    color: #ffffff;
    font-size: 30px;
  }
}

.lang-toggle .fas {
  color: #007481;
  padding-right: 0.5rem;
}
.lang-toggle #langToggle,
.lang-toggle #langToggleMobile {
  background: none;
  border: none;
}

.nav-toggle {
  width: auto;
  right: 20px;
}
@media screen and (max-width: 419px) {
  .nav-toggle {
    right: 0;
  }
}
.nav-toggle .toggle-icon {
  height: auto;
  width: auto;
}
.nav-toggle .toggle-icon a {
  width: 100%;
}
.nav-toggle .toggle-icon a.cta-btn {
  background: transparent;
}
.nav-toggle .toggle-inner {
  padding-top: 6px;
  height: 48px;
}

.menu-modal-inner {
  background: #f8f8f8;
}

.modal-menu .ancestor-wrapper a {
  color: #007481;
}
.modal-menu .mobile-cta-btn {
  width: 70%;
  margin: 1rem auto;
  background: #612166;
  color: #ffffff !important;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.disclaimers {
  max-width: 1279px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}
.disclaimers p {
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 1rem;
}
.disclaimers p:last-child {
  margin-bottom: 0;
}
.disclaimers a:link, .disclaimers a:active, .disclaimers a:visited {
  color: #3A3B3D;
  text-decoration: none;
}
.disclaimers a:hover {
  text-decoration: underline;
}

.footer-backtotop {
  background: #78be20;
  width: 100%;
  padding: 2rem;
  margin: 2rem auto;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .footer-backtotop {
    margin: 2rem auto 0;
  }
}
.footer-backtotop p {
  margin: 0 auto;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer-backtotop a {
  color: #114A21;
  text-decoration: none;
}

footer#site-footer {
  padding: 4rem 7%;
}
footer#site-footer .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  footer#site-footer .content-wrapper {
    display: block;
  }
}
footer#site-footer a {
  text-decoration: underline;
}
footer#site-footer a[href^="tel:"] {
  text-decoration: none;
}
footer#site-footer .footer-h {
  width: 20%;
  padding: 0;
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-h {
    width: 100%;
    padding: 0 0 2rem;
  }
}
footer#site-footer .footer-h img {
  max-width: 140px;
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-h img {
    width: 80px;
    margin: 0 auto;
  }
}
footer#site-footer .footer-nav {
  width: 60%;
  margin: 0;
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-nav {
    width: 100%;
    margin: 0 auto;
  }
}
footer#site-footer .footer-nav .footer-menu {
  display: block;
  margin: 0 auto;
  text-align: center;
}
footer#site-footer .footer-nav .footer-menu li {
  display: inline;
  margin: 0 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 19px;
  line-height: 29px;
  font-weight: lighter;
}
footer#site-footer .footer-nav .footer-menu li.current_page_item {
  text-decoration: underline;
}
footer#site-footer .footer-nav .footer-menu li.current_page_item::after {
  display: none;
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-nav .footer-menu li {
    font-size: 15px;
    line-height: 17px;
  }
}
footer#site-footer .footer-nav .footer-menu a {
  color: #3A3B3D;
  text-decoration: none;
}
footer#site-footer .footer-icons {
  width: 20%;
  display: flex;
  justify-content: space-between;
}
footer#site-footer .footer-icons .foot-icon {
  width: 110px;
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-icons .foot-icon {
    display: inline-block;
    width: 80px;
  }
}
@media screen and (max-width: 980px) {
  footer#site-footer .footer-icons {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }
}
footer#site-footer .footer-copy {
  text-align: center;
}
footer#site-footer .footer-copy img {
  width: 30px;
  height: 30px;
  display: inline;
}
@media screen and (max-width: 767px) {
  footer#site-footer .footer-copy img {
    width: 16px;
    height: 16px;
  }
}
footer#site-footer .footer-copy .fc-link-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  footer#site-footer .footer-copy .fc-link-wrap {
    display: block;
    margin: 1rem auto;
  }
}
footer#site-footer .footer-copy .footer-es {
  display: flex;
  align-items: center;
  width: 200px;
  margin: 0 0 0 -2rem;
}
@media screen and (max-width: 520px) {
  footer#site-footer .footer-copy .footer-es {
    width: 140px;
    margin: 0 auto;
  }
}
footer#site-footer .footer-copy .footer-es img {
  margin: 0 0 0 20px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1575px) {
  footer#site-footer .footer-copy .footer-es img {
    width: 20px;
    height: 20px;
  }
}
footer#site-footer .footer-copy .footer-es p {
  margin: 0;
}
footer#site-footer .footer-copy .fc-links {
  text-align: center;
  margin: 1rem auto;
}
@media screen and (max-width: 767px) {
  footer#site-footer .footer-copy .fc-links {
    display: block;
    width: 100%;
  }
}
footer#site-footer .footer-copy a {
  color: #3A3B3D;
  display: inline-block;
  margin: 0 12px;
}
footer#site-footer .footer-links {
  text-align: center;
  margin: 0 3rem;
}
footer#site-footer .footer-links p {
  font-size: 13px;
  line-height: 20px;
}
footer#site-footer .footer-links p a {
  color: #3A3B3D;
  display: inline-block;
  margin: 0 12px;
}

.ftr-din {
  font-size: 13px;
}
@media screen and (max-width: 980px) {
  .ftr-din {
    text-align: center;
  }
}

/*
.footer-info {
	p {
		font-size: 1.25rem;
		line-height: 1.375rem;
		color: #AA005F;
		a {
			color: #aa005f;
		}
	}
}
.footer-copy,
.footer-links {
	p {
		font-size: 1rem;
		line-height: 1.125rem;
		color: #414042;
	}
	a {
		color: #414042;
	}
}
.social {
	margin: 2rem 0;
	p {
  		font-family: FSHumana-Bold, calibri, arial, helvetica, sans-serif;
  		font-weight: bold;
  		letter-spacing: 1.5px;
  		margin-bottom: 0.875rem;
	}
	a {
		display: inline-block;
		margin-right: 0.75rem;
	}
	a:nth-child(0) {
		margin-left: 0
	}
	img {
		display: inline-block;
		width: 37px;
	}
	#copyurl {
		cursor: pointer;
	}
}*/
.search-page {
  max-width: 1440px;
  margin: 3rem auto 1rem;
  padding: 0 2rem;
}
.search-page h1 {
  font-size: 50px;
  line-height: 62px;
  color: #5C9A1B;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .search-page h1 {
    text-align: left;
  }
}
@media screen and (max-width: 899px) {
  .search-page h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.search-page h1 span {
  color: #114A21;
}
.search-page h2 {
  color: #114A21;
  text-align: center;
}
.search-page p.text-center {
  text-align: center;
  margin: 1rem auto;
}
.search-page .search-bar .search-form {
  border: #e6e6e6 1px solid;
  border-radius: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 981px) {
  .search-page .search-bar .search-form {
    max-width: 50%;
  }
}
.search-page .search-bar .search-form .search-field {
  border: none;
  margin: 0 0;
  background: #f8f8f8;
  padding: 0.5rem 1rem 0.25rem;
}
.search-page .search-bar .search-form .search-submit {
  background: #5C9A1B;
  color: #ffffff;
  border-radius: 0 4px 4px 0;
  margin: 0 0;
  padding: 0.5rem 1rem 0.25rem;
}
.search-page .search-bar .search-form .search-submit i {
  color: #ffffff;
}
.search-page .search-result {
  border: #e6e6e6 1px solid;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  cursor: pointer;
}
.search-page .search-result h3 {
  margin: 0;
}
.search-page .search-result h3 a {
  color: #5C9A1B;
}
.search-page .search-result h3 a:hover {
  color: #114A21;
}

@font-face {
  font-family: "FSHumana";
  src: url("assets/fonts/FSHumana.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FSHumana-Light";
  src: url("assets/fonts/FSHumana-Light.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FSHumana-Bold";
  src: url("assets/fonts/FSHumana-Bold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "FSHumana-Italic";
  src: url("assets/fonts/FSHumanaItalic.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FSHumana-Heavy";
  src: url(assets/fonts/FSHumanaHeavy.otf) format("truetype");
}
body * {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
}

sup {
  color: inherit;
  font-size: 50%;
  vertical-align: 0.25rem;
}

h1 {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  font-size: 3.75rem;
  font-weight: 100;
  margin: 0 0 1.5rem 0;
}

h2 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 2.375rem;
  font-weight: 100;
  margin: 0 0 1.5rem 0;
}

h3 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1.875rem;
  font-weight: 100;
  margin: 0 0 1.5rem 0;
}

h4 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 0 0 1.5rem 0;
}

h5 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 0 0 0.25rem 0;
}

h6 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  margin: 0 0 0.25rem 0;
}

.heavy,
b {
  font-family: "FSHumana-Bold", FSHumana, calibri, arial, helvetica, sans-serif !important;
  font-weight: 700;
  color: inherit;
}

strong {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 700;
  color: inherit;
}

p {
  font-size: 1.125rem;
}
@media (max-width: 600px) {
  p {
    font-size: 16px;
  }
}

em,
i {
  color: inherit;
  font-family: inherit;
}

a,
a:link,
a:hover,
a:visited,
a:active {
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* main scss file */
.menu-modal-inner {
  background: #5C9A1B;
}

.menu-modal nav * {
  border: none;
}

.modal-menu .ancestor-wrapper {
  text-align: center;
}
.modal-menu .ancestor-wrapper a {
  color: #003057;
  font-size: 30px;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  text-decoration: none;
}

.mobile-logo {
  width: 200px;
  margin: 0 auto;
}

.git-btn {
  width: 260px;
  margin: 0 auto;
}

.toggle-text {
  display: none;
}

.fill-children-current-color * {
  fill: #003057;
}

.page-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}
.page-wrapper .content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.page-wrapper.new-home-page {
  background: #ffffff;
}
.page-wrapper.new-home-page .hero-dots {
  margin-bottom: 64px;
}
.page-wrapper.generic-page {
  background: #ffffff;
  margin-top: 36px;
}
.page-wrapper.generic-page .content-wrapper {
  padding: 0 100px;
}
@media (max-width: 1000px) {
  .page-wrapper.generic-page .content-wrapper {
    padding: 0 20px;
  }
}
.page-wrapper.generic-page .content-wrapper strong {
  font-weight: 700;
}
.page-wrapper.generic-page .content-wrapper ul {
  margin-bottom: 16px;
}
.page-wrapper.generic-page .content-wrapper ul li {
  font-size: 1.125rem;
  margin-top: 0;
}

.home-hero {
  position: relative;
  width: 100%;
  background: #5C9A1B;
}
.home-hero.care {
  height: auto;
  padding-bottom: 9rem;
}
@media (max-width: 440px) {
  .home-hero.care .hero-copy {
    width: 100%;
    padding: 6% 1rem 6% 1rem;
    margin-left: 0;
  }
  .home-hero.care .hero-copy h1 {
    margin-top: 32px;
    margin-right: 41%;
    margin-bottom: 16px;
    font-size: 32px;
  }
}
@media (max-width: 370px) {
  .home-hero.care .hero-copy h1 {
    margin-right: 49%;
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.home-hero.care .hero-copy p {
  margin-right: 0;
}
.home-hero.care .hero-image {
  position: absolute;
  right: -130px;
  bottom: -75px;
  width: 41%;
}
@media (min-width: 1440px) {
  .home-hero.care .hero-image {
    width: 526px;
    top: 70px;
    bottom: 0;
  }
}
@media (max-width: 1439px) {
  .home-hero.care .hero-image {
    right: -113px;
    top: 41px;
    width: 37%;
  }
}
@media (max-width: 1280px) {
  .home-hero.care .hero-image {
    right: -113px;
    top: 41px;
    width: 36%;
  }
}
@media (max-width: 1000px) {
  .home-hero.care .hero-image {
    right: -113px;
    top: 41px;
    width: 43%;
  }
}
@media (max-width: 888px) {
  .home-hero.care .hero-image {
    top: 55px;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .home-hero.care .hero-image {
    right: -94px;
    top: 24px;
    width: 47%;
  }
}
@media (max-width: 650px) {
  .home-hero.care .hero-image {
    right: -60px;
  }
}
@media (max-width: 420px) {
  .home-hero.care .hero-image {
    right: -27px;
    top: 54px;
    width: 210px;
  }
}
@media (max-width: 370px) {
  .home-hero.care .hero-image {
    width: 200px;
  }
}
.home-hero.care .hero-image img {
  position: relative;
  border-radius: 50%;
  width: 100%;
}
@media (max-width: 1099px) {
  .home-hero .hero-copy {
    width: 64%;
  }
}
@media (max-width: 1000px) {
  .home-hero .hero-copy {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .home-hero .hero-copy {
    width: 60%;
  }
}
@media (max-width: 699px) {
  .home-hero .hero-copy {
    display: block;
    width: 100%;
    margin: 24px 0;
    padding: 0 1.5rem;
    text-align: center;
  }
}
.home-hero .hero-copy h1 {
  font-size: 40px;
  padding-right: 16px;
}
@media (min-width: 1440px) {
  .home-hero .hero-copy h1 {
    font-size: 40px;
  }
}
@media (max-width: 1099px) {
  .home-hero .hero-copy h1 {
    font-size: 40px;
  }
}
@media (max-width: 899px) {
  .home-hero .hero-copy h1 {
    font-size: 30px;
  }
}
@media (max-width: 699px) {
  .home-hero .hero-copy h1 {
    padding-right: 0;
  }
}
.home-hero .hero-copy {
  /*p {
  	margin-right: 7rem;
  	@media (max-width: 767px) {
  		margin-right: 2rem;
  	}
  }*/
}
.home-hero .hero-image {
  right: 0;
  top: 0;
  width: 58.61%;
  flex: 1;
}
@media (max-width: 1279px) {
  .home-hero .hero-image {
    flex: 1;
  }
}
@media (max-width: 699px) {
  .home-hero .hero-image {
    display: none;
  }
}
.home-hero .hero-image img {
  position: relative;
  border-bottom-left-radius: 50px;
  width: 100%;
}

.hero-dots,
.hero-dots-red {
  background: url("assets/images/green-dots.png") no-repeat left top;
  background-size: contain;
  height: 41px;
  margin-top: 4px;
}
@media (max-width: 699px) {
  .hero-dots,
  .hero-dots-red {
    margin-top: 2px;
    height: 24px;
    margin-bottom: 24px;
  }
}
.hero-dots.form-top,
.hero-dots-red.form-top {
  position: absolute;
  left: 0;
  top: 71px;
  width: 414px;
}
@media (max-width: 1023px) {
  .hero-dots.form-top,
  .hero-dots-red.form-top {
    display: none;
  }
}

.hero-dots-red {
  background: url("assets/images/dots-red.png") no-repeat left top;
  background-size: contain;
}

.hero-cta-wrapper {
  position: relative;
  height: 0px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .hero-cta-wrapper {
    padding-bottom: 140px;
  }
}
@media (max-width: 339px) {
  .hero-cta-wrapper {
    padding-bottom: 180px;
  }
}
.hero-cta-wrapper .hero-cta {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  padding: 2rem 1rem 1rem;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero-cta-wrapper .hero-cta {
    width: 66%;
    top: -80px;
  }
}
@media (max-width: 767px) {
  .hero-cta-wrapper .hero-cta {
    width: 96%;
  }
}
.hero-cta-wrapper .hero-cta p {
  font-size: 1.875rem;
  line-height: 2.375rem;
  padding: 0;
  color: #003057;
}
@media (max-width: 560px) {
  .hero-cta-wrapper .hero-cta p {
    font-size: 22px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .hero-cta-wrapper .hero-cta p br {
    display: none;
  }
}
@media (max-width: 490px) {
  .hero-cta-wrapper .hero-cta p {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.hero-cta-wrapper .stat-cta {
  top: 650px;
  padding-top: 2rem;
}
.hero-cta-wrapper .diff-cta {
  position: relative;
  width: 75%;
  top: 0;
  margin: 4rem 0 0;
  padding-top: 2rem;
}
.hero-cta-wrapper .bottom-cta {
  top: 60px;
  padding: 3rem 0 2rem;
}
@media (max-width: 767px) {
  .hero-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 420px) {
  .hero-cta-wrapper .bottom-cta {
    width: 90%;
  }
}
.hero-cta-wrapper .sunburst1 {
  position: absolute;
  left: 0;
  top: -110px;
  background: url("assets/images/sunburst1.png");
  width: 163px;
  height: 267px;
}
@media (max-width: 767px) {
  .hero-cta-wrapper .sunburst1 {
    display: none;
  }
}

a.cta-btn,
li.cta-btn > a,
input[type=submit].cta-btn {
  background: #78BE20;
  border-radius: 27px;
  padding: 0.75rem 2rem;
  margin-bottom: 18px;
  font-size: 18px;
  font-family: FSHumana-Heavy, FSHumana, calibri, arial, helvetica, sans-serif;
  text-decoration: none;
  color: #003057;
  display: inline-block;
}
a.cta-btn.blue-btn,
li.cta-btn > a.blue-btn,
input[type=submit].cta-btn.blue-btn {
  background-color: #003057 !important;
  color: #ffffff;
  padding: 0.75rem 3rem;
}

input[type=submit].cta-btn {
  margin: 2rem 0;
}

.hp-cta {
  width: 90%;
  margin: 0 auto 64px;
  text-align: center;
}
.hp-cta h2 {
  color: #114A21;
}
@media (max-width: 899px) {
  .hp-cta h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .hp-cta {
    width: 90%;
  }
  .hp-cta h3 {
    display: none;
  }
}
@media (max-width: 699px) {
  .hp-cta {
    margin-bottom: 24px;
  }
}
.hp-cta p {
  margin-bottom: 4rem;
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1279px) {
  .hp-cta p {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .hp-cta p {
    margin-bottom: 0;
  }
}

.row.flex-justify {
  width: 90%;
  margin: 0 auto;
}

.focus-icon {
  margin: 1rem;
}

.focus-icon img {
  width: 220px;
  margin: 0 auto;
}

.slides {
  overflow: hidden;
}

.slides li .slide-wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 767px) {
  .slides li .slide-wrap {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.slides li .slide-wrap .tm-excerpt {
  text-align: center;
  width: 50%;
  vertical-align: top;
}
@media (max-width: 767px) {
  .slides li .slide-wrap .tm-excerpt {
    width: 80%;
    margin: 0 auto;
  }
}
.slides li .slide-wrap .tm-excerpt h1 {
  font-family: FSHumana-bold calibri, arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .slides li .slide-wrap .tm-excerpt h1 {
    font-size: 2.25rem;
    margin: 0 0.5rem;
  }
}
.slides li .slide-wrap .tm-excerpt p {
  color: #ffffff;
}
.slides li .slide-wrap .tm-excerpt .tm-quote {
  margin: 1rem auto;
}
.slides li .slide-wrap .tm-excerpt .flip {
  transform: rotate(180deg);
}
.slides li .slide-wrap .tm-thumb {
  width: 48%;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .slides li .slide-wrap .tm-thumb {
    width: 80%;
    margin: 0 auto 1.5rem auto;
  }
}
.slides li .slide-wrap .tm-thumb .slide-burst1 {
  position: absolute;
  top: 50px;
  left: 73%;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 96px;
  height: 92px;
}
@media (max-width: 767px) {
  .slides li .slide-wrap .tm-thumb .slide-burst1 {
    left: 79%;
    width: 76px;
    height: 73px;
  }
}
@media (max-width: 520px) {
  .slides li .slide-wrap .tm-thumb .slide-burst1 {
    top: 20px;
    width: 60px;
    height: 58px;
  }
}
@media (max-width: 420px) {
  .slides li .slide-wrap .tm-thumb .slide-burst1 {
    top: 0;
    width: 50px;
    height: 48px;
  }
}
.slides li .slide-wrap .tm-thumb .slide-burst2 {
  position: absolute;
  top: 165px;
  left: 63%;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 134px;
  height: 129px;
}
@media (max-width: 767px) {
  .slides li .slide-wrap .tm-thumb .slide-burst2 {
    left: 71%;
    width: 120px;
    height: 117px;
  }
}
@media (max-width: 520px) {
  .slides li .slide-wrap .tm-thumb .slide-burst2 {
    top: 150px;
    width: 100px;
    height: 97px;
  }
}
@media (max-width: 420px) {
  .slides li .slide-wrap .tm-thumb .slide-burst2 {
    top: 100px;
    width: 80px;
    height: 78px;
  }
}
.slides li .slide-wrap .tm-thumb img {
  position: relative;
  width: 80%;
  max-width: 333px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.flex-control-nav {
  bottom: 0;
  position: relative;
}

.flex-control-paging li a.flex-active {
  background: #5C9A1B;
}

.flex-control-paging li a {
  background: #ffffff;
}

.scroller {
  background-color: #f3f3f3;
  padding: 42px 0 32px;
  position: relative;
  width: 100%;
}
.scroller .gray-dots {
  background: url("assets/images/gray-dots.png") no-repeat right top;
  position: absolute;
  background-size: contain;
  width: 413px;
  height: 56px;
  top: -47px;
  right: 0;
}
@media (max-width: 699px) {
  .scroller .gray-dots {
    width: 206px;
    height: 28px;
    top: -24px;
  }
}
@media (max-width: 999px) {
  .scroller .cta-interested {
    text-align: center;
  }
}
.scroller .sc-bullets {
  margin-left: 5%;
  width: 50%;
}
@media (max-width: 999px) {
  .scroller .sc-bullets {
    width: 90%;
  }
}
.scroller .sc-bullets [class^=bullet-wrap] {
  display: inline-block;
  width: 100%;
  text-align: left;
}
.scroller .sc-bullets [class^=bullet-wrap] [class^=temp-bullet] {
  display: inline-block;
  width: 40px;
}
.scroller .sc-bullets [class^=bullet-wrap] [class^=temp-bullet] p {
  visibility: hidden;
}
.scroller .sc-bullets [class^=bullet-wrap] .show-bullet[class^=temp-bullet] p {
  visibility: visible;
  display: inline-block;
}
.scroller .sc-bullets [class^=bullet-wrap] p[class^=bullet] {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 100;
  margin-bottom: 2rem;
  width: calc(100% - 48px);
  color: #003057;
  display: inline-block;
}
.scroller .sc-bullets [class^=bullet-wrap] p[class^=bullet].sbullet:before {
  position: absolute;
  left: 5%;
  content: "•";
  font-size: 1.5rem;
  font-weight: bold;
}
.scroller .sc-bullets [class^=sc-image] {
  display: none;
  position: absolute;
  right: 8%;
  top: -5%;
  width: 380px;
  height: 380px;
  z-index: 90;
}
@media (max-width: 1280px) {
  .scroller .sc-bullets [class^=sc-image] {
    width: 30vw;
    height: 30vw;
  }
}
.scroller .sc-bullets .sc-image1 {
  display: block;
}
@media (max-width: 999px) {
  .scroller .sc-bullets .sc-image1 {
    display: none;
  }
}
.scroller .cta-btn {
  margin-left: calc(5% + 40px);
}
@media (max-width: 999px) {
  .scroller .cta-btn {
    margin-left: 0;
  }
}

.stats {
  position: relative;
  margin-top: 5rem;
  min-height: 900px;
}
.stats .stat-copy {
  position: absolute;
  width: 500px;
  height: 200px;
  top: 0;
  left: 7.5rem;
}
.stats p {
  font-size: 1.875rem;
  font-family: FSHumana-Light, calibri, arial, helvetica, sans-serif;
  line-height: 2.375rem;
}
.stats .care-stats {
  width: 46%;
}
.stats .stat1 {
  position: absolute;
  left: 15.2778%;
  top: 160px;
}
.stats .stat1 img {
  width: 50%;
}
.stats .stat2 {
  position: absolute;
  left: 39.3056%;
  top: 340px;
}
.stats .stat2 img {
  width: 50%;
}
.stats .stat3 {
  position: absolute;
  left: 61.111%;
  top: 50px;
}
.stats .stat3 img {
  width: 50%;
}
.stats.care-stats-wrapper {
  min-height: 620px;
}
@media (max-width: 767px) {
  .stats.care-stats-wrapper {
    display: none;
  }
}
.stats .c-sunburst1 {
  position: absolute;
  left: 0;
  bottom: -35px;
  background: url("assets/images/sunburst1.png") no-repeat;
  background-size: 100% 100%;
  width: 115px;
  height: 188px;
}

.sunburst2 {
  position: absolute;
  left: 0;
  top: 380px;
  background: url("assets/images/sunburst2.png");
  width: 149px;
  height: 338px;
}

.sunburst3-top {
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("assets/images/sunburst3-top.png");
  width: 188px;
  height: 182px;
}

.pip-wrap {
  position: relative;
  width: 100%;
  height: 600px;
}
@media (max-width: 767px) {
  .pip-wrap {
    height: 450px;
  }
}
.pip-wrap .pip-box {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 43%;
  max-width: 618px;
  overflow: hidden;
  padding: 2rem 1rem;
  background: #ffffff;
  text-align: center;
  opacity: 0.92;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .pip-wrap .pip-box {
    width: 55%;
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .pip-wrap .pip-box {
    width: 80%;
    top: 14%;
  }
}
@media (max-width: 510px) {
  .pip-wrap .pip-box {
    top: 12%;
  }
}
@media (max-width: 451px) {
  .pip-wrap .pip-box {
    top: 6%;
  }
  .pip-wrap .pip-box h3 {
    font-size: 1.675rem;
  }
}
.pip-wrap .pip-box h2 {
  font-family: "FSHumana-Bold";
  font-size: 36px;
  letter-spacing: 3.5px;
}
.pip-wrap .pip-box img.pip-inf {
  width: 67px;
  height: auto;
  margin: 0 auto 24px auto;
}
.pip-wrap .pip-box img.pip-play {
  width: 51px;
  height: auto;
  margin: 0 auto 24px auto;
}
.pip-wrap .pip-box .cta-btn {
  background: #003057;
  color: #ffffff;
  margin-bottom: 0;
}

.after-vid {
  display: block;
  width: 100%;
  background: #5C9A1B;
  text-align: center;
  padding: 0 2rem;
}
.after-vid p {
  color: #ffffff;
  font-size: 21px;
  padding-top: 32px;
  margin-bottom: 8px;
}
.after-vid a.cta-btn {
  background: #003057;
  color: #ffffff;
  margin-bottom: 32px;
}

.home-vid-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
.home-vid-wrap .vid-intro {
  display: inline-block;
  margin-top: 5rem;
  width: 60%;
  margin-left: 20%;
  text-align: center;
}
@media (max-width: 1023px) {
  .home-vid-wrap .vid-intro {
    width: 70%;
    margin-left: 15%;
  }
}
@media (max-width: 767px) {
  .home-vid-wrap .vid-intro {
    margin-top: 40px;
  }
}
.home-vid-wrap .vid-intro h2 {
  margin-bottom: 0;
  color: #114A21;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .home-vid-wrap .vid-intro h2 {
    font-size: 5vw;
  }
}
@media (max-width: 440px) {
  .home-vid-wrap .vid-intro h2 {
    font-size: 1.875rem;
  }
}
.home-vid-wrap .vid-intro p {
  margin-bottom: 2rem;
}
.home-vid-wrap .video {
  position: relative;
  padding-bottom: 47%;
  height: 0;
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.home-vid-wrap .video iframe,
.home-vid-wrap .video object,
.home-vid-wrap .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hp-quiz-wrapper {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .hp-quiz-wrapper {
    display: block;
  }
}
.hp-quiz-wrapper .quiz-dots {
  position: absolute;
  bottom: 4px;
  left: 0;
  background: url("assets/images/white-dots.png") no-repeat left top;
  background-size: contain;
  width: 413px;
  height: 47px;
}
.hp-quiz-wrapper .hp-quiz-intro-wrap {
  position: relative;
  display: flex;
  flex: 1;
  background: #612166;
}
@media (max-width: 767px) {
  .hp-quiz-wrapper .hp-quiz-intro-wrap {
    display: block;
    flex: unset;
  }
}
.hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro {
  width: 500px;
  margin-left: auto;
  margin-right: 150px;
  align-self: center;
}
@media (max-width: 1439px) {
  .hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 0;
    padding: 48px 0 80px;
  }
}
@media (max-width: 899px) {
  .hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro p {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 0;
}
@media (max-width: 899px) {
  .hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap {
  display: flex;
  flex: 1;
  background: #F3F3F3;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .hp-quiz-wrapper .hp-quiz-wrap {
    display: block;
    flex: unset;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz {
  width: 700px;
  padding: 24px 0;
  align-self: center;
  text-align: center;
}
@media (max-width: 1439px) {
  .hp-quiz-wrapper .hp-quiz-wrap .hp-quiz {
    width: 80%;
    margin-left: 10%;
  }
}
@media (max-width: 767px) {
  .hp-quiz-wrapper .hp-quiz-wrap .hp-quiz {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.question {
  font-size: 1.875rem;
  line-height: 2.25rem;
  width: 315px;
  margin: 0 auto 12px;
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.disclaimer {
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.answer {
  display: inline-block;
  width: 500px;
  padding: 12px;
  border: 1px solid #612166;
  border-radius: 26px;
  background: #ffffff;
}
@media (max-width: 1199px) {
  .hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.answer {
    width: 80%;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.answer:hover {
  cursor: pointer;
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz .selectA {
  background: #612166 !important;
}
.hp-quiz-wrapper .hp-quiz-wrap .hp-quiz p.selectA {
  color: #ffffff;
}

.bottom-cta-wrapper2 {
  width: 100%;
  background: #5C9A1B;
  padding: 48px 0;
  margin: 24px 0;
  display: flex;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 {
    display: block;
  }
}
.bottom-cta-wrapper2 .blue-h {
  flex: 1;
  align-self: center;
}
.bottom-cta-wrapper2 .blue-h img {
  width: 211px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h {
    flex: unset;
    margin-bottom: 48px;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content {
  flex: 1;
  align-self: center;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content {
    flex: unset;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
  width: 90%;
  max-width: 580px;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
    max-width: unset;
    margin-left: 5%;
    text-align: center;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-head {
  font-size: 1.75rem;
  line-height: 2.375rem;
  margin-bottom: 0.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-desc {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-note {
  font-size: 11px;
  line-height: 15px;
}

.bottom-cta-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper {
    background: #ffffff;
  }
}
.bottom-cta-wrapper .bottom-cta {
  width: 50%;
  margin: 3rem auto 4rem;
  padding: 2rem 1rem 1rem;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 96%;
  }
}
.bottom-cta-wrapper .bottom-cta p {
  font-size: 1.875rem;
  line-height: 2.375rem;
  padding: 0;
  color: #003057;
}
@media (max-width: 560px) {
  .bottom-cta-wrapper .bottom-cta p {
    font-size: 22px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .bottom-cta-wrapper .bottom-cta p br {
    display: none;
  }
}
@media (max-width: 490px) {
  .bottom-cta-wrapper .bottom-cta p {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 420px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 90%;
  }
}

.sources-wrapper {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}
.sources-wrapper .sources-copy {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin: 40px 7% 2rem 7%;
}
.sources-wrapper .sources-copy p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
  color: #53575A;
}
.sources-wrapper .sources-copy p a {
  color: #53575A;
  text-decoration: none;
}

#cboxOverlay {
  background: rgba(0, 48, 87, 0.6);
}

#cboxClose {
  background: url("assets/images/vid-close.png");
  width: 70px;
  height: 28px;
  top: -28px;
}

#cboxClose:hover {
  background: url("assets/images/vid-close.png");
}

.care-comp-wrapper {
  position: relative;
  min-height: 260px;
  background: #ffffff;
}
.care-comp-wrapper .care-comp-bg {
  position: absolute;
  top: 114px;
  background: #f3f3f3;
  width: 100%;
  height: 100%;
}
.care-comp-wrapper .care-comp {
  display: flex;
  justify-content: space-around;
  align-self: center;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-bottom: 64px;
  width: 83%;
  padding: 2rem 0;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .care-comp-wrapper .care-comp {
    display: block;
  }
}
@media (max-width: 470px) {
  .care-comp-wrapper .care-comp {
    width: 94%;
  }
}
.care-comp-wrapper .care-comp .care-content {
  width: 46%;
  text-align: center;
}
@media (max-width: 1378px) {
  .care-comp-wrapper .care-comp .care-content .c2 p.care-cta-head {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .care-comp-wrapper .care-comp .care-content {
    width: 76%;
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .care-comp-wrapper .care-comp .care-content {
    width: 90%;
  }
}
.care-comp-wrapper .care-vs {
  width: 7.5%;
  align-self: center;
}
@media (max-width: 900px) {
  .care-comp-wrapper .care-vs {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .care-comp-wrapper .care-vs {
    margin: 1rem auto;
  }
}
.care-comp-wrapper p {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  font-size: 1.375rem;
  line-height: 1.875rem;
  padding: 0 5rem;
  margin-bottom: 0;
  color: #003057;
}
@media (max-width: 860px) {
  .care-comp-wrapper p {
    padding: 0 10%;
  }
}
.care-comp-wrapper .care-cta-head {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.375px;
  padding: 32px 2rem 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 1378px) {
  .care-comp-wrapper .care-cta-head {
    padding: 0 3rem;
  }
}
@media (max-width: 899px) {
  .care-comp-wrapper .care-cta-head {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .care-comp-wrapper .care-cta-head {
    padding: 0;
  }
}
.care-comp-wrapper .oc-burst1 {
  position: absolute;
  bottom: -190px;
  right: 50px;
  width: 192px;
  height: 184px;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 1378px) {
  .care-comp-wrapper .oc-burst1 {
    bottom: -234px;
  }
}
@media (max-width: 1280px) {
  .care-comp-wrapper .oc-burst1 {
    bottom: -210px;
  }
}
@media (max-width: 1099px) {
  .care-comp-wrapper .oc-burst1 {
    bottom: -170px;
    right: 35px;
    width: 163px;
    height: 156px;
  }
}
@media (max-width: 1000px) {
  .care-comp-wrapper .oc-burst1 {
    right: 30px;
  }
}
@media (max-width: 820px) {
  .care-comp-wrapper .oc-burst1 {
    display: none;
  }
}

.care-cta p {
  font-size: 1.625rem;
  line-height: 2.125rem;
  padding: 0 260px;
  font-family: FSHumana-Light, calibri, arial, helvetica, sans-serif;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .care-cta p {
    padding: 0 5%;
  }
}

.core-pillars {
  width: 100%;
  position: relative;
  background: #f3f3f3;
  padding-bottom: 24px;
}
.core-pillars .care-callout {
  margin: auto;
  width: 100%;
  text-align: center;
}
.core-pillars .care-callout p {
  margin-bottom: 0;
  font-size: 1.625rem;
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
}
.core-pillars .care-callout p.narrow {
  width: 90%;
  max-width: 620px;
  line-height: 2.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  padding: 0;
}
@media (max-width: 767px) {
  .core-pillars .care-callout p {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .core-pillars .care-callout h2,
  .core-pillars .care-callout h2 em {
    color: #ffffff;
    font-size: 30px;
  }
}
.core-pillars .care-callout .row {
  margin-top: 12px;
  margin-bottom: 16px;
  width: 840px;
  position: relative;
}
@media (max-width: 869px) {
  .core-pillars .care-callout .row {
    display: block;
    margin-bottom: 0;
    width: 100%;
  }
}
.core-pillars .care-callout .row .pillar-deco1 {
  position: absolute;
  top: 35px;
  left: -62px;
  z-index: 0;
  background: url("assets/images/pillar-deco1.png") no-repeat;
  background-size: cover;
  width: 117px;
  height: 406px;
}
.core-pillars .care-callout .row .pillar-deco2 {
  position: absolute;
  bottom: 12px;
  right: -67px;
  z-index: 0;
  background: url("assets/images/pillar-deco2.png") no-repeat;
  background-size: cover;
  width: 117px;
  height: 406px;
}
@media (max-width: 999px) {
  .core-pillars .care-callout .row .pillar-deco1,
  .core-pillars .care-callout .row .pillar-deco2 {
    display: none;
  }
}
.core-pillars .care-callout .oc-numbers {
  margin: 48px 0;
}
.core-pillars .care-callout .oc-numbers p.oc-num-intro {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto 64px auto;
  background: #4A7729;
  padding: 24px 12px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  text-align: center;
  font-size: 0;
}
@media (max-width: 1279px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block {
    width: 640px;
  }
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block {
    width: 90%;
    margin-left: 5%;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-break {
  display: none;
}
@media (max-width: 1279px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-break {
    display: block;
    height: 36px;
  }
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-break {
    display: none;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section {
  display: inline-block;
  position: relative;
  width: 24%;
  margin: 0 0.5%;
  padding-left: 8px;
  text-align: left;
  min-width: 270px;
  border-right: 1px solid #78BE20;
}
@media (max-width: 1279px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section {
    width: 300px;
  }
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section {
    width: 90%;
    padding-left: 0;
    padding-bottom: 24px;
    padding-top: 24px;
    border-right: none;
    border-bottom: 1px solid #78BE20;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section:last-child {
  border-right: none;
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section:last-child {
    border-bottom: none;
  }
}
@media (max-width: 1279px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section:nth-child(2) {
    border-right: none;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section p {
  color: #ffffff;
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section p.oc-num-head {
  font-size: 34px;
  line-height: 60px;
}
@media (max-width: 767px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section p.oc-num-head {
    margin-bottom: 24px;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section p.oc-num-copy {
  font-size: 24px;
  line-height: 28px;
  padding-right: 12px;
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section p.oc-num-copy {
    width: 90%;
  }
}
.core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section img {
  position: absolute;
  top: 0;
  right: 5%;
  height: 55px;
}
@media (max-width: 767px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section img {
    top: -4px;
  }
}
@media (max-width: 693px) {
  .core-pillars .care-callout .oc-numbers .oc-numbers-block .oc-number-section img {
    top: 16px;
  }
}
.core-pillars .pillar {
  width: 400px;
  padding: 48px 12px;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  z-index: 1;
  text-align: center;
}
@media (max-width: 869px) {
  .core-pillars .pillar {
    width: 90%;
    max-width: 400px;
    margin: 12px auto;
  }
}
.core-pillars .pillar img {
  height: 54px;
  margin: 0 auto 12px;
}
.core-pillars .pillar h3.pillar-head {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.core-pillars .pillar p.pillar-copy {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 26px;
}

.oc-cta {
  width: 100%;
  background: #003057;
  padding: 48px 0;
}
.oc-cta .content-wrapper {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  font-size: 0;
}
.oc-cta .content-wrapper .oc-cta-copy {
  display: inline-block;
  width: 50%;
  min-width: 300px;
  vertical-align: middle;
}
@media (max-width: 669px) {
  .oc-cta .content-wrapper .oc-cta-copy {
    display: block;
    width: 90%;
    margin-left: 5%;
    text-align: center;
    margin-bottom: 24px;
    min-width: unset;
  }
}
.oc-cta .content-wrapper .oc-cta-copy p {
  color: #ffffff;
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  font-weight: 100;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 0;
}
.oc-cta .content-wrapper .oc-cta-button {
  display: inline-block;
  width: 50%;
  min-width: 300px;
  text-align: right;
  vertical-align: middle;
}
@media (max-width: 669px) {
  .oc-cta .content-wrapper .oc-cta-button {
    display: block;
    width: 90%;
    margin-left: 5%;
    text-align: center;
    min-width: unset;
  }
}
.oc-cta .content-wrapper .oc-cta-button a {
  margin-bottom: 0;
}

.blue-dots {
  background: url("assets/images/blue-dots.png") no-repeat left top;
  background-size: contain;
  height: 41px;
  margin-bottom: 64px;
}
@media (max-width: 699px) {
  .blue-dots {
    height: 24px;
    margin-bottom: 48px;
  }
}
.blue-dots.right {
  background-position: right;
  margin-bottom: 0;
}

@media (max-width: 1109px) {
  .vbc-wrapper.bg-gray .vbc-text {
    padding-left: 24px;
  }
}
@media (max-width: 599px) {
  .vbc-wrapper.bg-gray .vbc-text {
    padding-left: 0;
  }
}
.vbc-wrapper .content-wrapper {
  text-align: center;
}
.vbc-wrapper .content-wrapper h2 {
  font-size: 3rem;
  color: #114A21;
  width: 90%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.vbc-wrapper .content-wrapper .row {
  padding: 24px 0;
  justify-content: space-between;
  width: 90%;
  max-width: 1130px;
}
.vbc-wrapper .content-wrapper .row .vbc-num {
  height: 80px;
  width: 80px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%; /* may require vendor prefixes */
  border: 4px solid #5C9A1B;
  color: #5C9A1B;
  margin-bottom: 24px;
}
.vbc-wrapper .content-wrapper .row .vbc-text,
.vbc-wrapper .content-wrapper .row .vbc-image {
  width: 50%;
}
.vbc-wrapper .content-wrapper .row .vbc-text {
  align-self: center;
  text-align: left;
  max-width: 480px;
  padding-right: 16px;
}
@media (max-width: 599px) {
  .vbc-wrapper .content-wrapper .row .vbc-text {
    width: 100%;
    max-width: unset;
    padding-right: 0;
  }
}
.vbc-wrapper .content-wrapper .row .vbc-text h3 {
  margin: 24px 0;
  font-size: 1.875rem;
}
@media (max-width: 599px) {
  .vbc-wrapper .content-wrapper .row .vbc-text h3 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 1rem;
  }
}
.vbc-wrapper .content-wrapper .row .vbc-text p {
  font-size: 1.25rem;
}
@media (max-width: 599px) {
  .vbc-wrapper .content-wrapper .row .vbc-text p {
    margin-top: 1.25rem;
  }
}
@media (max-width: 599px) {
  .vbc-wrapper .content-wrapper .row .vbc-image {
    display: none;
  }
}
.vbc-wrapper .content-wrapper .row .vbc-image img {
  margin-left: auto;
  margin-right: 0;
}

.ch-wrapper {
  width: 100%;
  background: #ffffff;
  padding-top: 5rem;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .ch-wrapper {
    padding-top: 40px;
  }
}
.ch-wrapper h4 {
  width: 45%;
  margin: 0 auto;
}
@media (max-width: 660px) {
  .ch-wrapper h4 {
    width: 80%;
  }
}
.ch-wrapper .ch-section {
  position: relative;
  background: #ffffff;
  padding: 4rem 0;
}
.ch-wrapper .ch-section:nth-child(odd) {
  background: #f5f5f5;
}
.ch-wrapper .ch-section:nth-child(odd) .ch-row {
  flex-direction: row-reverse;
}
.ch-wrapper .ch-section .ch-burst1 {
  position: absolute;
  background: url("assets/images/ch-burst1.png") no-repeat;
  background-size: 100% 100%;
  width: 171px;
  height: 326px;
  bottom: -80px;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-burst1 {
    display: none;
  }
}
.ch-wrapper .ch-section .ch-burst2 {
  position: absolute;
  background: url("assets/images/ch-burst2.png") no-repeat;
  background-size: 100% 100%;
  width: 120px;
  height: 117px;
  bottom: -10px;
  left: 20px;
  z-index: 1;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-burst2 {
    display: none;
  }
}
.ch-wrapper .ch-section .ch-burst3 {
  position: absolute;
  background: url("assets/images/ch-burst3.png") no-repeat;
  background-size: 100% 100%;
  width: 115px;
  height: 159px;
  bottom: 15px;
  right: 0px;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-burst3 {
    display: none;
  }
}
.ch-wrapper .ch-section .ch-burst4 {
  position: absolute;
  background: url("assets/images/ch-burst4.png") no-repeat;
  background-size: 100% 100%;
  width: 160px;
  height: 354px;
  top: -90px;
  left: 0px;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-burst4 {
    display: none;
  }
}
.ch-wrapper .ch-section img {
  width: 5.75rem;
  margin: 0 auto;
}
.ch-wrapper .ch-section .ch-title {
  position: relative;
  font-size: 3.75rem;
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-title:after {
    content: "";
    border-bottom: 3px solid #5C9A1B;
    width: 32px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
  }
}
.ch-wrapper .ch-section .ch-row {
  display: flex;
  padding: 4rem 17% 0;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-row {
    padding-top: 12px;
  }
}
@media (max-width: 500px) {
  .ch-wrapper .ch-section .ch-row {
    padding: 12px 3% 0;
  }
}
.ch-wrapper .ch-section .ch-row .ch-info {
  width: 370px;
  padding: 0 1rem;
  align-self: center;
}
.ch-wrapper .ch-section .ch-row .ch-info h3 {
  position: relative;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-row .ch-info h3 {
    text-align: center;
  }
}
.ch-wrapper .ch-section .ch-row .ch-info h3:after {
  content: "";
  border-bottom: 3px solid #5C9A1B;
  width: 32px;
  position: absolute;
  left: 0;
  bottom: -12px;
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-row .ch-info h3:after {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .ch-wrapper .ch-section .ch-row .ch-info p {
    display: none;
  }
}
.ch-wrapper .ch-section .ch-row .ch-explain {
  display: flex;
  align-items: center;
  width: 460px;
  padding: 2rem 0;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}
.ch-wrapper .ch-section .ch-row .ch-explain img {
  width: 80%;
}
.ch-wrapper .ch-section .ch-row .ch-explain p {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  position: relative;
  margin: 0 2.75rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.ch-wrapper .ch-section .ch-row .ch-explain p strong {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
}
.ch-wrapper .ch-section .ch-row .ch-explain p img.quote {
  width: 2.0625rem;
  height: 1.6875rem;
  margin: 1rem auto -1rem;
}

/*-- Humana difference section --*/
.difference-wrapper {
  position: relative;
  width: 100%;
  background: #003057;
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .difference-wrapper {
    display: none;
  }
}
.difference-wrapper .difference {
  width: 60%;
  margin-left: 7.625rem;
}
.difference-wrapper .difference .diff-copy {
  margin-right: 21rem;
}
.difference-wrapper .difference .diff-copy2 {
  margin-top: 3rem;
  margin-right: 15rem;
}
.difference-wrapper .difference .hero-cta-wrapper {
  height: auto;
  padding-bottom: 80px;
}
.difference-wrapper .diff-h {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28%;
  height: 92%;
  max-height: 708px;
  background: url("assets/images/h-outline.png") no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 1440px) {
  .difference-wrapper .diff-h {
    width: 403px;
    height: 783px;
    max-height: 783px;
  }
}

/*-- Our Care Resources --*/
.oc-resources-wrapper {
  width: 100%;
  padding-top: 5rem;
  overflow: hidden;
  text-align: center;
}
.oc-resources-wrapper .slide-wrapper {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
.oc-resources-wrapper .slide-wrapper .rs-left,
.oc-resources-wrapper .slide-wrapper .rs-right {
  align-self: center;
  width: 70px;
}
@media (max-width: 767px) {
  .oc-resources-wrapper {
    display: none;
  }
}
.oc-resources-wrapper h2 {
  margin-bottom: 0;
}
.oc-resources-wrapper .resources {
  position: relative;
  width: calc(90% - 35px);
  margin: 1rem 0 3rem;
}
.oc-resources-wrapper .resources ul.flex-direction-nav {
  opacity: 1;
}
.oc-resources-wrapper .resources ul.flex-direction-nav a {
  opacity: 1;
  height: 48px;
}
.oc-resources-wrapper .res-wrap {
  height: 300px;
  margin: 1rem;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: relative;
}
.oc-resources-wrapper .res-wrap .res-img {
  height: 100px;
}
.oc-resources-wrapper .res-wrap .res-img img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.oc-resources-wrapper .res-wrap .res-excerpt {
  padding: 2rem;
}
.oc-resources-wrapper .res-wrap .res-excerpt h4 {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
}
.oc-resources-wrapper .res-wrap .res-excerpt a {
  position: absolute;
  bottom: 14px;
  margin-left: -40px;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
.oc-resources-wrapper .res-wrap .res-excerpt a:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 4px;
  background: url("assets/images/blue-arrow.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}

@media (max-width: 767px) {
  .care-page .bottom-cta-wrapper {
    background: #f5f5f5;
  }
}

.rs-page {
  background: #ffffff;
}

.rs-hero {
  width: 50%;
  margin-left: 25%;
  padding-top: 3rem;
  text-align: center;
}
@media (max-width: 720px) {
  .rs-hero {
    width: 80%;
    margin-left: 10%;
    padding-top: 2rem;
  }
}
.rs-hero img.rs-icon {
  width: 89px;
  margin: 0 auto 1rem auto;
}
.rs-hero p {
  margin: 0 0 2rem 0;
}
@media (max-width: 370px) {
  .rs-hero p {
    margin: 0 0 1rem 0;
  }
}

.fpost-wrapper {
  width: 100%;
  background: #003057;
  padding: 48px 0;
  font-size: 0;
}
.fpost-wrapper .fpost {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
.fpost-wrapper .fpost h2 {
  color: #ffffff;
  margin-bottom: 24px;
  width: 100%;
}
.fpost-wrapper .fpost .fpost-inside {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .fpost-wrapper .fpost .fpost-inside {
    display: block;
  }
}
.fpost-wrapper .fpost .fpost-inside .fpost-img {
  display: inline-block;
  width: 60%;
  min-width: 350px;
}
@media (max-width: 767px) {
  .fpost-wrapper .fpost .fpost-inside .fpost-img {
    width: 100%;
  }
}
.fpost-wrapper .fpost .fpost-inside .fpost-img img {
  width: 100%;
}
.fpost-wrapper .fpost .fpost-inside .fpost-copy {
  display: inline-block;
  width: 40%;
  min-width: 100px;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .fpost-wrapper .fpost .fpost-inside .fpost-copy {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
  }
}
.fpost-wrapper .fpost .fpost-inside .fpost-copy h3, .fpost-wrapper .fpost .fpost-inside .fpost-copy p {
  color: #ffffff;
}

.rs-filter {
  width: 100%;
  min-height: 40px;
  padding: 0 7%;
}

.rs-res-outer {
  position: relative;
  width: 100%;
}

.rs-resources-wrapper {
  width: calc(100% - 8rem);
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 4rem;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 1000px) {
  .rs-resources-wrapper {
    padding-top: 2rem;
  }
}
@media (max-width: 540px) {
  .rs-resources-wrapper {
    width: 100%;
  }
}
.rs-resources-wrapper .rs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 830px) {
  .rs-resources-wrapper .rs-row {
    display: block;
  }
}
.rs-resources-wrapper .rs-row .resources {
  position: relative;
  width: 80%;
  margin: 4rem 10%;
}
.rs-resources-wrapper .rs-row .resources ul.flex-direction-nav {
  opacity: 1;
}
.rs-resources-wrapper .rs-row .resources ul.flex-direction-nav a {
  opacity: 1;
  height: 48px;
}
.rs-resources-wrapper .rs-row .res-wrap {
  flex-basis: 27%;
  height: 410px;
  margin-bottom: 3rem;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
@media (max-width: 1100px) {
  .rs-resources-wrapper .rs-row .res-wrap {
    flex-basis: 35%;
  }
}
@media (max-width: 830px) {
  .rs-resources-wrapper .rs-row .res-wrap {
    width: 350px;
    margin: 0 auto 40px auto;
  }
}
@media (max-width: 370px) {
  .rs-resources-wrapper .rs-row .res-wrap {
    width: 90%;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-img {
  height: 185px;
}
.rs-resources-wrapper .rs-row .res-wrap .res-img img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt {
  padding: 2rem 2rem 1rem;
  position: relative;
  text-align: left;
  height: 225px;
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap .res-excerpt {
    height: auto;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt h4 {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a {
  color: #003057;
  text-decoration: none;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.rs-title {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  line-height: 1.5rem;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.rs-excerpt {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif;
  line-height: 1.5rem;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore {
  position: absolute;
  bottom: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore {
    font-size: 1.3rem;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 4px;
  background: url("assets/images/blue-arrow.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}
.rs-resources-wrapper .pagination {
  width: 50%;
  margin: 0 auto;
  min-width: 300px;
  text-align: center;
}
.rs-resources-wrapper .pagination .page-numbers {
  display: inline-block;
  font-size: 14px;
  margin: 0 12px;
  color: #53575A;
}
.rs-resources-wrapper .pagination .page-numbers.current {
  font-size: 18px;
  margin-top: -4px;
}

#res-filter.select-css {
  position: relative;
  top: 2px;
  display: block;
  font-size: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  line-height: 1.3;
  padding: 8px;
  width: 15%;
  min-width: 150px;
  box-sizing: border-box;
  margin: 0 auto 48px auto;
  border: 2px solid #dcd7ca;
  border-radius: 4px;
  border: 1px solid #003057;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  /*background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');*/
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.select-css::-ms-expand {
  display: none;
}

.select-css option {
  font-weight: normal;
}

.return {
  margin: 1rem 0 1rem 7%;
}
.return a {
  position: relative;
  margin-left: 32px;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
.return a:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  background: url("assets/images/blue-arrow-left.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}

.rs-topic {
  font-family: FSHumana-Bold, calibri, arial, helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 2.33px;
  margin-bottom: 0;
}

.rs-blue-head {
  position: relative;
  width: 100%;
  background: #78be20;
  min-height: 100px;
  padding: 4rem 0 4rem 7%;
  overflow: hidden;
}
.rs-blue-head .rs-head-copy {
  margin-left: 3.2%;
  width: 52%;
}
@media (max-width: 999px) {
  .rs-blue-head .rs-head-copy {
    width: 62%;
  }
}
@media (max-width: 420px) {
  .rs-blue-head .rs-head-copy {
    width: 94%;
    margin-left: 0;
  }
}
.rs-blue-head .rs-head-copy h2 {
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .rs-blue-head .rs-head-copy h2 {
    font-size: 30px;
  }
}
@media (max-width: 420px) {
  .rs-blue-head .rs-head-copy h2 {
    margin-right: 35%;
  }
}
.rs-blue-head .rs-head-image {
  position: absolute;
  width: 35%;
  top: 0;
  right: -60px;
}
@media (max-width: 999px) {
  .rs-blue-head .rs-head-image {
    right: -40px;
  }
}
@media (max-width: 520px) {
  .rs-blue-head .rs-head-image {
    width: 46%;
  }
}
.rs-blue-head .rs-head-image img {
  position: relative;
  border-radius: 50%;
  width: 100%;
  z-index: 1;
}
.rs-blue-head .rs-head-image .rs-head-burst {
  position: absolute;
  top: 0;
  left: -54px;
  background: url("assets/images/sunburst-full.png") no-repeat;
  background-size: cover;
  width: 172px;
  height: 165px;
}
@media (max-width: 999px) {
  .rs-blue-head .rs-head-image .rs-head-burst {
    display: none;
  }
}

.post-wrapper {
  display: block;
  margin: 0 7%;
}
.post-wrapper .hero-cta-wrapper .hero-cta {
  position: relative;
  top: 0;
  margin: 0;
}
@media (max-width: 999px) {
  .post-wrapper .hero-cta-wrapper .hero-cta {
    margin: 2rem auto 0;
  }
}
.post-wrapper ol, .post-wrapper ul {
  margin-bottom: 1.25rem;
  margin-left: 0.75rem;
  margin-bottom: 1rem;
}
.post-wrapper ol li, .post-wrapper ul li {
  color: #53575A;
  font-size: 1.125rem;
}

.lf-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 2rem 2rem;
}
.lf-wrapper > *, .lf-wrapper div > * {
  color: #53575A;
}
.lf-wrapper .image-info > * {
  color: #53575A;
}
.lf-wrapper .lf-head-wrapper {
  width: 100%;
}
.lf-wrapper .lf-head-wrapper .lf-num-col {
  position: relative;
  top: -6px;
  display: inline-block;
  width: 60px;
  vertical-align: top;
}
.lf-wrapper .lf-head-wrapper .lf-num-col .lf-num {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: #5C9A1B;
  color: #003057;
}
.lf-wrapper .lf-head-wrapper .lf-num-col p.lf-num {
  padding-top: 2px;
}
.lf-wrapper .lf-head-wrapper .lf-headline {
  display: inline-block;
  width: calc(100% - 60px);
  margin-left: -7px;
}
.lf-wrapper .lf-head-wrapper .lf-headline > * {
  color: #53575A;
}
.lf-wrapper .lf-head-wrapper .lf-headline h4 {
  font-size: 1.875rem;
}
.lf-wrapper .lf-body-col {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
}
.lf-wrapper .lf-body-col h5 {
  margin-bottom: 0.66rem;
  color: #003057;
}
.lf-wrapper .lf-body-col > * {
  color: #53575A;
}
.lf-wrapper .lf-body-col p img {
  margin: 0;
}
@media (max-width: 999px) {
  .lf-wrapper .lf-body-col {
    width: 100%;
    margin-left: 0;
  }
}
.lf-wrapper .lf-body-col .source-wrap p {
  font-size: 13px;
}

.rs-sidebar {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 24%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .rs-sidebar {
    width: 100%;
  }
}
.rs-sidebar .sidebar-spacer {
  display: block;
  height: 130px;
}
@media (max-width: 1023px) {
  .rs-sidebar .sidebar-spacer {
    height: 32px;
  }
}
@media (max-width: 1023px) {
  .rs-sidebar .rs-side-wrap {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .rs-sidebar .rs-side-wrap {
    display: block;
  }
}
.rs-sidebar p.rs-sidebar-head {
  font-family: FSHumana-Bold, calibri, arial, helvetica, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 2.33px;
  margin-left: 5%;
}
@media (max-width: 999px) {
  .rs-sidebar p.rs-sidebar-head {
    margin-left: 0;
  }
}
.rs-sidebar .res-wrap {
  height: 240px;
  width: 90%;
  margin-left: 5%;
  margin-bottom: 3rem;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
@media (max-width: 999px) {
  .rs-sidebar .res-wrap {
    flex-basis: 30%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .rs-sidebar .res-wrap {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}
.rs-sidebar .res-wrap .res-img {
  height: 60px;
}
.rs-sidebar .res-wrap .res-img img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}
.rs-sidebar .res-wrap a .res-excerpt {
  text-decoration: none;
}
.rs-sidebar .res-wrap .res-excerpt {
  padding: 1rem;
  position: relative;
  text-align: left;
  height: 180px;
}
.rs-sidebar .res-wrap .res-excerpt p {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1rem;
}
.rs-sidebar .res-wrap .res-excerpt p.sidebar-topic {
  font-family: FSHumana-Bold, calibri, arial, helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 1.33px;
  margin-bottom: 0.5rem;
}
.rs-sidebar .res-wrap .res-excerpt a {
  color: #003057;
  text-decoration: none;
}
.rs-sidebar .res-wrap .res-excerpt .readmore {
  position: absolute;
  bottom: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
.rs-sidebar .res-wrap .res-excerpt .readmore:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 4px;
  background: url("assets/images/blue-arrow.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}

.resource-vid-wrap {
  position: relative;
  width: 96%;
}
@media (max-width: 767px) {
  .resource-vid-wrap {
    width: 100%;
  }
}
.resource-vid-wrap .video-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.resource-vid-wrap .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
}
.resource-vid-wrap .video.video-group {
  height: auto;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.resource-vid-wrap .video.video-group .video-meta h3 {
  color: #5C9A1B;
  font-weight: 300;
}
.resource-vid-wrap .video.video-group .aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.resource-vid-wrap .video.video-group .aspect-ratio iframe {
  position: absolute;
  width: 100% !important;
  height: 100%;
}
.resource-vid-wrap .video.video-group:first-child {
  width: 100%;
}
.resource-vid-wrap .video.video-group:not(:first-child) {
  width: 50%;
  margin: 0 auto 2rem;
  padding: 1rem;
}
@media (max-width: 679px) {
  .resource-vid-wrap .video.video-group:not(:first-child) {
    width: 100%;
  }
}
@media (min-width: 680px) {
  .resource-vid-wrap .video.video-group:not(:first-child) .video-meta {
    min-height: 125px;
  }
}
.resource-vid-wrap .video.video-group:not(:first-child) .iframe-clicker {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(17, 74, 33, 0);
  z-index: 200;
}
@media (max-width: 679px) {
  .resource-vid-wrap .video.video-group:not(:first-child) .iframe-clicker {
    display: none;
  }
}
.resource-vid-wrap .video iframe,
.resource-vid-wrap .video object,
.resource-vid-wrap .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  border: none;
}

.rs-fw-image {
  position: relative;
  margin: 0 7% 3rem;
  border-radius: 30px;
  min-height: 360px;
  display: flex;
}
.rs-fw-image img {
  width: 100%;
  border-radius: 30px;
}
.rs-fw-image .image-info {
  align-self: center;
  width: 60%;
  margin-left: 20%;
  padding: 3rem 0 1.875rem;
  text-align: center;
}
@media (max-width: 499px) {
  .rs-fw-image .image-info {
    width: 90%;
    margin-left: 5%;
  }
  .rs-fw-image .image-info h1 {
    font-size: 2.5rem;
  }
}

.tooltip,
.urltooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext,
.urltooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
}

.tooltip .tooltiptext::after,
.urltooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext,
.urltooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

hr.top-rule {
  display: none;
}
@media (max-width: 899px) {
  hr.top-rule {
    display: block;
    margin: 3rem 4rem 0;
  }
}
@media (max-width: 540px) {
  hr.top-rule {
    margin: 3rem 0 0;
  }
}

.content-wrapper.pip-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 8rem);
  margin: 2rem auto 0;
}
@media (max-width: 1440px) {
  .content-wrapper.pip-intro {
    width: calc(100% - 4rem);
    margin-left: 4rem;
  }
}
@media (max-width: 899px) {
  .content-wrapper.pip-intro {
    width: 80%;
    margin: 4rem auto 0;
    padding: 0 10%;
    display: block;
  }
}
@media (max-width: 599px) {
  .content-wrapper.pip-intro {
    width: 96%;
  }
}
.content-wrapper.pip-intro .pip-intro-left {
  width: 50%;
  padding: 0 10% 0 8%;
}
@media (max-width: 1439px) {
  .content-wrapper.pip-intro .pip-intro-left {
    padding-left: 0;
  }
}
@media (max-width: 1023px) {
  .content-wrapper.pip-intro .pip-intro-left {
    padding-right: 2%;
  }
}
@media (max-width: 899px) {
  .content-wrapper.pip-intro .pip-intro-left {
    display: block;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }
}
.content-wrapper.pip-intro .pip-intro-left h2 {
  position: relative;
  font-family: FSHumana-Bold Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 3.33px;
}
.content-wrapper.pip-intro .pip-intro-left h3 {
  font-size: 26px;
  color: #53575A;
}
.content-wrapper.pip-intro .pip-intro-left p {
  color: #53575A;
}
.content-wrapper.pip-intro .pip-intro-left a.cta-btn {
  margin-bottom: 0;
}
.content-wrapper.pip-intro .pip-intro-right {
  width: 50%;
  vertical-align: top;
  text-align: right;
}
@media (max-width: 899px) {
  .content-wrapper.pip-intro .pip-intro-right {
    float: none;
    display: block;
    width: 100%;
  }
}
.content-wrapper.pip-intro .pip-intro-right img {
  width: 100%;
  height: auto;
}

.my_loadmore {
  background-color: #ddd;
  border-radius: 2px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.my_loadmore:hover {
  background-color: #767676;
  color: #fff;
}

.page-wrapper.pip-page {
  background: #ffffff;
}
.page-wrapper.pip-page .content-wrapper {
  max-width: unset;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap {
  width: 100%;
  padding: 3rem 0;
  background: #5C9A1B;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero .pip-infinity {
  width: 68px;
  margin: 0 auto 24px;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero h1 {
  font-family: "FSHumana-Bold", FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 700;
  color: #003057;
  font-size: 2.25rem;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero .pip-head-text {
  width: 600px;
  margin: 0 auto;
}
.page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero .pip-head-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 625px) {
  .page-wrapper.pip-page .content-wrapper .pip-hero-wrap .pip-hero .pip-head-text {
    width: 96%;
    margin: 0 0 0 2%;
  }
}
.page-wrapper.pip-page .pip-articles {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 100px 0;
  overflow: hidden;
}
@media (max-width: 630px) {
  .page-wrapper.pip-page .pip-articles {
    padding: 4rem 2% 0;
  }
}
.page-wrapper.pip-page .pip-articles .pip-row {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 3rem;
}
.page-wrapper.pip-page .pip-articles .pip-row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .page-wrapper.pip-page .pip-articles .pip-row {
    display: block;
    text-align: center;
  }
}
.page-wrapper.pip-page .pip-articles .pip-row .pip-article-thumb {
  width: 27%;
  margin-right: 6%;
}
@media (max-width: 767px) {
  .page-wrapper.pip-page .pip-articles .pip-row .pip-article-thumb {
    width: 250px;
    margin: 0 auto 16px;
  }
}
.page-wrapper.pip-page .pip-articles .pip-row .pip-article-thumb img {
  width: 100%;
  border-radius: 20px;
}
.page-wrapper.pip-page .pip-articles .pip-row .pip-article-intro {
  display: inline-block;
  width: 50%;
}
@media (max-width: 1023px) {
  .page-wrapper.pip-page .pip-articles .pip-row .pip-article-intro {
    width: 66%;
  }
}
@media (max-width: 630px) {
  .page-wrapper.pip-page .pip-articles .pip-row .pip-article-intro {
    width: 80%;
  }
}
.page-wrapper.pip-page .pip-articles .pip-row .pip-article-intro h3 {
  font-size: 26px;
  color: #114A21;
}
.page-wrapper.pip-page .pip-articles .pip-row .pip-article-intro p {
  color: #53575A;
}
.page-wrapper.pip-page .pip-articles .pip-row a.readmore {
  position: relative;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
.page-wrapper.pip-page .pip-articles .pip-row a.readmore:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 4px;
  background: url("assets/images/blue-arrow.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}

.page-wrapper.pip-single {
  background: #ffffff;
}
.page-wrapper.pip-single .return {
  margin: 1rem 0;
}
.page-wrapper.pip-single .pip-article {
  display: inline-block;
  width: 75%;
  margin: 0 4% 0 0;
  padding: 15px 50px 0 0;
}
.page-wrapper.pip-single .pip-article > *, .page-wrapper.pip-single .pip-article div > * {
  color: #53575A;
}
.page-wrapper.pip-single .pip-article h1 {
  font-size: 3rem;
  color: #114A21;
}
.page-wrapper.pip-single .pip-article h2, .page-wrapper.pip-single .pip-article h3, .page-wrapper.pip-single .pip-article h4 {
  color: #003057;
}
.page-wrapper.pip-single .pip-article img {
  border-radius: 30px;
  width: 100%;
}
@media (max-width: 999px) {
  .page-wrapper.pip-single .pip-article {
    width: 100%;
    padding-right: 0;
  }
}
.page-wrapper.pip-single .pip-related-wrap {
  display: inline-block;
  width: 20%;
  margin: 1rem auto 1rem;
  text-align: center;
  vertical-align: top;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row {
  width: 100%;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box {
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0 0 2rem;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
  overflow: hidden;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box img {
  height: 170px;
  border-bottom-left-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box h4 {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 2rem;
  color: #114A21;
  padding: 1rem;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box a.readmore {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  font-size: 1rem;
  text-decoration: none;
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box a.readmore:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 4px;
  background: url("assets/images/blue-arrow.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}
@media (max-width: 999px) {
  .page-wrapper.pip-single .pip-related-wrap .pip-related-row .pip-related-box {
    margin: 0 auto 2rem;
    width: 300px;
  }
}
.page-wrapper.pip-single .pip-related-wrap .pip-related-row p.rs-sidebar-head {
  font-family: FSHumana-Bold, calibri, arial, helvetica, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 2.33px;
  margin-left: 5%;
}
@media (max-width: 999px) {
  .page-wrapper.pip-single .pip-related-wrap .pip-related-row p.rs-sidebar-head {
    margin-left: 0;
  }
}
@media (max-width: 999px) {
  .page-wrapper.pip-single .pip-related-wrap {
    width: 100%;
    margin: 1rem auto;
  }
}

p.epi {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.33px;
}

.thumb.pip-thumb {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-page {
  background: #ffffff;
  position: relative;
}
.contact-page .git-3bursts {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: url("assets/images/git-3bursts.png") no-repeat;
  background-size: cover;
  width: 300px;
  height: 495px;
}
@media (max-width: 999px) {
  .contact-page .git-3bursts {
    display: none;
  }
}
.contact-page .hero-dots {
  margin-bottom: 0;
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: 2rem 0;
  text-align: center;
  overflow: hidden;
}
.contact-hero .contact-hero-wrap {
  width: 63%;
  margin: 0 auto;
}
@media (max-width: 660px) {
  .contact-hero .contact-hero-wrap {
    width: 80%;
  }
}
.contact-hero .contact-hero-wrap img {
  width: 89px;
  margin: 0 auto 1rem;
}
.contact-hero .contact-hero-wrap h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.contact-hero .ty-hero-wrap {
  width: 50%;
  margin: 4rem auto;
}
.contact-hero .ty-hero-wrap h1, .contact-hero .ty-hero-wrap h4 {
  margin-bottom: 1rem;
}
@media (max-width: 499px) {
  .contact-hero .ty-hero-wrap {
    width: 75%;
  }
}
.contact-hero .contact-burst1 {
  position: absolute;
  top: -180px;
  left: -130px;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 384px;
  height: 368px;
}
@media (max-width: 999px) {
  .contact-hero .contact-burst1 {
    top: -86px;
    left: -53px;
    width: 160px;
    height: 153px;
  }
}
.contact-hero .ty-burst1 {
  position: absolute;
  top: 20px;
  left: 165px;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 96px;
  height: 91px;
}
@media (max-width: 767px) {
  .contact-hero .ty-burst1 {
    left: 6%;
    width: 70px;
    height: 67px;
  }
}
.contact-hero .ty-burst2 {
  position: absolute;
  top: 100px;
  left: 20px;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 150px;
  height: 144px;
}
@media (max-width: 767px) {
  .contact-hero .ty-burst2 {
    display: none;
  }
}
.contact-hero .ty-burst3 {
  position: absolute;
  bottom: -83px;
  right: -73px;
  background: url("assets/images/oc-burst.png") no-repeat;
  background-size: cover;
  width: 256px;
  height: 264px;
}
@media (max-width: 767px) {
  .contact-hero .ty-burst3 {
    bottom: -66px;
    right: -20px;
    width: 126px;
    height: 132px;
  }
}

.contact-cta {
  width: 90%;
  margin: 3.5rem auto;
  text-align: center;
}

.form-wrapper,
.ag1-form,
.ag1-form2,
.ag2-form {
  position: relative;
  width: 55%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form-wrapper,
  .ag1-form,
  .ag1-form2,
  .ag2-form {
    width: 80%;
  }
}
.form-wrapper .wpcf7 .state-email,
.form-wrapper .wpcf7 .age-state-email,
.ag1-form .wpcf7 .state-email,
.ag1-form .wpcf7 .age-state-email,
.ag1-form2 .wpcf7 .state-email,
.ag1-form2 .wpcf7 .age-state-email,
.ag2-form .wpcf7 .state-email,
.ag2-form .wpcf7 .age-state-email {
  display: none;
}
.form-wrapper .wpcf7 label,
.ag1-form .wpcf7 label,
.ag1-form2 .wpcf7 label,
.ag2-form .wpcf7 label {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 1.25rem;
  color: #003057;
}
.form-wrapper .wpcf7 p,
.ag1-form .wpcf7 p,
.ag1-form2 .wpcf7 p,
.ag2-form .wpcf7 p {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.form-wrapper .wpcf7 input[type=text],
.form-wrapper .wpcf7 input[type=email],
.ag1-form .wpcf7 input[type=text],
.ag1-form .wpcf7 input[type=email],
.ag1-form2 .wpcf7 input[type=text],
.ag1-form2 .wpcf7 input[type=email],
.ag2-form .wpcf7 input[type=text],
.ag2-form .wpcf7 input[type=email] {
  padding: 9px 8px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #003057;
}
.form-wrapper .wpcf7 input[type=submit],
.ag1-form .wpcf7 input[type=submit],
.ag1-form2 .wpcf7 input[type=submit],
.ag2-form .wpcf7 input[type=submit] {
  text-transform: none;
}
.form-wrapper .wpcf7,
.ag1-form .wpcf7,
.ag1-form2 .wpcf7,
.ag2-form .wpcf7 {
  /* added because? */
}
.form-wrapper .wpcf7 .git-row,
.ag1-form .wpcf7 .git-row,
.ag1-form2 .wpcf7 .git-row,
.ag2-form .wpcf7 .git-row {
  position: relative;
}
.form-wrapper .wpcf7 .git-half,
.ag1-form .wpcf7 .git-half,
.ag1-form2 .wpcf7 .git-half,
.ag2-form .wpcf7 .git-half {
  position: relative;
  display: inline-block;
  width: 48.5%;
  margin-right: 2%;
}
@media (max-width: 999px) {
  .form-wrapper .wpcf7 .git-half,
  .ag1-form .wpcf7 .git-half,
  .ag1-form2 .wpcf7 .git-half,
  .ag2-form .wpcf7 .git-half {
    width: 100%;
    margin-right: 0;
  }
}
.form-wrapper .wpcf7 .git-half:nth-child(2),
.ag1-form .wpcf7 .git-half:nth-child(2),
.ag1-form2 .wpcf7 .git-half:nth-child(2),
.ag2-form .wpcf7 .git-half:nth-child(2) {
  margin-right: 0;
}
.form-wrapper .wpcf7 .git-half.git-state,
.ag1-form .wpcf7 .git-half.git-state,
.ag1-form2 .wpcf7 .git-half.git-state,
.ag2-form .wpcf7 .git-half.git-state {
  top: -4px;
}
.form-wrapper .wpcf7 .git-half .q-err,
.ag1-form .wpcf7 .git-half .q-err,
.ag1-form2 .wpcf7 .git-half .q-err,
.ag2-form .wpcf7 .git-half .q-err {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  margin-top: 0;
  display: none;
}
.form-wrapper .wpcf7,
.ag1-form .wpcf7,
.ag1-form2 .wpcf7,
.ag2-form .wpcf7 {
  /* custom checkbox styling for contact form 7 checkbox */
}
.form-wrapper .wpcf7 span.wpcf7-list-item,
.ag1-form .wpcf7 span.wpcf7-list-item,
.ag1-form2 .wpcf7 span.wpcf7-list-item,
.ag2-form .wpcf7 span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.form-wrapper .wpcf7 .wpcf7 .wpcf7-list-item,
.ag1-form .wpcf7 .wpcf7 .wpcf7-list-item,
.ag1-form2 .wpcf7 .wpcf7 .wpcf7-list-item,
.ag2-form .wpcf7 .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.form-wrapper .wpcf7 .wpcf7-checkbox label,
.ag1-form .wpcf7 .wpcf7-checkbox label,
.ag1-form2 .wpcf7 .wpcf7-checkbox label,
.ag2-form .wpcf7 .wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox],
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox],
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox],
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox] + span,
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span,
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span,
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:before,
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:before,
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:before,
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 4px;
  height: 30px;
  width: 30px;
  top: 0px;
  left: -45px;
  border: 1px solid #003057;
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:after,
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:after,
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:after,
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "✓";
  height: 30px;
  width: 30px;
  top: 0;
  left: -45px;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:before,
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:before,
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:before,
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}
.form-wrapper .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:after,
.ag1-form .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:after,
.ag1-form2 .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:after,
.ag2-form .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.form-wrapper .wpcf7 .wpcf7-list-item-label,
.ag1-form .wpcf7 .wpcf7-list-item-label,
.ag1-form2 .wpcf7 .wpcf7-list-item-label,
.ag2-form .wpcf7 .wpcf7-list-item-label {
  margin-left: 40px;
  display: inline-block;
}
.form-wrapper .wpcf7 span.wpcf7-list-item,
.ag1-form .wpcf7 span.wpcf7-list-item,
.ag1-form2 .wpcf7 span.wpcf7-list-item,
.ag2-form .wpcf7 span.wpcf7-list-item {
  display: block;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 999px) {
  .form-wrapper .wpcf7 span.wpcf7-list-item,
  .ag1-form .wpcf7 span.wpcf7-list-item,
  .ag1-form2 .wpcf7 span.wpcf7-list-item,
  .ag2-form .wpcf7 span.wpcf7-list-item {
    margin-top: 18px;
  }
}
.form-wrapper .wpcf7 span.wpcf7-list-item span.wpcf7-list-item-label,
.ag1-form .wpcf7 span.wpcf7-list-item span.wpcf7-list-item-label,
.ag1-form2 .wpcf7 span.wpcf7-list-item span.wpcf7-list-item-label,
.ag2-form .wpcf7 span.wpcf7-list-item span.wpcf7-list-item-label {
  position: relative;
  top: -3px;
  left: 5px;
}
.form-wrapper .wpcf7 .git-row,
.ag1-form .wpcf7 .git-row,
.ag1-form2 .wpcf7 .git-row,
.ag2-form .wpcf7 .git-row {
  position: relative;
}
.form-wrapper .wpcf7 .git-half,
.ag1-form .wpcf7 .git-half,
.ag1-form2 .wpcf7 .git-half,
.ag2-form .wpcf7 .git-half {
  position: relative;
  display: inline-block;
  width: 48.5%;
  margin-right: 2%;
}
@media (max-width: 999px) {
  .form-wrapper .wpcf7 .git-half,
  .ag1-form .wpcf7 .git-half,
  .ag1-form2 .wpcf7 .git-half,
  .ag2-form .wpcf7 .git-half {
    width: 100%;
    margin-right: 0;
  }
}
.form-wrapper .wpcf7 .git-half:nth-child(2),
.ag1-form .wpcf7 .git-half:nth-child(2),
.ag1-form2 .wpcf7 .git-half:nth-child(2),
.ag2-form .wpcf7 .git-half:nth-child(2) {
  margin-right: 0;
}
.form-wrapper .wpcf7 .git-half.git-state,
.ag1-form .wpcf7 .git-half.git-state,
.ag1-form2 .wpcf7 .git-half.git-state,
.ag2-form .wpcf7 .git-half.git-state {
  top: -4px;
}
.form-wrapper .wpcf7 .git-half .select-css,
.ag1-form .wpcf7 .git-half .select-css,
.ag1-form2 .wpcf7 .git-half .select-css,
.ag2-form .wpcf7 .git-half .select-css {
  position: relative;
  top: 2px;
  display: block;
  font-size: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  line-height: 1.3;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 2px solid #dcd7ca;
  border-radius: 4px;
  border: 1px solid #003057;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.form-wrapper .wpcf7 .git-half .select-css::-ms-expand,
.ag1-form .wpcf7 .git-half .select-css::-ms-expand,
.ag1-form2 .wpcf7 .git-half .select-css::-ms-expand,
.ag2-form .wpcf7 .git-half .select-css::-ms-expand {
  display: none;
}
.form-wrapper .wpcf7 .git-half .select-css option,
.ag1-form .wpcf7 .git-half .select-css option,
.ag1-form2 .wpcf7 .git-half .select-css option,
.ag2-form .wpcf7 .git-half .select-css option {
  font-weight: normal;
}
.form-wrapper .wpcf7 .git-half .q-err,
.ag1-form .wpcf7 .git-half .q-err,
.ag1-form2 .wpcf7 .git-half .q-err,
.ag2-form .wpcf7 .git-half .q-err {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  margin-top: 0;
  display: none;
}

.ag1-form .wpcf7-checkbox input[type=checkbox] + span:before,
.ag2-form .wpcf7-checkbox input[type=checkbox] + span:before {
  top: -4px !important;
  border: 1px solid #979797 !important;
  display: inline-block !important;
}

.form-outside {
  position: relative;
  display: flex;
  width: 100%;
  flex: 1;
}
@media (max-width: 1023px) {
  .form-outside {
    flex-direction: column-reverse;
    background: #5C9A1B;
  }
}
.form-outside .form-stripe-left,
.form-outside .form-stripe-right {
  flex: 3;
  background: #5C9A1B;
  margin: 120px 0;
}
@media (max-width: 1023px) {
  .form-outside .form-stripe-left,
  .form-outside .form-stripe-right {
    margin: 0;
  }
}
.form-outside .form-stripe-left {
  display: flex;
}
.form-outside .form-stripe-left .fsl-content {
  margin-left: auto;
  align-self: center;
  width: 85%;
  max-width: 620px;
  padding-right: 80px;
}
@media (max-width: 1023px) {
  .form-outside .form-stripe-left .fsl-content {
    margin-right: auto;
    margin-bottom: 16px;
    text-align: center;
    padding-right: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.form-outside .form-stripe-left .fsl-content img {
  width: 160px;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .form-outside .form-stripe-left .fsl-content img {
    margin: 48px auto;
  }
}
.form-outside .form-stripe-left .fsl-content h2 {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .form-outside .form-stripe-left .fsl-content h2 {
    margin-top: 24px;
  }
}
.form-outside .form-stripe-right {
  flex: 0.25;
}
@media (max-width: 1023px) {
  .form-outside .form-stripe-right {
    height: 48px;
  }
}
.form-outside .white-padding {
  height: 100px;
  background: #ffffff;
}
.form-outside .form-wrapper2 {
  position: relative;
  width: 80%;
  flex: 2.5;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #979797;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  background: #ffffff;
}
.form-outside .form-wrapper2 .form-hide {
  display: none;
}
@media (max-width: 1023px) {
  .form-outside .form-wrapper2 {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .form-outside .form-wrapper2 {
    padding: 1rem;
    width: 100%;
  }
}
.form-outside .form-wrapper2 h3 {
  text-align: center;
  font-size: 2.5rem;
}
.form-outside .form-wrapper2 .wpcf7 .state-email,
.form-outside .form-wrapper2 .wpcf7 .age-state-email {
  display: none;
}
.form-outside .form-wrapper2 .wpcf7 label {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 0.875rem;
  color: #003057;
}
.form-outside .form-wrapper2 .wpcf7 p {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.form-outside .form-wrapper2 .wpcf7 input[type=text],
.form-outside .form-wrapper2 .wpcf7 input[type=email] {
  padding: 9px 8px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #003057;
}
.form-outside .form-wrapper2 .wpcf7 .git-submit {
  text-align: center;
}
.form-outside .form-wrapper2 .wpcf7 .git-submit .cta-btn {
  background: #612166;
  color: #ffffff;
}
.form-outside .form-wrapper2 .wpcf7 .git-submit .ajax-loader {
  display: none;
}
.form-outside .form-wrapper2 .wpcf7 input[type=submit] {
  text-transform: none;
}
.form-outside .form-wrapper2 .wpcf7 {
  /* custom checkbox styling for contact form 7 checkbox */
}
.form-outside .form-wrapper2 .wpcf7 span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 3px;
  height: 24px;
  width: 24px;
  top: 0px;
  left: -30px;
  border: 1px solid #003057;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "✓";
  height: 24px;
  width: 24px;
  top: 0;
  left: -30px;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-list-item-label {
  margin-left: 40px;
  display: inline-block;
}
.form-outside .form-wrapper2 .wpcf7 span.wpcf7-list-item {
  display: block;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 999px) {
  .form-outside .form-wrapper2 .wpcf7 span.wpcf7-list-item {
    margin-top: 18px;
  }
}
.form-outside .form-wrapper2 .wpcf7 span.wpcf7-list-item span.wpcf7-list-item-label {
  position: relative;
  top: -3px;
  left: 5px;
}
.form-outside .form-wrapper2 .wpcf7 .git-row {
  position: relative;
}
.form-outside .form-wrapper2 .wpcf7 .git-half {
  position: relative;
  display: inline-block;
  width: 48%;
  margin-right: 2%;
}
@media (max-width: 999px) {
  .form-outside .form-wrapper2 .wpcf7 .git-half {
    width: 100%;
    margin-right: 0;
  }
}
.form-outside .form-wrapper2 .wpcf7 .git-half:nth-child(2) {
  margin-right: 0;
}
.form-outside .form-wrapper2 .wpcf7 .git-half.git-state {
  top: -4px;
}
.form-outside .form-wrapper2 .wpcf7 .git-half .select-css {
  position: relative;
  top: 2px;
  display: block;
  font-size: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  color: #003057;
  line-height: 1.3;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 2px solid #dcd7ca;
  border-radius: 4px;
  border: 1px solid #003057;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.form-outside .form-wrapper2 .wpcf7 .git-half .select-css::-ms-expand {
  display: none;
}
.form-outside .form-wrapper2 .wpcf7 .git-half .select-css option {
  font-weight: normal;
}
.form-outside .form-wrapper2 .wpcf7 .git-half .q-err {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  margin-top: 0;
  display: none;
}

.faq-page h3.eb-accordion-title {
  font-family: FSHumana-light, calibri, arial, helvetica, sans-serif !important;
  font-size: 1.5rem !important;
}
.faq-page p.eb-accordion-content {
  font-family: FSHumana, calibri, arial, helvetica, sans-serif !important;
  margin-bottom: 16px;
}
.faq-page .content-wrapper {
  max-width: 1000px;
}
@media (max-width: 1023px) {
  .faq-page .content-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.faq-page .content-wrapper .eb-accordion-wrapper {
  border-bottom: 1px solid #d8d8d8;
}
.faq-page .content-wrapper .eb-accordion-wrapper .eb-accordion-icon {
  color: #114A21 !important;
}

body {
  background: #ffffff;
  font-family: "FSHumana", calibri, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

body * {
  color: #3A3B3D;
}

#site-content {
  padding-top: 146px;
}
@media (max-width: 1279px) {
  #site-content {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  #site-content {
    padding-top: 73px;
  }
}

a.btn {
  display: inline-block;
  margin: 0 auto;
  background-color: #5C9A1B;
  color: #ffffff;
  border-radius: 4px;
  font-size: 19px;
  line-height: 19px;
  font-weight: bold;
  padding: 1rem 1.5rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  a.btn {
    font-size: 14px;
    line-height: 14px;
  }
}
a.btn:hover {
  text-decoration: none;
  background: #487815;
  transition: 200ms;
}
a.btn:hover::after {
  transition-duration: 200ms;
}
a.btn::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}
a.btn.bg-purple {
  background: #612166;
}
a.btn.bg-purple:hover {
  background: #4C1A51;
  transition: 200ms;
}

.arr-link::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right-teal.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}

.standard-copy-block {
  padding: 2rem 0 0;
}
.standard-copy-block h2,
.standard-copy-block h3 {
  color: #5C9A1B;
}
.standard-copy-block h2 {
  font-size: 44px;
  line-height: 58px;
}
@media (max-width: 980px) {
  .standard-copy-block h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
.standard-copy-block h3 {
  font-size: 32px;
  line-height: 44px;
}
@media (max-width: 980px) {
  .standard-copy-block h3 {
    font-size: 1.575rem;
    line-height: 2.25rem;
    margin: 0 0 0.75rem;
  }
}
.standard-copy-block p {
  margin: 0 auto 2rem;
  max-width: 980px;
}
@media (max-width: 980px) {
  .standard-copy-block p {
    margin: 0 auto 0.75rem;
  }
}
.standard-copy-block hr {
  margin: 0 0 4rem;
}
.standard-copy-block .flexbox {
  flex-wrap: wrap;
  align-items: stretch;
}
.standard-copy-block .flexbox [class*=col-] {
  padding: 1rem;
}
@media (max-width: 980px) {
  .standard-copy-block .flexbox {
    display: flex;
  }
}
.standard-copy-block .icon-block {
  text-align: center;
}
@media (max-width: 980px) {
  .standard-copy-block .icon-block {
    width: 50%;
  }
}
.standard-copy-block .icon-block img {
  display: block;
  margin: 0 auto 0.25rem;
  width: auto;
  height: auto;
  max-height: 68px;
}
@media (max-width: 980px) {
  .standard-copy-block .icon-block img {
    height: 48px;
  }
}
.standard-copy-block .icon-block h3 {
  font-size: 28px;
  line-height: 38px;
  color: #114A21;
}
@media (max-width: 980px) {
  .standard-copy-block .icon-block h3 {
    font-size: 1.575rem;
    line-height: 2.25rem;
  }
}
.standard-copy-block .care-focused h4 {
  color: #114A21;
  font-weight: bold;
  font-size: 28px;
  line-height: 39px;
  text-align: center;
  margin-bottom: -2rem;
}
@media (max-width: 767px) {
  .standard-copy-block .care-focused h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.standard-copy-block .care-focused img {
  width: auto;
  height: auto;
  max-width: 500px;
  max-height: 300px;
}
@media (max-width: 767px) {
  .standard-copy-block .care-focused img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
.standard-copy-block .care-focused ul {
  list-style-type: none;
  max-width: 400px;
  margin: -1rem auto 0;
}
@media (max-width: 767px) {
  .standard-copy-block .care-focused ul {
    margin: -1rem auto 2rem;
  }
}
.standard-copy-block .care-focused ul li {
  display: block;
  color: #3A3B3D;
  background: url("2024/bullet.png") no-repeat;
  background-size: 8px 8px;
  padding: 0 0 0 24px;
  background-position: 0 7px;
}
@media (max-width: 767px) and (min-width: 420px) {
  .standard-copy-block .care-focused#cf-1 img {
    max-width: 330px;
  }
}

.care-focused-cta {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .care-focused-cta {
    margin-top: -3rem;
  }
}

.video-container {
  position: relative;
  width: 100%;
}
.video-container .video {
  position: relative;
  padding-bottom: 47%;
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.video-container .video iframe,
.video-container .video object,
.video-container .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.care-infographic img {
  width: auto;
  height: auto;
  width: 100%;
}
.care-infographic img:first-child {
  max-width: 780px;
}
.care-infographic img:last-child {
  max-width: 500px;
}

@media (max-width: 767px) {
  .comp-table-container {
    padding: 0 2rem;
  }
  .comp-table-container h3 {
    text-align: center;
  }
  .comp-table-container .btn {
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 260px;
  }
}

.comp-table table {
  width: 100%;
  margin: 0 auto;
}
.comp-table table tr th, .comp-table table tr td {
  font-size: 16px;
  line-height: 24px;
  padding: 0.2rem 0.75rem;
  width: 33% !important;
}
@media (max-width: 767px) {
  .comp-table table tr th, .comp-table table tr td {
    font-size: 14px;
    line-height: 20px;
  }
}
.comp-table table tr th {
  font-weight: bold;
  text-align: left;
}
.comp-table table tr td {
  width: 30%;
}
.comp-table table tr td:first-child {
  width: 40%;
}
.comp-table table tr td img {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

.template-2024-page .form-outside .form-wrapper2 h3 {
  color: #114A21;
  font-size: 28px;
  line-height: 39px;
  text-align: left;
}
.template-2024-page .form-outside .form-wrapper2 .wpcf7 .git-submit .cta-btn {
  font-weight: bold;
}

@media (max-width: 1023px) {
  .form-outside {
    display: block;
  }
  .form-outside .form-stripe-left {
    background: #5C9A1B !important;
  }
}

.wpcf7-spinner {
  display: none;
}

.agent-help {
  margin: -2rem auto 2rem;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .agent-help {
    margin: -2rem auto 2rem;
  }
}
.agent-help .help-box-column {
  width: 45%;
}
@media (max-width: 767px) {
  .agent-help .help-box-column {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 419px) {
  .agent-help .help-box-column {
    width: 100%;
  }
}
.agent-help .help-box-column.hb-left .help-box-outer {
  background: url("2024/help-box-bgd.png") top left no-repeat;
  background-size: 90% 90%;
  padding: 8px 0 0 8px;
}
@media (max-width: 767px) {
  .agent-help .help-box-column.hb-left .help-box-outer {
    width: auto;
    margin: 0 auto;
    background-size: 95% 90%;
  }
}
.agent-help .help-box-column.hb-left .help-box-outer .help-box-inner {
  margin: 16px 0 0 16px;
}
.agent-help .help-box-column.hb-right .help-box-outer {
  background: url("2024/help-box-bgd.png") top right no-repeat;
  background-size: 90% 90%;
  padding: 8px 8px 0 0;
}
.agent-help .help-box-column.hb-right .help-box-outer .help-box-inner {
  margin: 16px 16px 0 0;
}
@media (max-width: 767px) {
  .agent-help .help-box-column.hb-right .help-box-outer {
    background: url("2024/help-box-bgd.png") top left no-repeat;
    width: auto;
    margin: 0 auto;
    background-size: 95% 90%;
    padding: 8px 0 0 8px;
  }
  .agent-help .help-box-column.hb-right .help-box-outer .help-box-inner {
    margin: 16px 0 0 16px;
  }
}
@media (max-width: 1150px) {
  .agent-help .help-box {
    padding: 0 2rem;
    margin: 0 auto 3rem;
  }
}
.agent-help .help-box .help-box-inner {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: #53575A 1px 1px 3px;
  padding: 1rem;
  text-align: center;
}
.agent-help .help-box .help-box-inner p {
  font-size: 16px;
  line-height: 20px;
}
.agent-help .help-box .help-box-inner p a.btn {
  margin-bottom: -2rem;
}
@media (max-width: 1150px) {
  .agent-help .help-box .help-box-inner {
    margin: 0 auto;
    width: auto;
  }
}
.agent-help .help-box .help-box-inner img {
  margin: 0 auto 1rem;
  width: auto;
  height: auto;
  max-width: 100px;
}
@media (max-width: 767px) {
  .agent-help .help-box .help-box-inner img {
    max-width: 60px;
  }
}
.agent-help .help-box .help-box-inner h4 {
  font-weight: bold;
}
.agent-help .help-box#hbox-1 {
  margin: 0 0 285px;
}
@media (max-width: 1279px) {
  .agent-help .help-box#hbox-1 {
    margin: 0 0 315px;
  }
}
@media (max-width: 1150px) {
  .agent-help .help-box#hbox-1 {
    margin: 0 0 215px;
  }
}
@media (max-width: 767px) {
  .agent-help .help-box#hbox-1 {
    margin: 0 auto 3rem;
  }
}
.agent-help .help-box#hbox-3 {
  margin: 330px 0 295px;
}
@media (max-width: 1279px) {
  .agent-help .help-box#hbox-3 {
    margin: 330px 0 338px;
  }
}
@media (max-width: 1150px) {
  .agent-help .help-box#hbox-3 {
    margin: 330px 0 190px;
  }
}
@media (max-width: 767px) {
  .agent-help .help-box#hbox-3 {
    margin: 0 auto 3rem;
  }
}
.agent-help .timeline {
  margin: 175px auto 0;
  text-align: center;
  width: 10%;
}
@media (max-width: 1150px) {
  .agent-help .timeline {
    margin: 195px auto;
  }
}
@media (max-width: 767px) {
  .agent-help .timeline {
    display: none;
  }
}
.agent-help .timeline img {
  width: 66px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1150px) {
  .agent-help .timeline img {
    width: 55px;
  }
}

.callout {
  background: #f8f8f8;
  padding: 4rem 2rem;
}
.callout h3 {
  color: #5C9A1B;
  font-size: 42px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .callout h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
.callout > .flexbox {
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .callout > .flexbox {
    display: flex;
  }
  .callout > .flexbox .flex-col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.callout > .flexbox:first-child > .flex-col:first-child {
  display: block;
  padding: 0 8rem;
}
@media (max-width: 980px) {
  .callout > .flexbox:first-child > .flex-col:first-child {
    padding: 0 0;
    text-align: center;
  }
}
.callout .callout-list {
  margin: 2rem auto;
}
@media (max-width: 980px) {
  .callout .callout-list {
    width: 50% !important;
  }
  .callout .callout-list .flex-col {
    display: block;
  }
}
.callout .callout-list img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 45px;
  max-height: 45px;
}
@media (max-width: 980px) {
  .callout .callout-list img {
    max-width: unset;
    height: 36px;
    margin: 0 auto 0.75rem;
  }
}
.callout .callout-list .col-11 {
  padding-left: 2rem;
  font-size: 19px;
  line-height: 29px;
}
@media (max-width: 980px) {
  .callout .callout-list .col-11 {
    padding: 0 1rem;
    text-align: center;
    font-size: 16px;
    line-height: 1.5rem;
  }
}

.home-hero .hero-copy h1 {
  font-size: 50px;
  line-height: 62px;
}
@media (max-width: 1470px) {
  .home-hero .hero-copy h1 {
    font-size: 44px;
    line-height: 54px;
  }
}
@media (max-width: 1310px) {
  .home-hero .hero-copy h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1279px) {
  .home-hero .hero-copy h1 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .home-hero .hero-copy h1 {
    font-size: 1.875rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .home-hero .hero-copy h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-hero .hero-image {
    display: none;
  }
}

.hero {
  position: relative;
  width: 100%;
  background: #5C9A1B;
}
.hero .content-wrapper {
  display: flex;
}
.hero .hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 58.61%;
  flex: 1.4;
}
.hero .hero-image img {
  position: relative;
  border-bottom-left-radius: 50px;
  width: 100%;
}
@media (max-width: 1279px) {
  .hero .hero-image {
    flex: 1;
  }
}
@media (max-width: 699px) {
  .hero .hero-image {
    display: none;
  }
}
@media (min-width: 1440px) {
  .hero .hero-image {
    width: 526px;
    top: 70px;
    bottom: 0;
  }
}
@media (max-width: 1439px) {
  .hero .hero-image {
    right: -113px;
    top: 41px;
    width: 37%;
  }
}
@media (max-width: 1280px) {
  .hero .hero-image {
    right: -113px;
    top: 41px;
    width: 36%;
  }
}
@media (max-width: 1000px) {
  .hero .hero-image {
    right: -113px;
    top: 41px;
    width: 43%;
  }
}
@media (max-width: 888px) {
  .hero .hero-image {
    top: 55px;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .hero .hero-image {
    right: -94px;
    top: 24px;
    width: 47%;
  }
}
@media (max-width: 650px) {
  .hero .hero-image {
    right: -60px;
  }
}
@media (max-width: 420px) {
  .hero .hero-image {
    right: -27px;
    top: 54px;
    width: 210px;
  }
}
@media (max-width: 370px) {
  .hero .hero-image {
    width: 200px;
  }
}
.hero .hero-image img {
  position: relative;
  border-radius: 50%;
  width: 100%;
}

.hero-dots,
.hero-dots-red {
  background: url("assets/images/green-dots.png") no-repeat left top;
  background-size: contain;
  height: 41px;
  margin-top: 4px;
}
@media (max-width: 699px) {
  .hero-dots,
  .hero-dots-red {
    margin-top: 2px;
    height: 24px;
    margin-bottom: 24px;
  }
}
.hero-dots.form-top,
.hero-dots-red.form-top {
  position: absolute;
  left: 0;
  top: 71px;
  width: 414px;
}
@media (max-width: 1023px) {
  .hero-dots.form-top,
  .hero-dots-red.form-top {
    display: none;
  }
}

.hero-dots-red {
  background: url("assets/images/dots-red.png") no-repeat left top;
  background-size: contain;
}

.hero-cta-wrapper {
  position: relative;
  height: 0px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .hero-cta-wrapper {
    padding-bottom: 140px;
  }
}
@media (max-width: 339px) {
  .hero-cta-wrapper {
    padding-bottom: 180px;
  }
}
.hero-cta-wrapper .hero-cta {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  padding: 2rem 1rem 1rem;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero-cta-wrapper .hero-cta {
    width: 66%;
    top: -80px;
  }
}
@media (max-width: 767px) {
  .hero-cta-wrapper .hero-cta {
    width: 96%;
  }
}
.hero-cta-wrapper .hero-cta p {
  font-size: 1.875rem;
  line-height: 2.375rem;
  padding: 0;
  color: #003057;
}
@media (max-width: 560px) {
  .hero-cta-wrapper .hero-cta p {
    font-size: 22px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .hero-cta-wrapper .hero-cta p br {
    display: none;
  }
}
@media (max-width: 490px) {
  .hero-cta-wrapper .hero-cta p {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.hero-cta-wrapper .stat-cta {
  top: 650px;
  padding-top: 2rem;
}
.hero-cta-wrapper .diff-cta {
  position: relative;
  width: 75%;
  top: 0;
  margin: 4rem 0 0;
  padding-top: 2rem;
}
.hero-cta-wrapper .bottom-cta {
  top: 60px;
  padding: 3rem 0 2rem;
}
@media (max-width: 767px) {
  .hero-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 420px) {
  .hero-cta-wrapper .bottom-cta {
    width: 90%;
  }
}
.hero-cta-wrapper .sunburst1 {
  position: absolute;
  left: 0;
  top: -110px;
  background: url("assets/images/sunburst1.png");
  width: 163px;
  height: 267px;
}
@media (max-width: 767px) {
  .hero-cta-wrapper .sunburst1 {
    display: none;
  }
}

.bottom-cta-wrapper2 {
  width: 100%;
  background: #5C9A1B;
  padding: 48px 0;
  margin: 0;
  display: flex;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 {
    display: block;
  }
}
.bottom-cta-wrapper2 .blue-h {
  flex: 1;
  align-self: center;
}
.bottom-cta-wrapper2 .blue-h img {
  width: 211px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h {
    flex: unset;
    margin-bottom: 48px;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content {
  flex: 1;
  align-self: center;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content {
    flex: unset;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
  width: 90%;
  max-width: 580px;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
    max-width: unset;
    margin-left: 5%;
    text-align: center;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-head {
  font-size: 1.75rem;
  line-height: 2.375rem;
  margin-bottom: 0.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-desc {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-note {
  font-size: 11px;
  line-height: 15px;
}
.bottom-cta-wrapper2 .bottom-cta-content .cta-btn {
  background: #ffffff;
  border: #5C9A1B 1px solid;
  color: #5C9A1B;
  font-weight: bold;
}
.bottom-cta-wrapper2 .bottom-cta-content .cta-btn:hover {
  background: #487815;
  color: #ffffff;
  transition: 200ms;
}
.bottom-cta-wrapper2 .bottom-cta-content .cta-btn:hover::after {
  background-image: url("2024/arrow-right.png");
  transition: 200ms;
}
.bottom-cta-wrapper2 .bottom-cta-content .cta-btn::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right-green.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}

.bottom-cta-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper {
    background: #ffffff;
  }
}
.bottom-cta-wrapper .bottom-cta {
  width: 50%;
  margin: 3rem auto 4rem;
  padding: 2rem 1rem 1rem;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 96%;
  }
}
.bottom-cta-wrapper .bottom-cta p {
  font-size: 1.875rem;
  line-height: 2.375rem;
  padding: 0;
  color: #003057;
}
@media (max-width: 560px) {
  .bottom-cta-wrapper .bottom-cta p {
    font-size: 22px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .bottom-cta-wrapper .bottom-cta p br {
    display: none;
  }
}
@media (max-width: 490px) {
  .bottom-cta-wrapper .bottom-cta p {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 66%;
  }
}
@media (max-width: 420px) {
  .bottom-cta-wrapper .bottom-cta {
    width: 90%;
  }
}

.bottom-cta-wrapper2 {
  width: 100%;
  background: #5C9A1B;
  padding: 48px 0;
  margin: 2rem 0 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 {
    display: block;
  }
}
.bottom-cta-wrapper2 .blue-h {
  flex: 1;
  align-self: center;
}
.bottom-cta-wrapper2 .blue-h img {
  width: 211px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .blue-h {
    flex: unset;
    margin-bottom: 48px;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content {
  flex: 1;
  align-self: center;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content {
    flex: unset;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
  width: 90%;
  max-width: 580px;
}
@media (max-width: 767px) {
  .bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap {
    max-width: unset;
    margin-left: 5%;
    text-align: center;
  }
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap p {
  margin-bottom: 0;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-head {
  font-size: 1.75rem;
  line-height: 2.375rem;
  margin-bottom: 0.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-desc {
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: #3A3B3D;
  margin-bottom: 0.75rem;
}
.bottom-cta-wrapper2 .bottom-cta-content .b-cta-wrap .b-cta-note {
  font-size: 11px;
  line-height: 15px;
}

.sources-wrapper {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}
.sources-wrapper .sources-copy {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin: 40px 7% 2rem 7%;
}
.sources-wrapper .sources-copy p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
  color: #53575A;
}
.sources-wrapper .sources-copy p a {
  color: #53575A;
  text-decoration: none;
}

#cboxOverlay {
  background: rgba(0, 48, 87, 0.6);
}

#cboxClose {
  background: url("assets/images/vid-close.png");
  width: 70px;
  height: 28px;
  top: -28px;
}

#cboxClose:hover {
  background: url("assets/images/vid-close.png");
}

.generic {
  max-width: 760px;
}
@media (max-width: 980px) {
  .generic {
    padding: 0 24px;
  }
}

.home-hero {
  position: relative;
  background: #114A21 url("assets/images/2026/home-hero-bgd.jpg") top right no-repeat;
  background-size: cover;
  margin: 0;
  padding: 1rem;
  min-height: 0;
}
@media screen and (min-width: 1600px) {
  .home-hero {
    min-height: 50vh;
  }
}
@media screen and (max-width: 980px) {
  .home-hero {
    background-image: url("assets/images/2026/home-hero-bgd-mobile.jpg");
    padding: 1rem 2rem;
  }
}
.home-hero.our-care-hero {
  background: #114A21 url("assets/images/2026/care-hero-bgd.jpg") top right no-repeat;
  background-size: cover;
}
@media screen and (max-width: 980px) {
  .home-hero.our-care-hero {
    background-image: url("assets/images/2026/care-hero-bgd-mobile.jpg");
  }
}
.home-hero.medicare-advantage-hero {
  background: #114A21 url("assets/images/2026/ma-hero-bgd.jpg") top right no-repeat;
  background-size: cover;
}
@media screen and (max-width: 980px) {
  .home-hero.medicare-advantage-hero {
    background-image: url("assets/images/2026/ma-hero-bgd-mobile.jpg");
  }
}
.home-hero.humana-agents-hero {
  background: #114A21 url("assets/images/2026/agent-hero-bgd.jpg") top right no-repeat;
  background-size: cover;
}
@media screen and (max-width: 980px) {
  .home-hero.humana-agents-hero {
    background-image: url("assets/images/2026/agent-hero-bgd-mobile.jpg");
  }
}
.home-hero.providers-hero {
  background: #114A21 url("assets/images/2026/providers-hero-bgd.jpg") top right no-repeat;
  background-size: cover;
}
@media screen and (max-width: 980px) {
  .home-hero.providers-hero {
    background-image: url("assets/images/2026/providers-hero-bgd-mobile.jpg");
  }
}
.home-hero .hero-copy {
  background: transparent url("assets/images/2025/hero-copy-bgd.svg") bottom right no-repeat;
  background-size: cover;
  padding: 6rem 16rem 6rem 3rem;
  width: 65%;
}
@media screen and (min-width: 1600px) {
  .home-hero .hero-copy {
    padding: 12rem 24rem 12rem 6rem;
  }
}
@media screen and (max-width: 980px) {
  .home-hero .hero-copy {
    background: #EFF5E6;
    width: 100%;
    padding: 3rem 4rem 2rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 419px) {
  .home-hero .hero-copy {
    background: #EFF5E6;
    width: 100%;
    padding: 3rem 2rem;
  }
}
.home-hero .hero-copy h1 {
  color: #114A21;
}
.home-hero .hero-copy h1 strong {
  color: #114A21;
}
@media screen and (max-width: 980px) {
  .home-hero .hero-copy p {
    text-align: center;
  }
}
.home-hero .hero-copy a.cta-btn {
  background: #612166;
  color: #ffffff;
  margin-top: 1rem;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.home-hero .hero-copy a.cta-btn::after {
  content: " →";
}
.home-hero .hero-copy .provider-logo img {
  margin: 0 auto 2rem;
}

.hp-cta {
  padding: 4rem 2rem 0;
  margin: 0 auto;
  color: #3A3B3D;
}
.hp-cta h2 {
  color: #5C9A1B;
}
.hp-cta p {
  width: 100%;
}

.scroller {
  background: #ffffff;
  padding: 0;
  margin: 1rem auto;
}
.scroller .content-wrapper {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
}
.scroller .content-wrapper .bullet-wrap {
  width: 25%;
  padding: 2rem;
  text-align: center;
  border: #ffffff 3px solid;
}
@media screen and (max-width: 980px) {
  .scroller .content-wrapper .bullet-wrap {
    width: 50%;
    padding: 0.5rem 2rem;
  }
}
.scroller .content-wrapper .bullet-wrap img {
  display: block;
  margin: 0 auto 16px;
  width: auto;
  height: 48px;
}
@media screen and (max-width: 980px) {
  .scroller .content-wrapper .bullet-wrap img {
    height: 36px;
  }
}
.scroller p.cta-interested {
  text-align: center;
  margin: 2rem auto 1rem;
}
.scroller a.cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  border-radius: 4px;
}
.scroller a.cta-btn::after {
  content: " →";
}

.hp-quiz-wrapper .hp-quiz-intro-wrap {
  background: #114A21 url("assets/images/triangle-border-wh-50pct.png") top left no-repeat;
}
@media screen and (max-width: 980px) {
  .hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro {
    width: 100%;
    margin-left: 0;
    padding: 100px 40px 80px;
  }
}
.hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro h2 {
  font-family: "FSHumana Light", FSHumana, calibri, arial, helvetica, sans-serif;
  font-size: 28px;
  line-height: 38px;
  font-weight: 100;
  color: #78be20;
}
.hp-quiz-wrapper .hp-quiz-intro-wrap .hp-quiz-intro p {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  padding: 8px 0 8px 16px;
  border-left: #FFC600 1px solid;
}
.hp-quiz-wrapper .hp-quiz-wrap {
  background: #EFF5E6;
  padding: 0 2rem;
}
@media screen and (max-width: 980px) and (min-width: 567px) {
  .hp-quiz-wrapper .hp-quiz-wrap {
    padding: 0 10rem;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap p.question {
  color: #114A21;
  font-size: 28px !important;
  line-height: 38px !important;
}
.hp-quiz-wrapper .hp-quiz-wrap p.disclaimer {
  color: #3A3B3D;
  font-style: oblique;
  margin-bottom: 2rem;
}
.hp-quiz-wrapper .hp-quiz-wrap .checkboxItem {
  display: flex;
  align-items: flex-start;
  padding: 0 0 1rem 8rem;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .hp-quiz-wrapper .hp-quiz-wrap .checkboxItem {
    padding: 0 0 1rem 4rem;
  }
}
@media screen and (max-width: 1290px) {
  .hp-quiz-wrapper .hp-quiz-wrap .checkboxItem {
    padding: 0 0 1rem 2rem;
  }
}
@media screen and (max-width: 1140px) {
  .hp-quiz-wrapper .hp-quiz-wrap .checkboxItem {
    padding-left: 0;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .checkboxItem input[type=checkbox] {
  min-width: unset;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 3px;
  border-color: #3A3B3D;
}
.hp-quiz-wrapper .hp-quiz-wrap .checkboxItem input[type=checkbox].selectA {
  background: #ffffff !important;
  color: #114A21;
}
.hp-quiz-wrapper .hp-quiz-wrap .checkboxItem span {
  font-size: 19px;
  line-height: 24px;
  color: #3A3B3D;
}
@media screen and (max-width: 899px) {
  .hp-quiz-wrapper .hp-quiz-wrap .checkboxItem span {
    font-size: 16px;
    line-height: 24px;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .checkboxItem span span {
  display: inline-block;
  margin: 0 0 0.25rem;
  padding: 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #53575A;
}
@media screen and (min-width: 1250px) {
  .hp-quiz-wrapper .hp-quiz-wrap .checkboxItem input[type=checkbox]:checked::before {
    margin: -0.25rem 0 0 -0.35rem;
  }
}
.hp-quiz-wrapper .hp-quiz-wrap .nhp-quiz-next.cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.hp-quiz-wrapper .hp-quiz-wrap .nhp-quiz-next.cta-btn::after {
  content: " →";
}

.home-vid-wrap {
  padding: 0 0 3rem;
}
.home-vid-wrap .vid-intro {
  margin-top: 3rem;
}
.home-vid-wrap .vid-intro h2 {
  font-size: 42px;
  line-height: 52px;
  color: #5C9A1B;
}
@media screen and (max-width: 899px) {
  .home-vid-wrap .vid-intro h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.home-vid-wrap .vid-intro p {
  color: #3A3B3D;
}

.test-wrapper {
  margin: 4rem 0;
}
.test-wrapper .testimonial {
  display: none;
  align-items: center;
}
.test-wrapper .testimonial.test-active {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1149px) {
  .test-wrapper .testimonial.test-active {
    align-items: center;
  }
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial.test-active {
    display: block;
  }
}
.test-wrapper .testimonial .test-image {
  width: 45%;
  margin: 2.5%;
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial .test-image {
    width: 100%;
    margin: 0 auto 2rem;
  }
  .test-wrapper .testimonial .test-image img {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial .test-image {
    display: none;
  }
}
.test-wrapper .testimonial .test-copy {
  width: 45%;
  margin: 0 2.5%;
  border: #114A21 2px solid;
  padding: 8rem 4rem;
  text-align: center;
}
@media screen and (max-width: 1379px) {
  .test-wrapper .testimonial .test-copy {
    padding: 4rem;
  }
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial .test-copy {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0;
  }
}
.test-wrapper .testimonial .test-copy .test-name {
  color: #53575A;
  font-weight: bold;
  font-size: 19px;
  line-height: 28.5px;
  padding: 0 2rem;
}
.test-wrapper .testimonial .test-copy .test-quote {
  display: block;
  margin: 1rem auto;
}
@media screen and (max-width: 767px) {
  .test-wrapper .testimonial .test-copy .test-quote {
    margin: 0 auto;
  }
}
.test-wrapper .testimonial .test-copy .test-quote.flip {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .test-wrapper .testimonial .test-copy .test-quote.m-img-50 {
    width: 32px;
  }
}
.test-wrapper .testimonial .test-copy .test-quote h3 {
  padding: 2rem;
  font-weight: bold;
  color: #114A21;
}
@media screen and (max-width: 767px) {
  .test-wrapper .testimonial .test-copy .test-quote h3 {
    padding: 1rem 2rem 0;
    margin-bottom: 1rem;
  }
}
.test-wrapper .testimonial .test-copy .cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .test-wrapper .testimonial .test-copy .cta-btn {
    margin: 1.5rem auto 0;
  }
}
.test-wrapper .testimonial .test-copy .cta-btn::after {
  content: " →";
}
@media screen and (max-width: 767px) {
  .test-wrapper .testimonial .ti-wrapper {
    display: none;
  }
}
.test-wrapper .testimonial .ti-wrapper p {
  color: #3A3B3D;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-top: 3rem;
}
.test-wrapper .testimonial .ti-wrapper .test-icons {
  display: flex;
  align-items: center;
  width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial .ti-wrapper .test-icons {
    width: 275px;
  }
}
.test-wrapper .testimonial .ti-wrapper .test-icons .test-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .test-wrapper .testimonial .ti-wrapper .test-icons .test-icon {
    width: 75px;
    height: 75px;
  }
}
.test-wrapper .testimonial .ti-wrapper .test-icons .test-icon.test-highlight {
  border: #5C9A1B 3px solid;
  border-radius: 50%;
}

.care-cta {
  padding: 4rem 2rem;
  text-align: center;
}
.care-cta h2 {
  color: #5C9A1B;
  font-size: 42px;
  line-height: 52px;
}
@media screen and (max-width: 899px) {
  .care-cta h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.care-cta p {
  color: #3A3B3D;
  font-size: 19px;
  line-height: 29px;
  font-weight: normal;
  font-family: "FS Humana", sans serif;
  margin: 0;
}
@media screen and (max-width: 899px) {
  .care-cta p {
    font-size: 16px;
    line-height: 24px;
  }
}

.vbc-wrapper .content-wrapper .row .vbc-text {
  display: flex;
  align-items: flex-start;
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy {
  width: 90%;
  padding: 0 1rem;
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy h3 {
  color: #5C9A1B;
  font-size: 36px;
  line-height: 50px;
  font-weight: normal;
  margin: 0 0 1rem;
}
@media screen and (max-width: 899px) {
  .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (max-width: 599px) {
  .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy h3 {
    padding-left: 0;
  }
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy p {
  color: #3A3B3D;
  font-size: 19px;
  line-height: 29px;
  font-weight: normal;
}
@media screen and (max-width: 899px) {
  .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy p {
    font-size: 16px;
    line-height: 24px;
  }
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:link, .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:active, .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:visited {
  text-decoration: none;
  font-weight: bold;
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:link::after, .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:active::after, .vbc-wrapper .content-wrapper .row .vbc-text .vbc-copy a:visited::after {
  content: " →";
}
.vbc-wrapper .content-wrapper .row .vbc-text .vbc-num {
  height: 48px;
  width: 48px;
  border: 2px solid #5C9A1B;
  font-size: 28px;
  font-family: "FSHumana", calibri, sans serif;
  padding-top: 10px;
}
@media screen and (max-width: 899px) {
  .vbc-wrapper .content-wrapper .row .vbc-text .vbc-num {
    height: 32px;
    width: 32px;
    font-size: 20px;
    padding-top: 3px;
  }
}

.numbers-wrapper {
  margin: 1rem 2rem;
}
.numbers-wrapper .content-wrapper {
  display: flex;
  align-items: center;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .numbers-wrapper .content-wrapper {
    display: block;
  }
}
.numbers-wrapper .content-wrapper .number-intro {
  width: 50%;
  padding: 0 8rem;
}
@media screen and (max-width: 1023px) {
  .numbers-wrapper .content-wrapper .number-intro {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .numbers-wrapper .content-wrapper .number-intro {
    width: 100%;
    padding: 0 2rem;
  }
}
.numbers-wrapper .content-wrapper .number-intro h3 {
  color: #5C9A1B;
  font-size: 42px;
  line-height: 52px;
}
@media screen and (max-width: 899px) {
  .numbers-wrapper .content-wrapper .number-intro h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (max-width: 419px) {
  .numbers-wrapper .content-wrapper .number-intro h3 {
    text-align: center;
  }
}
.numbers-wrapper .content-wrapper .number-list {
  width: 50%;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .numbers-wrapper .content-wrapper .number-list {
    width: 100%;
  }
}
.numbers-wrapper .content-wrapper .number-list .number-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.numbers-wrapper .content-wrapper .number-list .number-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 419px) {
  .numbers-wrapper .content-wrapper .number-list .number-item {
    display: block;
  }
}
.numbers-wrapper .content-wrapper .number-list .number-item .number-img {
  width: 45px;
}
@media screen and (max-width: 419px) {
  .numbers-wrapper .content-wrapper .number-list .number-item .number-img {
    margin: 0 auto 0.5rem;
  }
}
.numbers-wrapper .content-wrapper .number-list .number-item .number-img img {
  width: auto;
  height: auto;
  max-width: 45px;
  max-height: 45px;
}
.numbers-wrapper .content-wrapper .number-list .number-item p {
  padding-left: 36px;
  font-size: 19px;
  line-height: 29px;
  color: #3A3B3D;
  margin: 0;
}
@media screen and (max-width: 899px) {
  .numbers-wrapper .content-wrapper .number-list .number-item p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 419px) {
  .numbers-wrapper .content-wrapper .number-list .number-item p {
    margin: 0 0 1rem;
    text-align: center;
    padding-left: 0;
  }
}

.template-care .home-vid-wrap {
  margin-top: 2rem;
}
.template-care .home-vid-wrap .content-wrapper {
  border-top: #707373 2px solid;
  margin: 0 2rem;
}
.template-care .home-vid-wrap .vid-intro {
  margin-top: 3rem;
}
@media screen and (max-width: 899px) {
  .template-care .home-vid-wrap .vid-intro h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (max-width: 899px) {
  .template-care .home-vid-wrap .vid-intro p {
    font-size: 16px;
    line-height: 24px;
  }
}
.template-care .home-vid-wrap .video iframe {
  height: 80%;
}

.rs-page .content-wrapper {
  max-width: 1400px;
}
.rs-page .form-outside {
  padding: 0 1rem;
}
@media screen and (max-width: 899px) {
  .rs-page .form-outside {
    padding: 2rem 0;
  }
}
.rs-page .form-wrapper2 {
  margin: 0 0 2rem;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .rs-page .form-wrapper2 {
    float: none;
    padding: 2rem;
    margin: 2rem auto;
  }
}
.rs-page .form-wrapper2 h3 {
  font-size: 1.85rem;
}
@media (max-width: 1023px) {
  .rs-page .col-8, .rs-page .col-4 {
    width: 100%;
  }
}

.rs-hero h2 {
  color: #5C9A1B;
  font-size: 50px;
  line-height: 62px;
}
@media screen and (max-width: 899px) {
  .rs-hero h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.rs-hero p {
  color: #3A3B3D;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
}
@media screen and (max-width: 899px) {
  .rs-hero p {
    font-size: 16px;
    line-height: 24px;
  }
}

.rs-resources-wrapper {
  padding-top: 1rem;
}
.rs-resources-wrapper h2 {
  font-family: "FSHumanaLight", calibri, arial, helvetica, sans-serif;
  font-size: 36px;
  line-height: 50px;
  font-weight: 100;
  color: #114A21 !important;
}
@media screen and (max-width: 899px) {
  .rs-resources-wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.rs-resources-wrapper .rs-row .res-wrap {
  border-radius: 4px;
  height: 520px;
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap .res-img {
    display: none;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-img img {
  border-radius: 4px 4px 0 0;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt {
  font-family: "FSHumana", calibri, arial, helvetica, sans-serif;
  height: 325px;
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap .res-excerpt {
    height: auto;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt h4 a.rs-title {
  font-family: "FSHumana", calibri, arial, helvetica, sans-serif;
  font-size: 24px;
  line-height: 33px;
  color: #3A3B3D;
}
@media screen and (max-width: 767px) {
  .rs-resources-wrapper .rs-row .res-wrap .res-excerpt p {
    margin-bottom: 4rem;
  }
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt p a.rs-excerpt {
  font-family: "FSHumana", calibri, arial, helvetica, sans-serif;
  font-size: 19px;
  line-height: 24px;
  color: #3A3B3D;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore {
  color: #007481;
  font-weight: bold;
  text-transform: lowercase;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore::first-letter {
  text-transform: uppercase;
}
.rs-resources-wrapper .rs-row .res-wrap .res-excerpt a.readmore::after {
  content: " →";
  background: none;
  position: unset;
  right: unset;
  top: unset;
  width: unset;
  height: unset;
}
.rs-resources-wrapper .pagination .page-numbers.current {
  font-size: 14px;
  font-weight: bold;
}

.rs-paginate {
  margin: 2rem 2rem;
}

a .rs-next-btn {
  font-family: "FS Humana", calibri, arial, helvetica, sans-serif;
  background: #5C9A1B;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: none;
  border-radius: 4px;
}
a .rs-next-btn::after {
  content: "";
  margin-left: 12px;
  background-image: url(2024/arrow-right.png);
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}

#res-filter.select-css {
  border: none;
  border-radius: 0;
  border-bottom: #3A3B3D 1px solid;
  background-image: url("assets/images/chevron-down-green.png");
}

.rs-page .return {
  margin: 3rem 2rem;
}
@media screen and (max-width: 980px) {
  .rs-page .return {
    margin: 1rem 2rem;
  }
}
.rs-page .return a {
  margin-left: 0;
  font-weight: bold;
}
.rs-page .return a::before {
  content: "← ";
  background: none;
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}
.rs-page .row {
  display: block;
}

.rs-content.col-9 {
  padding: 0 2rem;
}
.rs-content.col-9 .lf-wrapper {
  width: 100%;
}
.rs-content.col-9 .lf-wrapper .lf-head-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.rs-content.col-9 .lf-wrapper .lf-head-wrapper .lf-num-col {
  margin-right: 1rem;
}
.rs-content.col-9 .lf-wrapper .lf-head-wrapper .lf-num-col .lf-num {
  height: 48px;
  width: 48px;
  border: 2px solid #5C9A1B;
  background: transparent;
  color: #5C9A1B;
  font-family: "FSHumanaLight", calibri, helvetica, sans serif;
  font-size: 28px;
  padding-top: 3px;
}
.rs-content.col-9 .lf-wrapper .lf-head-wrapper .lf-headline h4 {
  font-size: 22px;
  line-height: 30px;
}
.rs-content p {
  font-size: 16px;
  line-height: 24px;
}
.rs-content h3 {
  font-family: "FSHumana", calibri, helvetica, sans serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #3A3B3D;
  margin-bottom: 0;
}
.rs-content h4 {
  font-family: "FSHumanaLight", calibri, helvetica, sans serif;
  font-weight: 100;
  font-size: 22px;
  line-height: 30px;
  color: #3A3B3D;
  margin-bottom: 0;
}
.rs-content h5 {
  font-family: "FSHumana", calibri, helvetica, sans serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #3A3B3D;
  margin-bottom: 0;
}

.rs-header {
  padding: 0 2rem;
}
.rs-header .col-9 {
  padding-right: 2rem;
}
.rs-header h1 {
  color: #3A3B3D;
  font-family: "FSHumana", calibri, helvetica, sans serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 40px;
}
.rs-header .rs-date {
  color: #3A3B3D;
  font-size: 19px;
  line-height: 29px;
}

.social {
  margin: 0 auto 0 1rem;
}
@media screen and (max-width: 899px) {
  .social {
    margin: 0 auto;
  }
}
.social p {
  color: #3A3B3D;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}
.social .rs-social-icons {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.social .social-icon {
  width: 29px;
  height: 29px;
  margin: 0 0.25rem;
}
.social .tooltip {
  margin-top: 10px;
}
.social .tooltip img {
  margin-top: -10px;
}

.rs-img-wrap {
  margin: 3rem 0;
}

.rs-fw-image {
  margin: 0;
  width: 100%;
  min-height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 0 120px 0 0;
}
.rs-fw-image.alt-rs-hero {
  background-position: right;
  max-width: 350px;
  min-height: 250px;
}

.rs-sidebar p.rs-sidebar-head {
  color: #3A3B3D;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}
.rs-sidebar .rs-side-wrap .res-wrap {
  height: auto;
  border-radius: 4px;
  border: #c8c8c8 1px solid;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-img {
  height: auto;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-img img {
  border-radius: 4px 4px 0 0;
  height: 235px;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt {
  height: auto;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt a.readmore {
  position: relative;
  display: block;
  margin-top: 2rem;
  color: #007481;
  font-weight: 600;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt a.readmore::after {
  content: " →";
  background: none;
  position: relative;
  right: 0;
  top: 0;
  width: auto;
  height: auto;
}

.res-form {
  background: #f8f8f8;
  padding: 2rem;
  font-family: "FSHumana", calibri, helvetica, sans serif;
}
.res-form h3 {
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
}
.res-form p {
  margin: 0 auto;
  line-height: 16px;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .res-form p {
    max-width: 100%;
  }
}
.res-form p.res-lead-in {
  margin-bottom: 1rem;
  text-align: center;
  line-height: 24px;
  max-width: 100%;
}
.res-form p br {
  display: none;
}
.res-form p .email-address {
  display: block;
  width: 50%;
  float: left;
}
@media screen and (max-width: 767px) {
  .res-form p .email-address {
    width: 100%;
    float: none;
  }
}
.res-form p .email-address input {
  font-size: 19px;
  line-height: 19px;
  height: 58px;
  padding: 1rem;
}
.res-form p .wpcf7-submit {
  width: 50%;
  background: #5C9A1B;
  font-size: 19px;
  line-height: 19px;
  text-transform: capitalize;
  height: 58px;
  padding: 1rem;
}
.res-form p .wpcf7-submit:hover {
  background: rgb(79.0386740331, 132.3038674033, 23.1961325967);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .res-form p .wpcf7-submit {
    width: 100%;
  }
}
.res-form p .wpcf7-spinner {
  display: none;
}
.res-form.res-end-form {
  margin-bottom: -24px;
  padding: 3rem;
}
.res-form.res-end-form .email-address {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .res-form.res-end-form .email-address {
    width: 100%;
  }
}
.res-form.res-end-form .wpcf7-submit {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .res-form.res-end-form .wpcf7-submit {
    width: 100%;
  }
}

.email-post {
  display: none;
}
.email-post input::-moz-placeholder {
  font-size: 19px;
}
.email-post input::placeholder {
  font-size: 19px;
}
.email-post .email-field {
  display: inline-block;
  width: 50%;
  font-size: 19px;
  padding: 8px 16px;
}
.email-post input.email-send {
  font-family: "FS Humana", calibri, arial, helvetica, sans-serif;
  background: #5C9A1B;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 1px;
  text-transform: none;
  padding: 10px 16px;
  position: relative;
  top: -1px;
  left: -4px;
}

.faq-page h2 {
  color: #5C9A1B;
  text-align: center;
}
.faq-page p, .faq-page .faq_question, .faq-page .faq_answer, .faq-page .ol, .faq-page .ul {
  font-size: 19px;
  line-height: 29px;
}
@media screen and (max-width: 899px) {
  .faq-page p, .faq-page .faq_question, .faq-page .faq_answer, .faq-page .ol, .faq-page .ul {
    font-size: 16px;
    line-height: 24px;
  }
}
.faq-page p.citations {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 899px) {
  .faq-page p.citations {
    font-size: 13px;
    line-height: 18px;
  }
}
.faq-page #expand-faq {
  text-transform: lowercase;
}
.faq-page #expand-faq::first-letter {
  text-transform: uppercase;
}

.tm-page .tm-hero {
  padding: 4rem 2rem;
  text-align: center;
}
.tm-page .tm-hero h2 {
  color: #5C9A1B;
  font-size: 50px;
  line-height: 63px;
}
@media screen and (max-width: 980px) {
  .tm-page .tm-hero h2 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .tm-page .tm-hero h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 419px) {
  .tm-page .tm-hero h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.tm-page .tm-hero p {
  color: #3A3B3D;
  font-size: 19px;
  line-height: 29px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tm-page .tm-hero p {
    font-size: 16px;
    line-height: 24px;
  }
}

.tm-vid-outer-wrap {
  background: transparent;
  max-width: 1280px;
  margin: 0 auto;
}
.tm-vid-outer-wrap .tm-video-wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .tm-vid-outer-wrap .tm-video-wrapper {
    display: block;
  }
}
.tm-vid-outer-wrap .tm-video-wrapper .tm-video {
  width: 60%;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .tm-vid-outer-wrap .tm-video-wrapper .tm-video {
    width: 100%;
  }
}
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .test-vid-wrap {
  position: relative;
  width: 100%;
  background: #003057;
  margin: 0 auto;
}
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .test-vid-wrap .video {
  position: relative;
  padding-bottom: 56.25%;
  margin-left: 0;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
}
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .test-vid-wrap .video iframe,
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .test-vid-wrap .video object,
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .test-vid-wrap .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  border: none;
}
.tm-vid-outer-wrap .tm-video-wrapper .tm-video .m-video {
  display: none;
}
@media (max-width: 600px) {
  .tm-vid-outer-wrap .tm-video-wrapper .tm-video .m-video {
    display: block;
  }
}
.tm-vid-outer-wrap .tm-video-wrapper .sidebar {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .tm-vid-outer-wrap .tm-video-wrapper .sidebar {
    width: 100%;
    padding: 1rem 2rem 0;
    text-align: center;
  }
}
.tm-vid-outer-wrap h2 {
  font-size: 42px;
  line-height: 52px;
  color: #5C9A1B;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .tm-vid-outer-wrap h2 {
    margin-top: 24px;
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 419px) {
  .tm-vid-outer-wrap h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.tm-vid-outer-wrap p {
  color: #3A3B3D;
  font-size: 19px;
  line-height: 29px;
}
@media screen and (max-width: 767px) {
  .tm-vid-outer-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}
.tm-vid-outer-wrap #featureDisc {
  color: #3A3B3D;
}

.tm-more {
  margin: 2rem auto;
  max-width: 1280px;
  padding: 0 2rem 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tm-more {
    padding-top: 2rem;
    border-top: #e6e6e6 1px solid;
  }
}
.tm-more h3 {
  font-size: 28px;
  line-height: 38px;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .tm-more h3 {
    text-align: center;
  }
}
.tm-more #more-expand {
  color: #007481;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  position: absolute;
  top: 2.5%;
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .tm-more #more-expand {
    position: relative;
    top: auto;
    right: auto;
    padding: 0 2rem;
    text-align: center;
  }
}
.tm-more .more-list {
  position: relative;
}
.tm-more .more-list #more-arrow-right {
  position: absolute;
  top: 25%;
  right: -1rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.tm-more .more-list #more-arrow-left {
  position: absolute;
  top: 25%;
  left: -1rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.tm-more .more-list #more-library {
  display: flex;
  flex-wrap: wrap;
}
.tm-more .more-list #more-library .more-video {
  display: inline-block;
  width: 33.333333%;
  padding: 1rem 2rem;
  cursor: pointer;
}
.tm-more .more-list #more-library .more-video:nth-child(n+4) {
  display: none;
}
.tm-more .more-list #more-library .more-video:nth-child(n+4).showAll {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .tm-more .more-list #more-library .more-video {
    width: 100%;
  }
  .tm-more .more-list #more-library .more-video:nth-child(n+2) {
    display: none;
  }
  .tm-more .more-list #more-library .more-video:nth-child(n+2).showAll {
    display: inline-block;
  }
}
.tm-more .more-list #more-library .more-video img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.tm-more .more-list #more-library .more-video h4 {
  font-size: 22px;
  line-height: 33px;
  margin: 1rem 0 0;
}
.tm-more .more-list #more-library .more-video .more-vid-desc {
  margin: 0.25rem 0 0;
}

.providers-page {
  max-width: 1280px;
  margin: 0 auto;
}
.providers-page .flexbox {
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .providers-page .flexbox {
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 899px) {
  .providers-page .flexbox .flex-col {
    display: block;
    width: 100%;
  }
  .providers-page .flexbox .flex-col.col-8 {
    background: #ffffff;
  }
}
.providers-page .col-8, .providers-page .col-4 {
  padding: 0 1rem 0 0;
}
@media (max-width: 1023px) {
  .providers-page .col-8, .providers-page .col-4 {
    width: 100%;
  }
  .providers-page .form-outside {
    display: block;
  }
}
@media (max-width: 767px) {
  .providers-page .col-4 {
    padding: 1rem;
  }
}
.providers-page .content-wrapper {
  margin: 1rem 2rem;
  padding: 3rem 3rem 1rem 0;
}
@media screen and (max-width: 1440px) {
  .providers-page .content-wrapper {
    padding: 3rem 2rem 1rem;
  }
}
@media screen and (max-width: 899px) {
  .providers-page .content-wrapper {
    margin: 0;
    padding: 2rem;
  }
}
.providers-page .content-wrapper .provider-intro {
  max-width: 760px;
  margin: 0 auto;
}
.providers-page .content-wrapper .provider-intro h2 {
  color: #5C9A1B;
  text-align: center;
}
.providers-page .content-wrapper .provider-intro p {
  text-align: center;
  font-size: 19px;
  line-height: 29px;
}
@media screen and (max-width: 899px) {
  .providers-page .content-wrapper .provider-intro p {
    font-size: 16px;
    line-height: 24px;
  }
}
.providers-page .content-wrapper .zipsearch #zipsearch {
  max-width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .providers-page .content-wrapper .zipsearch #zipsearch {
    max-width: 90%;
  }
}
.providers-page .content-wrapper .zipsearch #zipsearch #myzip-btn,
.providers-page .content-wrapper .zipsearch #zipsearch #myzip-btn-es {
  background: #612166;
}
.providers-page .content-wrapper .zipsearch #zipsearch #myzip-btn i,
.providers-page .content-wrapper .zipsearch #zipsearch #myzip-btn-es i {
  color: #ffffff;
}
.providers-page .content-wrapper .zipsearch #results-msg h2 {
  margin: 2rem auto 0;
  color: #114A21;
  text-align: center;
  font-size: 32px;
  line-height: 40px;
}
@media screen and (max-width: 899px) {
  .providers-page .content-wrapper .zipsearch #results-msg h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
.providers-page .cta-btn {
  background: #5C9A1B;
  color: #ffffff;
  font-family: "FSHumana", calibri, serif;
  font-weight: bold;
  border-radius: 4px;
}
.providers-page .form-wrapper2 {
  margin: 4.5rem 0 1rem;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .providers-page .form-wrapper2 {
    float: none;
    padding: 2rem;
    margin: 2rem auto;
  }
}
.providers-page .form-wrapper2 h3 {
  font-size: 1.85rem;
}

.v-sep {
  width: 1px;
  height: 48px;
  border-left: #e6e6e6 1px solid;
}

.provider-logo {
  padding-left: 18px;
}
.provider-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  max-width: 250px;
}
@media screen and (max-width: 980px) {
  .provider-logo img {
    display: block;
    width: auto;
    max-height: 50px;
    margin: 2rem auto 0;
  }
}

#provider-zipsearch p.zip-intro {
  font-size: 24px;
  line-height: 33px;
  font-weight: bold;
  color: #114A21;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 980px) {
  #provider-zipsearch p.zip-intro {
    font-size: 16px;
    line-height: 22px;
  }
}
#provider-zipsearch #zipsearch {
  max-width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  #provider-zipsearch #zipsearch {
    max-width: 100%;
  }
}
#provider-zipsearch #zipsearch #myzip-btn {
  background: #612166;
}
#provider-zipsearch #zipsearch #myzip-btn i {
  color: #ffffff;
}

.events {
  background: #f8f8f8;
  padding: 4rem 2rem;
}
.events h3 {
  color: #5C9A1B;
}
.events p {
  margin-bottom: 3rem;
}
.events .event {
  background: #ffffff;
  border: #e6e6e6 1px solid;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1rem;
  display: flex;
  flex: 1;
  align-items: center;
}
.events .event:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .events .event {
    display: block;
  }
}
.events .event .event-image {
  width: 8%;
}
.events .event .event-image img {
  width: auto;
  height: auto;
  max-width: 68px;
}
@media screen and (max-width: 980px) {
  .events .event .event-image img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 980px) {
  .events .event .event-image {
    width: 100%;
  }
}
.events .event .event-details {
  width: 27%;
}
@media screen and (max-width: 980px) {
  .events .event .event-details {
    width: 100%;
    text-align: center;
    margin: 1rem auto;
  }
}
.events .event .event-details p {
  font-weight: bold;
  color: #114A21;
  margin-bottom: 0;
}
.events .event .event-desc {
  width: 50%;
  padding: 0 1rem;
}
@media screen and (max-width: 980px) {
  .events .event .event-desc {
    width: 100%;
    text-align: center;
  }
}
.events .event .event-desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .events .event .event-desc p {
    max-width: 600px;
    margin: auto;
  }
}
.events .event .event-desc a:link, .events .event .event-desc a:active, .events .event .event-desc a:visited, .events .event .event-desc a:hover {
  color: #007481;
  font-weight: bold;
}
.events .event .event-cta {
  width: 15%;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .events .event .event-cta {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.events .event .event-cta a.btn {
  font-size: 16px;
  line-height: 16px;
  padding: 0.75rem 1.25rem;
}

.care-deserved-intro h4 {
  color: #114A21;
  font-weight: bold;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 980px) {
  .care-deserved-intro h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

.care-deserved {
  padding: 2rem 4rem 0 !important;
}
@media (max-width: 980px) {
  .care-deserved {
    width: 80%;
    margin: auto;
    padding: 2rem 2rem 4rem !important;
  }
}
.care-deserved.border-right {
  border-right: #e6e6e6 2px solid;
}
@media (max-width: 980px) {
  .care-deserved.border-right {
    border-right: none;
    border-bottom: #e6e6e6 2px solid;
    margin-bottom: 2rem;
  }
}
.care-deserved h4 {
  color: #114A21;
  font-weight: bold;
  font-size: 26px;
  line-height: 37px;
  text-align: center;
  margin: 0 auto 2rem;
}
@media (max-width: 980px) {
  .care-deserved h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.care-deserved img {
  margin: 0 auto;
  width: auto;
  height: auto;
}
.care-deserved img.icon {
  max-width: 80px;
}

.learn-more-container {
  padding: 0 2rem;
}
.learn-more-container .flexbox {
  align-items: stretch;
  gap: 0 2%;
}
@media (max-width: 980px) {
  .learn-more-container .flexbox {
    gap: unset;
  }
}
.learn-more-container .flexbox .flex-col {
  padding: 0 !important;
  width: 32%;
}
@media (max-width: 980px) {
  .learn-more-container .flexbox .flex-col {
    width: 50%;
    margin: 2rem auto;
  }
  .learn-more-container .flexbox .flex-col:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .learn-more-container .flexbox .flex-col {
    width: 70%;
  }
}
@media (max-width: 419px) {
  .learn-more-container .flexbox .flex-col {
    width: 90%;
  }
}

.learn-more {
  border: #e6e6e6 1px solid;
  border-radius: 4px;
  background: #ffffff;
  position: relative;
  cursor: pointer;
}
.learn-more .inner-copy {
  padding: 2rem 2rem 4rem;
}
@media (max-width: 980px) {
  .learn-more .inner-copy {
    padding: 2rem;
  }
}
.learn-more .inner-copy h4 {
  color: #114A21;
  font-size: 24px;
  line-height: 33px;
}
.learn-more .inner-copy p {
  margin-bottom: 2rem;
}
.learn-more .inner-copy .learn-more-cta {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .learn-more .inner-copy .learn-more-cta {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
.learn-more .inner-copy .learn-more-cta a {
  color: #007481;
  font-weight: bold;
  text-decoration: none;
}
.learn-more .inner-copy .learn-more-cta::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right-teal.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}
.learn-more:hover {
  background: #5C9A1B;
  transition: 250ms;
}
.learn-more:hover .inner-copy h4, .learn-more:hover .inner-copy p {
  color: #ffffff;
}
.learn-more:hover .learn-more-cta a {
  color: #ffffff;
}
.learn-more:hover .learn-more-cta::after {
  background-image: url("2024/arrow-right.png");
}

@media screen and (max-width: 980px) {
  .get-in-touch .form-wrapper2 {
    margin: 0px auto;
  }
}
.get-in-touch .form-wrapper2 h4 {
  color: #114A21;
  font-size: 28px;
  line-height: 39px;
  text-align: left;
}
.get-in-touch .form-wrapper2 .wpcf7 .git-submit .cta-btn {
  font-weight: bold !important;
}
.get-in-touch .form-wrapper2 .cta a:link {
  color: #007481;
}

.p-testimonial {
  border: #114A21 2px solid;
  padding: 4rem;
  margin-bottom: 3rem;
  text-align: center;
}
.p-testimonial .byline {
  color: #53575A;
  font-weight: bold;
  font-size: 19px;
  line-height: 28.5px;
}
.p-testimonial .quote p {
  font-size: 36px;
  line-height: 49.5px;
  color: #114A21;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-testimonial .quote p {
    font-size: 1.875rem;
    line-height: 1.95rem;
  }
}
.p-testimonial .quote::before {
  content: "";
  background-image: url("2024/open-quote.png");
  background-size: 48px 36px;
  display: inline-block;
  width: 48px;
  height: 36px;
  margin-bottom: 1rem;
}
.p-testimonial .quote::after {
  content: "";
  background-image: url("2024/close-quote.png");
  background-size: 48px 36px;
  display: inline-block;
  width: 48px;
  height: 36px;
}

.lp_bottom-cta {
  background: #78be20;
  width: 100%;
  display: flex;
  flex: 1;
  align-items: center;
}
.lp_bottom-cta .lp_bottom-cta-content {
  width: 60%;
}
@media screen and (max-width: 980px) {
  .lp_bottom-cta .lp_bottom-cta-content {
    width: 85%;
    margin: 0 auto;
  }
}
.lp_bottom-cta .lp_bottom-cta-content .lp-cta-wrap {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .lp_bottom-cta .lp_bottom-cta-content .lp-cta-wrap {
    width: 100%;
    margin: 2rem auto;
    text-align: center;
  }
}
.lp_bottom-cta .lp_bottom-cta-content .lp-cta-head {
  color: #114A21;
  font-size: 28px;
  line-height: 36px;
}
@media screen and (max-width: 980px) {
  .lp_bottom-cta .lp_bottom-cta-content .lp-cta-head {
    font-size: 19px;
    line-height: 27px;
  }
}
.lp_bottom-cta .lp_bottom-cta-content .lp-cta-desc {
  margin-bottom: 2rem;
}
.lp_bottom-cta .lp_bottom-cta-content .cta-btn {
  background: #ffffff;
  border: #5C9A1B 1px solid;
  border-radius: 4px;
  color: #5C9A1B;
  font-family: "FSHumana", calibri, serif;
  font-weight: bold;
  cursor: pointer;
}
.lp_bottom-cta .lp_bottom-cta-content .cta-btn:hover {
  background: #487815;
  color: #ffffff;
  transition: 200ms;
}
.lp_bottom-cta .lp_bottom-cta-content .cta-btn:hover::after {
  background-image: url("2024/arrow-right.png");
  transition: 200ms;
}
.lp_bottom-cta .lp_bottom-cta-content .cta-btn::after {
  content: "";
  margin-left: 12px;
  background-image: url("2024/arrow-right-green.png");
  background-size: 17px 13px;
  display: inline-block;
  width: 17px;
  height: 13px;
}
.lp_bottom-cta .lp_bottom_hero {
  width: 40%;
}
@media screen and (max-width: 980px) {
  .lp_bottom-cta .lp_bottom_hero {
    display: none;
  }
}

/*** POP-OUT FORM ***/
.po-btn {
  cursor: pointer;
}

#lb-overlay {
  display: none;
  position: absolute;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 4000vh;
}

#pop-out-form {
  display: none;
  position: absolute;
  z-index: 1001;
  width: 100%;
  margin: 5% auto;
}
#pop-out-form .outer {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 4px;
  border: #e6e6e6 1px solid;
}
@media screen and (max-width: 980px) {
  #pop-out-form .outer {
    background: transparent;
    border: none;
  }
}
#pop-out-form .inner h4 {
  margin-top: -3rem;
}
#pop-out-form #po-close {
  position: relative;
  z-index: 1002;
  left: 106%;
  top: -20px;
  font-size: 36px;
  line-height: 52px;
  color: #114A21;
  background: #78be20;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  #pop-out-form #po-close {
    font-size: 24px;
    line-height: 36px;
    width: 32px;
    height: 32px;
    top: -5.4rem;
    left: 100%;
  }
}

.contact-hero-wrap {
  padding: 3rem 0 0;
}
.contact-hero-wrap h1 {
  color: #5C9A1B;
}
@media screen and (max-width: 899px) {
  .contact-hero-wrap h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.contact-hero-wrap p.cta {
  color: #007481;
  font-weight: bold;
}
.contact-hero-wrap p.cta a {
  text-decoration: none;
}

.form-stripe-left,
.form-stripe-right {
  background: #78be20 !important;
}

.form-stripe-left {
  background: #5C9A1B !important;
}

.form-stripe-right {
  height: 480px;
}
@media screen and (max-width: 980px) {
  .form-stripe-right {
    background-color: #5C9A1B !important;
  }
}

.fsl-content h2, .fsl-content p {
  color: #114A21;
}

.form-outside .git-gif {
  background: #78be20;
}
.form-outside .git-gif img {
  width: 100%;
  height: auto;
  max-width: 600px;
  float: right;
}
@media screen and (max-width: 1279px) {
  .form-outside .git-gif img {
    float: none;
  }
}
@media screen and (max-width: 980px) {
  .form-outside .git-gif img {
    max-width: 100%;
  }
}
.form-outside .form-wrapper2 {
  border-radius: 4px;
  border-color: #c8c8c8;
}
.form-outside .form-wrapper2 input, .form-outside .form-wrapper2 checkbox {
  background: #f8f8f8;
}
.form-outside .form-wrapper2 .wpcf7 label {
  color: #3A3B3D;
}
.form-outside .form-wrapper2 .wpcf7 .wpcf7-checkbox input[type=checkbox] + span::before {
  background: #f8f8f8;
}
.form-outside .form-wrapper2 .wpcf7 .git-submit .cta-btn {
  border-radius: 4px;
  font-family: "FSHumana", calibri, arial, helvetica, sans-serif;
  font-weight: 400;
}

.contact-page .home-vid-wrap {
  margin-top: 5rem;
  padding-bottom: 0;
}
.contact-page .home-vid-wrap .content-wrapper {
  border-top: none;
  margin: 0 auto;
}
.contact-page .home-vid-wrap .vid-intro {
  margin-top: 0;
}
.contact-page .home-vid-wrap .video {
  margin: 0 auto -7rem;
}
@media screen and (max-width: 767px) {
  .contact-page .home-vid-wrap .video {
    margin: 0 auto -3rem;
  }
}
.contact-page .home-vid-wrap .video iframe {
  height: 80%;
}

#state-email {
  display: none;
}

.quiz-container {
  display: flex;
  align-items: stretch;
  margin-bottom: -4rem;
}
@media screen and (max-width: 767px) {
  .quiz-container {
    display: block;
  }
}
.quiz-container .tm-hero {
  background: #114A21 url("assets/images/triangle-border-wh-50pct.png") top left no-repeat;
  width: 50%;
  padding: 15% 4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .quiz-container .tm-hero {
    width: 100%;
    padding-top: 100px;
  }
}
.quiz-container .tm-hero h2 {
  color: #78be20;
}
.quiz-container .tm-hero p {
  color: #ffffff;
  text-align: left !important;
  border-left: #FFC600 1px solid;
  padding-left: 16px;
  margin: 0;
}
.quiz-container .quiz-content {
  background: #EFF5E6;
  width: 50%;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .quiz-container .quiz-content {
    width: 100%;
  }
}
.quiz-container .quiz-content .gray-dots {
  background: url("assets/images/gray-dots.png") no-repeat right top;
  position: absolute;
  background-size: contain;
  width: 413px;
  height: 56px;
  top: -47px;
  right: 0;
}
@media (max-width: 699px) {
  .quiz-container .quiz-content .gray-dots {
    width: 206px;
    height: 28px;
    top: -24px;
  }
}
.quiz-container .quiz-content .quiz-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.quiz-container .quiz-content .quiz-wrapper .quiz-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem 0 2rem;
}
.quiz-container .quiz-content .quiz-wrapper .quiz-progress div[class^=qp] {
  width: 19%;
  height: 5px;
  border: #114A21 1px solid;
}
.quiz-container .quiz-content .quiz-wrapper .quiz-progress div[class^=qp].filled {
  border: #5C9A1B 1px solid;
  background: #5C9A1B;
  cursor: pointer;
}
.quiz-container .quiz-content .quiz-wrapper .hp-quiz {
  display: none;
  text-align: center;
}
.quiz-container .quiz-content .quiz-wrapper .hp-quiz h3 {
  padding: 0 6rem;
  margin-bottom: 0.5rem;
}
.quiz-container .quiz-content .quiz-wrapper .hp-quiz.q-num4 p.disclaimer {
  display: none;
}
.quiz-container .quiz-content .quiz-wrapper p.question {
  font-size: 30px;
  line-height: 36px;
  width: 315px;
  margin: 0 auto 12px;
}
.quiz-container .quiz-content .quiz-wrapper p.disclaimer {
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
}
.quiz-container .quiz-content .quiz-wrapper p.answer {
  display: inline-block;
  width: 500px;
  padding: 12px;
  border: 1px solid #612166;
  border-radius: 26px;
  background: #ffffff;
}
@media (max-width: 1199px) {
  .quiz-container .quiz-content .quiz-wrapper p.answer {
    width: 80%;
  }
}
.quiz-container .quiz-content .quiz-wrapper p.answer:hover {
  cursor: pointer;
}
.quiz-container .quiz-content .quiz-wrapper .selectA {
  background: #612166 !important;
}
.quiz-container .quiz-content .quiz-wrapper p.selectA {
  color: #ffffff;
}
.quiz-container .quiz-content .quiz-wrapper h3 {
  color: #114A21;
  font-size: 28px;
  line-height: 38px;
}
.quiz-container .quiz-content .quiz-wrapper p.disclaimer {
  color: #3A3B3D;
  font-style: oblique;
  margin-bottom: 2rem;
}
.quiz-container .quiz-content .quiz-wrapper .checkboxItem {
  display: flex;
  align-items: flex-start;
  padding-bottom: 1rem;
  text-align: left;
}
.quiz-container .quiz-content .quiz-wrapper .checkboxItem input[type=checkbox] {
  min-width: unset;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 3px;
  border-color: #3A3B3D;
}
.quiz-container .quiz-content .quiz-wrapper .checkboxItem input[type=checkbox].selectA {
  background: #ffffff !important;
  color: #114A21;
}
.quiz-container .quiz-content .quiz-wrapper .checkboxItem span {
  font-size: 19px;
  line-height: 24px;
  color: #3A3B3D;
}
.quiz-container .quiz-content .quiz-wrapper .checkboxItem span span {
  display: inline-block;
  margin: 0 0 0.25rem;
  padding: 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #53575A;
}
@media screen and (min-width: 1250px) {
  .quiz-container .quiz-content .quiz-wrapper .checkboxItem input[type=checkbox]:checked::before {
    margin: -0.25rem 0 0 -0.35rem;
  }
}
.quiz-container .quiz-content .quiz-wrapper .nhp-quiz-next.cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.quiz-container .quiz-content .quiz-wrapper .nhp-quiz-next.cta-btn::after {
  content: " →";
}
.quiz-container .quiz-content .quiz-wrapper .nhp-quiz-prev {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.quiz-container .quiz-content .quiz-wrapper .nhp-quiz-prev::before {
  content: "← ";
}

.quiz-page .bottom-cta-wrapper2 {
  margin-top: 4rem;
}

.answer-alert {
  background-color: #ffffff;
  height: auto;
  padding: 1rem;
  text-align: center;
}

.leave-alert {
  background-color: #ffffff;
  height: auto;
  padding: 2rem;
  text-align: center;
}
.leave-alert h2 {
  font-size: 4rem;
  color: #612166;
  margin-bottom: 2rem;
}
.leave-alert h3 {
  font-size: 1.875rem;
  color: #003057;
}

.leave-alert, .answer-alert {
  border-radius: 4px;
  border: none;
}
.leave-alert h2, .answer-alert h2 {
  color: #114A21;
}
.leave-alert h3, .answer-alert h3 {
  color: #5C9A1B;
}
.leave-alert p, .answer-alert p {
  color: #3A3B3D;
}
.leave-alert .cta-btn, .answer-alert .cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}

#cboxContent, #cboxLoadedContent {
  background: transparent;
}

#cboxClose {
  right: 12px;
}

.hp-quiz.q-num5 .qform-wrapper {
  border-radius: 4px;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
}
.hp-quiz.q-num5 .qform-wrapper .git-row label {
  color: #3A3B3D;
}
.hp-quiz.q-num5 .qform-wrapper .git-row input[type=text],
.hp-quiz.q-num5 .qform-wrapper .git-row input[type=checkbox],
.hp-quiz.q-num5 .qform-wrapper .git-row .wpcf7-checkbox input[type=checkbox] {
  background: #f8f8f8;
}
.hp-quiz.q-num5 .qform-wrapper .git-submit input {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.hp-quiz.q-num5 .qform-wrapper .git-submit input::after {
  content: " →";
}
.hp-quiz.q-num5 .qform-wrapper .git-submit .wpcf7-spinner {
  display: none;
}

.bottom-cta-wrapper2 {
  background-color: #78be20;
}
.bottom-cta-wrapper2 .b-cta-head,
.bottom-cta-wrapper2 .b-cta-desc {
  color: #114A21;
}
.bottom-cta-wrapper2 .b-cta-note {
  color: #3A3B3D;
}
.bottom-cta-wrapper2 .b-cta-note a {
  color: #3A3B3D;
  text-decoration: none;
}
.bottom-cta-wrapper2 .cta-btn {
  margin: 1rem auto;
  background: #612166;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.bottom-cta-wrapper2 .cta-btn::after {
  content: " →";
}

.rs-sidebar p.rs-sidebar-head {
  color: #3A3B3D;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}
@media (max-width: 980px) {
  .rs-sidebar p.rs-sidebar-head {
    padding: 0 2rem;
  }
}
.rs-sidebar .rs-side-wrap .res-wrap {
  height: auto;
  border-radius: 4px;
  border: #c8c8c8 1px solid;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-img {
  height: auto;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-img img {
  border-radius: 4px 4px 0 0;
  height: 235px;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt {
  height: auto;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt a.readmore {
  position: relative;
  display: block;
  margin-top: 2rem;
  color: #007481;
  font-weight: 600;
}
.rs-sidebar .rs-side-wrap .res-wrap .res-excerpt a.readmore::after {
  content: " →";
  background: none;
  position: relative;
  right: 0;
  top: 0;
  width: auto;
  height: auto;
}
.rs-sidebar .cta-btn {
  margin: 1rem auto;
  background: #5C9A1B;
  color: #ffffff;
  font-family: FSHumana, calibri, arial, helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 4px;
}
.rs-sidebar .cta-btn::after {
  content: " →";
}

.rs-blue-head .rs-head-copy a:link, .rs-blue-head .rs-head-copy a:active, .rs-blue-head .rs-head-copy a:visited, .rs-blue-head .rs-head-copy a:hover {
  color: #114A21;
}

/** AB Button Testing **/
a.abtest {
  display: none;
}/*# sourceMappingURL=style.css.map */