@keyframes arrowanimation {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0); }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1); }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1); }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0); } }
@keyframes clip-path-animation {
  0% {
    clip-path: inset(0 0 100% 0); }
  50% {
    clip-path: inset(0 0 0 0); }
  100% {
    clip-path: inset(100% 0 0 0); } }
@keyframes imageanimateRight {
  0% {
    left: 25%;
    clip-path: inset(0 0 0 100%);
    scale: 1.1; }
  100% {
    left: 0;
    clip-path: inset(0 0 0 0);
    scale: 1; } }
@keyframes imageanimateLeft {
  0% {
    right: 25%;
    clip-path: inset(0 100% 0 0);
    scale: 1.1; }
  100% {
    right: 0;
    clip-path: inset(0 0 0 0);
    scale: 1; } }
@keyframes imageanimateTop {
  0% {
    transform: translateY(-25%);
    clip-path: inset(0 0 100% 0);
    scale: 1.1; }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    scale: 1; } }
@keyframes imageanimateBottom {
  0% {
    transform: translateY(25%);
    clip-path: inset(100% 0 0 0);
    scale: 1.1; }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    scale: 1; } }
@keyframes imageanimateCenter {
  0% {
    transform: scale(0.75);
    clip-path: circle(0 at 50% 50%);
    scale: 1.1; }
  100% {
    transform: scale(1);
    clip-path: circle(75% at 50% 50%);
    scale: 1; } }
@keyframes imageRevealFromRight {
  0% {
    left: 20%;
    clip-path: inset(-1px -1px -1px 100%); }
  100% {
    left: 0;
    clip-path: inset(-1px -1px -1px -1px); } }
@keyframes imageRevealFromBottom {
  0% {
    top: 20%;
    clip-path: inset(100% -1px -1px -1px); }
  100% {
    top: 0;
    clip-path: inset(-1px -1px -1px -1px); } }
@keyframes imageRevealFromLeft {
  0% {
    left: -20%;
    clip-path: inset(-1px 100% -1px -1px); }
  100% {
    left: 0;
    clip-path: inset(-1px -1px -1px -1px); } }
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 18px;
  line-height: 1.625em;
  font-family: roboto, sans-serif;
  color: #363636;
  overflow-x: clip; }

body {
  overflow-x: inherit; }

* {
  box-sizing: border-box; }

.bg-primary {
  background: #121E3E; }
.bg-orange {
  background: #F38D68; }

.screen-reader-text {
  overflow: clip;
  height: 0;
  width: 0;
  display: block; }

h2 {
  color: #363636;
  font-family: ivypresto-display, serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
  margin: 14px 0px; }

.weight-700 a {
  font-weight: 700 !important; }

.fs-header-blue {
  color: #005EB8;
  font-family: ivypresto-display, serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 58px; }

.quote-text {
  color: #363636;
  font-family: ivypresto-display, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 34px;
  margin: 0; }

:before,
:after,
a,
a:before,
a:after,
a *,
a *:before,
a *:after,
input,
textarea,
select,
button {
  transition: all 0.3s ease-in-out; }

.aux-link {
  color: #005EB8;
  font-weight: 700;
  font-size: 16px; }

a {
  color: #121E3E;
  position: relative; }

icon {
  display: inline-block; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

.screen-reader-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.main-content,
.wrapper {
  width: 95%;
  max-width: 1120px;
  margin: auto; }

.icon-external {
  margin-left: 6px; }
  .icon-external svg {
    height: 10px; }
    .icon-external svg path {
      fill: #121E3E; }

.bttn .icon-external svg path {
  fill: #fff; }
.bttn.white svg path {
  fill: #005EB8; }

.align-inline .bttn.black-underline {
  margin-right: 30px; }

li.bttn a,
a.bttn,
button.bttn,
input.bttn {
  border-radius: 999px;
  background: #005EB8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 26px;
  display: inline-block;
  border: 2px solid #005EB8;
  text-decoration: none; }
  li.bttn a.white,
  a.bttn.white,
  button.bttn.white,
  input.bttn.white {
    background: #fff;
    color: #005EB8; }
  li.bttn a.alt-blue,
  a.bttn.alt-blue,
  button.bttn.alt-blue,
  input.bttn.alt-blue {
    border: 2px solid #005EB8;
    background: transparent;
    color: #005EB8; }
    li.bttn a.alt-blue:hover,
    a.bttn.alt-blue:hover,
    button.bttn.alt-blue:hover,
    input.bttn.alt-blue:hover {
      border: 2px solid #005EB8;
      background: rgba(0, 94, 184, 0.26);
      color: #005EB8; }
  li.bttn a.alt,
  a.bttn.alt,
  button.bttn.alt,
  input.bttn.alt {
    border: 2px solid #fff;
    background: transparent;
    color: #fff; }
    li.bttn a.alt:hover,
    a.bttn.alt:hover,
    button.bttn.alt:hover,
    input.bttn.alt:hover {
      border: 2px solid #fff;
      background: rgba(197, 197, 197, 0.35);
      color: #fff; }
  li.bttn a.black-underline,
  a.bttn.black-underline,
  button.bttn.black-underline,
  input.bttn.black-underline {
    background: none;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #000;
    padding: 0;
    margin: 0;
    color: #363636; }
    li.bttn a.black-underline:focus, li.bttn a.black-underline:hover,
    a.bttn.black-underline:focus,
    a.bttn.black-underline:hover,
    button.bttn.black-underline:focus,
    button.bttn.black-underline:hover,
    input.bttn.black-underline:focus,
    input.bttn.black-underline:hover {
      color: #005EB8;
      border-color: #005EB8;
      background: none; }
  li.bttn a.arrow,
  a.bttn.arrow,
  button.bttn.arrow,
  input.bttn.arrow {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    padding: 25px 0;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid lightgrey !important;
    border-right: none;
    border-left: none;
    border-top: none;
    width: 100%;
    border-radius: 0;
    background: transparent;
    position: relative;
    border: none; }
    li.bttn a.arrow:hover,
    a.bttn.arrow:hover,
    button.bttn.arrow:hover,
    input.bttn.arrow:hover {
      background: transparent;
      color: #005EB8;
      border-color: #F38D68 !important; }
      li.bttn a.arrow:hover icon,
      a.bttn.arrow:hover icon,
      button.bttn.arrow:hover icon,
      input.bttn.arrow:hover icon {
        background: #005EB8; }
        li.bttn a.arrow:hover icon svg path,
        a.bttn.arrow:hover icon svg path,
        button.bttn.arrow:hover icon svg path,
        input.bttn.arrow:hover icon svg path {
          fill: #fff; }
    li.bttn a.arrow icon,
    a.bttn.arrow icon,
    button.bttn.arrow icon,
    input.bttn.arrow icon {
      height: 44px;
      width: 44px;
      position: absolute;
      right: 0;
      top: 50%;
      margin-top: -22px;
      background: #fff;
      border-radius: 50%; }
      li.bttn a.arrow icon svg,
      a.bttn.arrow icon svg,
      button.bttn.arrow icon svg,
      input.bttn.arrow icon svg {
        width: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
        li.bttn a.arrow icon svg path,
        a.bttn.arrow icon svg path,
        button.bttn.arrow icon svg path,
        input.bttn.arrow icon svg path {
          fill: #005EB8; }
  li.bttn a:focus, li.bttn a:hover,
  a.bttn:focus,
  a.bttn:hover,
  button.bttn:focus,
  button.bttn:hover,
  input.bttn:focus,
  input.bttn:hover {
    background: #2d7cc7;
    border-color: #2d7cc7; }

li.bttn.white a {
  background: #fff;
  color: #005EB8; }
  li.bttn.white a:focus, li.bttn.white a:hover {
    background: #F38D68;
    border-color: #F38D68;
    color: #363636; }
li.bttn.alt-blue a {
  border: 2px solid #005EB8;
  background: transparent;
  color: #005EB8; }
  li.bttn.alt-blue a:hover {
    border: 2px solid #005EB8;
    background: rgba(0, 94, 184, 0.26);
    color: #005EB8; }
li.bttn.alt a {
  border: 2px solid #fff;
  background: transparent;
  color: #fff; }
  li.bttn.alt a:hover {
    border: 2px solid #fff;
    background: rgba(197, 197, 197, 0.35);
    color: #fff; }

.bttn {
  position: relative; }
  .bttn.white {
    border: 2px solid #fff;
    background: #fff;
    color: #005EB8; }
    .bttn.white:hover {
      border: 2px solid #fff;
      background: #fff;
      color: #a0a8af; }

a.screen-reader-text {
  position: absolute !important; }

a[target="_blank"]:focus .newwindow-popup, a[target="_blank"]:hover .newwindow-popup {
  opacity: 1; }

.nospacing-top {
  margin-top: 0; }

.sm-spacing-top {
  margin-top: 20px; }

.md-spacing-top {
  margin-top: 40px; }

.lg-spacing-top {
  margin-top: 65px; }

.nospacing-bottom {
  margin-bottom: 0; }

.sm-spacing-bottom {
  margin-bottom: 25px; }

.md-spacing-bottom {
  margin-bottom: 40px; }

.lg-spacing-bottom {
  margin-bottom: 65px; }

.newwindow-popup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 2px);
  background: #121E3E;
  color: #fff;
  padding: 5px;
  font-size: 0.875em;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  font-weight: normal;
  display: inline-block;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0; }
  .newwindow-popup:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #121E3E;
    border-width: 10px;
    margin-left: -10px; }

.wpcf7-not-valid-tip {
  color: #ffffff;
  background: #dc3232;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 4px;
  border-radius: 999px;
  text-align: center;
  line-height: 18px;
  font-family: roboto, sans-serif; }

.round-img img {
  border-radius: 999px;
  overflow: hidden; }

@media (max-width: 990px) {
  #pgc-19-1-0 {
    display: contents; }

  .order-2-class {
    order: 2; }

  li.bttn a,
  a.bttn {
    font-size: 14px; } }
@media (max-width: 768px) {
  .panel-grid > div:first-child {
    padding-left: 10.75px;
    padding-right: 10.75px; } }
.alert-banner {
  background: #F38D68;
  padding: 2px 50px;
  text-align: center;
  color: #363636;
  z-index: 99;
  font-size: 0.889em;
  position: relative; }
  .alert-banner p {
    margin: 10px 0;
    padding: 0; }
  .alert-banner a {
    color: #363636; }
  .alert-banner .close-alert {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: 0;
    padding: 0;
    width: 28px;
    height: 28px;
    background: none;
    border: 0;
    margin-top: -14px; }

.main-header {
  position: sticky;
  top: 0;
  z-index: 98;
  pointer-events: none; }
  .main-header .header-wrapper {
    background: #fff;
    pointer-events: all;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 1100px) {
      .main-header .header-wrapper {
        box-shadow: none; } }
  .main-header .wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
    width: 95%;
    max-width: 1120px;
    gap: 22px; }
    .main-header .wrapper > div,
    .main-header .wrapper > nav {
      flex: 0 1 auto;
      z-index: 5; }
    .main-header .wrapper > nav {
      flex-grow: 1; }
    .main-header .wrapper .main-logo {
      padding: 25px clamp(20px, 50px, 5vw) 25px 0;
      z-index: 6; }
      .main-header .wrapper .main-logo img {
        max-width: 230px; }
  .main-header ul,
  .main-header li {
    list-style: none;
    padding: 0;
    margin: 0; }
    .main-header ul a,
    .main-header li a {
      display: block;
      text-decoration: none; }

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  border: none;
  height: 44px;
  background: url("../img/back-to-top.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 999; }

@media (max-width: 1100px) {
  .main-header .wrapper .main-logo {
    padding: 25px clamp(20px, 50px, 2vw) 25px 0; } }
.mega-menu-toggle {
  display: none; }

.main-header ul.mega-menu,
.main-header ul.menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center; }
  .main-header ul.mega-menu > li,
  .main-header ul.menu > li {
    flex: 0 1 auto;
    align-self: auto;
    min-width: 0;
    min-height: auto; }
    .main-header ul.mega-menu > li a,
    .main-header ul.menu > li a {
      display: inline-block; }
  .main-header ul.mega-menu .request-icon a,
  .main-header ul.mega-menu .login-icon a,
  .main-header ul.menu .request-icon a,
  .main-header ul.menu .login-icon a {
    color: #005EB8;
    font-weight: 700;
    font-size: 16px; }
  .main-header ul.mega-menu .request-icon::after,
  .main-header ul.menu .request-icon::after {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-left: 5px;
    margin-right: 5px;
    flex-shrink: 0;
    vertical-align: middle;
    background: url("../img/refill-icon.svg") center/contain no-repeat;
    background-size: contain; }
  .main-header ul.mega-menu .login-icon::after,
  .main-header ul.menu .login-icon::after {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-left: 8px;
    margin-right: 5px;
    flex-shrink: 0;
    vertical-align: middle;
    background: url("../img/person-icon.svg") center/contain no-repeat;
    background-size: contain; }
  .main-header ul.mega-menu ul.menu,
  .main-header ul.menu ul.menu {
    display: block; }
  .main-header ul.mega-menu .aux-link a,
  .main-header ul.menu .aux-link a {
    color: #005EB8; }
    .main-header ul.mega-menu .aux-link a:hover,
    .main-header ul.menu .aux-link a:hover {
      color: #F38D68; }
.main-header ul.mega-menu {
  gap: 22px; }
  .main-header ul.mega-menu > li > a {
    font-size: 16px;
    font-weight: 700;
    color: #363636; }
  .main-header ul.mega-menu .mega-menu-row .mega-sub-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu li {
      flex-grow: 1; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-1-of-12 {
      flex: 0 1 8.3333333333%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-2-of-12 {
      flex: 0 1 16.6666666667%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-3-of-12 {
      flex: 0 1 25%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-4-of-12 {
      flex: 0 1 33.3333333333%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-5-of-12 {
      flex: 0 1 41.6666666667%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-6-of-12 {
      flex: 0 1 50%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-7-of-12 {
      flex: 0 1 58.3333333333%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-8-of-12 {
      flex: 0 1 66.6666666667%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-9-of-12 {
      flex: 0 1 75%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-10-of-12 {
      flex: 0 1 83.3333333333%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-11-of-12 {
      flex: 0 1 91.6666666667%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .mega-menu-columns-12-of-12 {
      flex: 0 1 100%; }
    .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper {
      position: relative;
      display: inline-block;
      border-radius: 20px;
      overflow: hidden; }
      .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link {
        margin-right: 13px;
        margin-left: 30px;
        overflow: hidden;
        border-radius: 20px; }
        .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link:after {
          display: none !important; }
        .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link:before {
          content: '';
          position: absolute;
          width: 44px;
          height: 44px;
          background-image: url(../img/cta-arrow.svg);
          background-size: cover;
          top: 202px;
          right: 22px;
          z-index: 99; }
        .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link .image-container {
          position: relative;
          overflow: hidden;
          border-radius: 20px; }
          .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link .image-container .widget-image {
            position: relative;
            border-radius: 20px;
            transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
            .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link .image-container .widget-image:hover {
              transform: scale(1.05); }
        .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link p {
          margin-top: 5px;
          line-height: 28px;
          text-decoration: underline; }
        .main-header ul.mega-menu .mega-menu-row .mega-sub-menu .custom-widget-wrapper .custom-widget-link:hover:before {
          content: '';
          position: absolute;
          width: 44px;
          height: 44px;
          background-image: url(../img/right-arrow.svg);
          background-size: cover;
          top: 202px;
          right: 22px;
          z-index: 99; }
  .main-header ul.mega-menu .mega-menu-row .flex-direction-column .mega-sub-menu {
    flex-direction: column; }
  .main-header ul.mega-menu .mega-indicator {
    background: url("../img/navdd-arrow.svg") center center no-repeat;
    opacity: .5;
    width: 14px;
    height: 8px;
    display: inline-block;
    margin-left: 6px;
    margin-top: -4px;
    vertical-align: middle;
    transition: none; }

.two-col-nav .sub-menu {
  columns: 2; }

.mega-menu-item > .mega-sub-menu {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  padding-top: 88px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #F1F0EB;
  visibility: hidden;
  overflow: hidden;
  transform: translate(0, -50px);
  opacity: 0;
  transition: all 0.3s ease-in-out; }
  .mega-menu-item > .mega-sub-menu > .mega-menu-row {
    flex: 1 1 95%;
    max-width: 1120px;
    padding: 25px 0 60px; }
    .mega-menu-item > .mega-sub-menu > .mega-menu-row a {
      font-size: 16px;
      text-decoration: none;
      color: #363636;
      display: inline-block;
      position: relative;
      line-height: 34px; }
      .mega-menu-item > .mega-sub-menu > .mega-menu-row a:after {
        position: absolute;
        right: 0;
        width: 0;
        display: block;
        height: 1px;
        background: #363636;
        content: ""; }
      .mega-menu-item > .mega-sub-menu > .mega-menu-row a:hover:after {
        left: 0;
        right: auto;
        width: 100%; }
    .mega-menu-item > .mega-sub-menu > .mega-menu-row .login-icon, .mega-menu-item > .mega-sub-menu > .mega-menu-row .request-icon {
      position: relative;
      margin-top: 15px; }
      .mega-menu-item > .mega-sub-menu > .mega-menu-row .login-icon a, .mega-menu-item > .mega-sub-menu > .mega-menu-row .request-icon a {
        color: #005EB8;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; }
    .mega-menu-item > .mega-sub-menu > .mega-menu-row .request-icon::after {
      content: "";
      display: inline-block;
      width: 19px;
      height: 19px;
      margin-left: 12px;
      margin-right: 5px;
      flex-shrink: 0;
      vertical-align: middle;
      background: url("../img/refill-icon.svg") center/contain no-repeat;
      background-size: contain; }
    .mega-menu-item > .mega-sub-menu > .mega-menu-row .login-icon::after {
      content: "";
      display: inline-block;
      width: 19px;
      height: 19px;
      margin-left: 10px;
      margin-right: 5px;
      flex-shrink: 0;
      vertical-align: middle;
      background: url("../img/person-icon.svg") center/contain no-repeat;
      background-size: contain; }
    .mega-menu-item > .mega-sub-menu > .mega-menu-row .menu-item-has-children > a {
      font-weight: 700;
      margin-bottom: 15px; }
.mega-menu-item:hover > .mega-sub-menu,
.mega-menu-item > a:focus + .mega-sub-menu,
.mega-menu-item .mega-sub-menu.show-dd {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0); }

.main-right-aux ul.menu {
  display: flex;
  gap: 14px;
  justify-content: flex-end; }
  .main-right-aux ul.menu li:last-child {
    margin-right: 0; }

.mobile-toggle {
  border: 0;
  background: none;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  display: none; }
  .mobile-toggle:before, .mobile-toggle:after,
  .mobile-toggle > span {
    content: "";
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    background: #363636;
    transition: all 0.3s ease-in-out; }
  .mobile-toggle:not(.transition):before {
    margin-top: -8px; }
  .mobile-toggle:not(.transition):after {
    margin-top: 4px; }

body.mobile-menu-active {
  overflow: hidden; }
  body.mobile-menu-active .mobile-toggle span {
    opacity: 0; }
  body.mobile-menu-active .mobile-toggle:before, body.mobile-menu-active .mobile-toggle:after {
    margin-top: 0; }
  body.mobile-menu-active .mobile-toggle:not(.transition):before {
    transform: rotate(45deg); }
  body.mobile-menu-active .mobile-toggle:not(.transition):after {
    transform: rotate(-45deg); }
  body.mobile-menu-active #mobile-menu {
    display: block; }
  body.mobile-menu-active .alert-banner {
    display: none; }
  body.mobile-menu-active .main-header .header-wrapper {
    top: 0 !important;
    position: fixed;
    width: 100%; }

#mobile-menu {
  background: #F8F7F5;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 97;
  display: none; }
  #mobile-menu a {
    text-decoration: none; }
  #mobile-menu ul, #mobile-menu li {
    margin: 0;
    padding: 0;
    list-style: none; }
  #mobile-menu .menu-main-aux-container #menu-main-aux-1 {
    display: flex;
    justify-content: center; }
  #mobile-menu .social-icons-row {
    margin: 25px 15px; }
    #mobile-menu .social-icons-row .social-icons {
      display: flex;
      gap: 28px; }
      #mobile-menu .social-icons-row .social-icons svg path {
        fill: #363636 !important; }
  #mobile-menu #menu-mobile-aux {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
    padding: 0 10px; }
    #mobile-menu #menu-mobile-aux .bttn {
      flex: 0 1 auto;
      width: 100%;
      max-width: 195px; }
      #mobile-menu #menu-mobile-aux .bttn a {
        width: 100%;
        max-width: 194px;
        text-align: center; }
      @media only screen and (max-width: 375px) {
        #mobile-menu #menu-mobile-aux .bttn a {
          width: 164px; } }

@media only screen and (max-width: 1024px) {
  .mobile-toggle {
    display: block; }

  .search-toggle,
  .main-right-aux .menu-item,
  #main-menu {
    display: none; }

  .main-header .wrapper .main-logo {
    flex-grow: 1; } }
.social-icons .icon-external,
.social-icons .newwindow-popup {
  display: none; }

#mega-menu-72-0-2 {
  position: relative; }

#mega-menu-72-0-2::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: -36px; }

.search-dropdown {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  padding: 118px 0 240px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #F1F0EB;
  visibility: hidden;
  overflow: hidden;
  transform: translate(0, -50px);
  opacity: 0;
  transition: all 0.3s ease-in-out; }
  .search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    z-index: 1 !important; }
  .search-dropdown .search-dropdown-content {
    width: 95%;
    max-width: 1120px;
    margin: auto;
    position: relative; }
  .search-dropdown label {
    display: block;
    font-size: 1em;
    font-weight: 700; }
  .search-dropdown .close-search {
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: none;
    border: 0;
    cursor: pointer; }
    .search-dropdown .close-search:before, .search-dropdown .close-search:after {
      content: "";
      height: 3px;
      width: 28px;
      border-radius: 3px;
      background: #000;
      position: absolute;
      top: 50%;
      left: 50%; }
    .search-dropdown .close-search:before {
      transform: rotate(45deg);
      margin-top: -2px;
      margin-left: -14px; }
    .search-dropdown .close-search:after {
      transform: rotate(-45deg);
      margin-top: -2px;
      margin-left: -14px; }
  .search-dropdown .searchform-field {
    position: relative;
    margin-top: 60px; }
    .search-dropdown .searchform-field input {
      background: none;
      padding: 0 100px 0 0;
      border: 0;
      border-bottom: 1px solid #767676;
      font-size: clamp(16px, 30vw, 36px);
      line-height: 1.5em;
      width: 100%;
      outline-width: 0; }
      .search-dropdown .searchform-field input::placeholder {
        color: #000; }
      .search-dropdown .searchform-field input:focus {
        border-bottom-color: #F38D68; }
    .search-dropdown .searchform-field .search-icon {
      width: 44px;
      height: 44px;
      border: 2px solid #005EB8;
      position: absolute;
      right: 0;
      top: 5px;
      border-radius: 50%;
      cursor: pointer; }
      .search-dropdown .searchform-field .search-icon path {
        fill: #005EB8;
        transition: all 0.3s ease-in-out; }
      .search-dropdown .searchform-field .search-icon:hover {
        background-color: #005EB8; }
        .search-dropdown .searchform-field .search-icon:hover path {
          fill: #fff; }

.search-dropdown.slide-down {
  max-height: 365px;
  opacity: 1; }

.search-toggle {
  cursor: pointer;
  padding: 10px;
  margin: 0 -10px 0 0;
  border: 0;
  background: none;
  line-height: 0; }

div.searchwp-live-search-no-results {
  overflow: clip;
  padding: 10px !important; }

.searchwp-live-search-results {
  border: 1px solid #363636;
  border-radius: 6px;
  padding: 0;
  font: 14px/1em roboto, sans-serif;
  background: #fff; }
  .searchwp-live-search-results svg,
  .searchwp-live-search-results img {
    display: none; }
  .searchwp-live-search-results h4 {
    font: 14px / 1em roboto, sans-serif; }
  .searchwp-live-search-results p {
    margin: 0;
    padding: 0; }
  .searchwp-live-search-results a {
    color: #363636;
    text-decoration: none;
    display: block;
    padding: 10px; }
    .searchwp-live-search-results a:hover {
      background: #F8F7F5; }
  .searchwp-live-search-results .spinner {
    top: 20px !important;
    transform: scale(0.75) !important; }
  .searchwp-live-search-results.searchwp-live-search-no-min-chars:after {
    padding: 3em 0 10px !important; }

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

#video-map {
  margin-top: -155px; }

@media only screen and (max-width: 480px) {
  #centered-buttons p {
    text-align: center !important; }

  .info-block-accordion .accordion-content {
    padding: 10px 25px 50px 25px; } }
.article-summary {
  padding: 0 35px;
  border-radius: 20px; }

ol {
  padding-left: 16px; }

.info-blocks {
  overflow-x: inherit !important;
  position: relative; }

blockquote {
  color: #005EB8;
  font-family: ivypresto-display, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 46px;
  border-left: 6px solid #005EB8;
  margin: 0; }
  blockquote p {
    margin-left: 20px; }

.fs-18 {
  font-size: clamp(0.889rem, 5vw, 1rem);
  line-height: 1.5em; }

.fs-24 {
  font-size: clamp(1.111rem, 5vw, 1.333rem);
  line-height: 1.5em; }

.fs-pillblock {
  font-size: 0.778em;
  line-height: 1.4em;
  background: #F38D68;
  color: #121E3E;
  display: inline-block;
  border-radius: 999px;
  text-transform: uppercase;
  padding: 3px 15px;
  margin: 0 auto;
  font-weight: 500; }

.vidbg-overlay {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  justify-content: center;
  overflow: clip; }
  .vidbg-overlay:after {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, rgba(18, 30, 62, 0) 0%, #121e3e 100%); }

.sticky-wrapper {
  position: relative; }
  .sticky-wrapper .sticky-content {
    position: sticky;
    top: 0; }

.sticky-content.image_right .content-column {
  padding-right: 40px; }
.sticky-content.content_right .content-column {
  padding-right: 15px; }
.sticky-content .row-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .sticky-content .row-container .image-column,
  .sticky-content .row-container .content-column {
    width: calc(50% - ( 0.5 * 85px ) ); }
    .sticky-content .row-container .image-column .sticky-element,
    .sticky-content .row-container .content-column .sticky-element {
      position: sticky;
      top: 40px; }
      .sticky-content .row-container .image-column .sticky-element p:first-child,
      .sticky-content .row-container .content-column .sticky-element p:first-child {
        margin: 0;
        text-transform: uppercase;
        font-size: 16px;
        font-family: roboto,sans-serif;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: 1.6px; }
  @media only screen and (max-width: 990px) {
    .sticky-content .row-container .image-column,
    .sticky-content .row-container .content-column {
      width: calc(50% - ( 0.5 * 25px ) ); }
      .sticky-content .row-container .image-column .sticky-element,
      .sticky-content .row-container .content-column .sticky-element {
        position: static; } }
  @media only screen and (max-width: 480px) {
    .sticky-content .row-container {
      flex-direction: column; }
      .sticky-content .row-container .image-column,
      .sticky-content .row-container .content-column {
        width: 100%; }
        .sticky-content .row-container .image-column .sticky-element,
        .sticky-content .row-container .content-column .sticky-element {
          position: static; }
      .sticky-content .row-container .image-column {
        order: 1;
        margin-bottom: 25px; }
      .sticky-content .row-container .content-column {
        order: 2; } }

.height-100 {
  height: calc(100dvh - 92px);
  min-height: 500px; }

.quoteblock {
  color: #005EB8;
  font-family: ivypresto-display, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 46px;
  border-left: 6px solid #005EB8; }
  .quoteblock .quoteblock-content {
    margin-left: 20px; }

.align-left {
  text-align: left; }
.align-right {
  text-align: right; }
.align-center {
  text-align: center;
  text-wrap: balance; }
  .align-center .align-inline {
    margin: 5px; }
.align-inline {
  display: inline-block;
  margin-right: 5px; }

.color-primary:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-secondary:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-tertiary:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-blue:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-black:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-white:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea), .color-gradient:not(.color-primary-highlight):not(.color-secondary-highlight):not(.color-tertiary-highlight):not(.color-blue-highlight):not(.color-black-highlight):not(.color-white-highlight):not(.color-gradient-highlight) *:not(.bttn):not(input):not(button):not(select):not(textarea) {
  color: inherit !important; }
.color-primary, .color-primary-highlight em {
  color: #121E3E !important; }
.color-secondary, .color-secondary-highlight em {
  color: #F38D68 !important; }
.color-blue, .color-blue-highlight em {
  color: #005EB8 !important; }
.color-black, .color-black-highlight em {
  color: #000 !important; }
.color-white, .color-white-highlight em {
  color: #fff !important; }
.color-gradient, .color-gradient-highlight em {
  display: inline-block;
  background-image: linear-gradient(90deg, #005EB8, #F38D68, #FFCF9F);
  -webkit-background-clip: text;
  color: transparent !important;
  padding: 0 4px; }

.full-width-gradient {
  background: #121E3E center center/cover no-repeat;
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  justify-content: center;
  margin-top: clamp(50px, 10vw, 150px);
  overflow: clip; }

.siteorigin-panels-stretch[data-stretch-type="full"] > div {
  margin-left: auto !important;
  margin-right: auto !important; }

.padding-top-0 {
  padding-top: 0px; }
.padding-top-25 {
  padding-top: 25px; }
.padding-top-50 {
  padding-top: 50px; }
.padding-top-75 {
  padding-top: 75px; }
.padding-top-100 {
  padding-top: 100px; }
.padding-top-125 {
  padding-top: 125px; }
.padding-top-150 {
  padding-top: 150px; }
.padding-top-175 {
  padding-top: 175px; }
.padding-top-200 {
  padding-top: 200px; }
.padding-top-225 {
  padding-top: 225px; }
.padding-top-250 {
  padding-top: 250px; }
.padding-top-275 {
  padding-top: 275px; }
.padding-top-300 {
  padding-top: 300px; }
.padding-bottom-0 {
  padding-bottom: 0px; }
.padding-bottom-25 {
  padding-bottom: 25px; }
.padding-bottom-50 {
  padding-bottom: 50px; }
.padding-bottom-75 {
  padding-bottom: 75px; }
.padding-bottom-100 {
  padding-bottom: 100px; }
.padding-bottom-125 {
  padding-bottom: 125px; }
.padding-bottom-150 {
  padding-bottom: 150px; }
.padding-bottom-175 {
  padding-bottom: 175px; }
.padding-bottom-200 {
  padding-bottom: 200px; }
.padding-bottom-225 {
  padding-bottom: 225px; }
.padding-bottom-250 {
  padding-bottom: 250px; }
.padding-bottom-275 {
  padding-bottom: 275px; }
.padding-bottom-300 {
  padding-bottom: 300px; }
@media (max-width: 1024px) {
  .padding-mobile-top-0 {
    padding-top: 0px; }
  .padding-mobile-top-25 {
    padding-top: 25px; }
  .padding-mobile-top-50 {
    padding-top: 50px; }
  .padding-mobile-top-75 {
    padding-top: 75px; }
  .padding-mobile-top-100 {
    padding-top: 100px; }
  .padding-mobile-top-125 {
    padding-top: 125px; }
  .padding-mobile-top-150 {
    padding-top: 150px; }
  .padding-mobile-top-175 {
    padding-top: 175px; }
  .padding-mobile-top-200 {
    padding-top: 200px; }
  .padding-mobile-top-225 {
    padding-top: 225px; }
  .padding-mobile-top-250 {
    padding-top: 250px; }
  .padding-mobile-top-275 {
    padding-top: 275px; }
  .padding-mobile-top-300 {
    padding-top: 300px; }
  .padding-mobile-bottom-0 {
    padding-bottom: 0px; }
  .padding-mobile-bottom-25 {
    padding-bottom: 25px; }
  .padding-mobile-bottom-50 {
    padding-bottom: 50px; }
  .padding-mobile-bottom-75 {
    padding-bottom: 75px; }
  .padding-mobile-bottom-100 {
    padding-bottom: 100px; }
  .padding-mobile-bottom-125 {
    padding-bottom: 125px; }
  .padding-mobile-bottom-150 {
    padding-bottom: 150px; }
  .padding-mobile-bottom-175 {
    padding-bottom: 175px; }
  .padding-mobile-bottom-200 {
    padding-bottom: 200px; }
  .padding-mobile-bottom-225 {
    padding-bottom: 225px; }
  .padding-mobile-bottom-250 {
    padding-bottom: 250px; }
  .padding-mobile-bottom-275 {
    padding-bottom: 275px; }
  .padding-mobile-bottom-300 {
    padding-bottom: 300px; } }

.spacer-0 {
  height: 0px; }
.spacer-25 {
  height: 25px; }
.spacer-50 {
  height: 50px; }
.spacer-75 {
  height: 75px; }
.spacer-100 {
  height: 100px; }
.spacer-125 {
  height: 125px; }
.spacer-150 {
  height: 150px; }
.spacer-175 {
  height: 175px; }
.spacer-200 {
  height: 200px; }
.spacer-225 {
  height: 225px; }
.spacer-250 {
  height: 250px; }
.spacer-275 {
  height: 275px; }
.spacer-300 {
  height: 300px; }
@media (max-width: 480px) {
  .spacer-mobile-0 {
    height: 0px; }
  .spacer-mobile-25 {
    height: 25px; }
  .spacer-mobile-50 {
    height: 50px; }
  .spacer-mobile-75 {
    height: 75px; }
  .spacer-mobile-100 {
    height: 100px; }
  .spacer-mobile-125 {
    height: 125px; }
  .spacer-mobile-150 {
    height: 150px; }
  .spacer-mobile-175 {
    height: 175px; }
  .spacer-mobile-200 {
    height: 200px; }
  .spacer-mobile-225 {
    height: 225px; }
  .spacer-mobile-250 {
    height: 250px; }
  .spacer-mobile-275 {
    height: 275px; }
  .spacer-mobile-300 {
    height: 300px; } }

.eyebrow-block {
  text-transform: uppercase;
  font-size: 15px !important;
  display: block;
  line-height: 1.5em;
  font-family: roboto, sans-serif;
  color: #999;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 0; }

h1,
.h1 {
  font-family: ivypresto-display, serif;
  font-size: clamp(44px, 8vw, 72px);
  color: #363636;
  font-weight: normal;
  line-height: 1.1em;
  position: relative;
  margin: 0;
  padding: 0 0 clamp(1px, 4vw, 1px) 0; }

h2,
.h2 {
  font-family: ivypresto-display, serif;
  font-size: clamp(30px, 5vw, 48px);
  color: #363636;
  font-weight: normal;
  line-height: 1.2em;
  position: relative;
  margin: 0;
  padding: 0 0 clamp(1px, 4vw, 1px) 0; }

h3,
.h3 {
  font-family: ivypresto-display, serif;
  font-size: clamp(26px, 3vw, 36px);
  color: #363636;
  font-weight: normal;
  line-height: 1.1em;
  position: relative;
  margin: 0;
  padding: 0 0 clamp(10px, 4vw, 10px) 0; }

h4,
.h4 {
  font-family: ivypresto-display, serif;
  font-size: clamp(20px, 3vw, 24px);
  color: #363636;
  font-weight: normal;
  line-height: 1.1em;
  position: relative;
  margin: 0;
  padding: 0 0 0 0; }

h5,
.h5 {
  font-family: ivypresto-display, serif;
  font-size: clamp(18px, 3vw, 20px);
  color: #363636;
  font-weight: normal;
  line-height: 1em;
  position: relative;
  margin: 0;
  padding: 0 0 0 0; }

.prehead-count {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  font-size: 2em;
  font-weight: bold;
  line-height: clamp(55px, 10vw, 75px);
  text-align: center;
  margin-bottom: 30px; }

.maintext-block em,
.maintext-block i {
  display: inline; }

.h3 {
  line-height: 1.15em; }

.italic {
  font-style: italic; }

.maintext-block {
  display: block; }

.size90 img {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  object-position: center; }

.size120 img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
  object-position: center; }

.animated-text {
  color: transparent;
  background-color: rgba(54, 54, 54, 0.2);
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-image: linear-gradient(90deg, #005EB8, #005EB8); }

.animated-svg,
.animated-svg-alt,
.bg-primary {
  color: #fff; }
  .animated-svg .animated-text,
  .animated-svg-alt .animated-text,
  .bg-primary .animated-text {
    background-color: white;
    background-image: linear-gradient(90deg, #F38D68, #F38D68); }

.bg-secondary .animated-text {
  background-color: #363636; }

.video-block video {
  clip-path: inset(2px); }

.slider-gallery {
  position: relative;
  overflow: hidden;
  max-height: 580px;
  margin-top: 50px; }
  .slider-gallery .slider-gallery-navigation {
    z-index: 10;
    position: absolute;
    width: min(95%, 1140px);
    margin: auto;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    height: 100%;
    pointer-events: none; }
    .slider-gallery .slider-gallery-navigation button {
      pointer-events: all; }
  .slider-gallery .slider-gallery-wrapper .slick-track {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center; }
    .slider-gallery .slider-gallery-wrapper .slick-track .slick-slide {
      flex: 0 1 auto;
      float: none !important;
      max-width: 75vw; }
      .slider-gallery .slider-gallery-wrapper .slick-track .slick-slide a {
        margin: 0 10px;
        display: block;
        overflow: hidden;
        border-radius: 20px; }
      .slider-gallery .slider-gallery-wrapper .slick-track .slick-slide img {
        min-height: clamp(350px, 50vw, 580px);
        height: 100%;
        width: auto;
        display: block;
        margin: 0;
        object-fit: cover;
        object-position: center; }

.bg-secondary .vertical-content-slider .eyebrow-block {
  color: #363636; }

.vertical-category-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10%;
  grid-row-gap: 0;
  grid-auto-rows: min-content; }
  .vertical-category-slider .accordion-content {
    background: rgba(238, 236, 229, 0.85); }
  .vertical-category-slider .vcs-content {
    padding-bottom: 15px; }
    .vertical-category-slider .vcs-content .vcs-header-wrapper {
      padding-bottom: 0px; }
  .vertical-category-slider .vcs-pagination-wrapper {
    grid-area: 1 / 1 / 2 / 2; }
  .vertical-category-slider .vcs-pagination ul, .vertical-category-slider .vcs-pagination li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .vertical-category-slider .vcs-pagination .slick-dots li button {
    margin: 0;
    border: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    font-family: Roboto;
    font-size: 1.222em;
    padding: 26px 0 12px 0;
    color: #363636;
    position: relative;
    font-weight: 600;
    line-height: 28px;
    border-bottom: 1px solid #D9D9D9; }
    .vertical-category-slider .vcs-pagination .slick-dots li button:after {
      height: 20px;
      width: 20px !important;
      position: absolute;
      bottom: 15px;
      right: 0 !important;
      left: auto !important;
      background-image: url(/wp-content/themes/empower/img/diag-arrow.svg);
      content: ""; }
    .vertical-category-slider .vcs-pagination .slick-dots li button:hover {
      color: #005EB8; }
      .vertical-category-slider .vcs-pagination .slick-dots li button:hover:after {
        height: 20px;
        width: 20px !important;
        position: absolute;
        bottom: 15px;
        right: 0 !important;
        left: auto !important;
        background-image: url(/wp-content/themes/empower/img/diag-arrow-hover.svg);
        content: ""; }
  .vertical-category-slider .vcs-pagination .slick-dots li.slick-active button:after {
    left: 0;
    right: auto;
    width: 100%; }
  .vertical-category-slider .vcs-bttn {
    padding-top: 40px;
    margin-bottom: 7px; }
  .vertical-category-slider .vcs-images {
    grid-area: 1 / 2 / 2 / 3;
    max-width: 100%;
    width: 100%;
    overflow: hidden; }
    .vertical-category-slider .vcs-images img {
      width: 100%;
      max-width: 100%;
      height: 600px;
      aspect-ratio: 9/16;
      object-fit: cover;
      object-position: center;
      position: relative;
      border-radius: 20px; }
    .vertical-category-slider .vcs-images .slick-slide {
      z-index: 98 !important;
      border-radius: 20px;
      overflow: hidden; }
      .vertical-category-slider .vcs-images .slick-slide.active {
        z-index: 99 !important; }
      .vertical-category-slider .vcs-images .slick-slide.transitioning {
        z-index: 100 !important; }
      .vertical-category-slider .vcs-images .slick-slide.slick-current img {
        animation: imageRevealFromRight 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards; }
      .vertical-category-slider .vcs-images .slick-slide div[data-link] {
        background: #F8F7F5;
        border-radius: 20px; }
  .vertical-category-slider.img-left .vcs-content {
    grid-area: 1 / 2 / 2 / 3; }
  .vertical-category-slider.img-left .vcs-pagination {
    grid-area: 2 / 2 / 3 / 3; }
  .vertical-category-slider.img-left .vcs-bttn {
    grid-area: 3 / 2 / 4 / 3;
    align-self: end; }
  .vertical-category-slider.img-left .vcs-images {
    grid-area: 1 / 1 / 4 / 2; }
  @media only screen and (max-width: 768px) {
    .vertical-category-slider {
      display: block;
      width: 100%; }
      .vertical-category-slider.img-left .vcs-images {
        display: none; } }

.vertical-content-slider {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 10%;
  grid-row-gap: 0px;
  grid-auto-rows: min-content;
  grid-template-rows: auto;
  align-items: flex-start; }
  .vertical-content-slider.img-left {
    grid-template-columns: 3fr 1fr; }
  @media only screen and (max-width: 768px) {
    .vertical-content-slider {
      display: flex; }
      .vertical-content-slider .vcs-images {
        order: 2;
        margin-top: 40px; }
      .vertical-content-slider .vcs-pagination-wrapper {
        order: 1; }
        .vertical-content-slider .vcs-pagination-wrapper .vcs-content {
          padding-top: 40px; }
        .vertical-content-slider .vcs-pagination-wrapper .vcs-bttn {
          padding-top: 0; } }
  .vertical-content-slider .vcs-content {
    grid-area: 1 / 1 / 2 / 2;
    padding-bottom: 15px; }
    .vertical-content-slider .vcs-content .vcs-header-wrapper {
      padding-bottom: 0px; }
  .vertical-content-slider .slide-link-wrapper a {
    text-decoration: none;
    font-weight: 700;
    color: #363636;
    position: relative;
    display: inline-block; }
    .vertical-content-slider .slide-link-wrapper a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 0;
      display: block;
      height: 2px;
      background: #363636;
      content: ""; }
    .vertical-content-slider .slide-link-wrapper a:hover:after {
      left: 0;
      right: auto;
      width: 100%; }
  .vertical-content-slider .vcs-pagination {
    grid-area: 2 / 1 / 3 / 2; }
    .vertical-content-slider .vcs-pagination ul, .vertical-content-slider .vcs-pagination li {
      padding: 0;
      margin: 0;
      list-style: none; }
    .vertical-content-slider .vcs-pagination .slick-dots li button {
      margin: 20px 0;
      padding: 0;
      border: 0;
      cursor: pointer;
      background: none;
      display: block;
      font-size: 1.222em;
      text-align: left;
      font-weight: 600;
      color: #363636; }
      .vertical-content-slider .vcs-pagination .slick-dots li button span {
        display: inline;
        position: relative;
        transition: all 0.3s ease-in-out;
        background: linear-gradient(to left, #363636, #363636) bottom left/0% 2px no-repeat transparent;
        padding-bottom: 5px;
        line-height: 1.5em; }
      .vertical-content-slider .vcs-pagination .slick-dots li button:hover span {
        background-size: 100% 2px; }
    .vertical-content-slider .vcs-pagination .slick-dots li.slick-active button span {
      background-size: 100% 2px; }
  .vertical-content-slider .vcs-bttn {
    padding-top: 40px;
    margin-bottom: 7px;
    grid-area: 3 / 1 / 4 / 2; }
  .vertical-content-slider .vcs-images {
    grid-area: 1 / 2 / 4 / 3;
    max-width: 100%;
    width: 100%;
    overflow: hidden; }
    .vertical-content-slider .vcs-images img {
      width: 100%;
      max-width: 100%;
      height: 400px;
      aspect-ratio: 9/16;
      object-fit: cover;
      object-position: center;
      position: relative;
      border-radius: 20px;
      margin-bottom: 30px; }
    .vertical-content-slider .vcs-images .slick-slide {
      z-index: 98 !important;
      overflow: hidden; }
      .vertical-content-slider .vcs-images .slick-slide.active {
        z-index: 99 !important; }
      .vertical-content-slider .vcs-images .slick-slide.transitioning {
        z-index: 100 !important; }
      .vertical-content-slider .vcs-images .slick-slide.slick-current img {
        animation: imageRevealFromRight 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards; }
  .vertical-content-slider.img-left .vcs-content {
    grid-area: 1 / 2 / 2 / 3; }
  .vertical-content-slider.img-left .vcs-pagination {
    grid-area: 2 / 2 / 3 / 3; }
  .vertical-content-slider.img-left .vcs-bttn {
    grid-area: 3 / 2 / 4 / 3;
    align-self: end; }
  .vertical-content-slider.img-left .vcs-images {
    grid-area: 1 / 1 / 4 / 2; }

@media only screen and (max-width: 768px) {
  .vcs-pagination {
    display: none; }

  .vertical-category-slider .vcs-pagination {
    display: block; }

  .vertical-content-slider {
    display: block;
    margin-top: 0; }
    .vertical-content-slider .vcs-images {
      border-top: 1px solid #F8F7F5; }
    .vertical-content-slider .vcs-pagination-wrapper {
      display: none; }
    .vertical-content-slider .accordion-block {
      overflow: hidden;
      border-bottom: 1px solid #F8F7F5; }
      .vertical-content-slider .accordion-block.active .accordion-title icon:after {
        transform: rotate(0deg); }
    .vertical-content-slider .accordion-title {
      background: none;
      padding: 20px 65px 20px 0;
      margin: 0;
      cursor: pointer;
      border: 0;
      text-align: left;
      position: relative;
      width: 100%;
      font-size: clamp(1.111em, 8vw, 1.222em);
      font-weight: 700;
      line-height: 1.2em;
      position: relative;
      color: #363636; }
      .vertical-content-slider .accordion-title icon {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -22px;
        border: 2px solid #005EB8;
        display: block;
        border-radius: 50%;
        width: 44px;
        height: 44px; }
        .vertical-content-slider .accordion-title icon:before, .vertical-content-slider .accordion-title icon:after {
          height: 2px;
          width: 16px;
          background: #005EB8;
          content: "";
          position: absolute;
          top: calc(50% - 1px);
          left: 50%;
          margin-left: -8px; }
        .vertical-content-slider .accordion-title icon:after {
          transform: rotate(90deg); }
    .vertical-content-slider .accordion-content {
      padding: 0 0 50px; }
      .vertical-content-slider .accordion-content img {
        margin-bottom: 20px; } }
.number-counter-widget-container {
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto; }

.number-counter-widget .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  gap: 30px; }
  .number-counter-widget .row .counter-item {
    padding-left: 20px;
    box-sizing: border-box;
    position: relative; }
    .number-counter-widget .row .counter-item:before {
      content: "";
      position: absolute;
      top: -12px;
      left: 0;
      height: 92px;
      width: 2px;
      background-color: #005EB8; }
    .number-counter-widget .row .counter-item .counter-number,
    .number-counter-widget .row .counter-item .counter-inline-text {
      color: #005EB8;
      font-size: 72px;
      font-style: normal;
      font-weight: 700; }
    .number-counter-widget .row .counter-item .counter-text {
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      margin: 10px 0 0; }
    .number-counter-widget .row .counter-item .counter-inline-text {
      margin-left: 2px; }
    @media screen and (min-width: 768px) {
      .number-counter-widget .row .counter-item {
        width: calc(24.33% - 20px); } }
    @media screen and (max-width: 990px) {
      .number-counter-widget .row .counter-item {
        width: calc(50% - 20px); }
        .number-counter-widget .row .counter-item .counter-text {
          font-size: 14px; } }
    @media screen and (max-width: 768px) {
      .number-counter-widget .row .counter-item {
        width: calc(50% - 20px);
        padding-left: 0; }
        .number-counter-widget .row .counter-item:before {
          top: auto;
          bottom: 0;
          height: 2px;
          width: 100%; }
        .number-counter-widget .row .counter-item .counter-text {
          font-size: 16px; } }
  @media screen and (max-width: 768px) {
    .number-counter-widget .row {
      gap: 35px;
      flex-direction: column; } }

.animated-image {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 0.615, 0.4, 0.985);
  position: relative;
  border-radius: 20px; }
  .animated-image.complete:not(.bg-stay) {
    background: none; }
  .animated-image .animated-image-lightbox {
    position: relative;
    display: block; }
    .animated-image .animated-image-lightbox .bttn {
      position: absolute;
      left: 50%;
      top: 50%;
      font-size: 0.889em;
      text-align: center;
      color: #fff;
      background: #005EB8;
      line-height: 1em;
      padding: 15px 30px;
      font-weight: 700;
      transform: translate(-50%, -50%);
      border-radius: 999px; }
      .animated-image .animated-image-lightbox .bttn svg {
        vertical-align: middle;
        margin: -4px auto auto 10px; }
    .animated-image .animated-image-lightbox:hover .bttn {
      background-color: #2d7cc7; }
  .animated-image video {
    margin: 0;
    vertical-align: bottom;
    width: 100%;
    height: auto; }
  .animated-image img {
    position: relative;
    transition: all 0.3s cubic-bezier(0.565, 0.43, 0.24, 0.92);
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    scale: 1.1;
    border-radius: 20px; }
  .animated-image > a {
    display: block; }
  .animated-image.delay-0 {
    transition-delay: 0s; }
    .animated-image.delay-0 img {
      animation-delay: .3s !important; }
  .animated-image.delay-1 {
    transition-delay: .2s; }
    .animated-image.delay-1 img {
      animation-delay: .5s !important; }
  .animated-image.delay-2 {
    transition-delay: .4s; }
    .animated-image.delay-2 img {
      animation-delay: .7s !important; }
  .animated-image.animate-from-left {
    clip-path: inset(0 100% 0 0); }
    .animated-image.animate-from-left.active {
      clip-path: inset(0 0 0 0); }
      .animated-image.animate-from-left.active > img,
      .animated-image.animate-from-left.active > a {
        animation: imageanimateLeft 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards 0.5s;
        clip-path: inset(0 100% 0 0); }
    .animated-image.animate-from-left > img,
    .animated-image.animate-from-left > a {
      right: 100%; }
  .animated-image.animate-from-right {
    clip-path: inset(0 0 0 100%); }
    .animated-image.animate-from-right.active {
      clip-path: inset(0 0 0 0); }
      .animated-image.animate-from-right.active > img,
      .animated-image.animate-from-right.active > a {
        animation: imageanimateRight 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards 0.5s;
        clip-path: inset(0 0 0 100%); }
    .animated-image.animate-from-right > img,
    .animated-image.animate-from-right > a {
      left: 100%; }
  .animated-image.animate-from-top {
    clip-path: inset(0 0 100% 0); }
    .animated-image.animate-from-top.active {
      clip-path: inset(0 0 0 0); }
      .animated-image.animate-from-top.active > img,
      .animated-image.animate-from-top.active > a {
        animation: imageanimateTop 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards 0.5s;
        clip-path: inset(0 0 100% 0); }
    .animated-image.animate-from-top > img,
    .animated-image.animate-from-top > a {
      transform: translateY(-25%); }
  .animated-image.animate-from-bottom {
    clip-path: inset(100% 0 0 0); }
    .animated-image.animate-from-bottom.active {
      clip-path: inset(0 0 0 0); }
      .animated-image.animate-from-bottom.active > img,
      .animated-image.animate-from-bottom.active > a {
        animation: imageanimateBottom 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards 0.5s;
        clip-path: inset(100% 0 0 0); }
    .animated-image.animate-from-bottom > img,
    .animated-image.animate-from-bottom > a {
      transform: translateY(25%); }
  .animated-image.animate-from-center {
    clip-path: circle(0 at 50% 50%);
    transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
    .animated-image.animate-from-center.active {
      clip-path: circle(75% at 50% 50%); }
      .animated-image.animate-from-center.active > img,
      .animated-image.animate-from-center.active > a {
        animation: imageanimateCenter 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92) forwards 0.5s; }
    .animated-image.animate-from-center > img,
    .animated-image.animate-from-center > a {
      transform: scale(0.75);
      clip-path: circle(0 at 50% 50%); }

.subpage-img {
  height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  z-index: 9;
  position: relative;
  border-radius: 20px; }

.publish-date {
  color: rgba(54, 54, 54, 0.7);
  font-size: 14px;
  line-height: 22px;
  padding: 16px 0 0 0; }

.bg-white {
  background: #fff; }

.bg-primary {
  background: #121E3E;
  color: #fff; }
  .bg-primary .eyebrow-block {
    color: #fff !important; }

.bg-secondary {
  background-color: #F1F0EB; }

.bg-tertiary {
  background-color: #005EB8;
  color: #fff; }
  .bg-tertiary .eyebrow-block {
    color: #fff !important; }

.so-rounded {
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px; }

.bg-gradient {
  color: #fff;
  position: relative; }
  .bg-gradient:before {
    position: absolute;
    z-index: 1;
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 30, 62, 0) 0%, #121e3e 100%); }
  .bg-gradient .panel-grid-cell {
    z-index: 2; }

.bg-wrapper {
  overflow: hidden; }

.animated-downarrow {
  text-align: center;
  padding-top: 75px; }

.subpage-mainstage-area {
  padding-bottom: 375px; }
  @media screen and (max-width: 480px) {
    .subpage-mainstage-area #pgc-876-0-1 p {
      text-align: left !important; } }

.subpage-hero-img {
  margin-top: -320px;
  padding: 0 !important; }

.sub-hero-block {
  position: relative;
  height: 400px;
  overflow: hidden;
  top: 0; }
  @media screen and (min-width: 768px) {
    .sub-hero-block {
      height: 600px; } }

.sub-hero-block .sub-hero-mask {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  object-fit: cover;
  object-position: center; }
  .sub-hero-block .sub-hero-mask.radius {
    border-radius: 20px; }
  .sub-hero-block .sub-hero-mask.no-radius {
    border-radius: 0; }

.hero-square-block-wrapper {
  position: relative;
  height: 200vh; }

.hero-square-block {
  position: sticky;
  height: 100vh;
  overflow: hidden;
  top: 0; }
  .hero-square-block h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 95%;
    max-width: 800px;
    margin: 0;
    font-size: clamp(3em, 10vw, 6.25em); }
  .hero-square-block .hero-square-mask {
    clip-path: inset(calc(50% - 240px));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1; }
    .hero-square-block .hero-square-mask:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: .28;
      background: #000;
      display: block;
      z-index: 2; }
  .hero-square-block iframe,
  .hero-square-block video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1; }
  .hero-square-block iframe {
    aspect-ratio: 16 / 9;
    min-height: 125vh;
    min-width: 100vw;
    width: auto;
    height: auto; }
  .hero-square-block .hero-arrow {
    position: absolute;
    left: 50%;
    bottom: 5%;
    margin-left: -7px;
    z-index: 2; }

.shipping-video-cta-widget {
  position: relative;
  padding: clamp(75px, 10vw, 250px) 0; }
  .shipping-video-cta-widget .product-content-wrapper {
    position: relative;
    z-index: 2; }
    .shipping-video-cta-widget .product-content-wrapper h2 {
      color: #fff; }
    .shipping-video-cta-widget .product-content-wrapper p {
      letter-spacing: .5px;
      color: #fff;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px; }
    .shipping-video-cta-widget .product-content-wrapper .bttn {
      margin-top: 20px; }
  .shipping-video-cta-widget .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; }

.card-cta {
  border-radius: 20px;
  border: 1px solid rgba(54, 54, 54, 0.2);
  padding: clamp(15px, 8vw, 25px);
  text-align: center;
  height: 100%; }
  .card-cta.white {
    background: #fff; }
  .card-cta.grey {
    background: #F1F0EB; }
  .card-cta .eyebrow-block {
    margin-bottom: 10px; }
  .card-cta .h2 {
    font-size: clamp(1.667em, 5vw, 2.444em);
    padding-bottom: 30px;
    text-wrap: balance; }

.faq-group-search {
  background: #F1F0EB;
  padding: 25px 15px;
  position: relative;
  border-radius: 10px;
  margin: 25px 0 50px; }
  .faq-group-search label {
    display: block;
    font-weight: bold;
    font-size: 14px; }
  .faq-group-search input {
    width: 100%;
    margin: 0;
    padding: 10px;
    border: 0;
    background: none;
    border-bottom: 1px solid #363636;
    font-size: 16px;
    outline-width: 0; }
    .faq-group-search input:focus {
      border-bottom-color: #F38D68; }
  .faq-group-search button.search-faqs {
    position: absolute;
    bottom: 25px;
    right: 10px;
    background: none;
    width: 40px;
    height: 40px;
    border: 0;
    margin: 0;
    cursor: pointer; }

.faq-group h2 {
  margin: 50px auto 25px; }

.faq-topics {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700; }
  .faq-topics > * {
    flex: 0 1 auto; }
    @media (max-width: 480px) {
      .faq-topics > * {
        flex: 1 1 100%; } }
  .faq-topics > label {
    flex: 1 1 100%;
    line-height: 14px; }
  .faq-topics select {
    position: relative;
    cursor: pointer;
    color: #363636;
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    border-radius: 50px;
    appearance: none;
    padding: 5px 40px 5px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMjUgOS43OTY4OEw3LjM1MTU2IDguODk4NDRMMS4xMDE1NiAyLjY0ODQ0TDAuMjAzMTI1IDEuNzVMMiAtMC4wMDc4MTI1TDIuODU5MzggMC44OTA2MjVMOC4yNSA2LjI0MjE5TDEzLjYwMTYgMC44OTA2MjVMMTQuNSAtMC4wMDc4MTI1TDE2LjI1NzggMS43NUwxNS4zNTk0IDIuNjQ4NDRMOS4xMDkzOCA4Ljg5ODQ0TDguMjUgOS43OTY4OFoiIGZpbGw9IiMzNjM2MzYiLz4KPC9zdmc+Cg==) center right 10px no-repeat;
    max-width: 200px;
    width: 100%;
    border: 1px solid #363636; }
    @media (max-width: 480px) {
      .faq-topics select {
        max-width: 100%; } }
  .faq-topics button {
    border-radius: 999px;
    background: #005EB8;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 26px;
    line-height: 28px;
    border: 0;
    cursor: pointer; }
    .faq-topics button:hover {
      background-color: #2d7cc7; }

.bg-secondary .accordion-block-wrapper,
.bg-secondary .accordion-block-wrapper .accordion-block {
  border-color: #d9d9d9; }

.accordion-block-wrapper {
  border-top: 1px solid #F8F7F5; }
  .accordion-block-wrapper .accordion-block {
    border-bottom: 1px solid #F8F7F5;
    text-align: left;
    width: 100%; }
    .accordion-block-wrapper .accordion-block .accordion-title {
      background: none;
      padding: 20px 65px 20px 0;
      margin: 0;
      cursor: pointer;
      border: 0;
      text-align: left;
      position: relative;
      width: 100%;
      font-size: clamp(1.111em, 8vw, 1.222em);
      font-weight: 700;
      line-height: 1.2em;
      color: #363636; }
      .accordion-block-wrapper .accordion-block .accordion-title.fs-header-sm {
        font-size: 1em; }
      .accordion-block-wrapper .accordion-block .accordion-title icon {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -22px;
        border: 2px solid #005EB8;
        display: block;
        border-radius: 50%;
        width: 44px;
        height: 44px; }
        .accordion-block-wrapper .accordion-block .accordion-title icon:before, .accordion-block-wrapper .accordion-block .accordion-title icon:after {
          height: 2px;
          width: 16px;
          background: #005EB8;
          content: "";
          position: absolute;
          top: calc(50% - 1px);
          left: 50%;
          margin-left: -8px; }
        .accordion-block-wrapper .accordion-block .accordion-title icon:after {
          transform: rotate(90deg); }
    .accordion-block-wrapper .accordion-block .accordion-content {
      display: none;
      font-size: 1em; }
      .accordion-block-wrapper .accordion-block .accordion-content > p:first-child {
        margin-top: 0; }
      .accordion-block-wrapper .accordion-block .accordion-content ol {
        padding-left: 30px; }
      .accordion-block-wrapper .accordion-block .accordion-content li {
        word-break: break-word; }
    .accordion-block-wrapper .accordion-block.active .accordion-title icon:after {
      transform: rotate(0deg); }
  .accordion-block-wrapper.light, .accordion-block-wrapper.light .accordion-block {
    border-color: rgba(248, 247, 245, 0.3); }
    .accordion-block-wrapper.light .accordion-title,
    .accordion-block-wrapper.light .accordion-content, .accordion-block-wrapper.light .accordion-block .accordion-title,
    .accordion-block-wrapper.light .accordion-block .accordion-content {
      color: #fff; }
    .accordion-block-wrapper.light .accordion-title, .accordion-block-wrapper.light .accordion-block .accordion-title {
      font-size: 1em; }
      .accordion-block-wrapper.light .accordion-title icon, .accordion-block-wrapper.light .accordion-block .accordion-title icon {
        background: #fff;
        border-color: #fff; }

.post-list-wrapper .posts-list .post-item .image-container {
  position: relative; }
  .post-list-wrapper .posts-list .post-item .image-container.with-new-tag.with-featured-tag .new-tag {
    right: 150px !important; }
  .post-list-wrapper .posts-list .post-item .image-container .featured-tag {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    background: #121E3E;
    padding: 5px 20px;
    border-radius: 25px;
    color: #fff;
    font-family: roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2.16px;
    text-transform: uppercase; }
  .post-list-wrapper .posts-list .post-item .image-container .new-tag {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    background: #121E3E;
    padding: 5px 20px;
    border-radius: 25px;
    color: #fff;
    font-family: roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2.16px;
    text-transform: uppercase; }
  .post-list-wrapper .posts-list .post-item .image-container img {
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    height: 347px;
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
.post-list-wrapper .posts-list .post-item:hover img {
  transform: scale(1.05); }
.post-list-wrapper .posts-list .post-item:hover .post-title a {
  text-decoration: underline; }
.post-list-wrapper .pagination {
  padding-top: 60px; }
  .post-list-wrapper .pagination ul {
    justify-content: center; }

.pagination {
  flex: 1 1 auto; }
  .pagination ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none; }
    .pagination ul li {
      flex: 0 1 auto;
      margin: 0;
      padding: 0;
      list-style: none; }
      .pagination ul li .page-numbers {
        width: 44px;
        height: 44px;
        text-align: center;
        color: #363636;
        text-align: center;
        display: block;
        border-radius: 50%;
        font-size: 18px;
        text-decoration: none;
        line-height: 44px; }
        .pagination ul li .page-numbers.current {
          background: #005EB8;
          color: #fff; }
        .pagination ul li .page-numbers.prev span, .pagination ul li .page-numbers.next span {
          text-indent: -999px;
          display: block;
          overflow: clip;
          background-position: center center;
          background-repeat: no-repeat; }
        .pagination ul li .page-numbers.prev span {
          background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.527344 6.65234L6.15234 1.0625C6.46875 0.710938 6.99609 0.710938 7.34766 1.0625C7.66406 1.37891 7.66406 1.90625 7.34766 2.22266L2.28516 7.25L7.3125 12.3125C7.66406 12.6289 7.66406 13.1562 7.3125 13.4727C6.99609 13.8242 6.46875 13.8242 6.15234 13.4727L0.527344 7.84766C0.175781 7.53125 0.175781 7.00391 0.527344 6.65234Z" fill="%23363636"/></svg>'); }
        .pagination ul li .page-numbers.next span {
          background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.47266 6.65234C7.78906 7.00391 7.78906 7.53125 7.47266 7.84766L1.84766 13.4727C1.49609 13.8242 0.96875 13.8242 0.652344 13.4727C0.300781 13.1562 0.300781 12.6289 0.652344 12.3125L5.67969 7.28516L0.652344 2.22266C0.300781 1.90625 0.300781 1.37891 0.652344 1.0625C0.96875 0.710938 1.49609 0.710938 1.8125 1.0625L7.47266 6.65234Z" fill="%23363636"/></svg>'); }

.pre-header-text {
  text-transform: uppercase;
  font-size: 16px;
  font-family: roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.6px; }

.post-display-widget {
  position: relative;
  z-index: 1; }
  .post-display-widget .post-display-headline {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-end;
    gap: 25px;
    padding-bottom: clamp(30px, 10vw, 50px); }
    .post-display-widget .post-display-headline > div {
      flex: 0 1 auto; }
      .post-display-widget .post-display-headline > div:first-child {
        flex-grow: 1; }
  .post-display-widget .slick-track {
    margin-left: -40px;
    margin-right: -40px;
    min-width: calc(100% + 80px); }
  .post-display-widget .post-row:not(.slick-initialized),
  .post-display-widget .slick-track {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 40px; }
    .post-display-widget .post-row:not(.slick-initialized) .post-item,
    .post-display-widget .post-row:not(.slick-initialized) .slick-slide,
    .post-display-widget .slick-track .post-item,
    .post-display-widget .slick-track .slick-slide {
      float: none; }
      .post-display-widget .post-row:not(.slick-initialized) .post-item a,
      .post-display-widget .post-row:not(.slick-initialized) .slick-slide a,
      .post-display-widget .slick-track .post-item a,
      .post-display-widget .slick-track .slick-slide a {
        text-decoration: none; }
        .post-display-widget .post-row:not(.slick-initialized) .post-item a .image-container,
        .post-display-widget .post-row:not(.slick-initialized) .slick-slide a .image-container,
        .post-display-widget .slick-track .post-item a .image-container,
        .post-display-widget .slick-track .slick-slide a .image-container {
          overflow: hidden;
          border-radius: 20px;
          display: block;
          margin-bottom: 20px; }
          .post-display-widget .post-row:not(.slick-initialized) .post-item a .image-container img,
          .post-display-widget .post-row:not(.slick-initialized) .slick-slide a .image-container img,
          .post-display-widget .slick-track .post-item a .image-container img,
          .post-display-widget .slick-track .slick-slide a .image-container img {
            width: 100%;
            height: clamp(360px, 10vw, 380px);
            object-fit: cover;
            object-position: center;
            transition: all 0.3s ease-in-out !important; }
        .post-display-widget .post-row:not(.slick-initialized) .post-item a:hover .post-title,
        .post-display-widget .post-row:not(.slick-initialized) .slick-slide a:hover .post-title,
        .post-display-widget .slick-track .post-item a:hover .post-title,
        .post-display-widget .slick-track .slick-slide a:hover .post-title {
          color: #005EB8;
          background-size: 100% 2px; }
        .post-display-widget .post-row:not(.slick-initialized) .post-item a:hover img,
        .post-display-widget .post-row:not(.slick-initialized) .slick-slide a:hover img,
        .post-display-widget .slick-track .post-item a:hover img,
        .post-display-widget .slick-track .slick-slide a:hover img {
          transform: scale(1.05, 1.05); }
        .post-display-widget .post-row:not(.slick-initialized) .post-item a .post-title,
        .post-display-widget .post-row:not(.slick-initialized) .slick-slide a .post-title,
        .post-display-widget .slick-track .post-item a .post-title,
        .post-display-widget .slick-track .slick-slide a .post-title {
          color: #005EB8;
          transition: all 0.3s ease-in-out;
          background: linear-gradient(to left, #005EB8, #005EB8) bottom left/0% 2px no-repeat transparent;
          font-size: 1.333em; }
  .post-display-widget .post-row-arrows {
    padding-top: 30px;
    position: relative;
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    align-items: center; }
    .post-display-widget .post-row-arrows > * {
      flex: 0 1 auto;
      left: auto !important;
      right: auto !important;
      position: relative;
      top: auto;
      margin: 0;
      font-size: 14px;
      color: #363636;
      text-align: center; }
    .post-display-widget .post-row-arrows .slick-current-slide-counter {
      width: 50px;
      font-weight: 600; }

.bg-secondary .sticky-headline-container * {
  color: initial; }

.sticky-headline-container {
  text-align: center;
  height: 200dvh;
  position: relative;
  overflow: clip; }
  .sticky-headline-container * {
    color: #fff; }
  .sticky-headline-container .sticky-headline-block {
    top: 0;
    height: 100dvh;
    position: sticky;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 2;
    max-width: 620px;
    width: 90%;
    margin: auto; }
    .sticky-headline-container .sticky-headline-block .sticky-headline-content {
      flex: 0 1 auto; }
  .sticky-headline-container .maintext-block {
    text-wrap: balance; }
    .sticky-headline-container .maintext-block p {
      margin: 0; }
  .sticky-headline-container h2 {
    font-size: clamp(2em, 5vw, 3.333em); }
  .sticky-headline-container .float-img {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 94, 184, 0.8) 0%, rgba(0, 94, 184, 0) 100%);
    width: 170px;
    padding: 10px;
    z-index: 1; }
    .sticky-headline-container .float-img img {
      max-width: 150px;
      height: auto;
      width: 100%;
      margin: auto; }
    .sticky-headline-container .float-img.image1 {
      top: 8%;
      left: 13%; }
    .sticky-headline-container .float-img.image2 {
      top: 10%;
      right: 22%; }
    .sticky-headline-container .float-img.image3 {
      top: 35%;
      left: 20%; }
    .sticky-headline-container .float-img.image4 {
      top: 39%;
      right: 16%; }
    .sticky-headline-container .float-img.image5 {
      top: 65%;
      left: 16%; }
    .sticky-headline-container .float-img.image6 {
      top: 70%;
      right: 20%; }
    .sticky-headline-container .float-img.image7 {
      top: 95%;
      left: 14%; }
    .sticky-headline-container .float-img.image8 {
      top: 100%;
      right: 18%; }
    @media only screen and (max-width: 990px) {
      .sticky-headline-container .float-img {
        width: 120px; }
        .sticky-headline-container .float-img img {
          max-width: 100px; }
        .sticky-headline-container .float-img.image1 {
          left: 0%; }
        .sticky-headline-container .float-img.image2 {
          right: 0%; }
        .sticky-headline-container .float-img.image3 {
          left: 7%; }
        .sticky-headline-container .float-img.image4 {
          right: 8%; }
        .sticky-headline-container .float-img.image5 {
          left: 2%; }
        .sticky-headline-container .float-img.image6 {
          right: -3%; }
        .sticky-headline-container .float-img.image7 {
          left: 0%; }
        .sticky-headline-container .float-img.image8 {
          right: 0%; } }

.twocol-icon-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 25px;
  font-size: 1.125rem; }
  .twocol-icon-content a {
    color: #005EB8; }
  .twocol-icon-content p {
    margin: 0; }
  .twocol-icon-content div {
    flex: 1 1 auto; }
    .twocol-icon-content div.twocol-icon {
      width: 24px;
      max-width: 24px;
      text-align: center; }
      .twocol-icon-content div.twocol-icon img {
        width: 24px;
        height: 24px; }

.stickytab-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  gap: 8.33%; }
  .stickytab-content .stickytab-left {
    flex: 1 1 calc(41.66% - 8.33%); }
  .stickytab-content .stickytab-right {
    flex: 1 1 58.33%; }
  .stickytab-content .stickytab-tabs {
    position: sticky;
    top: 25vh;
    margin-bottom: 25vh;
    text-align: left; }
    .stickytab-content .stickytab-tabs:before {
      position: absolute;
      left: 2px;
      width: 1px;
      background: #707070;
      height: 100%;
      z-index: 1;
      content: "";
      opacity: .5; }
    .stickytab-content .stickytab-tabs button {
      display: block;
      border: 0;
      border-left: 5px solid transparent;
      cursor: pointer;
      background: none;
      padding: 24px 35px;
      margin: 0;
      color: #121E3E;
      font-family: ivypresto-display, serif;
      font-size: clamp(1.5em, 3vw, 2.125em);
      font-weight: normal;
      line-height: 1.25em;
      position: relative;
      z-index: 2;
      opacity: .25;
      text-align: left; }
      .stickytab-content .stickytab-tabs button:hover, .stickytab-content .stickytab-tabs button.active, .stickytab-content .stickytab-tabs button:focus {
        border-color: #005EB8;
        opacity: 1; }
  .stickytab-content .stickytab-block {
    margin-bottom: clamp(50px, 5vw, 80px); }
  .stickytab-content .stickytab-title {
    font-size: clamp(2.188em, 3vw, 3em); }
  .stickytab-content .stickytab-featured {
    margin-bottom: clamp(50px, 5vw, 75px); }

.info-block {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  opacity: 1;
  transition: opacity 0.3s ease; }
  .info-block .inner-container {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    background: #eeece5;
    padding: 100px 58px; }
  .info-block .info-content {
    flex: 1;
    margin-right: 41px;
    font-size: 18px;
    order: 1; }
    .info-block .info-content .block-number {
      color: #005EB8;
      margin-right: 15px;
      font-size: 32px;
      font-weight: 400;
      line-height: 46px; }
    .info-block .info-content h3 {
      font-size: 48px;
      display: inline;
      margin: 0; }
  .info-block .info-image {
    flex: 1;
    order: 2;
    text-align: center; }
  .info-block img {
    max-width: 100%;
    height: 100%;
    border-radius: 20px;
    min-width: 580px; }
  .info-block.hidden {
    opacity: 0; }

.top-row {
  align-items: flex-start; }
  .top-row h2 {
    margin-top: 5px; }
  .top-row p {
    letter-spacing: 1.5px; }

.info-block-accordion {
  border: none !important;
  background: #eeece5 !important;
  border-radius: 20px;
  position: relative;
  margin: 15px 0; }
  .info-block-accordion .accordion-button {
    display: flex;
    align-items: baseline;
    padding: 25px 57px 20px 57px;
    background: rgba(238, 236, 229, 0.85);
    border-radius: 20px;
    position: relative;
    background-repeat: no-repeat;
    background-position: 98% center; }
    .info-block-accordion .accordion-button .block-number {
      margin-right: 15px;
      font-size: 24px;
      color: #005EB8;
      font-family: roboto, sans-serif; }
    .info-block-accordion .accordion-button h3 {
      font-size: 48px;
      font-style: normal;
      font-weight: 400;
      line-height: 58px; }
    .info-block-accordion .accordion-button:after {
      content: "";
      position: absolute;
      top: 50%;
      right: 5%;
      width: 24px;
      height: 15px;
      background-image: url("/wp-content/themes/empower/img/chevron-down.svg");
      background-size: cover;
      background-position: center;
      transform: translateY(-50%);
      pointer-events: none; }
  .info-block-accordion .accordion-content {
    padding: 10px 57px 80px 57px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(238, 236, 229, 0.85);
    border-radius: 20px;
    flex-direction: row; }
    .info-block-accordion .accordion-content h3 {
      position: relative;
      left: 10%;
      font-size: 48px;
      margin-bottom: 20px; }
    .info-block-accordion .accordion-content .block-number {
      top: 44px;
      position: relative;
      font-size: 24px;
      color: #005EB8;
      font-family: roboto, sans-serif; }
    .info-block-accordion .accordion-content p {
      font-size: 18px;
      margin-top: 0; }
    .info-block-accordion .accordion-content .accordion-text {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px; }
    .info-block-accordion .accordion-content .info-image {
      margin: 15px 0; }
    .info-block-accordion .accordion-content img {
      border-radius: 20px; }
  .info-block-accordion.active .accordion-button h3, .info-block-accordion.active .accordion-button span {
    color: transparent; }

@media only screen and (max-width: 796px) {
  .info-block-accordion {
    border: none !important;
    background: #eeece5 !important;
    border-radius: 20px;
    position: relative;
    margin: 15px 0; }
    .info-block-accordion .accordion-button {
      display: flex;
      align-items: baseline;
      padding: 25px 57px 20px 57px;
      background: rgba(238, 236, 229, 0.85);
      border-radius: 20px;
      position: relative;
      background-repeat: no-repeat;
      background-position: 98% center; }
      .info-block-accordion .accordion-button .block-number {
        margin-right: 15px;
        font-size: 24px;
        color: #005EB8;
        font-family: roboto, sans-serif; }
      .info-block-accordion .accordion-button h3 {
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 58px; }
      .info-block-accordion .accordion-button:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5%;
        width: 24px;
        height: 15px;
        background-image: url("/wp-content/themes/empower/img/chevron-down.svg");
        background-size: cover;
        background-position: center;
        transform: translateY(-50%);
        pointer-events: none; }
    .info-block-accordion .accordion-content {
      padding: 10px 57px 80px 57px;
      display: flex;
      gap: 40px;
      flex-direction: column;
      align-items: center;
      background: rgba(238, 236, 229, 0.85);
      border-radius: 20px; }
      .info-block-accordion .accordion-content h3 {
        display: none; }
      .info-block-accordion .accordion-content .block-number {
        display: none; }
      .info-block-accordion .accordion-content p {
        font-size: 18px;
        margin-top: 0; }
      .info-block-accordion .accordion-content .accordion-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; }
      .info-block-accordion .accordion-content .info-image {
        margin: 15px 0; }
      .info-block-accordion .accordion-content img {
        border-radius: 20px; }

  .post-display-widget {
    padding-left: 10px;
    padding-right: 10px; } }
@media only screen and (min-width: 768px) {
  .top-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px; }
    .top-row p {
      margin: 0; }
    .top-row .column-left {
      flex: 50%; }
    .top-row .column-right {
      flex: 28%; } }
.info-block-accordion-container .info-block-accordion-block {
  background: rgba(238, 236, 229, 0.85);
  border: 0;
  border-radius: 20px;
  width: 100%;
  margin: 10px 0;
  overflow: clip; }
  .info-block-accordion-container .info-block-accordion-block .info-block-accordion-title {
    width: 100%;
    padding: clamp(20px, 8vw, 25px) clamp(20px, 8vw, 60px);
    background: none;
    border: 0;
    cursor: pointer;
    display: block;
    text-align: left; }
    .info-block-accordion-container .info-block-accordion-block .info-block-accordion-title > div {
      opacity: 1;
      transition: all 0.2s linear;
      position: relative; }
    .info-block-accordion-container .info-block-accordion-block .info-block-accordion-title icon {
      position: absolute;
      right: 0;
      top: 50%;
      height: 12px;
      width: 20px;
      margin-top: -6px; }
      .info-block-accordion-container .info-block-accordion-block .info-block-accordion-title icon svg {
        position: absolute; }
  .info-block-accordion-container .info-block-accordion-block.active .info-block-accordion-title {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none; }
    .info-block-accordion-container .info-block-accordion-block.active .info-block-accordion-title > div {
      opacity: 0; }
  .info-block-accordion-container .info-block-accordion-block .h2 span {
    font-size: clamp(24px, 8vw, 32px);
    color: #005EB8;
    display: inline-block;
    margin-right: 18px;
    font-family: roboto, sans-serif; }
  .info-block-accordion-container .info-block-accordion-block .info-block-accordion-content-wrapper {
    display: none; }
  .info-block-accordion-container .info-block-accordion-block .info-block-accordion-content {
    padding: clamp(40px, 8vw, 65px) clamp(20px, 8vw, 60px);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 40px; }
    .info-block-accordion-container .info-block-accordion-block .info-block-accordion-content > div {
      flex: 1 1 calc(50% - 40px);
      min-width: calc(50% - 40px); }
    .info-block-accordion-container .info-block-accordion-block .info-block-accordion-content img {
      border-radius: 20px; }

@media only screen and (max-width: 1100px) {
  .top-row p {
    margin: 5px 0; }
  .top-row .column-right {
    margin: 15px 0;
    width: 90%; }

  .inner-container {
    flex-direction: column;
    padding: 80px 58px; }
    .inner-container .info-content {
      order: 2;
      text-align: left;
      margin-top: 25px; }
    .inner-container .info-image {
      order: 1;
      text-align: left; }

  .info-block-accordion.active > .accordion-button::after {
    transform: translateY(-50%) rotate(180deg); } }
@media only screen and (max-width: 768px) {
  .ctablock {
    padding: 75px 45px;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin: 0 auto;
    align-items: baseline;
    text-align: center; }

  .posts-list {
    grid-template-columns: 1fr !important; }

  .info-block-accordion-container .info-block-accordion-block .info-block-accordion-content > div {
    flex-basis: 100%; } }
#map-wrapper .panel-grid-cell h2 {
  padding-left: 180px;
  padding-right: 180px; }
  @media only screen and (max-width: 767px) {
    #map-wrapper .panel-grid-cell h2 {
      padding-left: 50px;
      padding-right: 50px; } }

@media only screen and (max-width: 767px) {
  .order-row #pgc-19-2-0 {
    order: 2; } }
.icon-block {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: clamp(20px, 8vw, 30px);
  height: 100%;
  border: 1px solid #EEECE5;
  font-size: 0.889em; }
  .icon-block .icon-block-img {
    background: linear-gradient(0deg, #F38D68, #005EB8);
    background-size: 100% 200%;
    animation: iconBGAnimation 5s ease infinite;
    mask-size: auto;
    mask-repeat: no-repeat;
    mask-position: left;
    display: inline-block;
    margin: 0;
    width: 100%; }
    .icon-block .icon-block-img svg {
      width: auto;
      height: 70px;
      opacity: 0; }
  .icon-block .icon-title {
    font-weight: 700;
    font-size: clamp(1em, 8vw, 1.111em);
    margin-bottom: 20px;
    display: block; }

@keyframes iconBGAnimation {
  0% {
    background-position: 51% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 51% 0%; } }
#icon-blocks .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 15px 40px; }
  #icon-blocks .container .image-container img {
    width: 60px;
    height: 50px; }
  #icon-blocks .container .text-container p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; }
@media only screen and (max-width: 1100px) {
  #icon-blocks {
    margin-top: -1px; }
    #icon-blocks .container {
      margin: 0 40px; } }

.state-coverage-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 20px; }
  .state-coverage-wrapper > * {
    flex: 0 1 auto; }
  .state-coverage-wrapper select {
    min-width: 320px;
    background: #fff;
    border-radius: 10px;
    line-height: 42px;
    height: 42px;
    font-size: 1em;
    border: 0;
    padding: 0 45px 0 20px;
    appearance: none;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.977295L7.5 6.97729L14 0.977295' stroke='%23363636' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 25px; }
    .state-coverage-wrapper select::-ms-expand {
      display: none; }

.state-coverage-alert {
  background: #F38D68;
  color: #fff;
  border-radius: 10px;
  margin: 5px auto auto;
  text-align: center;
  padding: 4px 25px;
  width: 90%;
  max-width: 420px; }

.animated-svg,
.animated-svg-alt {
  background-color: #121E3E;
  position: relative; }
  .animated-svg > div,
  .animated-svg-alt > div {
    position: relative;
    z-index: 2; }

.ctablock-wrapper {
  background: #121E3E;
  border-radius: 20px; }
  .ctablock-wrapper .ctablock {
    padding: 145px 70px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 34px;
    margin: 0 auto;
    align-items: baseline; }
    .ctablock-wrapper .ctablock .ctablock-content {
      grid-column: 1; }
      .ctablock-wrapper .ctablock .ctablock-content p {
        margin: 0; }
      .ctablock-wrapper .ctablock .ctablock-content .ctablock-header {
        margin-bottom: 10px; }
      .ctablock-wrapper .ctablock .ctablock-content .ctablock-text {
        color: #fff;
        font-size: 18px; }
    .ctablock-wrapper .ctablock .ctablock-button {
      grid-column: 2; }
    .ctablock-wrapper .ctablock .h2 {
      color: #F38D68;
      line-height: 1.25em; }
    .ctablock-wrapper .ctablock .p {
      color: #fff; }

.animated-svg::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/empower/img/pills.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 710px;
  height: 710px;
  max-height: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1; }

.animated-svg-alt {
  overflow: hidden; }
  .animated-svg-alt::before {
    content: "";
    display: inline-block;
    background-image: url(/wp-content/themes/empower/img/pills-alt.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 710px;
    height: 450px;
    max-height: 90%;
    position: absolute;
    top: 0;
    left: 41%;
    transform: translate(-50%, 0);
    z-index: 1; }

.hero-animated-img {
  position: relative;
  width: 100%;
  padding-top: calc(600 / 645 * 100%); }
  .hero-animated-img svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 1s ease-in-out; }
  .hero-animated-img.active svg.hero-animated-img-side,
  .hero-animated-img.active svg.hero-animated-img-middle {
    opacity: 1;
    transform: translate(0%, 0%); }
  .hero-animated-img svg.hero-animated-img-side {
    opacity: 0;
    transform: translate(35%, -68%); }
  .hero-animated-img svg.hero-animated-img-middle {
    opacity: 0;
    transform: translate(-35%, 68%); }

#menu-404-error-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  font-weight: 700; }
  #menu-404-error-menu a {
    color: #005EB8;
    text-decoration: none;
    display: inline-block;
    padding: 3px 0;
    position: relative; }
    #menu-404-error-menu a:after {
      position: absolute;
      right: 0;
      width: 0;
      display: block;
      height: 1px;
      background: #005EB8;
      content: ""; }
    #menu-404-error-menu a:hover:after {
      left: 0;
      right: auto;
      width: 100%; }

.search-results-wrapper {
  font-size: 1.125rem; }
  .search-results-wrapper .h2 span {
    /*color:$blue;*/
    font-style: italic; }
  .search-results-wrapper h2.entry-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
    font-family: roboto, sans-serif;
    line-height: 1.25em;
    font-weight: 700; }
    .search-results-wrapper h2.entry-title a {
      text-decoration: none;
      color: #005EB8;
      position: relative; }
      .search-results-wrapper h2.entry-title a:after {
        position: absolute;
        right: 0;
        width: 0;
        display: block;
        height: 1px;
        background: #005EB8;
        content: ""; }
      .search-results-wrapper h2.entry-title a:hover:after {
        left: 0;
        right: auto;
        width: 100%; }
  .search-results-wrapper article {
    margin: 30px 0; }
    .search-results-wrapper article a {
      color: #005EB8; }
  .search-results-wrapper .search-dropdown {
    position: relative;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: unset;
    background: none;
    z-index: auto;
    justify-content: flex-start;
    overflow: inherit; }
    .search-results-wrapper .search-dropdown .search-form {
      width: min(735px, 100%); }
    .search-results-wrapper .search-dropdown .searchform-field {
      margin-top: 30px;
      position: relative; }
      .search-results-wrapper .search-dropdown .searchform-field > svg {
        position: absolute;
        top: 50%;
        margin-top: -11px;
        left: 18px; }
        .search-results-wrapper .search-dropdown .searchform-field > svg path {
          fill: #005EB8; }
      .search-results-wrapper .search-dropdown .searchform-field input[type="text"] {
        padding: 12px 100px 12px 60px;
        font-size: clamp(16px, 30vw, 24px); }
    .search-results-wrapper .search-dropdown .search-icon {
      background: none;
      cursor: pointer; }
  .search-results-wrapper .pagination {
    margin-top: 70px; }

.timeline-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  background: #F1F0EB;
  max-height: 100%;
  min-height: 600px;
  position: relative;
  z-index: 1;
  overflow: clip; }
  .timeline-wrapper > div {
    flex: 1 1 auto; }
    .timeline-wrapper > div.timeline-navigation {
      width: 33.33%;
      padding: 0 30px;
      display: flex; }
      .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper {
        align-self: center;
        position: relative;
        width: 100%; }
        .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:before, .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:after {
          content: "";
          height: 120px;
          width: 100%;
          position: absolute;
          left: 0;
          z-index: 1;
          pointer-events: none; }
        .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:before {
          top: 0;
          background: linear-gradient(to bottom, #f1f0eb 0%, rgba(241, 240, 235, 0) 100%); }
        .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:after {
          bottom: 0;
          background: linear-gradient(to bottom, rgba(241, 240, 235, 0) 0%, #f1f0eb 100%); }
      .timeline-wrapper > div.timeline-navigation .slick-arrow {
        position: absolute;
        top: 50%;
        right: -30px;
        left: auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 0;
        transform: translate(50%, -50%);
        background: #005EB8;
        z-index: 99;
        cursor: pointer;
        padding: 0; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow svg path {
          fill: #fff;
          transition: all 0.5s ease-in-out; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow:hover svg path {
          fill: #005EB8; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow.slick-prev {
          margin-top: -42px; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow.slick-next {
          margin-top: 42px; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow:hover {
          background: #fff; }
        .timeline-wrapper > div.timeline-navigation .slick-arrow.slick-disabled {
          opacity: .75;
          background: #999;
          pointer-events: none; }
      .timeline-wrapper > div.timeline-navigation .slick-list {
        padding: 0 !important; }
      .timeline-wrapper > div.timeline-navigation .slick-slide button {
        border: 0;
        cursor: pointer;
        background: none;
        margin: 0;
        padding: 10px 0;
        color: #363636;
        font-weight: 500;
        font-size: clamp(1.25rem, 8vw, 5.625rem);
        transition: all 0.5s ease-in-out;
        opacity: .5; }
      .timeline-wrapper > div.timeline-navigation .slick-slide.slick-cloned {
        pointer-events: none; }
        .timeline-wrapper > div.timeline-navigation .slick-slide.slick-cloned button {
          cursor: default;
          opacity: 0; }
      .timeline-wrapper > div.timeline-navigation .slick-slide.slick-current button {
        color: #005EB8;
        opacity: 1; }
    .timeline-wrapper > div.timeline-slides {
      width: 66.66%; }
      .timeline-wrapper > div.timeline-slides .timeline-slide {
        height: 100dvh;
        width: 100%;
        display: flex !important;
        align-items: center;
        position: relative;
        padding: 50px clamp(50px, 10vw, 205px); }
        .timeline-wrapper > div.timeline-slides .timeline-slide img {
          position: absolute;
          z-index: 1;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          object-fit: cover;
          object-position: center;
          filter: grayscale(100%); }
        .timeline-wrapper > div.timeline-slides .timeline-slide:before {
          position: absolute;
          content: "";
          inset: 0;
          z-index: 2;
          background: linear-gradient(135deg, #f38d68 0%, #121e3e 100%);
          opacity: .75; }
        .timeline-wrapper > div.timeline-slides .timeline-slide .timeline-slide-content {
          color: #fff;
          position: relative;
          z-index: 3;
          font-size: clamp(1rem, 6vw, 1.5rem);
          line-height: 1.5em;
          text-wrap: balance; }
          .timeline-wrapper > div.timeline-slides .timeline-slide .timeline-slide-content h2 {
            font-size: clamp(1.25rem, 8vw, 3rem) !important;
            line-height: 1.25em !important;
            color: #fff;
            text-wrap: balance; }

.panel-grid .so-parallax .simpleParallax,
.panel-grid .so-parallax img[data-siteorigin-parallax] {
  height: 100%;
  object-fit: cover;
  object-position: top; }

.imgtext-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap; }
  .imgtext-block > * {
    flex: 0 1 auto; }
  .imgtext-block img {
    min-height: 260px;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 350 / 260; }
  .imgtext-block .imgtext-content {
    padding: 30px;
    flex-grow: 1; }
    .imgtext-block .imgtext-content .imgtext-title {
      font-size: 1.111em;
      font-weight: 700; }
    .imgtext-block .imgtext-content p {
      margin-bottom: 0; }
  .imgtext-block .imgtext-button {
    padding: 0 30px 30px; }
    .imgtext-block .imgtext-button .bttn {
      line-height: 1em; }

@media (max-width: 1280px) {
  .quoteblock {
    font-size: 20px;
    line-height: 30px; }

  .siteorigin-panels-stretch[data-stretch-type="full"] > div:not(.simpleParallax) {
    max-width: 95%; }

  .animated-svg::before,
  .animated-svg-alt::before {
    background-position: top center;
    width: 100%;
    height: 100%;
    object-fit: contain; } }
@media (max-width: 990px) {
  .align-left-mobile {
    text-align: left; }
  .align-right-mobile {
    text-align: right; }
  .align-center-mobile {
    text-align: center;
    text-wrap: balance; }
  .align-inline-mobile {
    display: inline-block; }

  .hero-animated-img {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    max-width: 590px;
    overflow: clip; }

  .timeline-wrapper > div.timeline-navigation, .timeline-wrapper > div.timeline-slides {
    width: 100%;
    padding: 0; }
  .timeline-wrapper > div.timeline-navigation {
    padding: 30px 0; }
    .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper {
      width: 100% !important; }
      .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:before, .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:after {
        height: 100%;
        width: 25%;
        left: auto; }
      .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:before {
        left: 0;
        background: linear-gradient(to right, #f1f0eb 0%, rgba(241, 240, 235, 0) 100%); }
      .timeline-wrapper > div.timeline-navigation .timeline-navigation-wrapper:after {
        right: 0;
        background: linear-gradient(to right, rgba(241, 240, 235, 0) 0%, #f1f0eb 100%); }
    .timeline-wrapper > div.timeline-navigation .slick-arrow {
      top: auto;
      bottom: -30px;
      left: 50%;
      margin: auto;
      right: auto;
      transform: translate(-50%, 50%); }
      .timeline-wrapper > div.timeline-navigation .slick-arrow.slick-prev {
        margin: auto auto auto -42px; }
      .timeline-wrapper > div.timeline-navigation .slick-arrow.slick-next {
        margin: auto auto auto 42px; }
      .timeline-wrapper > div.timeline-navigation .slick-arrow svg {
        transform: rotate(-90deg); }
  .timeline-wrapper > div.timeline-slides .timeline-slide {
    max-height: 100dvh;
    height: auto;
    min-height: 600px; }

  .post-display-widget .slick-track {
    margin: 0;
    min-width: 100%;
    gap: 20px; }
  .post-display-widget .post-row-arrows {
    display: flex; } }
@media (max-width: 480px) {
  .vertical-content-slider {
    display: flex;
    flex-direction: column;
    grid-column-gap: 0; } }
@media (max-width: 674px) {
  #refillIframe {
    height: 2515px !important; } }
@media (max-width: 1024px) {
  #accordion-row {
    gap: 75px; } }
@media (max-width: 768px) {
  .post-display-widget .post-display-headline > div {
    flex: 1 1 100%; } }
.main-footer {
  background: #121E3E;
  color: #fff;
  padding: 50px 0 55px; }
  .main-footer ul,
  .main-footer li {
    margin: 0;
    padding: 0;
    list-style: none; }
  .main-footer a {
    color: #fff;
    text-decoration: none; }
  .main-footer .mainfooter-breadcrumbs a:not(.bttn),
  .main-footer .footer-col p a:not(.bttn),
  .main-footer .menu a:not(.bttn) {
    display: inline-block;
    padding: 8px 0;
    position: relative; }
    .main-footer .mainfooter-breadcrumbs a:not(.bttn):after,
    .main-footer .footer-col p a:not(.bttn):after,
    .main-footer .menu a:not(.bttn):after {
      position: absolute;
      right: 0;
      width: 0;
      display: block;
      height: 1px;
      background: #fff;
      content: ""; }
    .main-footer .mainfooter-breadcrumbs a:not(.bttn):hover:after,
    .main-footer .footer-col p a:not(.bttn):hover:after,
    .main-footer .menu a:not(.bttn):hover:after {
      left: 0;
      right: auto;
      width: 100%; }
    .main-footer .mainfooter-breadcrumbs a:not(.bttn) .icon-external svg path,
    .main-footer .footer-col p a:not(.bttn) .icon-external svg path,
    .main-footer .menu a:not(.bttn) .icon-external svg path {
      fill: #fff; }
    .main-footer .mainfooter-breadcrumbs a:not(.bttn) .newwindow-popup,
    .main-footer .footer-col p a:not(.bttn) .newwindow-popup,
    .main-footer .menu a:not(.bttn) .newwindow-popup {
      background: #005EB8; }
      .main-footer .mainfooter-breadcrumbs a:not(.bttn) .newwindow-popup:before,
      .main-footer .footer-col p a:not(.bttn) .newwindow-popup:before,
      .main-footer .menu a:not(.bttn) .newwindow-popup:before {
        border-top-color: #005EB8; }
    @media (max-width: 768px) {
      .main-footer .mainfooter-breadcrumbs a:not(.bttn),
      .main-footer .footer-col p a:not(.bttn),
      .main-footer .menu a:not(.bttn) {
        padding: 5px 0; } }
  .main-footer .mainfooter-breadcrumbs {
    padding-bottom: 75px; }
    @media (max-width: 768px) {
      .main-footer .mainfooter-breadcrumbs {
        padding-bottom: 50px; } }
  .main-footer .mainfooter-top {
    font-size: 16px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 50px; }
    .main-footer .mainfooter-top .footer-menu-title {
      color: #F38D68;
      font-weight: 700;
      padding-bottom: 8px;
      padding-left: 50px; }
    .main-footer .mainfooter-top .footer-col {
      flex: 0 1 calc(45% - 60px);
      align-self: auto;
      min-width: calc(45% - 60px);
      min-height: auto; }
      .main-footer .mainfooter-top .footer-col.footer-col-left {
        flex-grow: 1;
        flex-basis: auto;
        min-width: calc(50% - 60px); }
        .main-footer .mainfooter-top .footer-col.footer-col-left p {
          font: clamp(1.5em, 2.25em, 5vw)/125% ivypresto-display, serif;
          max-width: 450px;
          margin: 0; }
      .main-footer .mainfooter-top .footer-col.footer-col-right p {
        font-size: clamp(0.889em, 1em, 3vw);
        margin: 0; }
      @media (max-width: 768px) {
        .main-footer .mainfooter-top .footer-col.footer-col-middle, .main-footer .mainfooter-top .footer-col.footer-col-right {
          flex: 1 0 100%;
          min-width: 100%; } }
      @media (max-width: 990px) {
        .main-footer .mainfooter-top .footer-col.footer-col-middle, .main-footer .mainfooter-top .footer-col.footer-col-right {
          flex: 0 1 calc(50% - 60px); } }
  @media (max-width: 768px) {
    .main-footer .mainfooter-top {
      gap: 30px;
      padding-bottom: 20px; } }
  .main-footer .footer-newsletter-signup {
    position: relative;
    max-width: 450px;
    margin-top: 30px; }
    .main-footer .footer-newsletter-signup label {
      height: 0;
      width: 0;
      display: block;
      overflow: hidden; }
    .main-footer .footer-newsletter-signup input[type="email"] {
      margin: 0;
      padding: 0 60px 0 16px;
      border: 0;
      border-radius: 999px;
      display: block;
      background: #fff;
      height: 48px;
      width: 100%;
      line-height: 48px;
      color: #363636; }
    .main-footer .footer-newsletter-signup button {
      background: #005EB8;
      border: 0;
      cursor: pointer;
      width: 44px;
      height: 44px;
      position: absolute;
      right: 0;
      top: 2px;
      right: 2px;
      border-radius: 50%; }
      .main-footer .footer-newsletter-signup button:hover {
        background: #F38D68; }
      .main-footer .footer-newsletter-signup button span {
        height: 0;
        width: 0;
        display: block;
        overflow: hidden; }
      .main-footer .footer-newsletter-signup button icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-9px, -7px); }
    .main-footer .footer-newsletter-signup .wpcf7-spinner {
      position: absolute; }
  .main-footer .footer-social {
    padding-top: 60px; }
    .main-footer .footer-social ul {
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-start;
      align-content: flex-start;
      align-items: center;
      gap: 10px; }
      .main-footer .footer-social ul li {
        flex: 0 1 auto; }
        .main-footer .footer-social ul li a {
          display: block;
          padding: 10px; }
          .main-footer .footer-social ul li a:hover svg path {
            fill: #F38D68 !important; }
        .main-footer .footer-social ul li:first-child {
          margin-left: -10px; }
  .main-footer .credential-logos ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 25px; }
    .main-footer .credential-logos ul li {
      flex: 0 1 auto; }
      .main-footer .credential-logos ul li a {
        display: block;
        padding: 10px; }
        .main-footer .credential-logos ul li a:hover svg path {
          fill: #F38D68 !important; }
      .main-footer .credential-logos ul li:first-child {
        margin-left: -10px; }
  @media (max-width: 768px) {
    .main-footer .footer-social {
      padding-top: 34px; }
      .main-footer .footer-social ul {
        gap: 10px; } }
  .main-footer .mainfooter-bottom,
  .main-footer #menu-footer-aux {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
    gap: 40px; }
    .main-footer .mainfooter-bottom > div
    > li,
    .main-footer #menu-footer-aux > div
    > li {
      flex: 0 1 auto; }
  .main-footer .mainfooter-bottom {
    font-size: 13px; }
  @media (max-width: 768px) {
    .main-footer .mainfooter-bottom {
      gap: 0; }
    .main-footer #menu-footer-aux {
      gap: 4px 40px; } }
  @media (max-width: 768px) {
    .main-footer {
      padding: 50px 10px 55px; } }

.cta-row {
  display: flex;
  width: 95%;
  max-width: 1120px;
  margin: auto;
  padding: clamp(80px, 10vw, 150px) 0; }

.footer-cta {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 150px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .footer-cta.bg-primary {
    background-image: url("/wp-content/uploads/2024/01/dcb080cfe32be1b715b5269e62c4f7c0.png");
    background-size: cover;
    background-position: center; }
  .footer-cta.hidden {
    display: none; }
  .footer-cta h2 {
    color: #fff;
    margin-bottom: 34px;
    font-size: 60px;
    line-height: 1.25em !important;
    max-width: 600px; }
  .footer-cta p {
    font-family: Roboto;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-top: 0; }
  .footer-cta p + .bttn {
    margin-top: 40px; }
  .footer-cta a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px; }

.right-cta {
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 10vw, 65px);
  border-radius: 20px;
  margin-left: 25px;
  flex: 1 1 50%;
  min-width: calc(50% - 25px);
  min-height: clamp(350px, 30vw, 550px); }
  .right-cta .bttn {
    margin-top: 40px; }
  .right-cta h2 {
    font-size: 46px;
    color: #fff; }
  .right-cta p {
    color: #fff;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; }

.left-cta {
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 10vw, 65px);
  border-radius: 20px;
  margin-right: 25px;
  flex: 1 1 auto;
  min-width: calc(50% - 25px);
  min-height: clamp(350px, 30vw, 550px); }
  .left-cta .bttn {
    margin-top: 40px; }
  .left-cta h2 {
    font-size: 46px;
    color: #fff; }
  .left-cta p {
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; }

/* Desktop styles */
@media (min-width: 768px) {
  .footer-cta {
    min-height: 550px; } }
/* Mobile styles */
@media (max-width: 767px) {
  .footer-cta {
    min-height: 365px;
    margin: 50px 0 100px;
    padding: 35px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover; }
    .footer-cta h2 {
      font-size: 40px; }

  .right-cta {
    margin-left: 0;
    margin-top: 25px; }

  .left-cta {
    margin-right: 0;
    margin-bottom: 25px; }

  .cta-row {
    flex-direction: column; } }
#mobile-menu {
  height: 100% !important;
  margin: auto 0;
  background: #fff;
  top: 80px !important; }
  #mobile-menu .mobile-menu-search {
    margin-top: 65px;
    display: flex;
    justify-content: center; }
    #mobile-menu .mobile-menu-search .search-form {
      position: relative; }
      #mobile-menu .mobile-menu-search .search-form input {
        background: #F5F4EF;
        border: none;
        border-radius: 40px;
        padding: 15px;
        width: 395px;
        color: #363636;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; }
        @media only screen and (max-width: 375px) {
          #mobile-menu .mobile-menu-search .search-form input {
            width: 340px; } }
      #mobile-menu .mobile-menu-search .search-form .search-icon {
        padding: 0;
        background: url("../img/solid-cta.svg") no-repeat;
        background-size: contain;
        border: none;
        width: 44px;
        height: 44px;
        cursor: pointer;
        position: absolute;
        right: 5px;
        top: 4px; }
  #mobile-menu .mobile-menu-top ul.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 20px 10px; }
    #mobile-menu .mobile-menu-top ul.mobile-menu li {
      display: block;
      position: relative; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li ul.sub-menu {
        display: none;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        margin-top: 0;
        transition: margin-top 0.3s ease-in-out; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li.active ul.sub-menu {
        display: block;
        margin-top: 10px; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li ul.sub-menu ul.sub-menu {
        margin: 0 0 10px 20px; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li a {
        display: flex;
        align-items: center;
        padding: 10px;
        text-decoration: none;
        color: #363636;
        position: relative;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; }
        #mobile-menu .mobile-menu-top ul.mobile-menu li a:hover {
          background-color: #F5F4EF; }
        #mobile-menu .mobile-menu-top ul.mobile-menu li a .toggle-icon {
          margin-left: auto;
          width: 20px;
          height: 20px;
          background: url("../img/dropdown-arrow.svg") no-repeat;
          background-size: contain;
          transition: transform 0.3s ease-in-out;
          rotate: 180deg; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li.active .toggle-icon {
        transform: rotate(180deg); }
      #mobile-menu .mobile-menu-top ul.mobile-menu li ul.sub-menu li a {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        padding: 5px 20px; }
      #mobile-menu .mobile-menu-top ul.mobile-menu li + li {
        margin-top: 0;
        transition: margin-top 0.3s ease-in-out; }

.cat-hero {
  left: 50%;
  position: relative;
  width: 100vw;
  transform: translateX(-50%); }
  .cat-hero .panel-grid-cell {
    width: calc(95% - ( 0.35 * 10% ) );
    max-width: 1120px;
    margin: auto; }

.post-single .post-single-meta {
  padding-bottom: 25px;
  text-align: center;
  font-size: 0.875em; }
  .post-single .post-single-meta > span {
    display: inline-block; }
  .post-single .post-single-meta .post-single-category {
    background-color: #F5F4EF;
    padding: 5px 15px;
    margin: 0 3px;
    border-radius: 6px; }
.post-single .featured-image {
  text-align: center;
  margin-bottom: 75px; }
  .post-single .featured-image img {
    width: 100%;
    max-width: 1140px;
    height: clamp(400px, 45vw, 600px);
    margin: auto;
    border-radius: 20px;
    object-position: center;
    object-fit: cover; }
.post-single .articleBody {
  width: calc(100% - 30px);
  margin: auto;
  max-width: 730px; }
  .post-single .articleBody img {
    border-radius: 20px; }
    .post-single .articleBody img:not(.alignleft):not(.alignright) {
      display: block;
      margin-left: auto;
      margin-right: auto; }
    .post-single .articleBody img.alignleft {
      float: left; }
    .post-single .articleBody img.alignright {
      float: right; }
.post-single .post-top-wrapper {
  margin: 0 clamp(5%, 10vw, 172px);
  text-align: center; }
  .post-single .post-top-wrapper .social-share-buttons {
    padding: 30px 0; }
    .post-single .post-top-wrapper .social-share-buttons .icon-external {
      display: none; }
    .post-single .post-top-wrapper .social-share-buttons .social-share-button {
      text-decoration: none;
      margin: 0 8px; }
.post-single a span:not(.newwindow-popup) {
  transition-duration: 0s; }
.post-single .h1 {
  text-align: center;
  font-size: clamp(2.444em, 8vw, 3.333em);
  padding: 25px 0 35px;
  line-height: 1.1em; }
.post-single h1,
.post-single h2,
.post-single h3 {
  margin: 0;
  padding: 0; }
  .post-single h1:after,
  .post-single h2:after,
  .post-single h3:after {
    display: none; }
.post-single h2 {
  padding-top: clamp(25px, 4vw, 50px); }
.post-single h3 {
  padding-top: clamp(25px, 4vw, 35px); }
.post-single ul li {
  font-size: 18px;
  line-height: 28px; }

.post-related .post-related-wrapper .header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px; }
  .post-related .post-related-wrapper .header-top-row h2 {
    margin-bottom: 35px; }
  .post-related .post-related-wrapper .header-top-row .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px; }
    .post-related .post-related-wrapper .header-top-row .image-container img {
      border-radius: 20px;
      width: 100%;
      max-width: 100%;
      height: 347px;
      aspect-ratio: 9/16;
      object-fit: cover;
      object-position: center;
      position: relative;
      transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }

.posts-twocol {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  gap: clamp(50px, 8vw, 125px); }
  .posts-twocol ~ .posts-twocol {
    margin-top: 30px; }
  .posts-twocol > div {
    flex: 0 1 50%;
    align-self: auto;
    min-width: 0;
    min-height: auto; }
    .posts-twocol > div.posts-img {
      min-width: 60%; }
      .posts-twocol > div.posts-img img {
        width: 100%; }
    .posts-twocol > div.fullwidth {
      flex-basis: 100%; }
  .posts-twocol .post-eyebrow {
    padding-bottom: 32px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875em; }
  .posts-twocol .post-title {
    padding: 0; }
  .posts-twocol .post-bttn a:not(.bttn) {
    display: inline-block;
    padding-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    font-size: 0.875em;
    line-height: 1.5em; }
    .posts-twocol .post-bttn a:not(.bttn):after {
      content: "";
      position: absolute;
      z-index: 1;
      right: 0;
      width: 0;
      bottom: 0;
      height: 1px; }
    .posts-twocol .post-bttn a:not(.bttn):hover:after, .posts-twocol .post-bttn a:not(.bttn):focus:after {
      left: 0;
      right: auto;
      width: 100%; }

.left-img {
  width: 252px;
  height: 338px;
  margin-right: 12px;
  border-radius: 20px; }

.right-img {
  width: 450px;
  height: 338px;
  border-radius: 20px;
  margin-left: 12px; }

.article-summary {
  background-color: #f1f0eb;
  padding: 0px 50px 40px 40px;
  border-radius: 20px; }
  .article-summary h2 {
    margin-bottom: 20px; }

.featured-posts-list {
  position: relative;
  padding: 50px 0;
  overflow: hidden; }
  .featured-posts-list h2 {
    font-size: clamp(30px, 10vw, 44px); }
  .featured-posts-list .post-title {
    color: #363636;
    font-family: roboto, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; }
  .featured-posts-list img {
    transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
  .featured-posts-list:hover img {
    transform: scale(1.05); }

.article-snippet {
  padding: 20px 0; }

.featured-button {
  margin: 10px 0 0 0; }

.featured-headline,
.articles-headline {
  margin-bottom: 30px; }

.search-category-wrapper {
  display: flex;
  gap: 80px;
  width: 100%;
  align-items: end;
  flex-flow: row wrap; }
  .search-category-wrapper .search-input {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: center; }
    .search-category-wrapper .search-input .input-container {
      position: relative;
      flex: 1;
      width: 100%;
      max-width: 675px; }
      .search-category-wrapper .search-input .input-container .search-input-line {
        border: none;
        border-bottom: 1px solid rgba(54, 54, 54, 0.5);
        width: 100%;
        font-size: 18px;
        padding: 20px;
        outline: none; }
    .search-category-wrapper .search-input .icon-container {
      background: url("/wp-content/themes/empower/img/grey-search-icon.svg") no-repeat center center;
      background-size: 20px 20px;
      width: 20px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      top: 50%;
      margin-top: -10px;
      right: 0;
      border: 0;
      padding: 0; }
  .search-category-wrapper .category-dropdown {
    flex: 0 0 300px;
    min-width: 300px; }
    .search-category-wrapper .category-dropdown label {
      margin-right: 10px; }
    .search-category-wrapper .category-dropdown select {
      position: relative;
      cursor: pointer;
      color: #363636;
      font-family: roboto, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 28px;
      border-radius: 50px;
      appearance: none;
      padding: 10px 40px 10px 20px;
      text-overflow: ellipsis;
      white-space: nowrap;
      background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMjUgOS43OTY4OEw3LjM1MTU2IDguODk4NDRMMS4xMDE1NiAyLjY0ODQ0TDAuMjAzMTI1IDEuNzVMMiAtMC4wMDc4MTI1TDIuODU5MzggMC44OTA2MjVMOC4yNSA2LjI0MjE5TDEzLjYwMTYgMC44OTA2MjVMMTQuNSAtMC4wMDc4MTI1TDE2LjI1NzggMS43NUwxNS4zNTk0IDIuNjQ4NDRMOS4xMDkzOCA4Ljg5ODQ0TDguMjUgOS43OTY4OFoiIGZpbGw9IiMzNjM2MzYiLz4KPC9zdmc+Cg==") center right 10px no-repeat;
      max-width: 300px;
      width: 100%;
      border: 1px solid #363636; }
    .search-category-wrapper .category-dropdown select::-ms-expand {
      display: none; }

.post-list-wrapper {
  padding: 50px 0; }
  .post-list-wrapper .posts-list {
    display: grid;
    gap: 33px;
    grid-template-columns: repeat(3, 1fr); }
    .post-list-wrapper .posts-list .post-item .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 20px; }
      .post-list-wrapper .posts-list .post-item .image-container img {
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        height: 347px;
        aspect-ratio: 9/16;
        object-fit: cover;
        object-position: center;
        position: relative;
        transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
    .post-list-wrapper .posts-list .post-item .posts-content {
      margin-bottom: 20px;
      box-sizing: border-box; }
      .post-list-wrapper .posts-list .post-item .posts-content .publish-date {
        color: rgba(54, 54, 54, 0.7);
        font-size: 14px;
        line-height: 26px;
        padding: 20px 0 5px 0; }
      .post-list-wrapper .posts-list .post-item .posts-content .post-title {
        padding-top: 20px; }
        .post-list-wrapper .posts-list .post-item .posts-content .post-title a {
          font-size: 24px;
          color: #005EB8;
          font-family: roboto, sans-serif;
          text-decoration: none;
          transition: all 0.3s ease-in-out;
          background: linear-gradient(to left, #005EB8, #005EB8) bottom left/0% 2px no-repeat transparent; }
    .post-list-wrapper .posts-list .post-item:hover .post-title a {
      background-size: 100% 2px; }

.posts-threecol-column a {
  text-decoration: none; }
.posts-threecol-column .publish-date {
  color: rgba(54, 54, 54, 0.7);
  font-size: 14px;
  line-height: 26px;
  padding: 20px 0 5px 0; }
.posts-threecol-column .post-title a {
  font-size: 24px;
  color: #005EB8;
  font-family: roboto, sans-serif;
  text-decoration: none; }
.posts-threecol-column .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px; }
  .posts-threecol-column .image-container img {
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    height: 347px;
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.565, 0.43, 0.24, 0.92); }
.posts-threecol-column:hover img {
  transform: scale(1.05); }
.posts-threecol-column:hover .post-title a {
  text-decoration: underline; }

@media only screen and (max-width: 1100px) {
  .post-single .featured-image img {
    border-radius: 0; } }
@media only screen and (max-width: 1024px) {
  .search-category-wrapper {
    gap: 54px;
    align-items: center; }
    .search-category-wrapper .search-placeholder {
      bottom: 0;
      left: 20px; } }
@media only screen and (max-width: 684px) {
  .search-category-wrapper .category-dropdown {
    flex: 1 1 100%; }
    .search-category-wrapper .category-dropdown select {
      max-width: 100%; } }
@media only screen and (max-width: 796px) {
  .left-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-bottom: 0;
    margin-right: auto; }

  .right-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-top: 12px;
    margin-left: auto; } }
@media only screen and (max-width: 768px) {
  .left-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-bottom: 0;
    margin-right: auto; }

  .right-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-top: 12px;
    margin-left: auto; }

  .posts-twocol {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 25px; }
    .posts-twocol > div {
      flex: 1 1 100%; }

  .post-single .post-top-wrapper {
    margin: 0 10px;
    text-align: center; } }
@media only screen and (max-width: 480px) {
  .posts-list {
    grid-template-columns: 1fr !important; }

  .article-summary {
    margin-bottom: 25px; }

  .left-img {
    width: 338px;
    height: 349.37px;
    border-radius: 20px;
    margin-bottom: 12px;
    margin-right: auto; }

  .right-img {
    width: 336.754px;
    height: 242px;
    border-radius: 20px;
    margin-top: 12px;
    margin-left: auto; }

  .search-category-wrapper {
    flex-direction: column;
    gap: 15px; }
    .search-category-wrapper input {
      min-width: 100%;
      border-radius: 0; }
    .search-category-wrapper .search-input,
    .search-category-wrapper .category-dropdown {
      flex: 0 0 100%;
      margin-bottom: 15px;
      min-width: 100%; }

  .post-single .post-single-meta .post-single-category {
    margin: 5px 3px; }
  .post-single .post-top-wrapper {
    margin: 0 10px;
    text-align: center; }

  .ctablock-wrapper {
    margin: 0 10px; }

  .post-related {
    padding-top: 100px; }
    .post-related .post-related-wrapper {
      margin: 0 10px; }
      .post-related .post-related-wrapper .header-top-row {
        flex-direction: column;
        align-items: flex-start !important; }

  .posts-twocol {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 25px; }
    .posts-twocol > div {
      flex: 1 1 100%; }

  .ctablock {
    padding: 75px 45px !important;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin: 0 auto;
    align-items: baseline;
    text-align: center;
    margin-top: 50px; }
    .ctablock .h2 {
      font-size: 40px !important; } }
.page-jobs .main-content {
  max-width: 100%;
  width: 100%; }

.jobs-hero {
  background: #F1F0EB;
  padding: 80px 0 40px; }

#job-search-form {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px; }
  #job-search-form .job-search-col {
    flex-grow: 0;
    flex-shrink: 1;
    position: relative; }
    #job-search-form .job-search-col.job-search-keywords {
      flex-grow: 1; }
    #job-search-form .job-search-col.job-search-facet, #job-search-form .job-search-col.job-search-location {
      flex-basis: 25%; }
  #job-search-form button {
    cursor: pointer;
    min-width: 165px; }
  #job-search-form label[for="keywords"] {
    overflow: hidden;
    width: 0;
    height: 0;
    display: block; }
  #job-search-form .job-search-dropdown,
  #job-search-form input[type="text"] {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #363636;
    color: #363636;
    padding: 0 40px 0 20px;
    text-align: left;
    background: #fff;
    position: relative;
    min-height: 42px;
    line-height: 40px;
    transition: all 0s linear;
    text-overflow: ellipsis;
    white-space: nowrap; }
  #job-search-form .job-search-dropdown.active {
    border-radius: 20px 20px 0 0;
    border-bottom: 0; }
  #job-search-form input[type="text"]::placeholder,
  #job-search-form .job-search-dropdown {
    color: rgba(54, 54, 54, 0.5); }
  #job-search-form .job-search-dropdown svg {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px; }
  #job-search-form .job-search-dropdown-list {
    z-index: 10;
    position: absolute;
    top: 100%;
    background: #fff;
    border: 1px solid #363636;
    border-top: 0;
    font-size: 0.778em;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 0 20px 10px 20px;
    display: none; }
    #job-search-form .job-search-dropdown-list.active {
      display: block; }
    #job-search-form .job-search-dropdown-list ul {
      margin: 0;
      padding: 0;
      list-style: none; }
    #job-search-form .job-search-dropdown-list label {
      display: block;
      position: relative;
      margin-bottom: 10px;
      cursor: pointer; }
    #job-search-form .job-search-dropdown-list input[type="checkbox"] {
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 0; }
      #job-search-form .job-search-dropdown-list input[type="checkbox"] + span {
        display: block;
        padding-left: 25px;
        line-height: 15px; }
        #job-search-form .job-search-dropdown-list input[type="checkbox"] + span:before {
          display: block;
          content: "";
          width: 15px;
          height: 15px;
          border-radius: 3px;
          border: 1px solid #363636;
          position: absolute;
          left: 0;
          top: 0;
          background: center center no-repeat #fff;
          background-size: 10px; }
      #job-search-form .job-search-dropdown-list input[type="checkbox"]:checked + span:before {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="16" width="14" viewBox="0 0 448 512"><path fill="%23005EB8" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>'); }

#jobs-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px; }
  #jobs-container .jobs-row {
    display: flex;
    padding: 20px 30px;
    flex: 0 1 auto;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #ccc; }
    @media only screen and (max-width: 990px) {
      #jobs-container .jobs-row {
        flex-direction: column; }
        #jobs-container .jobs-row > div {
          width: 100%;
          text-align: center !important;
          margin: auto !important; } }
    #jobs-container .jobs-row .jobs-icon {
      flex-basis: 45px;
      align-self: flex-start; }
      @media only screen and (max-width: 990px) {
        #jobs-container .jobs-row .jobs-icon {
          display: none; } }
    #jobs-container .jobs-row .jobs-details {
      flex-grow: 1; }
      #jobs-container .jobs-row .jobs-details a {
        font-weight: 700;
        font-size: 1.111em;
        color: #005EB8;
        text-decoration: none;
        position: relative; }
        #jobs-container .jobs-row .jobs-details a:after {
          position: absolute;
          right: 0;
          width: 0;
          display: block;
          height: 2px;
          background: #005EB8;
          content: ""; }
        #jobs-container .jobs-row .jobs-details a:hover:after {
          left: 0;
          right: auto;
          width: 100%; }
      #jobs-container .jobs-row .jobs-details em {
        font-size: 0.778em; }
    #jobs-container .jobs-row .jobs-tag {
      text-align: right; }
      #jobs-container .jobs-row .jobs-tag span {
        display: inline-block;
        text-align: center;
        padding: 8px 20px;
        border-radius: 6px;
        background: #F1F0EB;
        font-size: 0.778em; }
    #jobs-container .jobs-row .jobs-apply {
      margin-left: clamp(25px, 5vw, 100px); }

.backtojobs {
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #363636; }
  .backtojobs:hover, .backtojobs:focus {
    color: #005EB8; }

h1.jobs-h1 {
  width: calc(100% - 250px); }

.jobs-fulldetails {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 60px; }
  .jobs-fulldetails .job-description {
    flex: 1 1 calc(100% - 250px); }
  .jobs-fulldetails .job-applynow {
    flex: 0 1 190px; }
    .jobs-fulldetails .job-applynow .bttn {
      position: sticky;
      top: 75px;
      width: 100%;
      text-align: center; }
  .jobs-fulldetails .jobs-meta {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 25px 0 40px; }
    .jobs-fulldetails .jobs-meta > div {
      flex: 0 1 auto; }
      .jobs-fulldetails .jobs-meta > div .posteddate {
        font-size: 0.778em; }
      .jobs-fulldetails .jobs-meta > div.tags span {
        display: inline-block;
        text-align: center;
        padding: 8px 20px;
        border-radius: 6px;
        background: #F1F0EB;
        font-size: 0.778em; }

@media (max-width: 1024px) {
  h1.jobs-h1 {
    width: 100%; }

  .jobs-fulldetails {
    gap: 25px; }
    .jobs-fulldetails .job-description {
      flex-basis: 100%; } }
@media (max-width: 990px) {
  #job-search-form {
    flex-wrap: wrap; }
    #job-search-form .job-search-col {
      flex-grow: 1; }
    #job-search-form .job-search-dropdown,
    #job-search-form input[type="text"] {
      font-size: 0.889em; } }
@media (max-width: 768px) {
  #job-search-form .job-search-col {
    flex-basis: 100% !important; } }
