/*
Theme name: HW Partners
Description: Custom Theme
Version: 9.0.1
*/

/*
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {

  --clr-primary500: #2D4A83;
  --clr-primary700: #1B2D55;
  --clr-secondary50: #FFF5ED;
  --clr-secondary100: #FFEBDB;
  --clr-secondary300: #FFB172;
  --clr-secondary500: #FF9D4D;
  --clr-secondary700: #C05700;
  --clr-greyscale100: #F7F7F7;
  --clr-greyscale200: #E5E5E5;
  --clr-greyscale300: #CCCCCC;
  --clr-greyscale400: #B3B3B3;
  --clr-greyscale500: #999999;
  --clr-greyscale600: #7F7F7F;
  --clr-greyscale700: #666666;
  --clr-greyscale800: #4C4C4C;
  --clr-greyscale900: #24262E;
  --clr-white: #ffffff;

  --clr-text: var(--clr-greyscale900);
  --clr-text-light: var(--clr-greyscale600);
  --clr-text-reverse: white;

  /* widths */
  --width-content: 1480px;
  --width-gutter: 60px;
  /* heights */
  --height-header: 148px;
  /* spacing */
  --b-space-lg: 200px;
  --b-space: 96px;
  --b-space-sm: 72px;
  --b-space-xsm: 48px;
  /* font family */
  --ff-body: "Work Sans", sans-serif;
  --ff-heading: "Poppins", sans-serif;
  /* font sizes */
  --fs-h1: 3.75rem;
  --fs-h2: 2.5rem;
  --fs-h3: 1.875rem;
  --fs-h4: 1.5rem;
  --fs-h5: 1.0625rem;
  --fs-h6: 1.0625rem;
  --fs-p-lg: 1.4375rem;
  --fs-p-sm: 1.0625rem;
  --fs-p: 1.125rem;
  --fs-p-xsm: .875rem;

  /* override wp vars */
  --wp--preset--font-size--lg: var(--fs-p-lg);
  --wp--preset--font-size--md: var(--fs-p);
  --wp--preset--font-size--sm: var(--fs-p-sm);
  --wp--preset--font-size--xsm: var(--fs-p-xsm);

}

@media screen and (max-width:1230px) {
  :root {
    --height-header: 120px;
  }
}

@media screen and (max-width:980px) {
  :root {
    --width-gutter: 3.75rem;
  }
}

@media screen and (max-width:853px) {

  :root {
    --height-header: 75px;
  }

}

@media screen and (max-width:600px) {
  :root {
    --height-header: 60px;
    /* font sizes */

    --fs-h1: 2.5rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;

    --fs-p-lg: 1.2rem;
    --fs-p-sm: 1rem;

    /* spacing */
    --b-space-lg: 80px;
    --b-space: 68px;
    --b-space-sm: 56px;

    --width-gutter: 1.5rem;
  }
}

@media screen and (max-width:480px) {
  :root {
    --fs-h1: 2.25rem;
  }
}

/* utilities */

.u-wc {
	width:100%;
	max-width: var(--width-content);
  padding: 0 var(--width-gutter);
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}


.u-wc--full {
  max-width: 100%;
  padding: 0;
}

.u-wc--wide {
  max-width: 1500px;
}

.u-wc--md {
  max-width: 1030px;
}

.u-wc--sm {
  max-width: 980px;
}

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

.u-text-reverse {
  color: var(--clr-text-reverse);
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  line-height: 1.525;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

/* @media screen and (max-width: 600px) {
  body {
    line-height: 1.4;
  }
} */

b, strong {
  font-weight: 700;
}

.content-wrap {
  overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  font-weight: 600;
  color: var(--clr-primary500);
}


h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  font-weight: 500;
  margin: calc(var(--b-space) * 1/3) 0 1.75rem;
  color: var(--clr-primary500);
}

h2.has-hero-font-size {
  font-weight: 600;
}

h2:first-child, .h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 2.5rem 0 1.25rem;
  font-weight: 500;
}

.wp-block-image + h3 {
  margin-top: 1rem;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.4;
  margin: 2rem 0 .75rem;
  font-weight: 500;
}

.wp-block-image + h4 {
  margin-top: 1rem;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
  font-weight: 700;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}

h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
  padding: 1rem 1.5rem;
  width: max-content;
  max-width: 100%;
}

p {
  margin-bottom: 1.625rem;
}

p:last-child {
  margin-bottom: 0;
}

.has-sm-font-size {
  font-size: var(--fs-p-sm);
}

p.has-sm-font-size {
  margin-bottom: 1rem;
}

p.has-sm-font-size:last-child {
  margin-bottom: 0;
}

p.has-lg-font-size {
  font-size: var(--fs-p-lg);
  margin-bottom: 2rem;
font-weight: 500;
}

.has-xsm-font-size {
  font-size: var(--fs-p-xsm);
}

p.is-style-overline {
  font-size: var(--fs-p-lg);
  font-family: var(--ff-heading);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.is-style-overline + h2 {
  margin-top: 0;
}

@media screen and (max-width: 1120px) {
  .is-style-overline + .wp-block-columns {
    margin-top: 0 !important;
  }
}

.is-sticky-sidebar {
  position: sticky;
  top: 1rem;
}

.is-layout-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 1.5rem
}

.is-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.is-nowrap {
  flex-wrap: nowrap;
}


.is-content-justification-left {
  justify-content: flex-start;
}

.is-content-justification-right {
  justify-content: flex-end;
}

.is-content-justification-center {
  justify-content: center;
}

.is-vertically-aligned-center {
  align-self: center;
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.5rem;
  margin: 0 0 1.625rem;
}

ul.has-sm-font-size:last-child {
  margin-bottom: 0;
}

.wp-block-list {
  padding-left: 0;
}

.wp-block-list li {
  display: flex;
  gap: 1rem;
  padding-left: 0;
  align-items: baseline;
}

.wp-block-list li:before {
  content: '';
  background: var(--clr-secondary700);
  border-radius: 50%;
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
  position: relative;
  bottom: 1px;
}

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 0 0 1.625rem;
  padding-left: 1.5rem;
}


ol.has-sm-font-size:last-child {
  margin-bottom: 0;
}

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: .5rem;
  margin-bottom: .5rem;
}

li:last-child {
  margin-bottom: 0;
}

a, a:focus{
   outline: 0;
}

a {
  color: var(--clr-primary500);
  text-decoration: none;
	transition: .3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-secondary500);
}


img, svg{
	max-width:100%;
	height:auto;
}

.wp-block-separator, hr {
  display: block;
  padding: 0;
  height: 1px;
  background: var(--clr-greyscale200);
  margin: calc(var(--b-space) / 2) 0;
  border: none !important;
}

.wp-block-separator.is-style-block-space {
  margin: var(--b-space) 0;
}


@media screen and (max-width: 600px) {
  hr, .wp-block-separator {
    margin: 2rem 0;
  }
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section--sm {
  padding: var(--b-space-sm) 0;
}

.c-section--xsm {
  padding: var(--b-space-xsm) 0;
}

.c-section--xlgbottom {
  padding-bottom: calc(var(--b-space) * 4)
}

.c-section--noTopPadding {
  padding-top: 0;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section__overlay {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, .8) 0%,
    rgba(0, 0, 0, .8) calc(50% - 740px),
    rgba(0, 0, 0, 0) calc(50% + 100px)
  );

}

@media screen and (max-width: 1400px) {
  .c-section__overlay {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, .8) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

.c-section__bgSlider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.c-section__bgSlider .owl-stage-outer, .c-section__bgSlider .owl-stage, .c-section__bgSlider .owl-item {
  height: 100% !important;
}

.c-section__bgSlider .owl-item  {
  animation-duration: 2s !important;
}

.c-section__bgSlider .owl-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.c-section .u-wc {
  position: relative;
  z-index: 4;
}

.wp-block-image {
  margin: 1.25rem 0;
}

.wp-block-image:first-child {
  margin-top: 0;
}

.wp-block-image:last-child {
  margin-bottom: 0;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.is-style-rounded-corners img, img.is-style-rounded-corners {
  border-radius: 1.5rem;
}

.is-vertically-aligned-center .wp-block-image img {
  margin-inline: auto;
}

.u-wc--full > .wp-block-image img {
  width: 100%;
}

.wp-block-image figcaption {
  text-transform: uppercase;
  font-size: 12px;
  color: #656565;
  margin: 0;
  padding: 12px 12px 0 12px;
  letter-spacing: .05em;
}

.wp-block-embed {
  margin: 40px auto;
}

.wp-block-embed iframe  {
  display: block;
  margin: 0 auto;
}

.wp-block-embed:first-child {
  margin-top: 0;
}

.wp-block-embed:last-child {
  margin-bottom: 0;
}

.wp-embed-aspect-4-3 iframe {
  aspect-ratio: 4 / 3;
  height: 100%;
  width: 100%;
}

.wp-embed-aspect-16-9 iframe {
  aspect-ratio: 16 / 9;
  height: 100%;
  width: 100%;
}

.wp-block-audio {
  width: 100%;
}

.wp-block-audio audio {
  display: block;
  min-width: initial;
}

.wp-block-list.is-style-checklist {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.wp-block-list.is-style-checklist li {
  display: flex;
  gap: .75rem;
  padding-left: 0;
}

.wp-block-list.is-style-checklist li:before {
  content: '';
  width: 1.4375rem;
  height: 1.375rem;
  flex-shrink: 0;
  position: relative;
  top: .25rem;
  background: url('imgs/icon-check.svg') no-repeat center center / 1.4375rem 1.375rem;
}

.wp-block-buttons {
  margin: 2.25rem 0;
  grid-gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wp-block-buttons:has(.is-style-tertiary) {
  margin: 1rem 0;
}

.wp-block-buttons:first-child {
  margin-top: 0;
}

.wp-block-buttons:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {

  .wp-block-buttons {
    margin: 1.5rem 0;
  }

  .wp-block-buttons:has(.is-style-tertiary) {
    margin: 1rem 0;
  }

}

.wp-block-button__link:disabled, .wp-block-button__link--disabled {
  opacity: .5;
  cursor: wait;
}

.wp-block-button__link {
  font-size: .875rem;
  font-family: var(--ff-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025rem;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: .3s background, .3s color, .3s border;
}

.wp-block-button__link svg {
  flex-shrink: 0;
  margin-left: auto;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link, .is-style-primary .wp-block-button__link {
  color: black;
  background: var(--clr-secondary500);
  padding: 1.125rem 2rem;
  border-radius: 99rem;
  box-shadow: 0px 2px 2px #0000001A;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover, .is-style-primary .wp-block-button__link:hover {
  color: black;
  background: var(--clr-secondary300);
}

.is-style-primary-grey .wp-block-button__link {
  color: black;
  background: var(--clr-greyscale300);
  padding: 1.125rem 2rem;
  border-radius: 99rem;
  box-shadow: 0px 2px 2px #0000001A;
}

.is-style-primary-grey .wp-block-button__link:hover {
  color: black;
  background: var(--clr-secondary300);
}

.is-style-secondary .wp-block-button__link {
  padding: 0;
  color: var(--clr-text);
  background: none;
  border: 3px solid var(--clr-secondary500);
  padding: calc(1.125rem - 3px)  calc(2rem - 3px);
  border-radius: 99rem;
  box-shadow: 0px 2px 2px #0000001A;
}

.c-section.has-primary-700-background-color .is-style-secondary .wp-block-button__link:not(:hover), .c-section.has-primary-500-background-color .is-style-secondary .wp-block-button__link:not(:hover) {
  color: white;
}

.is-style-secondary .wp-block-button__link:hover {
  background: var(--clr-secondary500);
}

.is-style-tertiary .wp-block-button__link {
  padding: 0;
  color: var(--clr-secondary700);
  text-transform: uppercase;
  background: none;
  font-size: 1rem;
  font-weight: 600;
}

.is-style-tertiary .wp-block-button__link:hover {
  color: var(--clr-secondary500);
}

.is-style-tertiary .wp-block-button__link svg {
  transition: .3s transform;
}

.is-style-tertiary .wp-block-button__link:hover svg {
  transform: translateX(.25rem);
}

.wp-block-button.is-style-mega {
  width: 100%;
}

.is-style-mega .wp-block-button__link {
  padding: 0;
  color: var(--clr-text);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: 0px 2px 2px #0000001A;
  font-family: var(--ff-heading);
  font-size: 1.875rem;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
  position: relative;
  text-align: left;
  line-height: 1.2;
  max-width: 280px;
}

.is-style-mega .wp-block-button__link:hover {
  color: var(--clr-secondary500);
}

.is-style-mega .wp-block-button__link svg {
  position: absolute;
  right: 0;
  bottom: -1.25rem;
  width: 4rem;
  transition: .3s transform;
}

.is-style-mega .wp-block-button__link:hover svg {
  transform: translateX(.25rem);
}

.is-style-mega .wp-block-button__link svg path {
  stroke-width: .75;
  stroke: var(--clr-secondary500);
}



@media screen and (max-width: 600px) {

  .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: .5rem;
  }

  .wp-block-buttons:has(.is-style-tertiary) {
    align-items: start;
  }

  .is-content-justification-center.wp-block-buttons {
    align-items: stretch;
  }

  .wp-block-button {
    flex-grow: 1;
  }

}

/*header styles*/

.c-mainHeader {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background:  white;
  height: var(--height-header);
  border-top: .25rem solid var(--clr-secondary700);
  box-shadow: 0 0 .5rem rgba(0,0,0,.1);
  padding: .5rem 0 1.25rem;
  transition: .3s background, .3s height, .3s opacity, .3s box-shadow;
}

.is-scrolled .c-mainHeader {
  box-shadow: 0 0 1rem rgba(0,0,0,.1);
}

.c-mainHeader .u-wc {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  height: 100%;
}

.c-mainHeader__right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-mainHeader__topActions {
  margin-left: auto;
  margin-bottom: auto;
}

.c-mainHeader__logo {
  display: block;
  align-self: end;
}

.c-mainHeader__logo img {
  display: block;
}

@media screen and (max-width: 1230px)  {
  .c-mainHeader {
    padding: 0;
  }
  .c-mainHeader .u-wc {
    align-items: center;
    gap: 2rem;
  }

  .c-mainHeader__logo {
    align-self: center;
  }
}


@media screen and (max-width: 853px)  {
  .c-mainHeader__logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 600px) {

  .c-mainHeader__logo {
    max-width: 80px;
  }

}

.c-mainHeader__btn {
  color: white;
  background: var(--clr-primary500);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  display: inline-flex;
  line-height: 1;
}

.c-mainHeader__btn:hover {
  background: var(--clr-primary600);
  color: white;
}

.c-mainHeader__search {
  position: relative;
}

.c-mainHeader__search input[type="text"] {
  font-size: .6875rem;
  font-weight: 400;
  width: 194px;
  border-radius: 99rem;
  padding: .5rem 1rem;
  border: none;
  outline: none;
  background: var(--clr-greyscale100);
}

.c-mainHeader__search input[type="submit"] {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: .75rem;
  width: .9375rem;
  box-shadow: none;
  padding: 0;
  background: transparent url('imgs/icon-search.svg') no-repeat center center / .9375rem .9375rem;
}

.c-mainHeader__search input[type="submit"]:hover {
  background: transparent url('imgs/icon-search.svg') no-repeat center center / .9375rem .9375rem;
}

.c-mainHeader__topActions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}


.c-mainHeader__topActions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-mainHeader__topActions li {
  padding: 0;
  margin: 0;
}

.c-mainHeader__topActions a {
  font-size: .875rem;
  font-family: var(--ff-heading);
  font-weight: 500;
  color: var(--clr-primary500);
  text-decoration: none;
  display: block;
}

.c-mainHeader__topActions a:hover {
  color: var(--clr-secondary500);
}

.c-mainHeader__menuWrap {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1230px)  {

  .c-mainHeader .u-wc {
    gap: .75rem;
  }

  .c-mainHeader__search {
    margin-left: auto;
  }

  .c-mainHeader__search input[type="text"] {
    display: none;
  }

  .c-mainHeader__search input[type="submit"] {
    position: static;
    background: transparent url('imgs/icon-search.svg') no-repeat center center / 1.25rem 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
  }

  .c-mainHeader__search input[type="submit"]:hover {
    background-color: var(--clr-greyscale100);
    background-size: 1.25rem 1.25rem;
  }

  .c-mainHeader__right {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .c-mainHeader__topActions {
    margin-bottom: 0;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 650px)  {
  .c-mainHeader__topActions ul  {
    display: none;
  }

  .c-mainHeader .u-wc {
    gap: 0;
  }
}


.c-mainMenu  {
  line-height: 1.5;
  margin: 0 0 -1.25rem;
  flex-grow: 1;
}

.c-mainMenu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  gap: 2.25rem;
}

.c-mainMenu .menu-item {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1231px) {
  .menu-item--mobile {
    display: none !important;
  }
}

.c-mainMenu .menu-item:last-child {
  margin-right: 0;
}

.c-mainMenu .menu-item > a {
  font-size: .875rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-primary500);
  position: relative;
  text-decoration: none;
  padding: 0;
  transition:.3s color, .3s border;
  display: block;
  text-wrap: nowrap;
}

.c-mainMenu .current-menu-item > a, .c-mainMenu .menu-item > a:hover {
  color: var(--clr-secondary500);
}

.c-mainMenu > ul > li > a {
  border-bottom: .25rem solid transparent;
  transition: .3s border;
  padding-bottom: .7rem !important;
}


.c-mainMenu > ul > li.current-menu-item > a, .c-mainMenu > ul > li:hover > a, .c-mainMenu > ul > li.current-menu-ancestor > a, .c-mainMenu > ul > li:focus-within > a {
  border-bottom: .25rem solid var(--clr-secondary500);
  color: var(--clr-primary500) !important;
}


.c-mainMenu li.menu-item--clients {
  margin-left: auto;
}

@media screen and (min-width: 1231px) {
  .c-mainMenu li.menu-item--talk {
    margin-left: 1.5rem;
  }

  .c-mainMenu li.menu-item--talk a::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    bottom: .75rem;
    width: 1px;
    top: 0;
    background: var(--clr-greyscale300);

  }
}



.c-mainMenu li.menu-item--talk a {
  position: relative;
  padding-right: 2.25rem;
}

.c-mainMenu li.menu-item--talk a:after {
  content: '';
  position: absolute;
  bottom: 1.25rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  background: url('imgs/icon-chat.svg') center center / 2rem 2rem;
}

.c-mainMenu li.menu-item--talk a:hover:after, .c-mainMenu li.menu-item--talk.current-menu-item a:after  {
	background-image: url('imgs/icon-chat-orange.svg');
}

.c-mainMenu li.menu-item-has-children {
  position: relative;
}

.c-mainMenu li.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.c-mainMenu .sub-menu .sub-menu a {
  text-wrap: wrap;
  font-weight: 400;
}

/* .c-mainMenu .menu-item-drop-arrow {
  --icon-size-width: .6875rem;
  --icon-size-height: .375rem;
  width: var(--icon-size-width);
  height: var(--icon-size-height);
  background: url('imgs/icon-menu-drop-arrow.svg') center center / var(--icon-size-width) var(--icon-size-height);
  transition: .3s transform;
}

.c-mainMenu .menu-item-has-children:hover > a .menu-item-drop-arrow, .c-mainMenu .menu-item-has-children:focus-within > a .menu-item-drop-arrow {
  transform: rotate(180deg);
} */

.c-mainMenu .sub-menu {
  padding: 1rem 0;
}

.c-mainMenu .sub-menu li {
  padding: .25rem 0;
  margin: 0;
}

.c-mainMenu .sub-menu li:first-child {
  border-top: 0;
  padding-top: 0;
}

.c-mainMenu .sub-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.c-mainMenu .sub-menu a, .c-mainMenu .mega-menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: nowrap;
  text-wrap: wrap;
}

.c-mainMenu .menu-item-has-children > a:after, .c-mainMenu .mega-menu-item > a:after {
  content: '';
  width: .75rem;
  height: .75rem;
  flex-shrink: 0;
  background: url('imgs/icon-drop-arrow.svg') no-repeat center center / .75rem .75rem;
  transition: .3s transform;
  display: none;
}

.c-mainMenu .menu-item-has-children:hover > a:after, .c-mainMenu .menu-item-has-children:focus-within > a:after, .c-mainMenu .mega-menu-item:hover > a:after, .c-mainMenu .mega-menu-item:focus-within > a:after  {
  transform: rotate(180deg);
}

@media screen and (min-width: 1231px) {

  .c-mainMenu .menu-item-has-children .menu-item-has-children > a:after {
    transform: rotate(-90deg);
  }

}

@media screen and (min-width: 651px) {
  .u-mobile-show  {
    display: none !important;
  }
}

.c-mainMenu .sub-menu .menu-item-drop-arrow {
  display: none;
}

.c-mainMenu .c-menuBtn a {
  color: white !important;
  background: var(--clr-primary500);
  padding: 1rem 1.25rem;
  font-size: 1rem !important;
  font-family: var(--ff-heading);
  font-weight: 600;
  display: inline-flex;
  line-height: 1;
}

.c-mainMenu .c-menuBtn {
  margin-bottom: 1rem;
  margin-top: .5rem;
}

.c-mainMenu .menu-item--secondary a  {
  font-size: 1rem !important;
  color: var(--clr-greyscale600);
  text-decoration: none;
  display: block;
}

.c-mainMenu .menu-item--secondary a:hover {
  color: var(--clr-secondary500);
}

@media screen and (min-width: 1231px) {

  .c-mainMenu .menu-item-has-children, .c-mainMenu .mega-menu-item {
    --dropdown-position-offset: 1rem;
    position: relative;
  }

  .c-mainMenu .mega-menu-item {
    position: static !important;
  }

  .c-mainMenu .menu-item-has-children:not(.mega-menu-item):after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: var(--dropdown-position-offset);
  }

  .c-mainMenu .sub-menu {
    width: 240px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: white;
    padding: 10px;
    left: -1.5rem;
    top: 100%;
    padding: 1.5rem;
    transform: translateY(-4px);
	  border-top: 1px solid var(--clr-greyscale200);
    box-shadow: 0px 2px 5px 0px #0000001A, 0px 9px 9px 0px #00000017, 0px 21px 12px 0px #0000000D, 0px 36px 15px 0px #00000003, 0px 57px 16px 0px #00000000;
    transition: .3s opacity, 0s visibility .3s, .3s transform;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu, .c-mainMenu .menu-item-has-children:focus-within > .sub-menu  {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transform: translateY(-1px);
  }

  .c-mainMenu .menu-item:not(.mega-menu-item) > .sub-menu .sub-menu {
    left: calc(100% + 1rem);
    transform: translateY(-4px);
    top: -1.5rem;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu .sub-menu, .c-mainMenu .menu-item-has-children:focus-within > .sub-menu .sub-menu  {
    transform: none;
  }

  .c-mainMenu .sub-menu {
    display: block !important;
  }

}

@media screen and (max-width: 1230px) {

  .c-mainHeader__menuWrap {
    width: 100%;
    margin: 0;
    height: 100%;
    margin-right: 0;
    background: white;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: var(--height-header);
    left: 0;
    right: 0;
    height: calc(100vh - var(--height-header));
    height: calc(100svh - var(--height-header));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    margin-left: 0;
    margin-right: 0;
    transition: .3s opacity, 0s visibility .3s;
    padding: var(--width-gutter);
  }

  .c-mainHeader__menuWrap--active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .c-mainMenu {
    width: 100%;
    margin: 0;
  }

  .c-mainMenu > ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: auto;
    width: 100%;
    gap: 1rem;
  }

  .c-mainMenu li {
    margin: 0;
    width: 100%;
  }

  .c-mainMenu > ul > li {
    margin: 0;
  }

  .c-mainMenu .menu-item > a {
    justify-content: space-between;
    font-size: 1.2rem;
  }

  .c-mainMenu .sub-menu {
    /* margin-left: 1rem; */
    display: none;
  }

  .c-mainMenu .sub-menu a {
    font-size: 1rem;
  }

  .menu-item-has-children-active > a .menu-item-drop-arrow {
    transform: rotate(180deg);
  }

  .c-mainMenu .menu-item-has-children > a:after, .c-mainMenu .mega-menu-item > a:after {
    display: block;
  }


}

@media screen and (max-width: 600px) {
  .c-mainMenu .menu-item > a {
    justify-content: space-between;
    font-size: 1.1rem;
  }

  .c-mainMenu .sub-menu a {
    font-size: 1rem;
  }
}


@media screen and (min-width: 1231px) {

  .c-megaMenu:before {
    content: '';
    height: var(--dropdown-position-offset);
    left: 0;
    right: 0;
    position: absolute;
    bottom: 100%;
    display: none;
  }

  .c-megaMenu {
    transform: translateY(8px);
    position: absolute;
    padding: 0;
    left: .5rem;
    right: .5rem;
    top: calc(100% + 1px);
    visibility: hidden;
    opacity: 0;
	 border-top: 1px solid var(--clr-greyscale200);
    transition: .3s opacity, 0s visibility .3s, .3s transform;
  }

  .c-megaMenu__wrap {
    max-width: var(--width-content);
	  width: 100%;
    background: white;
    display: flex;
    gap: 3.5rem;
    margin: 0 auto;
    padding: var(--b-space-sm) var(--width-gutter);
  }

  .c-mainMenu .mega-menu-item:hover > .c-megaMenu, .c-mainMenu .mega-menu-item:focus-within > .c-megaMenu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transform: translateY(-1px);
  }

  .c-megaMenu__content {
    width: 287px;
    flex-shrink: 0;
  }

  .c-megaMenu__cols {
    flex-grow: 1;
    min-width: 0;
    margin-bottom: -2rem;
  }

  .c-megaMenu .sub-menu {
    all: unset;
    transform: none !important;
  }

  .c-megaMenu .c-megaMenu__cols > .sub-menu > li  {
    padding: 0 0 2rem 0;
  }

  .c-megaMenu .sub-menu .sub-menu {
    margin-top: .5rem;
  }

  .c-megaMenu .sub-menu .sub-menu a {
    color: var(--clr-text);
  }

  .c-megaMenu .sub-menu .sub-menu a:hover {
    text-decoration: underline;
  }

  .c-megaMenu__cols > .sub-menu {
    column-count: 4;
    gap: 2rem;
  }

  .c-megaMenu__cols .menu-item-has-children {
    break-inside: avoid;
  }

  .c-megaMenu .menu-item-has-children > a::after {
    display: none;
  }
}

.c-megaMenu__thumb img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 3.5rem;
  max-width: 400px;
}

.c-megaMenu .menu-item {
  margin: 0;
}

.c-megaMenu .menu-item > a {
  padding: 0;
}

@media screen and (min-width: 1231px) {
  .c-megaMenu {
    display: flex !important;
  }
}

@media screen and (max-width: 1230px) {
  .c-megaMenu {
    position: static;
    display: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .c-megaMenu__content {
    margin-bottom: 1rem;
  }

  .c-megaMenu__cols .sub-menu .sub-menu {
    margin-left: 0;
  }
}


.c-navIcon {
  position: relative;
  padding: 0;
  width: 51px;
  height: 51px;
  background: none;
  /* background: var(--clr-primary500); */
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  margin-right: -12px;
  transition: .3s background;
  border-radius: 50%;
}

.c-navIcon:before,
.c-navIcon:after {
  content: "";
  width: 21px;
  height: 2px;
  position: absolute;
  left: 15px;
  background: var(--clr-primary500);
  transition: .3s transform, .3s top, .3s bottom, .3s width;
}

.c-navIcon:before {
  width: 14px;
}

.c-navIcon span {
  width: 21px;
  height: 2px;
  position: absolute;
  top: 25px;
  left: 15px;
  background: var(--clr-primary500);
  transition: .3s opacity;
}

.c-navIcon:before {
  top: 18px;
}

.c-navIcon:after {
  bottom: 17px;
}

/* @media (hover: hover) and (pointer: fine) {

  .c-navIcon:not(.c-navIcon--active):hover:before {
    top: 24px;
    width: 21px;
  }

  .c-navIcon:not(.c-navIcon--active):hover:after {
    bottom: 24px;
    transform: rotate(90deg);
  }

  .c-navIcon:hover span {
    opacity: 0;
  }
} */

.c-navIcon--active:before {
  top: 24px;
  transform: rotate(45deg);
  width: 21px;
}

.c-navIcon--active:after {
  bottom: 25px;
  transform: rotate(135deg);
}

.c-navIcon--active span  {
  opacity: 0;
}


@media screen and (max-width: 1230px) {

  .c-navIcon {
    display: flex;
  }
}

/* gutenberg block / group styling */

.has-primary-50-background-color {
  background-color: var(--clr-primary50);
}

.has-primary-500-background-color {
  background-color: var(--clr-primary500);
  color: var(--clr-text-reverse);
}

.has-primary-700-background-color {
  background-color: var(--clr-primary700);
  color: var(--clr-text-reverse);
}

.has-accent-500-background-color {
  background-color: var(--clr-accent500);
}

.has-secondary-500-background-color {
  background-color: var(--clr-secondary500);
  color: var(--clr-text);
}

.has-secondary-700-background-color {
  background-color: var(--clr-secondary700);
  color: var(--clr-text);
}

.has-white-background-color {
  background-color: white;
  color: var(--clr-text);
}

.has-grey-900-background-color {
  background-color: var(--clr-greyscale900);
  color: var(--clr-text-reverse);
}

.has-grey-800-background-color {
  background-color: var(--clr-greyscale800);
  color: var(--clr-text-reverse);
}

.has-grey-700-background-color {
  background-color: var(--clr-greyscale700);
  color: var(--clr-text-reverse);
}

.has-grey-600-background-color {
  background-color: var(--clr-greyscale600);
  color: var(--clr-text-reverse);
}

.has-grey-500-background-color {
  background-color: var(--clr-greyscale500);
  color: var(--clr-text-reverse);
}

.has-grey-400-background-color {
  background-color: var(--clr-greyscale400);
  color: var(--clr-text-reverse);
}

.has-grey-300-background-color {
  background-color: var(--clr-greyscale300);
  color: var(--clr-text-reverse);
}

.has-grey-200-background-color {
  background-color: var(--clr-greyscale200);
  color: var(--clr-text-reverse);
}

.has-grey-100-background-color {
  background-color: var(--clr-greyscale100);
  color: var(--clr-text);
}

.has-primary-50-color {
  color: var(--clr-primary50);
}

.has-primary-500-color {
  color: var(--clr-primary500);
}

.has-primary-900-color {
  color: var(--clr-primary900);
}

.has-white-color {
  color: var(--clr-white);
}

.has-grey-100-color {
  color: var(--clr-greyscale100);
}

.has-grey-200-color {
  color: var(--clr-greyscale200);
}

.has-grey-300-color {
  color: var(--clr-greyscale300);
}

.has-grey-400-color {
  color: var(--clr-greyscale400);
}

.has-grey-500-color {
  color: var(--clr-greyscale500);
}

.has-grey-600-color {
  color: var(--clr-greyscale600);
}

.has-grey-700-color {
  color: var(--clr-greyscale500);
}

.has-grey-800-color {
  color: var(--clr-greyscale800);
}

.has-grey-900-color {
  color: var(--clr-greyscale900);
}

.wp-block-columns {
  margin: calc(var(--b-space) * 2/3) 0;
  grid-gap: 7%;
}

.has-background.wp-block-columns, .has-background.wp-block-column {
  padding: 3.75rem;
}

.wp-block-columns:first-child {
  margin-top: 0;
}

.wp-block-columns:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1120px) {

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    display: flex;
    flex-direction: column;
    grid-gap: 32px;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column:not(.u-fullRight) {
    width: 100% !important;
  }


}

@media screen and (max-width: 600px) {


  .has-background.wp-block-columns, .has-background.wp-block-column {
    padding: 2rem;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    grid-gap: 1.5rem !important;
  }

}


.wp-block-media-text {
  margin: var(--b-space) auto;
  column-gap: 6%;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text:first-child {
  margin-top: 0;
}


.wp-block-media-text:last-child {
  margin-bottom: 0;
}


.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.wp-block-media-text__content :first-child {
  margin-top: 0;
}

.wp-block-media-text > .wp-block-media-text__media {
  margin-left: calc(var(--width-gutter) * -1);
}

.wp-block-media-text__media img {
  border-radius: 13rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.has-media-on-the-right > .wp-block-media-text__media {
  margin-right: calc(var(--width-gutter) * -1);
  margin-left: 0;
}


@media screen and (max-width: 900px) {

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right {
    display: grid;
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    grid-row: 2 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right {
    padding-left: 0;
    padding-right: 0;
  }

}

@media screen and (max-width: 600px) {

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 100%;
  }

  .wp-block-media-text .wp-block-media-text__media {
    margin-top: 32px;
  }

  .wp-block-media-text {
    margin: 52px auto;
  }

  .wp-block-media-text:first-child {
    margin-top: 0;
  }

  .wp-block-media-text:last-child {
    margin-bottom: 0;
  }

  .wp-block-media-text__media img {
    border-radius: 6rem;
  }

}

.wpcf7, .wp-block-contact-form-7-contact-form-selector {
  margin: 48px auto;
}

@media screen and (max-width: 600px) {

  .wpcf7, .wp-block-contact-form-7-contact-form-selector  {
    margin: 32px 0;
  }
}

.wpcf7:first-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-top: 0;
}

.wpcf7:last-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-bottom: 0;
}

.wpcf7-spinner {
  vertical-align: middle;
}

.wpcf7__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 32px;
}
.wpcf7__disclaimer {
  font-size: var(--fs-p-sm);
  margin: 0;
}

.wpcf7__disclaimer a {
  color: white;
}

.wpcf7__footer .wp-block-button__link {
  flex-shrink: 0;
}

@media screen and (min-width: 601px) {

  .input-cols {
    display: flex;
  }

  .input-col {
    width: calc((99.99% - 12px) / 2);
    margin-right: 12px;
  }

  .input-col:last-child {
    margin-right: 0;
  }

}

label, legend, body .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 700;
  font-size: 1;
  margin: 0 0 .5rem 0;
  display: block;
  color: var(--clr-greyscale900)
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
body .gform_wrapper.gravity-theme input[type="email"],
body .gform_wrapper.gravity-theme input[type="text"],
body .gform_wrapper.gravity-theme input[type="tel"],
textarea,
select,
body .gform_wrapper.gravity-theme select {
  outline: none;
  display: block;
  width: 100%;
  border: none;
  border-radius: 99rem;
  padding: .75rem 1.5rem;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: inherit;
  background: white;
  border: 1px solid var(--clr-greyscale200);
  color: var(--clr-greyscale900);
  transition: .3s border, .3s background;
}

textarea, body .gform_wrapper.gravity-theme textarea, .gform_wrapper.gravity-theme .gfield textarea.large {
  height: 100px !important;
  border: 1px solid var(--clr-greyscale200);
  padding: .75rem 1.5rem;
  border-radius: 0;
  font-size: 1rem;
}


input[type="text"]::placeholder,
input[type="phone"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
body .gform_wrapper.gravity-theme input[type="email"]::placeholder,
body .gform_wrapper.gravity-theme input[type="text"]::placeholder,
body .gform_wrapper.gravity-theme input[type="tel"]::placeholder,
body .gform_wrapper.gravity-theme input[type="password"]::placeholder,
textarea::placeholder,
body .gform_wrapper.gravity-theme textarea::placholder {
  color: var(--clr-greyscale800);
  opacity: 1;
}


select,
body .gform_wrapper.gravity-theme select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/icon-drop-arrow.svg') no-repeat calc(100% - 1rem) center / .375rem .3125rem;
  color: var(--clr-text);
  padding-right: 1.5rem;
}

body .gform_wrapper.gravity-theme .gfield select[data-has-value="false"]  {
  color: var(--clr-greyscale600);
}


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

input[type="submit"] {
  font-size: .875rem;
  font-family: var(--ff-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025rem;
  color: white;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  color: black;
  background: var(--clr-secondary500);
  padding: 1.125rem 2rem;
  border-radius: 99rem;
  box-shadow: 0px 2px 2px #0000001A;
  transition: .3s background, .3s color, .3s border;
}


input[type="submit"]:hover {
  color: black;
  background: var(--clr-secondary300);
}

button[type="submit"]:focus {
  outline: none;
}

/* gravity forms styling */

.gform_wrapper {
  margin: 2rem 0 0;
}

.gform_wrapper:first-child {
  margin-top: 0;
}

.gform_wrapper:last-child {
  margin-bottom: 0;
}

.ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ginput_container.ginput_container_consent label {
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}

body .gform_wrapper.gravity-theme .field_sublabel_above .description, body .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, body .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
  font-size: var(--fs-p-sm);
  padding-bottom: 0;
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 28px 0 0;
  padding: 0;
}

body .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: 1px solid #c02b0a;
}

.gform_required_legend {
  display: none;
}

.gfield_validation_message {
  margin: 4px 0 !important;
  font-size: 13px !important;
  font-weight: 500;
  padding: 4px 8px !important;
  background: red;
  border-radius: 4px;
  color: white;
}

.gform-field-label--type-sub {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin: 0 0 8px 0;
}

.gfield_description {
  font-size: 16px;
  display: block;
  margin: 0 0 8px 0;
}

.gform_button input[type="submit"] {
  margin-right: 8px;
}

.gform_wrapper.gravity-theme .ginput_counter {
  color: var(--clr-text-light);
  font-size: 14px;
  display: block;
  margin: 0 0 14px 0;
}

.gf_clear_complex {
  display: none;
}

@media screen and (min-width: 601px) {

  .ginput_complex {
    display: flex;
    grid-gap: 24px;
  }
  .ginput_complex > span {
    flex-grow: 1;
  }
}

@media screen and (max-width: 600px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 12px;
  }

  body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 20px 0 0;
  }
}

.gform_validation_errors {
  background: var(--clr-greyscale100);
  color: var(--clr-text);
  outline: none;
  padding: 24px 24px;
  margin: 0 0 24px 0;
  border-radius: 4px;
  font-size: 16px;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.gform_submission_error  .gform-icon {
  display: none;
}

.gform_validation_errors ol {
  margin-top: 8px;
}

/* override silly gravity from style */

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme input:not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="file"]) {
    line-height: normal !important;
  }
}

.newsletter_wrapper {
  width: 475px;
  max-width: 100%;
}

body .newsletter_wrapper.gravity-theme .gform_footer {
  margin: 0 !important;
}

body .newsletter_wrapper.gravity-theme .gform_fields {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body .newsletter_wrapper .gfield--type-email {
  flex-grow: 1;
}

body .newsletter_wrapper .gfield--type-email input[type="email"] {
  font-size: 1.125rem;
  border-radius: 99rem;
  padding: 1rem 1.5rem;
  border: none;
  font-weight: 400;
}

body .newsletter_wrapper .gfield--type-submit {
  flex-shrink: 0;
}

.gform_wrapper.gravity-theme #field_submit input {
  font-size: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  background: var(--clr-secondary500) url('imgs/icon-arrow-right-white.svg') no-repeat center center / 21px 17px;
  flex-shrink: 0;
  display: block;
}

.gform_wrapper.gravity-theme #field_submit input:hover {
  background-color: var(--clr-primary500);
}


@media screen and (max-width: 600px) {

  label {
    margin: 0 0 8px 0;
    font-size: 18px;
  }

  input[type="text"], input[type="tel"], input[type="email"], textarea, select {
    font-size: 16px;
  }

  textarea {
    height: 200px;
  }

  body .newsletter_wrapper .gfield--type-email input[type="email"] {
    font-size: 1rem;
  }


}

.wp-block-table {
  padding: 1.5rem 0 2rem;
  font-size: var(--fs-p-sm);
}

.wp-block-table thead {
  border-bottom: 2px solid var(--clr-greyscale200);
}

.wp-block-table th {
  font-weight: 700;
  padding: 0 .5rem .5rem;
  border: none;
}

.wp-block-table td {
  padding: .5rem;
  border: none;
  border-bottom: 1px solid var(--clr-greyscale200);
}

@media screen and (max-width: 600px) {

  /* .wp-block-table th {
    font-size: 0;
  } */

  .wp-block-table th:after {
    content: attr(data-label);
    font-size: 17px;
  }
}

.c-modal {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  padding: 50px;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-modal__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  rgba(107, 114, 128, .3);
}

.c-modal--active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-modal--active .c-modal__outerContainer {
  transform: scale(1);
}

.c-modal__outerContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  max-width: 800px;
  max-height: 100%;
  transform: scale(.9);
  position: relative;
  z-index: 2;
  transition: .3s transform;
}

.c-modal__container {
  background: white;
  box-shadow: 0px 2px 5px 0px #0000001A, 0px 9px 9px 0px #00000017, 0px 21px 12px 0px #0000000D, 0px 36px 15px 0px #00000003, 0px 57px 16px 0px #00000000;
  border-radius: .75rem;
  padding: 3.5rem;
  overflow: hidden;
  display: flex;
}

.c-modal__close {
  background: url('imgs/icon-close.svg') no-repeat center center / 1rem 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  display: block;
  position: absolute;
  z-index: 10;
  right: -2rem;
  top: -2rem;
  transition: .3s background;
}

@media screen and (max-width: 767px) {

  .c-modal__container {
    padding: 2rem;
  }
}

@media screen and (max-width: 600px) {

  .c-modal {
    padding: 2rem 1.5rem;
  }

  .c-modal__container {
    padding: 1.5rem;
  }

}


@media screen and (min-width: 601px) {
  .is-style-mobile-only {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .is-style-desktop-only {
    display: none;
  }
}


@media screen and (max-width: 600px) {
  #wpadminbar {
    top: -46px;
  }
}


.wp-block-social-links {
  grid-gap: 2rem;
  display: flex;
  margin: 2rem 0;
}

.wp-block-social-links:first-child {
  margin-top: 0;
}

.wp-block-social-links:last-child {
  margin-bottom: 0;
}

.wp-social-link {
  margin: 0;
  padding: 0;
  transition: .3s background
}

.wp-block-social-link:hover {
  transform: none;
}

.wp-block-social-links .wp-social-link a {
  padding: 0;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
  color: var(--clr-secondary500);
  transition: .3s opacity;
}

.wp-block-social-links.is-style-logos-only .wp-social-link:hover {
  opacity: .7;
}

.wp-block-social-links .wp-social-link svg, .wp-block-social-links.is-style-logos-only .wp-social-link svg {
  width: 2rem;
  height: auto;
}


.c-pagination  {
  margin-top: var(--b-space);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.c-pagination__numbers {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c-pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--clr-greyscale900);
  font-size: 1.5rem;
  background: transparent;
  font-weight: 500;
  font-family: var(--ff-heading);
  transition: .3s background, .3s color;
}

.c-pagination__number a {
  color: inherit;
}

.c-pagination__number:not(.c-pagination__number--current):hover {
  color: var(--clr-secondary500);
}

.c-pagination__number--current {
  text-decoration: underline;
  color: var(--clr-secondary700);
}

.c-pagination__next, .c-pagination__prev {
  flex-shrink: 0;
}

.c-pagination__next a, .c-pagination__prev a, span.c-pagination__next, span.c-pagination__prev {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: block;
}

.c-pagination__next svg path, .c-pagination__prev svg path {
  transition: .3s stroke;
  stroke: var(--clr-greyscale700);
}

.c-pagination__next svg:hover path, .c-pagination__prev svg:hover path {
  stroke: var(--clr-greyscale900);
}

.c-pagination__next.disabled, .c-pagination__prev.disabled {
  pointer-events: none;
  opacity: .5;
}


.c-accordionWrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: calc(var(--b-space) * 2/3);
  margin-top: 2rem;
}

.c-accordionWrap:first-child {
  margin-top: 0;
}

.c-accordionWrap:last-child {
  margin-bottom: 0;
}

.c-accordion {
  color: var(--clr-text);
  padding: 1.875rem;
  background: var(--clr-greyscale100);
}

.c-accordion__title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1.5rem;
  cursor: pointer;
  transition: .3s background;
  border: none;
  outline: none;
  box-shadow: none;
  text-align: left;
  line-height: inherit;
  transition: .3s color;
}

.c-accordion_title:hover {
  color: var(--clr-secondary700);
}

.c-accordion__title * {
  margin: 0;
}

.c-accordion__action {
  width: 2rem;
  height: 2rem;
  background: var(--clr-primary500);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: .3s background;
}


.c-accordion__action:after {
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  width: .8125rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}

.c-accordion__action:before {
  content: '';
  width: 1px;
  height: .8125rem;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translateY(-50%);
  background: white;
  transition: .3s opacity;
}

.c-accordion--active .c-accordion__action:before {
  opacity: 0;
}

.c-accordion--active .c-accordion__action {
  background: var(--clr-secondary500);
}

.c-accordion__content {
  display: none;
  padding: 1rem 0 0;
}

.c-accordion__content :last-child {
  margin-bottom: 0;
}

.u-max-width-10 {
  max-width: calc(var(--width-content) * 0.1);
}

.u-max-width-20 {
  max-width: calc(var(--width-content) * 0.2);
}

.u-max-width-30 {
  max-width: calc(var(--width-content) * 0.3);
}

.u-max-width-40 {
  max-width: calc(var(--width-content) * 0.4);
}

.u-max-width-50 {
  max-width: calc(var(--width-content) * 0.5);
}

.u-max-width-60 {
  max-width: calc(var(--width-content) * 0.63);
}

.u-max-width-70 {
  max-width: calc(var(--width-content) * 0.7);
}

.u-max-width-80 {
  max-width: calc(var(--width-content) * 0.8);
}

.u-max-width-90 {
  max-width: calc(var(--width-content) * 0.91);
}

.u-max-width-100 {
  max-width: var(--width-content);
}

[class*="u-max-width-"].has-text-align-center {
  margin-inline: auto;
}

.u-ml-auto {
  margin-left: auto;
}

.u-bg-position-center {
  background-position: center center;
}

.u-bg-position-top-center {
  background-position: top center;
}

.u-bg-position-bottom-center {
  background-position: bottom center;
}

.u-bg-size-cover {
  background-size: cover;
}

.u-bg-size-100-auto {
  background-size: 100% auto;
}

.search-term-empty .search-results {
  display: none;
}

.c-searchResult {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-greyscale100);
}

.c-searchForm {
  display: flex;
  margin: 0 auto;
  max-width: 600px;
}

.c-searchForm__input[type="text"] {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
}

.c-searchForm__btn[type="submit"] {
  flex-shrink: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-overlay {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.2);
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

@media screen and (min-width: 1231px) {
  body:has(.mega-menu-item:hover) .c-overlay, body:has(.mega-menu-item:focus-within) .c-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}

.wp-block-search {
  margin: 2rem auto;
  max-width: 600px;
}

.wp-block-search:first-child {
  margin-top: 0;
}

.wp-block-search:last-child {
  margin-bottom: 0;
}

.wp-block-search__inside-wrapper  {
  gap: 0;
}

.wp-block-search__button {
  margin: 0;
  border-top-right-radius: 99rem;
  border-bottom-right-radius: 99rem;
  color: white;
  background: var(--clr-secondary500);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 500;
  border: none;
  box-shadow: none;
  line-height: 1;
  -webkit-appearance: none;
  transition: .3s background;
}

.wp-block-search__button:hover {
  color: white;
  background: var(--clr-secondary300);
}

.wp-block-search__input[type="search"] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  outline: none;
  padding: 0 1rem;
}

.wp-block-search:not(.wp-block-search--light) .wp-block-search__input[type="search"] {
  border: none;
}

.has-background.wp-block-group {
  padding: 3.75rem;
}

@media screen and (max-width: 600px) {
  .has-background.wp-block-group {
    padding: 2rem;
  }
}

.c-teamItems {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  row-gap: 5rem;
  margin: var(--b-space) 0;
}

.c-teamItems--left {
  justify-content: flex-start;
}

.c-teamItems:first-child {
  margin-top: 0;
}

.c-teamItems:last-child {
  margin-bottom: 0;
}

.c-teamItems .c-teamItem {
  width: calc((100% - 15%) / 4);
}

@media screen and (max-width: 1200px) {
  .c-teamItems .c-teamItem {
    width: calc((100% - 10%) / 3);
  }
}

@media screen and (max-width: 900px) {

  .c-teamItems {
    column-gap: 3rem;
  }
  .c-teamItems .c-teamItem {
    width: calc((100% - 6rem) / 2);
  }
}

@media screen and (max-width: 600px) {

  .c-teamItems {
    row-gap: 3rem;
  }

  .c-teamItems .c-teamItem {
    width: 100%;
  }
}

.c-teamItem {
  position: relative;
}


.c-teamItem h4 a {
  color: var(--clr-text);
}

.c-teamItem h4 a:hover {
  color: var(--clr-secondary500);
}

.c-teamItem__thumb {
  max-width: 266px;
  margin: 0 auto 2rem;
  display: block;
}

.c-teamItem__thumb img {
  display: block;
  aspect-ratio: 1/1;
  margin: 0;
  object-fit: cover;
  border-radius: 50%;
}

.c-teamItem p {
  font-family: var(--ff-heading);
  font-weight: 500;
  margin-bottom: .5rem;
}

.c-teamItem p:last-child {
  margin-bottom: 0;
}


.c-newsletterSection {
  background-image: url('imgs/bg-newsletter.svg');
  background-position: calc(50% - 300px) center;
  background-size: 648px auto;
}

@media screen and (max-width: 768px) {
  .c-newsletterSection .wp-block-group {
    flex-wrap: wrap;
  }

}

.c-footer {
  padding-bottom: 3rem;
}

.c-footer__top {
  margin-bottom: 3rem;
}

.c-footer a:not(.wp-block-button__link) {
  color: white;
}

.c-footer a:not(.wp-block-button__link):hover {
  color: var(--clr-greyscale300);
}

.c-footer__bottom {
  margin-top: var(--b-space);
}

.c-footer__bottom p {
  margin: 0;
}

.c-footer__middle {
  gap: 2rem;
}

.c-footer__middle > .wp-block-group {
  flex-grow: 1;
  flex-basis: 0;
}

.c-footer__middle > .wp-block-group:first-child {
  flex-grow: 1.75;
}

.c-footer__middle > .wp-block-group:first-child > * {
  max-width: 400px;
  margin-left: 0 !important;
}

@media screen and (max-width: 1000px) {
  .c-footer__middle {
    flex-wrap: wrap !important;
  }

  .c-footer__middle > .wp-block-group {
    width: calc((100% - 2rem) / 2);
    flex-grow: 1;
    flex-basis: auto;
  }
}


@media screen and (max-width: 980px) {
  .c-footer__top {
    flex-direction: column;
    align-items: stretch !important;
  }
}

@media screen and (max-width: 930px) {
  .c-footer__bottom {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
    gap: .5rem;
  }
}

@media screen and (max-width: 600px) {
  .c-footer__middle > .wp-block-group {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .c-footer__bottom > .wp-block-group {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }
}


.c-pageCards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: calc(var(--b-space) * 2/3);
}

.c-pageCards:first-child {
  margin-top: 0;
}

.c-pageCards:last-child {
  margin-bottom: 0;
}

.c-pageCards .c-pageCard {
  width: calc((100% - 2.5rem) / 3);
}

@media screen and (max-width: 1100px) {
  .c-pageCards .c-pageCard {
    width: calc((100% - 1.25rem) / 2);
  }
}

@media screen and (max-width: 798px) {
  .c-pageCards  {
    gap: 1rem;
  }
  .c-pageCards .c-pageCard {
    width: 100%;
  }
}

.c-pageCard {
  display: flex;
  flex-direction: column;
  background: var(--clr-greyscale100);
  padding: 2.5rem;
}

.c-pageCard__thumb  {
  display: block;
  background: black;
  aspect-ratio: 16 / 9;
  position: relative;
}

.c-pageCard__thumb img {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  width: 100%;
  object-fit: cover;
}

.c-pageCard__time {
  font-size: .875rem;
  color: var(--clr-greyscale600);
  margin-bottom: .5rem;
  display: block;
}

.c-pageCard h4 {
  margin: 0 0 1rem;
}

.c-pageCard h4:hover {
  color: var(--clr-primary500);
}

.c-pageCard h4 a {
  color: inherit;
}

.c-pageCard p {
  font-size: var(--fs-p-sm);
}

.c-pageCard__content .wp-block-buttons {
  margin-top: auto;
  display: none;
}

.c-pageCard__meta {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.c-pageCard__date {
  background: white;
  padding: .75rem 1rem;
  text-transform: uppercase;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.c-pageCard__categories {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.c-pageCard__categories a {
  font-size: .9375rem;
  font-weight: 500;
}



@media screen and (max-width: 600px) {
  .c-pageCard {
    padding: var(--width-gutter);
  }
}

.c-bannerSlider {
  position: relative;
}

.c-bannerSlider .owl-nav {
  position: absolute;
  bottom: 0;
  left: calc(50% - (var(--width-content) / 2) + var(--width-gutter) );
}

@media screen and (max-width: 1360px) {
  .c-bannerSlider .owl-nav {
    left: var(--width-gutter);
  }
}

.owl-nav {
  display: flex;
  gap: 1rem;
}

.owl-nav button {
  width: 3.75rem;
  height: 3.75rem;
  border: none;
  background: var(--clr-secondary500) !important;
  outline: none;
  transition: .3s background;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.owl-nav button.owl-prev {
  transform: rotate(180deg);
}

.owl-nav button:hover {
  background: var(--clr-secondary700) !important;
}

.owl-nav button svg {
  width: 1.25rem;
}

@media screen and (max-width:600px) {
  .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .owl-nav button svg {
    width: 1rem;
  }
}

.c-imgGallery {
  margin-bottom: calc(var(--b-space) * 2/3);
  margin-top: 2rem;
}

.c-imgGallery:first-child {
  margin-top: 0;
}

.c-imgGallery:last-child {
  margin-bottom: 0;
}

.c-imgGallery .owl-nav {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  width: max-content;
}

.c-timeline {
  margin-top: 2rem;
  margin-bottom: calc(var(--b-space) * 2/3);
}

h2 + .c-timeline {
  margin-top: -5rem;
}

.c-timeline:first-child {
  margin-top: 0;
}

.c-timeline:last-child {
  margin-bottom: 0;
}

.c-timelineItem {
  background: white;
  padding: 2rem;
  color: var(--clr-text);
}

.c-timelineItem__year {
  background: var(--clr-secondary500);
  padding: .5rem 1.25rem;
  width: max-content;
  max-width: 100%;
  color: white;
  font-size: 1.5625rem;
}

.c-timeline {
  position: relative;
  display: flex !important;
  flex-direction: column;
}

.owl-carousel .owl-stage-outer {
  order: 2;
}

.c-timeline .owl-nav {
  order: 1;
  margin-bottom: 1.75rem;
  margin-left: auto;
  width: max-content;
}

.c-timeline .owl-dots  {
  justify-content: space-between;
  position: relative;
  order: 3;
}


.c-timeline .owl-dots:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background: var(--clr-greyscale500);
  width: 100%;
  transition: .3s width;
}

.c-timeline .owl-dots:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background: var(--clr-primary500);
  width: var(--line-width);
  transition: .3s width;
}

.c-timeline .owl-dots button {
  background: var(--clr-greyscale900) !important;
  position: relative;
  z-index: 3;
}

.c-timeline .owl-dots button.active, .c-timeline .owl-dots button:has(~ .active) {
  background: var(--clr-primary500) !important;
}

.c-timeline .owl-item {
  opacity: .5;
  transition: .3s opacity;
}

.c-timeline .owl-item.center {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .c-timelineItem__year {
    font-size: 1.2rem;
  }
}

.c-resourceRow {
  gap: 2rem;
}

.c-resourceRow h3 {
  width: calc(50% - 1rem);
  flex-shrink: 0;
}

.c-resourceRow p a {
  text-decoration: none;
}

.c-resourceRow + .c-resourceRow {
  border-top: 1px solid var(--clr-greyscale200);
  margin-top: 2rem;
  padding-top: 2rem;
}

@media screen and (max-width: 600px) {
  .c-resourceRow  {
    flex-direction: column;
    gap: 1rem;
  }
}

.c-pageMenu  {
  list-style-type: none;
  padding: 0;
  background: var(--clr-greyscale100);
  padding: 1.875rem;
}

.c-pageMenu li {
  padding: 0;
  margin: 0;
}

.c-pageMenu li:not(:first-child) {
  border-top: 1px solid var(--clr-greyscale300);
}

.c-pageMenu a  {
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--clr-greyscale900);
  display: block;
  padding: .75rem 0;
  font-family: var(--ff-heading);
}

.c-pageMenu li:not(.current-menu-item):first-child a {
  padding-top: 0;
}

.c-pageMenu li:not(.current-menu-item):last-child a {
  padding-bottom: 0;
}

.c-pageMenu a:hover {
  color: var(--clr-secondary500);
}

.c-pageMenu  .current-menu-item a {
  background: var(--clr-secondary500);
  color: white;
  padding: .75rem 1.25rem;
}

.c-pageMenu .sub-menu {
  border-top: 1px solid var(--clr-greyscale300);
  list-style-type: none;
  margin-left: 1rem;
  transform: translateY(-.5rem);
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  transition: .3s opacity, 0s visibility .3s, .3s transform, .3s padding;
}

.c-pageMenu .sub-menu:has(.current-menu-item), .c-pageMenu .menu-item-has-children:focus-within .sub-menu, .c-pageMenu .menu-item-has-children:hover .sub-menu {
  visibility :visible;
  opacity: 1;
  transition-delay: 0s;
  transform: none;
  height: auto;
  padding: .75rem 0;
}

.c-pageMenu .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pageMenu .menu-item-has-children > a:hover {
  color: var(--clr-greyscale900);
}

.c-pageMenu .menu-item-has-children > a:after {
  content: '';
  width: .375rem;
  height: .3125rem;
  flex-shrink: 0;
  background: url('imgs/icon-drop-arrow.svg') center center / .375rem .3125rem;
  transition: .3s transform;
}

.c-pageMenu .menu-item-has-children:has(.current-menu-item) > a:after, .c-pageMenu .menu-item-has-children:hover > a:after, .c-pageMenu .menu-item-has-children:focus-within > a:after {
  transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
  .c-pageMenu a {
    font-size: 1rem;
  }
}
.c-programs {
  gap: 2rem !important;
  margin-bottom: 3.75rem;
  margin-top: 2rem;
}

.c-programs + .wp-block-group {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.c-programs:last-child {
  margin-bottom: 0;
}

.c-programItem:nth-of-type(n+3) {
  border-top: 1px solid var(--clr-greyscale800);
  padding-top: 2rem;
}


.c-programItem > .wp-block-image {
  margin: 0;
  flex-shrink: 0;
}

.c-programItem h3, .c-programItem p {
  max-width: 415px;
}

@media screen and (max-width:800px) {
  .c-programs {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .c-programItem:not(:first-child) {
    border-top: 1px solid var(--clr-greyscale800);
    padding-top: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .c-programs {
    margin-bottom: 2rem;
  }
}

.c-sectionTitle {
  margin-top: calc(var(--b-space) * 2/3);
  align-items: baseline;
  margin: calc(var(--b-space) * 2/3) 0 2rem;
}

.c-sectionTitle:first-child {
  margin-top: 0;
}

@media screen and (min-width: 981px) {
  .c-universityMap {
    background: url('imgs/canada.svg') center center / cover;
    aspect-ratio: 40 / 33;
    position: relative;
  }

  .c-mapPin {
    width: 1.75%;
    aspect-ratio: 1/1;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--clr-primary500);
    z-index: 1;
    transition: 0s z-index .3s;
  }

  .c-mapPin:hover {
    transition-delay: 0s;
    z-index: 2;
  }

  .c-mapPin__tip {
    position: absolute;
    width: 200px;
    right: 50%;
    bottom: calc(50% + 1rem);
    transform: translateX(50%);
    background: white;
    border-radius: .25rem;
    padding: 1rem;
    font-size: var(--fs-p-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s;
  }

  .c-mapPin:hover .c-mapPin__tip {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .c-mapPin__tip:after {
    content: '';
    position: absolute;
    right: 50%;
    top: calc(100% - 1px);
    width: 0;
    height: 0;
    border-right: .75rem solid transparent;
    border-left: .75rem  solid transparent;
    border-top: 1rem solid  white;
    transform: translateX(50%);
  }

  .c-mapPin__tip p {
    color: var(--clr-text);
  }
}

@media screen and (max-width: 980px) {

  .c-universityMap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: calc(var(--b-space) * 2/3) 0;
  }

  .c-mapPin {
    width: calc((100% - 2rem) / 3);
    padding: 1.5rem;
    background: var(--clr-greyscale100);
  }

  .c-mapPin p {
    color: var(--clr-text);
    font-size: var(--fs-p-sm);
  }
}

@media screen and (max-width: 767px) {
  .c-mapPin {
    width: calc((100% - 1rem) / 2);
  }
}

@media screen and (max-width: 500px) {
  .c-mapPin {
    width: 100%;
  }
}

.cta-block {
  border-bottom: 60px solid white;
}

.cta-block:last-child {
  border-bottom: 120px solid white;
}

.cta-block .u-wc {
  max-width: 1370px;
}

.cta-block__imgs {
  margin-bottom: calc(var(--b-space) * -1 - 60px) !important;
  margin-top: -24px !important;
}

.cta-block__imgsWrap {
  position: relative;
  max-width: 506px;
  margin-right: 9%;
}

.cta-block__icon {
  position: absolute;
  top: 1%;
  right: -9%;
  max-width: 32%;
}

.cta-block__img {
  margin: 0 !important;
}

@media screen and (max-width: 1120px) {

  .cta-block {
    margin-top: 60px;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .cta-block:last-child {
    border-bottom: 0;
  }

  .cta-block__imgs {
    margin: calc(var(--b-space) * -1 - 60px) auto 0 !important;
  }

  .cta-block .wp-block-column > .wp-block-group, .cta-block .wp-block-column > .wp-block-group > * {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta-block .wp-block-column > .wp-block-group {
    max-width: 580px !important;
  }
}

.c-testimonial {
  padding: 2.5rem 0;
  max-width: 670px;
  margin: calc(var(--b-space) * 2/3) auto;
  position: relative;
}

.c-testimonial:first-child {
  margin-top: 0;
}

.c-testimonial:last-child {
  margin-bottom: 0;
}

.c-testimonial:before {
  content: '';
  position: absolute;
  top: 0;
  left: -4rem;
  width: 4rem;
  height: 2.5rem;
  background: url("imgs/icon-quote.svg") center center / contain;
}

.c-testimonial:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -4rem;
  width: 4rem;
  height: 2.5rem;
  background: url("imgs/icon-quote.svg") center center / contain;
  transform: scale(1, -1) rotate(180deg);
}

.c-testimonial h2 {
  text-align: center;
}

.c-testimonial  p {
  font-weight: 500;
}

.c-testimonial cite {
  margin-top: 1rem;
  font-style: normal;
}

.c-testimonial h5 {
  margin-bottom: .5rem;
}

@media screen and (max-width: 600px) {
  .c-testimonial:before {
    left: -2rem;
  }
  .c-testimonial:after {
    right: -2rem;
  }
}

.c-serviceSlider {
  position: relative;
  margin: calc(var(--b-space) * 2/3) 0
}

.c-serviceSlider:first-child {
  margin-top: 0;
}

.c-serviceSlider:last-child {
  margin-bottom: 0;
}

.c-serviceSlider .owl-stage-outer {
  overflow: visible;
}

.c-serviceSlider .owl-stage {
  display: flow-root;
}

.c-serviceSlider .owl-item {
  opacity: 0;
  transition: .3s opacity;
}

.c-serviceSlider .owl-item.active {
  opacity: 1;
}

/* .c-serviceSlider .owl-prev {
  display: none;
} */

.c-serviceSlider .owl-next, .c-serviceSlider .owl-prev{
  position: absolute;
  right: 0;
  top: calc(var(--slide-width) * 0.75 / 2);
  transform: translate(50%, -50%);
}

.c-serviceSlider .owl-prev {
	right: auto;
	left: 0;
	transform: translate(-50%, -50%) rotate(180deg) !important;
}

.c-servicesList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  row-gap: 4rem;
}

.c-servicesList .c-serviceItem {
  width: calc((100% - 3.75rem) / 4);
}

@media screen and (max-width:1200px) {
  .c-servicesList .c-serviceItem {
    width: calc((100% - 2.5rem) / 3);
  }
}

@media screen and (max-width:980px) {
  .c-servicesList .c-serviceItem {
    width: calc((100% - 1.25rem) / 2);
  }
}

@media screen and (max-width:600px) {

  .c-servicesList {
    row-gap: 2rem;
  }

  .c-servicesList .c-serviceItem {
    width: 100%;
  }
}

.c-serviceItem {
  display: flex;
  flex-direction: column;
}

.c-serviceItem__content {
  display: flex;
  flex-direction: column;
}

.c-serviceItem__content {
  padding: 2.5rem 1rem 0;
  flex-grow: 1;
}

.c-serviceItem__content p {
  font-size: 1rem;
}

.c-serviceItem__thumb img {
  border-radius: 4rem;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.c-serviceItem__action {
  margin-top: auto !important;
  padding-top: 1rem;
}

.c-serviceSlider .c-serviceItem__content p, .c-serviceSlider .wp-block-buttons {
  display: none;
}

@media screen and (max-width:600px) {
  .c-serviceItem__content {
    padding: 1.5rem 1rem 0;
  }
}

.c-servicesChildList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.75rem 0;
}

.c-servicesChildList:first-child {
  margin-top: 0;
}

.c-servicesChildList:last-child {
  margin-bottom: 0;
}

.c-servicesChildList .c-serviceChildItem  {
  width: calc((100% - 2rem) / 3);
}

@media screen and (max-width:1100px) {
  .c-servicesChildList .c-serviceChildItem  {
    width: calc((100% - 1rem) / 2);
  }
}

@media screen and (max-width:680px) {

  .c-servicesChildList {
    margin: 2rem 0;
    gap: 0;
  }

  .c-servicesChildList .c-serviceChildItem  {
    width: 100%;
  }
}

.c-serviceChildItem {
  border-top: 1px solid var(--clr-greyscale200);
  padding: 2.25rem 1rem;
}

.c-serviceChildItem h4 a {
  display: flex;
  align-items: baseline;
  gap: 1.125rem;
}

.c-serviceChildItem h4 svg {
  flex-shrink: 0;
  width: 1.25rem;
  position: relative;
  bottom: 1px;
  transition: .3s transform;
}

.c-serviceChildItem h4 svg path {
  transition: .3s stroke;
}

.c-serviceChildItem h4 a:hover svg path {
  stroke: var(--clr-primary500);
}


.c-serviceChildItem h4 a:hover svg {
  transform: translateX(.5rem);
}


.c-serviceChildItem p {
  padding-left: 2.375rem;
  font-size: 1rem;
}

@media screen and (max-width:600px) {

  .c-serviceChildItem {
    padding: 2rem 0;
  }

  .c-serviceChildItem h4 svg {
    bottom: 0;
  }
}

.c-sectorSlider {
  position: relative;
  margin: calc(var(--b-space) * 2/3) 0
}

.c-sectorSlider:first-child {
  margin-top: 0;
}

.c-sectorSlider:last-child {
  margin-bottom: 0;
}

.c-sectorSlider .owl-stage-outer {
  overflow: visible;
}

.c-sectorSlider .owl-stage {
  display: flow-root;
}

.c-sectorSlider .owl-item {
  opacity: 0;
  transition: .3s opacity;
}

.c-sectorSlider .owl-item.active {
  opacity: 1;
}

/* .c-sectorSlider .owl-prev {
  display: none;
} */

.c-sectorSlider .owl-next, .c-sectorSlider .owl-prev{
  position: absolute;
  right: 0;
  top: calc(var(--slide-width) * 1.25 / 2);
  transform: translate(50%, -50%);
}

.c-sectorSlider .owl-prev {
	right: auto;
	left: 0;
	transform: translate(-50%, -50%) rotate(180deg) !important;
}

.c-sectorsList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  row-gap: 4rem;
  margin: 2.75rem 0;
}

.c-sectorsList:first-child {
  margin-top: 0;
}

.c-sectorsList:last-child {
  margin-bottom: 0;
}

.c-sectorsList .c-sectorItem {
  width: calc((100% - 2.5rem) / 3);
}

@media screen and (max-width:980px) {
  .c-sectorsList .c-sectorItem {
    width: calc((100% - 1.25rem) / 2);
  }
}

@media screen and (max-width:600px) {

  .c-sectorsList {
    row-gap: 2rem;
    margin: 2rem 0;
  }

  .c-sectorsList .c-sectorItem {
    width: 100%;
  }
}

.c-sectorItem__content {
  padding: 2rem 1rem 0;
}

.c-sectorItem__content p {
  font-size: var(--fs-p-sm);
}

.c-sectorItem__thumb {
  position: relative;
  display: block;
}

.c-sectorItem__thumb:after {
  content: '';
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 1rem;
  z-index: 1;
}


.c-sectorItem__thumb h3 {
  position: absolute;
  z-index: 2;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 1.75rem;
  color: white;
  margin: 0;
  min-height: 72px;
}

.c-sectorItem__thumb img {
  border-radius: 1rem;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .c-sectorItem__thumb h3 {
    min-height: 58px;
    left: 2rem;
    right: 2rem;
  }

}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: calc(var(--b-space) - 1rem);
  font-size: var(--fs-p-xsm);
  font-weight: 400;
}

.c-breadcrumb a {
  color: black;
}

.c-breadcrumb a:hover {
  color: var(--clr-greyscale600);
}

.c-section__overlay + .u-wc .c-breadcrumb, .c-section__overlay + .u-wc .c-breadcrumb a {
  color: white;
}

.c-section__overlay + .u-wc .c-breadcrumb a:hover {
  color: var(--clr-greyscale200);
}

.c-breadcrumb:last-child {
  font-weight: 700;
}

.c-breadcrumb__sep {
  flex-shrink: 0;
}


@media screen and (max-width: 600px) {
  .c-breadcrumb {
    gap: .5rem;
    font-size: 1rem;
  }
}

.heading-features-row {
  margin-bottom: 3rem !important;
  gap: 2rem !important;
}

@media screen and (max-width: 1300px) {
  .heading-features-row {
    flex-direction: column;
    gap: 1rem !important;
  }
}

@media screen and (max-width: 900px) {
  .heading-features-row {
    flex-direction: row;
    gap: 2rem !important;
  }
}

@media screen and (max-width: 600px) {
  .heading-features-row {
    margin-bottom: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .heading-features-row {
    flex-direction: column;
    gap: .75rem !important;
  }
}

.c-reasons {
  display: flex;
  gap: 3rem;
  padding: 3rem;
  border-radius: 1rem;
  align-items: center;
  background: var(--clr-secondary50);
  border: 1px solid var(--clr-secondary100);
  margin: 2.75rem 0;
}

.c-reasons:first-child {
  margin-top: 0;
}

.c-reasons:last-child {
  margin-bottom: 0;
}

.c-reasons__icon {
  flex-shrink: 0;
  width: 10rem;
}


.c-reasons h2 {
  width: 40%;
  flex-shrink: 0;
  margin: 0;
}

.c-reasons__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-reasons__list li {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: var(--fs-h4);
  font-weight: 500;
  font-family: var(--ff-heading);
  margin: 0;
  padding: 0;
}

.c-reasons__list li:before {
  content: '';
  background: url('imgs/icon-check.svg') center center / 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .c-reasons {
    flex-wrap: wrap;
  }
  .c-reasons__list {
    width: 100%;
  }

  .c-reasons h2 {
    width: calc(100% - 13rem);
  }
}

@media screen and (max-width: 980px) {
  .c-reasons__icon {
    flex-shrink: 0;
    width: 5rem;
  }

  .c-reasons h2 {
    width: calc(100% - 8rem);
  }
}

@media screen and (max-width: 980px) {
  .c-reasons h2 {
    width: 100%;
  }

  .c-reasons {
    padding-top: 0;
  }

  .c-reasons__icon {
    width: 6rem;
    margin-top: -3rem;

  }
}

@media screen and (max-width: 600px) {
  .c-reasons {
    gap: 2rem;
    padding: 0 2rem 2rem;
    margin: 2rem 0;
  }
}

.c-partnerQuote {
  max-width: 1120px;
  margin: var(--b-space) auto;
}

.c-teamItems + .c-partnerQuote {
  margin: calc(var(--b-space) - 4rem) auto;
  background: white;
  border-radius: 1rem;
  padding: 4rem;
}

.c-partnerQuote:first-child {
  margin-top: 0;
}

.c-partnerQuote:last-child {
  margin-bottom: 0;
}

.c-partnerQuote__icon {
  max-width: 118px;
}

.c-partnerQuote__details {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 4rem;
  margin-top: -65px;
}

.c-partnerQuote__text {
  padding-top: 110px;
}

.c-partnerQuote__text p:last-child {
  padding-left: 1rem;
}

.c-partnerQuote__text p:last-child span {
  text-decoration: underline;
}

.c-partnerQuote__thumb {
  width: 240px;
  max-width: 100%;
  flex-shrink: 0;
}

.c-partnerQuote__thumb img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
}

.c-partnerQuote__text {
  font-size: var(--fs-p-lg);
  font-weight: 500;
  font-family: var(--ff-heading);
}

@media screen and (max-width: 900px) {
  .c-partnerQuote__details {
    flex-direction: column;
    margin-top: 2rem;
    gap: 2rem;
  }

  .c-partnerQuote__text {
    padding-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .c-teamItems + .c-partnerQuote {
    padding: 2rem;
  }
}

.c-servicesBulletList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.75rem 0;
}

.c-servicesBulletList:first-child {
  margin-top: 0;
}

.c-servicesBulletList:last-child {
  margin-bottom: 0;
}

.c-servicesBulletList .c-servicesBulletItem  {
  width: calc((100% - 2rem) / 3);
}

@media screen and (max-width:1100px) {
  .c-servicesBulletList .c-servicesBulletItem  {
    width: calc((100% - 1rem) / 2);
  }
}

@media screen and (max-width:680px) {

  .c-servicesBulletList {
    margin: 2rem 0;
    gap: 0;
  }

  .c-servicesBulletList .c-servicesBulletItem  {
    width: 100%;
  }
}

.c-servicesBulletItem {
  border-top: 1px solid var(--clr-greyscale200);
  padding: 2.25rem 1rem;
}

.c-servicesBulletItem h4 {
  display: flex;
  align-items: baseline;
  gap: 1.375rem;
}

.c-servicesBulletItem h4:before {
  content: "";
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  background: var(--clr-secondary700);
  position: relative;
  bottom: 1px;
  flex-shrink: 0;
}

.c-servicesBulletItem  p {
  padding-left: 2.375rem;
  font-size: 1rem;
}

@media screen and (max-width:600px) {

  .c-servicesBulletItem  {
    padding: 2rem 0;
  }

  .c-servicesBulletItem h4:before {
    position: static;
  }

}

.c-teamDirectory__nav {
  display: flex;
  align-items: center;
  background: white;
  gap: 3rem;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  padding-left: calc((100vw - var(--scrollbar-width, 0px) - var(--width-content) + var(--width-gutter) * 2) / 2);
  padding-right: calc((100vw - var(--scrollbar-width, 0px) - var(--width-content) + var(--width-gutter) * 2) / 2);
  width: calc(100vw - var(--scrollbar-width, 0px));
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + var(--scrollbar-width, 0px) / 2);
  margin-right: calc(-50vw + var(--scrollbar-width, 0px) / 2);
}

.c-teamDirectory__nav::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1490px) {
  .c-teamDirectory__nav {
    padding-left: var(--width-gutter);
    padding-right: var(--width-gutter);
  }
}

.c-teamDirectory__navItem {
  border: none;
  border-bottom: .375rem solid transparent;
  color: var(--clr-primary500);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .875rem;
  padding-bottom: 1rem;
  background: none;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  transition: .3s border, .3s color;
}

.c-teamDirectory__navItem:hover {
  color: var(--clr-secondary500);
}

.c-teamDirectory__navItem--active {
  border-bottom: .375rem solid var(--clr-secondary700);
  color: var(--clr-secondary700);
}

.c-teamDirectory__content {
  display: grid;
  grid-template-rows: 1fr 0;
}

.c-teamDirectory__panel {
  min-width: 0;
  transform: translateY(2rem);
  opacity: 0;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  visibility: hidden;
  height: 0;
  padding-top: var(--b-space);
  transition: visibility 0s 0.3s, transform 0.3s, opacity 0.3s;
}

.c-teamDirectory__panel--active {
  opacity: 1;
  height: auto;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

.c-teamDirectory__panel .c-teamItems {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .c-teamDirectory__nav {
    gap: 1rem;
  }
}

.single-team  .wp-block-post-featured-image img {
  border-radius: 50%;
}

.single-team h1 , .single-post h1 {
  text-decoration: underline;
}

.c-specialtyList {
  list-style-type: none;
  padding-left: 0;
}

.c-specialtyList li {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-weight: 600;
}

.c-specialtyList li:before {
  content: '';
  background: url('imgs/icon-specialty-arrow.svg') center center / 17px 9px;
  width: 17px;
  height: 9px;
  flex-shrink: 0;
  transform: rotate(-90deg);
  position: relative;
  top: 8px;
}

.c-teamSingle__sidebar, .c-postSingle__sidebar {
  border-radius: 1.5rem;
}

.c-teamSingle__sidebar h3, .c-postSingle__sidebar h3 {
  margin-bottom: 2rem;
}

.c-postSingle__sidebar h4 {
	margin-bottom: 2rem;
	font-weight: 700;
}

.c-postSingle__sidebar h4 + p {
  margin-top: -1.5rem;
}

.c-teamSingle__sidebar h3:not(:first-child), .c-postSingle__sidebar h3:not(:first-child) {
  margin-top: 3rem;
}

.c-teamSingle__actions, .c-postSingle__actions {
  max-width: 66.66%;
}

@media screen and (max-width: 1120px) {
  .c-teamSingle__actions, .c-postSingle__actions {
    max-width: 100%;
  }
}

.c-sharing {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.c-sharing a svg {
  fill: currentColor;
}

.c-newsItems {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  row-gap: 4rem;
  margin-bottom: var(--b-space);
  margin-top: 3rem;
}

.c-newsItemFeat .c-newsItems {
  margin-top: 0;
}

.c-newsItems:first-child {
  margin-top: 0;
}


.c-newsItems:last-child {
  margin-bottom: 0;
}

.c-newsItems .c-newsItem {
  width: calc((100% - 2.5rem) / 3);
}

@media screen and (max-width:980px) {
  .c-newsItems .c-newsItem  {
    width: calc((100% - 1.25rem) / 2);
  }
}

@media screen and (max-width:600px) {

  .c-newsItems {
    row-gap: 2rem;
    margin: 2rem 0;

  }

  .c-newsItems .c-newsItem  {
    width: 100%;
  }
}

.c-newsItem {
  display: flex;
  flex-direction: column;
}

.c-newsItem__content {
  display: flex;
  flex-direction: column;
}

.c-newsItem__content {
  padding: 2.5rem 1rem 0;
  flex-grow: 1;
}

.c-newsItem__content p {
  font-size: 1rem;
}

.c-newsItem__thumb img {
  border-radius: 4rem;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.c-newsItem__action {
  margin-top: auto !important;
  padding-top: 1rem;
}

.c-newsItem__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: var(--fs-p-xsm);
}

.c-newsItem__cats a {
  font-weight: 500;
  color: var(--clr-text);
}

.c-newsItem__cats a:hover {
  color: var(--clr-secondary500);
}

@media screen and (max-width:600px) {
  .c-newsItem__content {
    padding: 1.5rem 1rem 0;
  }
}

.category h1 {
  text-decoration: underline;
}

.c-newsItemFeat {
  background: var(--clr-greyscale100);
  padding: 3.25rem 0 3.25rem 4rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 2rem;
  gap: 6%;
  margin-top: 3rem;
}

.c-newsItemFeat:first-child {
  margin-top: 0;
}

.c-newsItemFeat h2 {
  text-decoration: underline;
}

.c-newsItemFeat__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: var(--fs-p-xsm);
}

.c-newsItemFeat__cats a {
  font-weight: 500;
  color: var(--clr-text);
}

.c-newsItemFeat__cats a:hover {
  color: var(--clr-secondary500);
}

.c-newsItemFeat__thumb {
  width: 50%;
  border-radius: 10rem;
  flex-shrink: 0;
  margin-left: auto;
}

.c-newsItemFeat__thumb img {
  border-radius: 10rem;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.c-newsItem__thumb--large {
  position: relative;
}

.c-newsItem__thumb--large img {
  border-radius: 1rem;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.c-newsItem__thumb--large:after {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  inset: 0px;
  border-radius: 1rem;
  z-index: 1;
}

.c-newsItem__thumb--large p {
  position: absolute;
  z-index: 2;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 1.75rem;
  color: white;
  margin: 0px;
  min-height: 72px;
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (max-width: 900px) {
  .c-newsItemFeat {
    flex-direction: column;
    gap: 3.25rem;
    padding-right: 2.25rem;
  }

  .c-newsItemFeat__thumb {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width:600px) {

  .c-newsItemFeat {
    padding: 2rem;
    gap: 2rem;
    margin-top: 2rem;
  }

  .c-newsItemFeat__thumb img {
    border-radius: 6rem;
  }

  .c-newsItem__thumb--large p {
    left: 2rem;
    right: 2rem;
  }
}

.c-iconCardList {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.c-iconCardList:first-child {
  margin-top: 0;
}

.c-iconCardList:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 680px) {
  .c-iconCardList {
    margin: 2rem 0;
  }
}


.c-iconCardList .c-iconCard {
  width: calc((100% - 5rem) / 3);
}

@media screen and (max-width: 800px) {
  .c-iconCardList .c-iconCard {
    width: 100%;
  }
}

.c-iconCard {
  text-align: center;
  color: white;
}

.c-iconCard:hover {
  color: white;
}

.c-iconCard h4 {
  font-weight: 700;
  margin-top: 1.5rem;
}

a.c-iconCard h4 {
  color: var(--clr-secondary500);
}

.c-iconCard__icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  transition: .3s background;
}

.c-iconCard:hover .c-iconCard__icon {
  background: var(--clr-secondary500);
}

.c-iconCard__icon img {
  display: block;
}

.c-resourceCardList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.75rem 0;
}

.c-resourceCardList:first-child {
  margin-top: 0;
}

.c-resourceCardList:last-child {
  margin-bottom: 0;
}

.c-resourceCardList .c-resourceCard   {
  width: calc((100% - 1rem) / 2);
}

@media screen and (max-width:680px) {

  .c-resourceCardList {
    margin: 2rem 0;
    gap: 0;
  }

  .c-resourceCardList .c-resourceCard {
    width: 100%;
  }
}

.c-resourceCardList--3 .c-resourceCard  {
  width: calc((100% - 2rem) / 3);
}

@media screen and (max-width:1100px) {
  .c-resourceCardList--3 .c-resourceCard  {
    width: calc((100% - 1rem) / 2);
  }
}

@media screen and (max-width:680px) {

  .c-resourceCardList--3 .c-resourceCard  {
    width: 100%;
  }
}


.c-resourceCard {
  border-top: 1px solid var(--clr-greyscale200);
  padding: 2.25rem 1rem;
}

.c-resourceCard h4 a, .c-resourceCard--noLink h4 {
  display: flex;
  align-items: baseline;
  gap: 1.125rem;
}

.c-resourceCard--noLink h4:before {
  content: "";
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  background: var(--clr-secondary700);
  position: relative;
  bottom: 1px;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .c-resourceCard--noLink h4:before {
    position: static;
  }
}

.c-resourceCard h4 svg {
  flex-shrink: 0;
  width: 1.25rem;
  position: relative;
  bottom: 1px;
  transition: .3s transform;
}

.c-resourceCard h4 svg path {
  transition: .3s stroke;
}

.c-resourceCard h4 a:hover svg path {
  stroke: var(--clr-primary500);
}

.c-resourceCard h4 a:hover svg {
  transform: translateX(.5rem);
}

.c-resourceCard p {
  padding-left: 2.375rem;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.c-resourceCard p:last-child {
  margin-bottom: 0;
}

.c-resourceCard .wp-block-buttons {
  padding-left: 2.375rem;
  margin-top: 1.5rem;
}

@media screen and (max-width:600px) {

  .c-resourceCard {
    padding: 2rem 0;
  }

  .c-resourceCard h4 svg {
    bottom: 0;
  }
}

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