/*---------------SITE HELPERS---------------*/
.text-dark {
  color: rgb(var(--textDark));
}
.text-light {
  color: rgb(var(--textLight));
}
.page_frame {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--pageFrame, 1320px);
  padding: 0 var(--pageFramePadding, 30px);
  width: 100%;
}
@media only screen and (max-width: 639px){

  .small-margin-bottom-1 {
    margin-bottom: var(--sp1);
  }
  .small-margin-bottom-2 {
    margin-bottom: var(--sp2);
  }
  .small-margin-bottom-3 {
    margin-bottom: var(--sp3);
  }
  .small-margin-bottom-4 {
    margin-bottom: var(--sp4);
  }
}
@media only screen and (min-width: 768px) {

  .one_col_content .all-cols-wrap, 
  .two_col_content .all-cols-wrap, 
  .three_col_content .all-cols-wrap, 
  .four_col_content .all-cols-wrap {
    margin-left: calc(var(--pageFramePadding) * -1);
    margin-right: calc(var(--pageFramePadding) * -1);
  }
  .one_col_content .all-cols-wrap .col, 
  .two_col_content .all-cols-wrap .col, 
  .three_col_content .all-cols-wrap .col, 
  .four_col_content .all-cols-wrap .col {
    padding-left: var(--pageFramePadding);
    padding-right: var(--pageFramePadding);
  }  
  .medium-display-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
  }
}
/*---------------ELEMENTS---------------*/
.element__image .img-frame {
  margin-bottom: 20px;
}
/*---------------BLOCK OPTIONS---------------*/
/* LAYOUT */
.block.narrow-content__some .all-cols-wrap {
  max-width: 79%;
}
.block.narrow-content__more .all-cols-wrap {
  max-width: 77%;
}
.block.one_col_content.narrow-content__more .all-cols-wrap {
  max-width: 64%;
}
@media only screen and (max-width: 767px){

  .block.narrow-content__some .all-cols-wrap,
  .block.narrow-content__more .all-cols-wrap {
    max-width: none !important;
  }
}
@media only screen and (min-width: 1024px){

  .text-position__center .all-cols-wrap,
  .text-position__left .all-cols-wrap,
  .text-position__right .all-cols-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 610px;
    width: auto;
  }
  .text-position__left .all-cols-wrap {
    margin-left: 0;
  }
  .text-position__right .all-cols-wrap {
    margin-right: 0;
  }
}
/* PADDING */
.block {
  --paddingBottom: var(--padNorm);
  --paddingTop: var(--padNorm);

  padding-bottom: var(--paddingBottom);
  padding-top: var(--paddingTop);
}
.padding-top__less {
  --paddingTop: var(--padLess);
}
.banner-padding-top__less {
  --paddingTop: calc(var(--padLess) * 2.25);
}
.padding-top__normal {
  --paddingTop: var(--padNorm);
}
.padding-top__more {
  --paddingTop: calc(var(--padMore) * 0.9);
}
.banner-padding-top__normal {
  --paddingTop: var(--padMore);
}
.banner-padding-top__more {
  --paddingTop: 7.5rem;
}
.padding-bottom__less {
  --paddingBottom: var(--padLess);
}
.banner-padding-bottom__less {
  --paddingBottom: calc(var(--padLess) * 2.25);
}
.padding-bottom__normal {
  --paddingBottom: var(--padNorm);
}
.padding-bottom__more {
  --paddingBottom: calc(var(--padMore) * 0.9);
}
.banner-padding-bottom__normal {
  --paddingBottom: var(--padMore);
}
.banner-padding-bottom__more {
  --paddingBottom: 7.5rem;
}
@media only screen and (max-width: 639px) {
  .padding-top__less,
  .banner-padding-top__less {
    /* --paddingTop: 1.5rem; */
  }
  .padding-top__normal,
  .banner-padding-top__less {
    /* --paddingTop: 2em; */
  }
  .padding-top__more,
  .banner-padding-top__normal {
    /* --paddingTop: 2.5em; */
  }
  .banner-padding-top__more {
    /* --paddingTop: 3rem; */
  }
  .padding-bottom__less {
    /* --paddingBottom: 1.5rem; */
  }
  .padding-bottom__normal,
  .banner-padding-bottom__less {
    /* --paddingBottom: 2em; */
  }
  .padding-bottom__more,
  .banner-padding-bottom__normal {
    /* --paddingBottom: 2.5em; */
  }
  .banner-padding-bottom__more {
    /* --paddingBottom: 3rem; */
  }
}
.padding-top__none,
.banner-padding-top__none {
  --paddingTop: 0;
}
.padding-bottom__none,
.banner-padding-bottom__none {
  --paddingBottom: 0;
}
/* BACKGROUNDS */
.block {
  --backgroundColor: transparent;
  --textColor: rgb(var(--textDark, 0, 0, 0));

  background-color: var(--backgroundColor);
  color: var(--textColor);
}
.bg-color__black {
  --backgroundColor: #000;
  --textColor: rgb(var(--textLight, 255, 255, 255));
}
.bg-color__transparent {
  --backgroundColor: transparent;
  --textColor: rgb(var(--textDark, 0, 0, 0));
}
.bg-color__white {
  --backgroundColor: #fff;
  --textColor: rgb(var(--textDark, 0, 0, 0));
}
.bg-color__blue,
.bg-color__blue-topo {
  --backgroundColor: #036; 
  /* rgba(0, 51, 102, 1) */
  --textColor: rgb(var(--textLight, 255, 255, 255));
}
.bg-color__pearl,
.bg-color__pearl-topo {
  --backgroundColor: #F6F6F2; 
  /* rgba(246, 246, 242, 1) */
  --textColor: rgb(var(--textDark, 0, 0, 0));
}
.bg-color__blue-topo .block__bg-img::after {
  background-image: url('../images/topo-full-page.svg');
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  inset: 0;
  opacity: 0.05;
  position: absolute;
}
.bg-color__pearl-topo .block__bg-img::after {
  background-image: url('../images/topo-half-page.svg');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: '';
  inset: 0;
  opacity: 0.5;
  position: absolute;
  transform: scaleX(-1);
}

/* ancillary backgrounds */
.button-bg-color__black .faq-dropdown__button,
.block.parallax__yes.bg-color__black .block__bg-img,
.text-area-bg-color__black .pop-box {
  background-color: #000;
}
.button-bg-color__white .faq-dropdown__button,
.block.parallax__yes.bg-color__white .block__bg-img,
.text-area-bg-color__white .pop-box {
  background-color: #fff;
}
.button-bg-color__white .faq-dropdown__button,
.block.text-area-bg-color__white .pop-box .text {
  color: rgb(var(--textDark));
}
.button-bg-color__black .faq-dropdown__button,
.block.text-area-bg-color__black .pop-box .text {
  color: rgb(var(--textLight));
}
/* MOBILE BACKGROUNDS */
.block__bg-img--mobile {
  display: none;
}
.mobile-background-position__bottom .block__bg-img--mobile img {
  object-position: bottom;
}
.mobile-background-position__center .block__bg-img--mobile img {
  object-position: center;
}
.mobile-background-position__top .block__bg-img--mobile img {
  object-position: top;
}
.block.mobile-background-image-opacity__light .block__bg-img--mobile {
  opacity: 0.3;
}
.block.mobile-background-image-opacity__medium .block__bg-img--mobile {
  opacity: 0.5;
}
.block.mobile-background-image-opacity__strong .block__bg-img--mobile {
  opacity: 0.7;
}
.block.mobile-background-image-opacity__full .block__bg-img--mobile {
  opacity: 1;
}
@media only screen and (max-width: 767px){

  .block__bg-img--mobile {
    display: block !important;
  }
  .block__bg-img--mobile + .block__bg-img {
    display: none !important;
  }
}
/*---------------OVERLAYS---------------*/
:not(.parallax__yes) .block__bg-img.olay-before,
:not(.parallax__yes) .block__bg-img.olay-after,
.block.olay-img-before:not(.parallax__yes) .block__bg-img,
.block.olay-img-after:not(.parallax__yes) .block__bg-img {
	overflow: hidden;
}
.olay-before::before,
.olay-after::after,
.olay-img-before .block__bg-img::before,
.olay-img-after .block__bg-img::after {
	content: "";
	height: calc(100% + 1px);
	left: 0;
	position: absolute;
	top: 1px;
	width: 100%;
}
/*-----------------------BLOCKS---------------------*/
.block div {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px) {

  .block [style*='text-align: right'] {
    text-align: center !important;
  }
}
@media only screen and (max-width: 500px) {

  article.type-page .entry-content > .block:first-child {
    padding-top: calc(var(--paddingTop) + 140px); /* add height of header to top padding */
  }
}

.block.two_col_content.even {
  --pageFrame: 1175px;
}
@media only screen and (max-width: 767px) {
  
  .block.two_col_content:where(.even, .big_left, .big_right) .all-cols-wrap .col-1 {
    margin-left: auto;
    margin-right: auto;
    min-width: 175px;
    width: 50%;
  }
  .block.two_col_content:where(.even, .big_left, .big_right) .all-cols-wrap :where(.col-1, .col-2) .element__text {
    text-align: center;
  }
  .block.two_col_content:where(.even, .big_left, .big_right).mobile-text-alignment__left .all-cols-wrap .col-1 {
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
  .block.two_col_content:where(.even, .big_left, .big_right).mobile-text-alignment__left .all-cols-wrap :where(.col-1, .col-2) .element__text {
    text-align: left;
  }
  .block.two_col_content:where(.even, .big_left, .big_right).mobile-text-alignment__left .all-cols-wrap :where(.col-1, .col-2) .element__text [style] {
    text-align: left !important;
  }  
  .block.two_col_content:where(.hero, .even, .big_left, .big_right) .divider {
    background-color: rgba(51, 51, 51, 0.3);
    height: 1px;
    margin-bottom: 24px;
    width: 100%;
  }
  .block.two_col_content:where(.bg-color__black, .bg-color__blue, .bg-color__blue-topo) .divider {
    background-color: #fff;
  }  
}
@media only screen and (min-width: 768px) {

  .block.two_col_content .divider {
    background-color: rgba(51, 51, 51, 0.3);
    height: auto;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
    min-height: 100%;
    width: 1px;
  }
  .block.two_col_content:where(.bg-color__black, .bg-color__blue, .bg-color__blue-topo) .divider {
    background-color: #fff;
  }
  .block.two_col_content .all-cols-wrap .col {
    margin-bottom: 0;
  }
  .block.two_col_content.even .all-cols-wrap .col-1 {
    flex: 0 0 auto;
    width: 48.2%;
  }
  .block.two_col_content.big_right .all-cols-wrap .col-2, 
  .block.two_col_content.big_left .all-cols-wrap .col-1 {
    width: 75%;
  }
  .block.two_col_content.big_right .all-cols-wrap .col-1, 
  .block.two_col_content.big_left .all-cols-wrap .col-2 {
    width: 21%;
  }  
  .block.two_col_content.big_right .all-cols-wrap .col-1 .element__text, 
  .block.two_col_content.big_left .all-cols-wrap .col-2 .element__text {
    margin-top: 10px;
  }
  .block.two_col_content.big_right .col-2 .element__text > *:last-child {
    margin-bottom: 0;
  }
}

.block.video-banner {
  --pageFrame: 1010px;
}
.block.video-banner::after {
  aspect-ratio: 1.8393;
  background-image: url("data:image/svg+xml,%3Csvg width='618' height='336' viewBox='0 0 618 336' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cmask id='mask0_182_8' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='619' height='336'%3E%3Cpath d='M618.82 0H0V335.82H618.82V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_182_8)'%3E%3Cpath d='M369.73 335.78L474.99 234.15L435.14 194.26L288.6 335.78H369.73Z' fill='%230099CC'/%3E%3Cpath d='M139.18 335.78L381.12 102.09L434.3 157.14L474.82 117.98L382.54 22.43L57.98 335.78H139.18Z' fill='%230099CC'/%3E%3Cpath d='M685.13 335.78L532.94 178.18L611.72 102.09L665 157.24L705.52 118.09L613.09 22.4L452.74 176.22L606.75 335.78H685.13Z' fill='%230099CC'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  position: absolute;
  right: 0;
  width: clamp(200px, 42.9167vw, 618px);
}
.block.video-banner .vid-bg-player {
  inset: 0;
  position: absolute;
}
.block.video-banner.background-image-opacity__strong .vid-bg-player {
  opacity: 0.9;
}
.block.video-banner .vid-bg-player video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.block.video-banner .vid-bg-player::after {
  background-image: linear-gradient(0deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 51, 102, 0.08) 100%);
  content: '';
}
.block.video-banner .page_frame {
  z-index: 1;
}
.block.video-banner .all-cols-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 410px;
  width: 100%;
}
@media only screen and (max-width: 500px) {

  .block.video-banner::after {
    aspect-ratio: unset;
    background-size: auto;
    height: 100%;
    left: 0;
    right: -48%;
    width: auto;
  }
  .block.video-banner .vid-bg-player::after {
    background-color: #001933;
    content: '';
    inset: 0;
    opacity: 0.5;
    position: absolute;
  }
}

.block.two-column-faqs {
  --pageFrame: 1500px;
}
.block.two-column-faqs .block__bg-img {
  background-image: url('../images/faqs-topo-half-page.svg');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 709px 100%;
  left: 50%;
  max-width: var(--pageFrame);
  opacity: 0.5;
  transform: translateX(-50%);
}
/* .block.two-column-faqs .block__bg-img svg {
  height: 100%;
} */
/* .block.two-column-faqs .page_frame {
  padding-top: 26px;
} */
.block.two-column-faqs.two_col_content.big_left .all-cols-wrap {
  padding-left: 0;
}
.block.two-column-faqs.two_col_content.big_right .all-cols-wrap {
  padding-right: 0;
}
.block.two-column-faqs .faq-dropdown:not(:first-child) {
  border-top: 1px solid rgba(51, 51, 51, 0.3);
}
.block.two-column-faqs .faq-dropdown__button {
  padding-left: 0;
}
.block.two-column-faqs .faq-dropdown__button > * {
  color: rgba(51, 51, 51, 0.3);
  transition: color 0.25s linear;
}
.block.two-column-faqs .faq-dropdown__button.active > * {
  color: rgba(51, 51, 51, 1);
}
.block.two-column-faqs .faq-dropdown__button::after {
  color: #F90;
  font-family: var(--avenir);
  font-size: 40px;
  /* font-size: clamp(24px, 3.13vw, 40px); */
  font-weight: 800;
  line-height: 100%;
  content: '+';
  opacity: 1;
  right: 0;
  transition: opacity 0.25s linear;
}
.block.two-column-faqs .faq-dropdown__button.active::after {
  opacity: 0;
}
.block.two-column-faqs .faq-dropdown__content {
  padding: 10px 0;
}
.block.two-column-faqs .element__text {
  margin-top: 24px;
}
.block.two-column-faqs .text-group > .element__text:first-child {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {

  .block.two-column-faqs.two_col_content.big_left {
    padding-top: 0 !important;
  }
  .block.two-column-faqs.two_col_content .col-1 {
    width: auto;
  }
  .block.two-column-faqs.two_col_content .all-cols-wrap :where(.col-1, .col-2) .element__text {
    text-align: left;
  }
  .block.two-column-faqs.two_col_content.big_left .col-1 .element__image img {
    aspect-ratio: 2.7292;
    margin-left: calc(var(--pageFramePadding) * -1);
    margin-right: calc(var(--pageFramePadding) * -1);
    max-width: none;
    object-fit: cover;
    width: calc(100% + (var(--pageFramePadding) * 2));
  }
}
@media only screen and (min-width: 768px) {

  .block.two-column-faqs.two_col_content.big_left .col-1 {
    gap: 10.5%;
    width: 51%;
  }
  .block.two-column-faqs.two_col_content.big_left .col-2 {
    padding-right: 11%;
    padding-top: 20px;
    width: 40.2%;
  }
  .block.two-column-faqs.two_col_content.big_left .col-1 {
    display: flex;
  }
  .block.two-column-faqs.two_col_content.big_left .col-1 .element__image {
    display: flex;
    flex: 0 0 auto;
    left: calc(var(--pageFramePadding) * -1);
    margin-top: calc(var(--paddingTop) * -1);
    margin-bottom: calc(var(--paddingBottom) * -1);
    position: relative;
    width: 21%;
  }
  .block.two-column-faqs.two_col_content.big_left .col-1 .element__image .img-frame {
    margin-bottom: 0;
  }
  .block.two-column-faqs.two_col_content.big_left .col-1 .element__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}

.block.quote-and-stats {
  --pageFrame: 1500px;

  background-color: transparent !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.block.quote-and-stats .top-frame {
  padding-bottom: calc(var(--paddingBottom) * 0.9);
  padding-top: calc(var(--paddingTop) * 0.9);
  z-index: 1;
}
.block.quote-and-stats .top-frame > .bg-img {
  background-color: var(--backgroundColor);
}
.block.quote-and-stats .top-frame .all-cols-wrap {
  position: relative;
}
.block.quote-and-stats .top-frame .text .h6-style {
  /* attribution */
  margin-bottom: 1.5em;
  margin-top: 2em;
}
.block.quote-and-stats .bottom-frame {
  padding-bottom: calc(var(--paddingBottom) * 0.4521);
  padding-top: calc(var(--paddingTop) * 0.4656);
}
.block.quote-and-stats .bottom-frame .block__bg-img {
  opacity: 1 !important;
}
.block.quote-and-stats .bottom-frame.bg-color__blue-topo .block__bg-img::after {
  transform: scaleX(-1);
}
.block.quote-and-stats .bottom-frame .page_frame {
  z-index: 2;
}
.block.quote-and-stats .bottom-frame .stats {
  display: flex;
  gap: 70px;
  justify-content: flex-end;
  list-style-type: none;
  margin: 0;
}
.block.quote-and-stats .bottom-frame .stats li {
  flex: 1;
  max-width: 212px;
}
.block.quote-and-stats .bottom-frame .stats .figure {
  display: inline-block;
  position: relative;
}
.block.quote-and-stats .bottom-frame .stats .figure::before {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  content: '';
  display: block;
  height: 190px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-40%);
  width: 190px;
  z-index: -1;
}
.block.quote-and-stats .bottom-frame .stats .figure p:where(:not(.h1-style, .h2-style, .h3-style, .h4-style, .h5-style, .h6-style, .p-style)) {
	font-family: var(--h1-font-family, avenir-lt-pro, sans-serif);
	font-size: var(--h1-font-size, 3.75rem);
	/* font-size: clamp(42px, 5.47vw, 70px); */
	font-weight: var(--h1-font-weight, 700);
	line-height: var(--h1-line-height, 1.1em);
	margin-bottom: 0;
}
.block.quote-and-stats .bottom-frame .stats .figure sup {
  color: #FF9900;
  font-size: 0.5714em;
}
.block.quote-and-stats .bottom-frame .stats .description {
  margin-left: auto;
  margin-top: -17px;
  width: 60%;
}
.block.quote-and-stats .bottom-frame .stats .description p:where(:not(.h1-style, .h2-style, .h3-style, .h4-style, .h5-style, .h6-style, .p-style)) {
	font-family: var(--h6-font-family, avenir-lt-pro, sans-serif);
	font-size: var(--h6-font-size, 0.75rem);
	/* font-size: clamp(8.4px, 1.05vw, 14px); */
	font-weight: var(--h6-font-weight, 800);
  line-height: 142.857%;
}
.block.quote-and-stats .bottom-frame .stats-disclaimer {
  margin-right: 45px;
  text-align: right;
}
.block.quote-and-stats .bottom-frame .stats-disclaimer > p {
  font-family: var(--avenir);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}
@media only screen and (max-width: 767px) {

  .block.quote-and-stats .top-frame .col-1 .element__image {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  .block.quote-and-stats .bottom-frame {
    padding-bottom: calc(var(--paddingBottom) * 0.7);
    padding-top: calc(var(--paddingTop) * 0.7);
  }
  .block.quote-and-stats .bottom-frame .page_frame {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .block.quote-and-stats .bottom-frame .stats {
    flex-direction: column;
    gap: 60px;
  }
  .block.quote-and-stats .bottom-frame .stats-disclaimer {
    align-self: flex-end;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {

  .block.quote-and-stats .top-frame {
    padding-left: calc(10.58% + var(--pageFramePadding));
  }
  .block.quote-and-stats .top-frame .col-1 {
    margin-left: 110px;
    max-width: 223px;
  }
  .block.quote-and-stats .top-frame .col-2,
  .block.quote-and-stats .bottom-frame .stats {
    margin-right: 90px;
  }
  .block.quote-and-stats .top-frame > .bg-img {
    margin-left: calc(10.58% - (30px * 0.4));
  }
  .block.quote-and-stats .bottom-frame {
    margin-top: -90px;
  }
}

.block.recent-posts-slider {
}
.block.recent-posts-slider .pre-posts-slider {
  margin-bottom: 41px;
}
.block.recent-posts-slider .slick-list {
  height: 100%;
  overflow: visible;
}
.block.recent-posts-slider .slick-track {
  align-items: stretch;
  display: flex;
  height: 100%;
}
.block.recent-posts-slider .slick-slide {
  display: flex;
  float: none;
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
}
.block.recent-posts-slider .slick-arrows-container,
.block.recent-posts-slider .slick-dots-container {
  display: flex;
}
.block.recent-posts-slider .slick-arrows-container {
  gap: 12px;
}
.block.recent-posts-slider .slick-arrow::before {
  content: none;
}
.block.recent-posts-slider .slick-arrow {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 2px solid #09C;
  height: 27px;
  padding: 0;
  transform: none;
  width: 27px;
}
.block.recent-posts-slider .slick-arrow.slick-disabled {
  border-color: #CC9;
}
.block.recent-posts-slider .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M6.67201 9.20697L2.707 5.50275L6.67201 1.79303C7.10933 1.38084 7.10933 0.721334 6.67201 0.309143C6.23469 -0.103048 5.52332 -0.103048 5.08017 0.309143L0.327988 4.75531C-0.10933 5.1675 -0.10933 5.82701 0.327988 6.2392L5.08017 10.6909C5.52332 11.103 6.23469 11.103 6.67201 10.6909C7.10933 10.2787 7.10933 9.61916 6.67201 9.20697Z' fill='%230099CC'/%3E%3C/svg%3E");
}
.block.recent-posts-slider .slick-prev.slick-disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M6.67201 9.20697L2.707 5.50275L6.67201 1.79303C7.10933 1.38084 7.10933 0.721334 6.67201 0.309143C6.23469 -0.103048 5.52332 -0.103048 5.08017 0.309143L0.327988 4.75531C-0.10933 5.1675 -0.10933 5.82701 0.327988 6.2392L5.08017 10.6909C5.52332 11.103 6.23469 11.103 6.67201 10.6909C7.10933 10.2787 7.10933 9.61916 6.67201 9.20697Z' fill='%23CCCC99'/%3E%3C/svg%3E");
}
.block.recent-posts-slider .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M0.327988 1.79303L4.293 5.49725L0.327988 9.20697C-0.109329 9.61916 -0.109329 10.2787 0.327988 10.6909C0.765306 11.103 1.47668 11.103 1.91983 10.6909L6.67201 6.24469C7.10933 5.8325 7.10933 5.17299 6.67201 4.7608L1.91983 0.309143C1.47668 -0.103048 0.765306 -0.103048 0.327988 0.309143C-0.109329 0.721334 -0.109329 1.38084 0.327988 1.79303Z' fill='%230099CC'/%3E%3C/svg%3E");
}
.block.recent-posts-slider .slick-next.slick-disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M0.327988 1.79303L4.293 5.49725L0.327988 9.20697C-0.109329 9.61916 -0.109329 10.2787 0.327988 10.6909C0.765306 11.103 1.47668 11.103 1.91983 10.6909L6.67201 6.24469C7.10933 5.8325 7.10933 5.17299 6.67201 4.7608L1.91983 0.309143C1.47668 -0.103048 0.765306 -0.103048 0.327988 0.309143C-0.109329 0.721334 -0.109329 1.38084 0.327988 1.79303Z' fill='%23CCCC99'/%3E%3C/svg%3E");
}
.block.recent-posts-slider .slick-dots-container {
  align-self: center;
}
.block.recent-posts-slider .slick-dots {
  display: flex;
}
.block.recent-posts-slider .slick-dots li {
  flex: 1;
  height: 6px;
  margin: 0;
}
.block.recent-posts-slider .slick-dots li button {
  background-color: #F6F6F2;
  height: 100%;
  padding: 0;
  width: 100%;
}
.block.recent-posts-slider .slick-dots li button::before {
  content: none;
}
.block.recent-posts-slider .slick-dots li.slick-active button {
  background-color: #09C;
}
.block.recent-posts-slider .slick-dots li.slick-active {
  flex: 0 0 auto;
  width: 32.9114%;
}
.block.recent-posts-slider .slide {
  background-color: #F6F6F2;
  height: 100%;
}
.block.recent-posts-slider .slide-image img {
  aspect-ratio: 1.1826;
  max-width: none;
  object-fit: cover;
  width: 100%;
}
.block.recent-posts-slider .slide a {
  color: rgb(var(--textDark));
}
.block.recent-posts-slider .slide .text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px max(6%, 30px);
}
.block.recent-posts-slider .eyebrow {
  margin-bottom: 0;
}
.block.recent-posts-slider .eyebrow p {
  color: #09C;
  font-family: var(--avenir);
  font-size: 10px;
  font-weight: 900;
  line-height: 220%;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  text-transform: uppercase;
}
.block.recent-posts-slider .title p {
  font-weight: 300;
}
@media only screen and (max-width: 639px) {

  .block.recent-posts-slider .pre-posts-slider .text,
  .block.recent-posts-slider .post-posts-slider .text {
    text-align: center;
  }
  .block.recent-posts-slider .posts-slider {
    margin-bottom: 70px;
  }
  .block.recent-posts-slider .slick-arrow {
    bottom: -48px;
    top: auto;
  }
  .block.recent-posts-slider .slick-prev {
    left: calc(50% - 7px);
    transform: translateX(-100%);
  }
  .block.recent-posts-slider .slick-next {
    right: calc(50% - 7px);
    transform: translateX(100%);
  }
  .block.recent-posts-slider .col-1 {
    margin-left: calc(var(--pageFramePadding) * -1 - 10px);
    margin-right: calc(var(--pageFramePadding) * -1 - 10px);
  }
}
@media only screen and (min-width: 640px) {

  .block.recent-posts-slider .slick-arrow,
  .block.recent-posts-slider .slick-dots {
    position: static;
  }
  .block.recent-posts-slider .slide-link {
    display: flex;
    flex-direction: row-reverse;
  }
  .block.recent-posts-slider .slide-link > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .block.recent-posts-slider .posts-slider-text {
    display: flex;
    margin-left: 5.7%;
  }
  .block.recent-posts-slider .pre-posts-slider .text,
  .block.recent-posts-slider .post-posts-slider .slick-dots-container {
    flex: 1;
  }
  .block.recent-posts-slider .post-posts-slider {
    gap: 18.5774%;
  }
}
@media only screen and (min-width: 1024px) {

  .block.recent-posts-slider .col-1 {
    padding-right: 12.5%;
  }
}

.block.two-column-cta {
  padding-top: 0 !important;
}
.block.two-column-cta .fake-bg-img {
  aspect-ratio: 10.0699;
  background-image: url('../images/2-col-cta-bg.jpg');
  background-size: cover;
  position: relative;
}
.block.two-column-cta .fake-bg-img::after {
  background-color: rgba(0, 51, 102, 0.20);
  content: '';
  inset: 0;
  position: absolute;
}
.block.two-column-cta .fake-bg-img .img-frame {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.block.two-column-cta .fake-bg-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.block.two-column-cta .page_frame {
  padding-top: var(--paddingTop);
}
@media only screen and (max-width: 767px) {

  .block.two-column-cta .fake-bg-img {
    aspect-ratio: 2.7692;
    background-image: url('../images/2-col-cta-bg-mobile.jpg');
  }
}

.block.pie-chart-hero {
  --pageFrame: 1334px;
}
.block.pie-chart-hero .all-cols-wrap .col-1 svg {
  height: auto;
  max-width: 100%;
}
.block.pie-chart-hero .switch-chart-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='15' viewBox='0 0 10 15' fill='none'%3E%3Cpath d='M0.468555 2.44504L6.13286 7.49625L0.468555 12.555C-0.156185 13.117 -0.156185 14.0164 0.468555 14.5784C1.09329 15.1405 2.10954 15.1405 2.74261 14.5784L9.53144 8.51549C10.1562 7.95341 10.1562 7.05408 9.53144 6.492L2.74261 0.421559C2.10954 -0.14052 1.09329 -0.14052 0.468555 0.421559C-0.156185 0.983637 -0.156185 1.88296 0.468555 2.44504Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  height: 37px;
  width: 37px;
}
.block.pie-chart-hero .page-link-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55' height='55' viewBox='0 0 55 55' fill='none'%3E%3Ccircle cx='27.5' cy='27.5' r='26.5' stroke='white' stroke-width='2'/%3E%3Cpath d='M22.656 20.4231L30.586 27.4948L22.656 34.5769C21.7813 35.3639 21.7813 36.6229 22.656 37.4098C23.5306 38.1967 24.9534 38.1967 25.8397 37.4098L35.344 28.9217C36.2187 28.1348 36.2187 26.8757 35.344 26.0888L25.8397 17.5902C24.9534 16.8033 23.5306 16.8033 22.656 17.5902C21.7813 18.3771 21.7813 19.6361 22.656 20.4231Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 55px;
  width: 55px;
}
.block.pie-chart-hero [data-switch-text],
.block.pie-chart-hero [data-text],
.block.pie-chart-hero path[fill^="url(#pattern_)"] {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1), visibility 4s cubic-bezier(.4,0,.2,1);
  visibility: visible;
}
.block.pie-chart-hero .fading-out {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}
.block.pie-chart-hero .really-hide {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.block.pie-chart-hero .header-text .h6-style,
.block.pie-chart-hero .header-text h6:not(:where(.h1-style, .h2-style, .h3-style, .h4-style, .h5-style)) {
  letter-spacing: 0.1em;
  margin-bottom: 1.1em;
}
.block.pie-chart-hero .header-text .h1-style,
.block.pie-chart-hero .header-text h1:not(:where(.h2-style, .h3-style, .h4-style, .h5-style, .h6-style)) {
  font-size: clamp(40px, 5.47vw, 70px);
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 767px) {

  .block.pie-chart-hero .all-cols-wrap .col-1 {
    margin-bottom: 40px;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg {
    overflow: visible;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg foreignObject,
  .block.pie-chart-hero .header-text .page-link-button {
    display: none;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position="0"] {
    animation: positionHighlight 3s cubic-bezier(.4,0,.2,1) 0s infinite;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position="1"] {
    animation: positionHighlight 3s cubic-bezier(.4,0,.2,1) 1s infinite;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position="2"] {
    animation: positionHighlight 3s cubic-bezier(.4,0,.2,1) 2s infinite;
  }  
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position].turn-off-animation {
    animation: none !important;
  }
  @keyframes positionHighlight {
    0% {
      stroke: rgba(255, 255, 255, 0.00);
      stroke-width: 0px;
      filter: drop-shadow(0 0 0px #FFF);
    }
    16.5% {
      stroke: rgba(255, 255, 255, 0.50);
      stroke-width: 2px;
      filter: drop-shadow(0 0 10px #FFF);
    }
    33% {
      stroke: rgba(255, 255, 255, 0.00);
      filter: drop-shadow(0 0 0px #FFF);
    }
  }  
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position].active-state .path-opacity {
    fill-opacity: 0;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 {
    position: relative;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text {
    display: inline;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text p {
    align-items: flex-end;
    display: flex;
    margin-bottom: 0;
    max-width: 50%;
    pointer-events: none;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    width: min-content;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text p::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='9' viewBox='0 0 6 9' fill='none'%3E%3Cpath d='M0.281133 1.46702L3.67972 4.49775L0.281133 7.53297C-0.093711 7.87022 -0.093711 8.40982 0.281133 8.74706C0.655977 9.08431 1.26572 9.08431 1.64556 8.74706L5.71887 5.10929C6.09371 4.77205 6.09371 4.23245 5.71887 3.8952L1.64556 0.252935C1.26572 -0.0843118 0.655977 -0.0843118 0.281133 0.252935C-0.093711 0.590182 -0.093711 1.12978 0.281133 1.46702Z' fill='white'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    margin-bottom: 8px;
    margin-left: 8px;
    min-height: 9px;
    min-width: 6px;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text p[data-text="0"] {
    left: 25%;
    top: 33%;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text p[data-text="1"] {
    left: 75%;
    top: 33%;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text p[data-text="2"] {
    left: 50%;
    top: 75%;
  }
}
@media only screen and (min-width: 768px) {

  .block.pie-chart-hero {
    background-color: transparent !important;
  }
  .block.pie-chart-hero .all-cols-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 {
    grid-row-start: 1;
    grid-row-end: 3;    
    max-width: 626px;
    position: relative;
    z-index: 1;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg {
    width: 100%;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg.pie-chart {
    transition: transform 0.25s linear;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg.pie-chart.faux-rotate {
    transform: rotate(360deg);
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg .path-fill-image {
    transition: opacity 0.5s linear;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position="1"] .path-opacity {
    fill: black;
    fill-opacity: 0.3;
  }
  .block.pie-chart-hero .all-cols-wrap .col-1 svg [data-position="1"] foreignObject,
  .block.pie-chart-hero .all-cols-wrap .col-1 .mobile-text {
    display: none;
  }
  .block.pie-chart-hero .all-cols-wrap .col-2,
  .block.pie-chart-hero .all-cols-wrap .col-2 > * {
    position: relative;
  }
  .block.pie-chart-hero .all-cols-wrap .col-2::before {
    background-color: var(--backgroundColor);
    bottom: 0; 
    content: '';
    left: -9999px;
    position: absolute;
    right: calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2);
    right: -9999px;
    top: calc(var(--paddingTop) * -1);
  }
  .block.pie-chart-hero .all-cols-wrap .col-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -21%;
    padding-bottom: 10px;
    padding-right: 15%;
    padding-top: 31px;
  }
  .block.pie-chart-hero .all-cols-wrap .col-3 {
    color: rgb(var(--textDark));
    padding-left: 14%;
    padding-right: 5%;
    padding-top: 30px;
  }
  .block.pie-chart-hero .header-text {
    align-items: flex-end;
    display: flex;
    gap: 5%;
  }
  .block.pie-chart-hero .header-text .page-link-button {
    align-items: flex-end;
    flex: 0 0 55px;
    margin-bottom: 35px;
  }
}

.block.services-hero {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.block.services-hero .text h6,
.block.services-hero .text .h6-style {
  letter-spacing: 0.1em;
}
.block.services-hero.banner-padding-bottom__less + .services-hero-sub-block {
  --paddingBottom: calc(var(--padLess) * 2.25);
}
.block.services-hero.banner-padding-bottom__normal + .services-hero-sub-block {
  --paddingBottom: var(--padMore);
}
.block.services-hero.banner-padding-bottom__more + .services-hero-sub-block {
  --paddingBottom: 7.5rem;
}
.block.services-hero .link-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M10.4514 9.08449L14.2786 12.4975L10.4514 15.9155C10.0292 16.2953 10.0292 16.9029 10.4514 17.2827C10.8735 17.6625 11.5601 17.6625 11.9879 17.2827L16.5749 13.1861C16.9971 12.8064 16.9971 12.1987 16.5749 11.8189L11.9879 7.71727C11.5601 7.33749 10.8735 7.33749 10.4514 7.71727C10.0292 8.09705 10.0292 8.70471 10.4514 9.08449Z' fill='white'/%3E%3Ccircle cx='12.5' cy='12.5' r='11.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 25px;
  width: 25px;
}
.services-hero-sub-block {
  padding-bottom: var(--paddingBottom);
  padding-top: 10px;
}
.block.services-hero svg .text,
.block.services-hero svg .text a,
.services-hero-sub-block svg .text,
.services-hero-sub-block svg .text a {
  color: #fff;
}
.block.services-hero .block__bg-img .img-frame::after {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 57.89%, rgba(0, 0, 0, 0.80) 100%);
  content: '';
  inset: 0;
  position: absolute;
}
@media only screen and (max-width: 767px) {

  .block.services-hero {
    margin-bottom: -10vw;
  }
  .block.services-hero svg.desktop-svg {
    display: none;
  }
  .block.services-hero .page_frame {
    padding-bottom: 10vw;
  }
  .block.services-hero .block__bg-img .img-frame::after {
    background-color: rgba(0, 25, 51, 0.3);
    content: '';
    inset: 0;
    position: absolute;
  }
  .block.services-hero .mobile-divider {
    background-color: #fff;
    bottom: -1px;
    clip-path: polygon(0% 0%, 50% 10vw, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    height: 10vw;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .block.services-hero .all-cols-wrap {
    padding-top: calc(var(--paddingTop) + 140px);
    position: relative;
  }
  .block.services-hero .text {
    text-align: center;
  }
  .block.services-hero .text .h1-style,
  .block.services-hero .text h1:not(:where(.h2-style, .h3-style, .h4-style, .h5-style, .h6-style)) {
    font-size: clamp(40px, 5.47vw, 70px);
  }
  .services-hero-sub-block.two_col_content .all-cols-wrap .col-1 {
    margin-bottom: 45px;
  }
  .services-hero-sub-block .mobile-svg-wrapper {
    display: flex;
    gap: 10px;
    margin-left: calc(var(--pageFramePadding) * -1);
    margin-right: calc(var(--pageFramePadding) * -1);
  }
  .services-hero-sub-block svg.mobile-svg {
    flex: 1;
    height: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {

  .block.services-hero {
    background-image: linear-gradient(to top, #fff 40px, transparent 40px);
  }
  .block.services-hero .block__bg-img {
    aspect-ratio: 2.6087;
    height: auto;
    left: auto;
    opacity: 1 !important;
    margin-left: min(max(calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2), -90px), calc(var(--pageFramePadding) * -1));
    /* margin-right: min(max(calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2), -90px), calc(var(--pageFramePadding) * -1)); */
    margin-right: min(calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2), calc(var(--pageFramePadding) * -1));
    position: relative;
    top: auto;
    width: auto;
  }
  .block.services-hero.background-image-opacity__light .block__bg-img img {
    opacity: 0.3;
  }
  .block.services-hero.background-image-opacity__medium .block__bg-img img {
    opacity: 0.5;
  }
  .block.services-hero.background-image-opacity__strong .block__bg-img img {
    opacity: 0.7;
  }
  .block.services-hero.background-image-opacity__full .block__bg-img img {
    opacity: 1;
  }  
  .block.services-hero .block__bg-img .img-frame {
    background-color: var(--backgroundColor);
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 17% 100%, 0% 20%); */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 20.3% 100%);
    left: -4.7%;
    right: 0;    
    width: auto;
  }
  .block.services-hero svg.desktop-svg {
    position: absolute;
    bottom: -417px;
    bottom: calc(-394px - (100vw - 768px) * 0.02827);
    left: 0;
    left: calc(-3px + (100vw - 768px) * 0.00446);
    width: 32%;
    max-width: 451px;
    transform: translateY(-50%);
  }
  .block.services-hero .all-cols-wrap {
    display: flex;
    flex-direction: column;
    inset: 0 var(--pageFramePadding) var(--paddingBottom) var(--pageFramePadding);
    justify-content: flex-end;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }
  .block.services-hero .col-1 {
    padding-left: 31.2%;
  }
  .block.services-hero .col-1 .text {
    pointer-events: auto;
  }
  .services-hero-sub-block {
    padding-top: 41px;
  }
  .services-hero-sub-block .page_frame {
    pointer-events: none;
  }
  .services-hero-sub-block .col-2 .text {
    pointer-events: auto;
  }
  .services-hero-sub-block .all-cols-wrap {
    margin-left: 0;
    margin-right: 0;
  }
  .services-hero-sub-block .all-cols-wrap .col-1 {
    flex: 0 0 auto;     
    width: calc(31.2% - var(--pageFramePadding));
  }
  .services-hero-sub-block svg.mobile-svg {
    display: none;
  }
  .services-hero-sub-block .all-cols-wrap .col-2 {
    padding-right: 10%;
  }
}
@media only screen and (min-width: 1440px) {

  .block.services-hero {
    /* --pageFrame: none; */
  }
  .block.services-hero .page_frame {
    padding-left: 0;
    padding-right: 0;
  }
  .block.services-hero svg.desktop-svg {
    bottom: calc((1 / 1.2189189189) * -502px);
    /* left: calc((100vw - 1440px) * 0.166); */
    left: calc((100vw - 1340px) * 0.085);
  }
}

.block.two_col_content.image-and-text {
  --pageFrame: 1320px;

  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
.block.two_col_content.image-and-text .element__text {
  padding-bottom: var(--paddingBottom);
  padding-top: var(--paddingTop);
}
.block.two_col_content.image-and-text .element__image {
  margin-left: min(max(calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2), -90px), calc(var(--pageFramePadding) * -1));
  margin-right: min(max(calc((100vw - var(--pageFrame) + (var(--pageFramePadding) * 2)) / -2), -90px), calc(var(--pageFramePadding) * -1));
}
.block.two_col_content.image-and-text .img-frame {
  font-size: 0;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {

  .block.two_col_content.image-and-text.reverse-columns__yes.two_col_content .all-cols-wrap .col-1,
  .block.two_col_content.image-and-text.reverse-columns__yes.two_col_content .all-cols-wrap .col-2 {
    order: initial;
  }
}
@media only screen and (min-width: 768px) {

  .block.two_col_content.image-and-text .all-cols-wrap .col {
    margin-bottom: 0px;
  }
  .block.two_col_content.image-and-text .all-cols-wrap .col-1 {
    align-self: stretch;
    flex: 0 0 auto;
    width: 27%;
  }
  .block.two_col_content.image-and-text .all-cols-wrap .col-1 .element__image,
  .block.two_col_content.image-and-text .all-cols-wrap .col-1 .element__image .img-frame,
  .block.two_col_content.image-and-text .all-cols-wrap .col-1 .element__image .img-frame img {
    height: 100%;
  }
  .block.two_col_content.image-and-text .all-cols-wrap .col-1 .element__image .img-frame img {
    object-fit: cover;
  }
  .block.two_col_content.image-and-text:not(.reverse-columns__yes) .all-cols-wrap .col-2 {
    padding-left: 5.3%;
    padding-right: 8%;
  }
  .block.two_col_content.image-and-text.reverse-columns__yes .all-cols-wrap .col-2 {
    padding-left: 8%;
    padding-right: 5.3%;
  }
  .block.two_col_content.image-and-text.reverse-columns__yes .element__image {
    margin-left: 0px;
  }
  .block.two_col_content.image-and-text:not(.reverse-columns__yes) .element__image {
    margin-right: 0px;
  }
}

.block.team-grid {
  --pageFrame: 1336px;
}
.block.team-grid .col-1 > .text {
  margin-bottom: 35px;
}
.block.team-grid ul:where(.team-grid, .team-slider) {
  list-style-type: none;
  margin: 0px;
}
.block.team-grid ul:where(.team-grid, .team-slider) li {
  aspect-ratio: 1;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.block.team-grid ul:where(.team-grid, .team-slider) li .text {
  bottom: 0;
  color: #fff;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
.block.team-grid ul:where(.team-grid, .team-slider) li a .img-frame {
  transition: transform 0.5s linear;
  transform: scale(1);
}
.block.team-grid ul:where(.team-grid, .team-slider) li a:hover .img-frame {
  transform: scale(1.1);
}
.block.team-grid ul:where(.team-grid, .team-slider) li .img-frame::after {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 71.07%, rgba(0, 0, 0, 0.60) 100%);
  content: '';
  inset: 0;
  position: absolute;
}
.block.team-grid ul.team-slider .slick-next,
.block.team-grid ul.team-slider .slick-prev {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #09C;
  border-radius: 50%;
  height: 27px;
  width: 27px;
}
.block.team-grid ul.team-slider .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M0.327988 1.79303L4.293 5.49725L0.327988 9.20697C-0.109329 9.61916 -0.109329 10.2787 0.327988 10.6909C0.765306 11.103 1.47668 11.103 1.91983 10.6909L6.67201 6.24469C7.10933 5.8325 7.10933 5.17299 6.67201 4.7608L1.91983 0.309143C1.47668 -0.103048 0.765306 -0.103048 0.327988 0.309143C-0.109329 0.721334 -0.109329 1.38084 0.327988 1.79303Z' fill='%230099CC'/%3E%3C/svg%3E");
  transform: translateX(100%) translateY(-50%);
}
.block.team-grid ul.team-slider .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M6.67201 9.20697L2.707 5.50275L6.67201 1.79303C7.10933 1.38084 7.10933 0.721334 6.67201 0.309143C6.23469 -0.103048 5.52332 -0.103048 5.08017 0.309143L0.327988 4.75531C-0.10933 5.1675 -0.10933 5.82701 0.327988 6.2392L5.08017 10.6909C5.52332 11.103 6.23469 11.103 6.67201 10.6909C7.10933 10.2787 7.10933 9.61916 6.67201 9.20697Z' fill='%230099CC'/%3E%3C/svg%3E");
  transform: translateX(-100%) translateY(-50%);
}
.block.team-grid ul.team-slider .slick-next::before,
.block.team-grid ul.team-slider .slick-prev::before {
  content: none;
}
@media only screen and (min-width: 600px) {

  .block.team-grid ul.team-grid {
    display: flex;
  }
  .block.team-grid ul.team-grid li {
    flex: 1;
  }
}
@media only screen and (min-width: 1400px) {

  .block.team-grid ul.team-slider .slick-next {
    right: -30px;
  }
  .block.team-grid ul.team-slider .slick-prev {
    left: -30px;
  }
}

.block.two_col_content.hero {
}
@media only screen and (max-width: 767px) {

  .block.two_col_content.hero .all-cols-wrap :where(.col-1, .col-2) .text {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {

  .block.two_col_content.hero .all-cols-wrap {
    align-items: stretch;
    margin-top: 250px;
    padding-right: 0;
  }
  .block.two_col_content.hero.align-columns__middle .col-1,
  .block.two_col_content.hero.align-columns__middle .col-2,
  .block.two_col_content.hero.align-columns__bottom .col-1,
  .block.two_col_content.hero.align-columns__bottom .col-2 {
    display: flex;
    flex-direction: column;
  }
  .block.two_col_content.hero.align-columns__middle .col-1,
  .block.two_col_content.hero.align-columns__middle .col-2 {
    justify-content: center;
  }
  .block.two_col_content.hero.align-columns__bottom .col-1,
  .block.two_col_content.hero.align-columns__bottom .col-2 {
    justify-content: flex-end;
  }
  .block.two_col_content.hero .text > *:last-child {
    margin-bottom: 0;
  }
  .block.two_col_content.hero .col-1 .text {
    text-align: right;
  }
}

.block.client-portals {
  --pageFrame: 1500px;

  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.block.client-portals .col-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: var(--paddingBottom);
  padding-top: var(--paddingTop);
}
.block.client-portals .col-1,
.block.client-portals .col-2,
.block.client-portals .col-2 .img-frame {
  margin-bottom: 0;
}
.block.client-portals .col-1::after {
  background-color: rgba(51, 51, 51, 0.2);
  bottom: 0px;
  content: '';
  height: 1px;
  left: var(--pageFramePadding);
  position: absolute;
  right: var(--pageFramePadding);
}
.block.client-portals .page_frame:last-child .col-1::after {
  content: none;
}
.block.client-portals .col-2 {
  aspect-ratio: 0.9513;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block.client-portals .col-2 .element__image::after {
  content: '';
  inset: 0;
  position: absolute;
}
.block.client-portals .page_frame:nth-child(1n) .col-2 .element__image::after {
  background-color: rgba(0, 38, 76, 0.7);
}
.block.client-portals .page_frame:nth-child(1n) .col-2 .text .button {
  background-color: #FF9900;
}
.block.client-portals .page_frame:nth-child(2n) .col-2 .element__image::after {
  background-color: rgba(0, 153, 204, 0.7);
}
.block.client-portals .page_frame:nth-child(2n) .col-2 .text .button {
  background-color: #003366;
}
.block.client-portals .page_frame:nth-child(3n) .col-2 .element__image::after {
  background-color: rgba(255, 153, 0, 0.7);
}
.block.client-portals .page_frame:nth-child(3n) .col-2 .text .button {
  background-color: #0099CC;
}
.block.client-portals .page_frame:nth-child(4n) .col-2 .element__image::after {
  background-color: rgba(0, 51, 102, 0.7);
}
.block.client-portals .page_frame:nth-child(4n) .col-2 .text .button {
  background-color: #FF9900;
}
@media only screen and (max-width: 767px) {

  /* .block.client-portals .all-cols-wrap {
    flex-direction: column-reverse;
  } */
  .block.client-portals .all-cols-wrap .col-2 {
    margin-left: calc(var(--pageFramePadding) * -1);
    margin-right: calc(var(--pageFramePadding) * -1);
  }
}
@media only screen and (min-width: 768px) {

  .block.client-portals .col-1 {
    padding-left: 11.4%;
    padding-right: 6%;
    padding-top: calc(var(--paddingTop) + 30px);
  }
  .block.client-portals .col-1::after {
    /* left: calc(var(--pageFramePadding) + 11.4%);
    right: calc(var(--pageFramePadding) + 6%); */
  }
  .block.client-portals .col-2 {
    max-width: 547px;
  }
}
