/*
Theme name: PCVAFO
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: #2FB677;
  --clr-primary700: #257351;
  --clr-neutral100: #F5F7FA;
  --clr-greyscale100: #F5F6F6;
  --clr-greyscale200: #E5E5E5;
  --clr-greyscale300: #CCCCCC;
  --clr-greyscale400: #B3B3B3;
  --clr-greyscale500: #999999;
  --clr-greyscale600: #7F7F7F;
  --clr-greyscale700: #666666;
  --clr-greyscale800: #4C4C4C;
  --clr-greyscale900:  #252525;

  --clr-white: #ffffff;

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

  /* widths */
  --width-content: 1250px;
  --width-gutter: 60px;
  /* heights */
  --height-header: 86px;
  /* spacing */
  --b-space-lg: 125px;
  --b-space: 72px;
  --b-space-sm: 60px;
  /* font family */
  --ff-body: "Inter", sans-serif;
  --ff-heading: "Montserrat", sans-serif;
  /* font sizes */
  --fs-h1: 4rem;
  --fs-h2: 2.1875rem;
  --fs-h3: 1.4375rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.125rem;
  --fs-h6: .9375rem;
  --fs-p-lg: 1.4375rem;
  --fs-p: 1.2rem;
  --fs-p-sm: 1rem;

  --wp--preset--font-size--md: var(--fs-p);
  --wp--preset--font-size--sm: var(--fs-p-sm);
  --wp--preset--font-size--lg: var(--fs-p-lg);

}

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

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

    --fs-h1: 2.25rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.2rem;
    --fs-h4: 1.125rem;

    --fs-p-lg: 1.25rem;
    --fs-p: 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: 2rem;
    --fs-h2: 1.5rem;
  }
}

/* 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.4;
	-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: 800;
}

h1, .h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

h1 strong, h2 strong {
  font-weight: 800
}


h2, .h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin: calc(var(--b-space) * 2/3) 0 1.75rem;
}

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

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 3rem 0 1rem;
}

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

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

h4 {
  font-size: var(--fs-h4);
  line-height: 1.2;
  margin: 2.5rem 0 .75rem;
}

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

h5 {
  font-size: var(--fs-h5);
  line-height: 1.6;
  margin: 24px 0 12px;
  line-height: 1.3;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.6;
  margin: 24px 0 16px;
}

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%;
}

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

    margin-bottom: 1.25rem;
  }
}


p {
  margin-bottom: .75rem;
}

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

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

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

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

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

p.has-lg-font-size {
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

@media screen and (max-width: 600px) {
  .is-layout-flex {
    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.5rem
}

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

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

ol {
  margin: 0 0 1.5rem;
  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;
}

blockquote {
  display: block;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 4px solid var(--clr-primary500);
}

blockquote p {
  margin: 0 12px 0 0;
  font-size: 22px;
  font-style: italic;
}

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

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

blockquote cite {
  font-style: normal;
  display: block;
  margin: 12px 0 0;
  font-size: var(--fs-p-sm);
}

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

  blockquote {
    display: block;
    margin: 30px 0;
    padding-left: 25px;
  }

  blockquote p {
    font-size: 19px;
  }

}

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-primary700);
}


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;
}


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

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

.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;
}

/* .content-wrap > .c-section--rounded:last-child {
  margin-bottom: 0;
} */

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

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

.c-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #1D7450 0%, #30B577 100%);
  mix-blend-mode: multiply;
}

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

@media screen and (max-width: 600px) {
  .c-section {
    min-height: 72px;
  }
}

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

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

.c-featuresGrid .wp-block-image:first-child {
    margin-top: 0;
    flex: 0 0 50px;
}

.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: .625rem;
}

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

.aligncenter.wp-block-image {
  margin-left: auto;
  margin-right: 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: 1.75rem 0;
  grid-gap: 1rem;
  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.25rem 0;
  }

}

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

.wp-block-button__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: left;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 99em;
  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: white;
  background: var(--clr-primary500);
  padding: 1rem 1.5rem;
}

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


.is-style-secondary .wp-block-button__link {
  color: white;
  background: var(--clr-primary700);
  padding: 1rem 1.5rem;
}

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


.is-style-secondary .wp-block-button__link svg path {
  stroke: var(--clr-primary500);
  transition: .3s color;
}

.is-style-secondary .wp-block-button__link:hover svg path {
  stroke: white;
}


.wp-block-button__link svg {
  width: 1.0625rem;
  flex-shrink: 0;
  transition: .3s transform;
}

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

.wp-block-button__link.disabled {
  opacity: .5;
  pointer-events: none;
}

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

  .wp-block-buttons {
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }

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

}

/*header styles*/

.c-mainHeader {
  position: sticky;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  background:  white;
  height: var(--height-header);
  transition: .3s background, .3s height, .3s opacity, .3s box-shadow;
}

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

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

.c-mainHeader__logo {
  display: block;
}

.c-mainHeader__logo img {
  display: block;
}

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

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

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


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

.c-mainMenu  {
  line-height: 1.5;
  margin: 0 auto;
}

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

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

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

.c-mainMenu li a {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-text);
  position: relative;
  text-decoration: none;
  padding: 0;
  transition:.3s color;
  display: block;
}

.c-mainMenu li.c-menuBtn a {
  color: white;
  background: var(--clr-primary500);
  padding: 1rem 1.5rem;
  font-weight: 500;
  border-radius: 99em;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  gap: .5rem;
  transition: .3s color, .3s background;
}

.c-mainMenu li.c-menuBtn a:hover {
  background: var(--clr-primary700);
  color: white;
}

.c-mainMenu li.c-menuBtn a:after {
  content: '';
  width: 1.0625rem;
  height: 1.0625rem;
  background: url('imgs/icon-arrow-right.svg') center center /  1.0625rem  1.0625rem;
  flex-shrink: 0;
  transition: .3s transform;
}

.c-mainMenu li.c-menuBtn a:hover:after {
  transform: translateX(.25rem);
}

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

.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 {
  padding: 1rem 0;
}

.c-mainMenu .sub-menu li {
  padding: .25rem 0;
  border-top: 1px solid #ececec;
  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;
}

.c-mainMenu .menu-item-has-children > a:after {
  content: '';
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
  background: url('imgs/icon-menu-arrow.svg') no-repeat center center / contain;
  margin-top: 1px;
  transition: .3s transform;
}

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

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

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

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

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

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

  .c-mainMenu .sub-menu {
    width: 250px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: .5rem;
    background: white;
    left: -2rem;
    top: calc(100% + var(--dropdown-position-offset));
    padding: 1.5rem 2rem;
    transform: translateY(-4px);
    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 .sub-menu .sub-menu {
    left: calc(100% + 2rem);
    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: 1000px) {

  .c-mainHeader__menuWrap {
    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: 24px var(--width-gutter);
  }

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

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

  .c-mainMenu ul {
    gap: 1.5rem;
  }

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

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

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


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

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

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

  .c-mainMenu li.c-menuBtn a {
    width: max-content;
  }

}

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

.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: 1000px) {

  .c-navIcon {
    display: flex;
  }
}

/* gutenberg block / group styling */


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

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

.has-neutral-100-background-color {
  background-color: var(--clr-neutral100);
  color: var(--clr-text-reverse);
}

.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);
}

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

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

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

.has-primary-600-color {
  color: var(--clr-primary600);
}

.has-neutral-100-color {
  color: var(--clr-neutral100);
}

.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: 5%;
}

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

.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;
}


@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;
  }

}

.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: 600;
  font-size: 1.235rem;
  margin: 0 0 .75rem 0;
  display: block;
}

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 {
  outline: none;
  display: block;
  width: 100%;
  border: none;
  border-radius: .3125rem;
  padding: .825rem 1.25rem;
  font-weight: inherit;
  font-size: var(--fs-p);
  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 {
  height: 160px;
  border: 1px solid var(--clr-greyscale200);
  padding: .75rem;
  border-radius: .375rem;
  font-size: 1rem;
  margin-top: .75rem;
}


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-greyscale600);
  opacity: 1;
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/icon-menu-drop-arrow.svg') no-repeat calc(100% - 16px) center / 10px 6px;
  color: var(--clr-text);
  padding-right: 28px;
}

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

input[type="submit"] {
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 500;
  color: white;
  flex-shrink: 0;
  line-height: 1 !important;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  border-radius: 99em;
  color: white;
  background: var(--clr-primary500);
  padding: 1rem 1.5rem;
  transition: .3s background, .3s color, .3s border;
}

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

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

/* gravity forms styling */

.gform_wrapper {
  background: var(--clr-neutral100);
  padding: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin: calc(var(--b-space) * 1/3) auto 0;
  border-radius: 1rem;
}

.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: 1.5rem;
}

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_wrapper .gfield_required {
  color: inherit !important;
}

.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: 1rem;
  }

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

  .gform_wrapper {
    padding: 2rem;
  }
}

.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"]):not([type="submit"]) {
    line-height: inherit !important;
  }
}

@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;
  }


}

.gform_wrapper.newsletter_wrapper {
  background: none;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}

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

body .gform_wrapper.newsletter_wrapper input[type="email"] {
  background: var(--clr-greyscale800);
  color: white;
  border-radius: .25rem;
  border: none;
  font-size: 1rem;
  min-height: 3rem !important;
}

.gform_wrapper.gravity-theme #field_submit input {
  background: transparent url('imgs/icon-send.svg') no-repeat center center / 1.125rem 1.125rem;
  padding: 0;
  border-radius: 0;
  font-size: 0;
  width: 2.5rem;
  height: 2rem;
  align-self: center !important;
  transition: .3s opacity;
}

.gform_wrapper.gravity-theme #field_submit input:hover {
  background: transparent url('imgs/icon-send.svg') no-repeat center center / 1.125rem 1.125rem;
  opacity: .7;
}

body .gform_wrapper.newsletter_wrapper .gform_fields {
  display: flex;
  gap: 0 !important;
}

body .gform_wrapper.newsletter_wrapper .gform_fields .gfield--type-email {
  flex-grow: 1;
  position: relative;
}

body .gform_wrapper.newsletter_wrapper .gform_fields .gfield--type-email  .validation_message {
  position: absolute;
  top: 100%;
  left: 0;
}

body .gform_wrapper.newsletter_wrapper #field_submit {
  margin-left: -2.5rem;
  position: relative;
}

.wp-block-table {
  padding: 24px 0 32px;
}

.wp-block-table th {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  padding: 0 8px 8px;
}

.wp-block-table td {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ececec;
}

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

  .wp-block-table {
    padding: 18px;
  }

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

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

.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;
}

.c-centresList {
  margin: var(--b-space) 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.c-centreItem {
  display: flex;
  background: var(--clr-neutral100);
  padding: 2.5rem;
  border-radius: 1.6rem;
  gap: 2.5rem;
  align-items: flex-start;
}

.c-centreItem__img {
  flex-shrink: 0;
  width: 33.33%;
}

.c-centreItem__img img {
  display: block;
  margin: 0;
  border-radius: 1.6rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-centreItem__address {
  display: flex;
  margin-bottom: 1rem;
  gap: .5rem;
  align-items: center;
  font-weight: 700;
}

.c-centreItem__address:before {
  content: '';
  width: .75rem;
  height: .9375rem;
  background: url('imgs/icon-location.svg') center center / .75rem .9375rem;
  flex-shrink: 0;
}

.c-centreItem__meta span {
  display: block;
}

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

  .c-centresList {
    gap: 1rem;
  }

  .c-centreItem {
    flex-direction: column;
    padding: var(--width-gutter);
    border-radius: 1rem;
    gap: 1.5rem;
  }

  .c-centreItem__img  {
    width: 100%;
  }
  .c-centreItem__img img {
    aspect-ratio: 16/9;
    border-radius: 1rem;
  }
}

.c-centreLogos {
  margin: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

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

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

.c-centreLogo {
  transition: .3s opacity;
}

.c-centreLogo:hover {
  opacity: .7;
}

.c-centreLogo img {
  display: block;
}

@media screen and (max-width: 600px) {
  .c-centreLogos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .c-centreLogo {
    width: calc((100% - 2rem) / 2);
    padding: 0 5%;
  }

  .c-centreLogo img {
    margin: 0 auto;
    max-height: 70px;
    max-width: 170px;
    width: 100%;
    object-fit: contain;
  }

}

.c-footer a {
  color: white;
}

.c-footer a:hover {
  color: var(--clr-greyscale200);
}

@media screen and (max-width: 600px) {
  .c-footer__cols {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
  }
}


.c-activityList {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.c-activityItem {
  display: flex;
  background: var(--clr-neutral100);
  padding: 2.5rem;
  border-radius: 1.6rem;
  gap: 1.5rem;
  align-items: flex-start;
}

.c-activityItem__img {
  flex-shrink: 0;
  width: 25%;
}

.c-activityItem__img img {
  display: block;
  margin: 0;
  border-radius: 1.6rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-activityItem__locations {
  display: block;
  /*gap: 1rem;*/
  margin-bottom: .5rem;
}

.c-activityItem__locations p {
  font-size: var(--fs-p);
  flex-shrink: 0;
  margin: 0;
}

.activityItem__locations h4 {
  margin: 20px 0px;
}

.c-activityItem__locationItems {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: .25rem;
  align-items: flex-start;
}

.c-activityItem__locationItems a {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: var(--fs-p-sm);
}

/*
.c-activityItem__locationItems a:before {
  content: '';
  display: inline-block;
  width: .75rem;
  height: .9375rem;
  background: url('imgs/icon-location.svg') center center / .75rem .9375rem;
}*/

.c-activityItem h3 {
  margin-top: .25rem;
  margin-bottom: .75rem;
}

.c-activityArchive {
  display:flex;
  gap: 2rem;
  margin-top: 2rem;
  margin: var(--b-space) 0;
  align-items: flex-start;
}

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

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

.c-activityArchive__sidebar {
  background: var(--clr-neutral100);
  padding: 2.5rem;
  border-radius: 1.6rem;
  flex-shrink: 0;
  width: 360px;
}

.c-activityArchive__content {
  width: 100%;
  transition: .3s opacity;
}

.c-activityArchive__content.loading {
  opacity: .5;
  pointer-events: none;
  cursor: wait;
}

.c-activityArchive__content h2 {
  margin-top: 2rem;
}

.c-activityArchive__clear {
  border: none;
  background: none;
  color: var(--clr-primary500);
  font-weight: 600;
  margin-bottom: 1rem;
  outline: none;
  transition: .3s color;
}

.c-activityArchive__clear:hover {
  color: var(--clr-primary700);
}

.c-activityArchive__search {
  position: relative;
}

.c-activityArchive__search input[type="text"] {
  margin: 0;
  padding-right: 2.5rem;
  border-radius: 99rem;
  border: 1px solid var(--clr-primary500);
}

.c-activityArchive__search button {
  position: absolute;
  right: .5rem;
  top: 0;
  bottom: 0;
  background: url('imgs/icon-search.svg') no-repeat center center / 1.25rem 1.25rem;
  width: 2rem;
  outline: none;
  border: none;
  font-size: 0;
  transition: .3s opacity;
}

.c-activityArchive__centreFilter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-activityArchive__centreFilter p {
  font-size: var(--fs-p);
  margin: 0;
  flex-shrink: 0;
}

.c-activityArchive__centreFilter select {
  border-radius: 99rem;
  border: 1px solid var(--clr-primary500);
  font-size: var(--fs-p);
  max-width: 320px;
}

.c-activityArchive__filterBtn {
  display: none;
}

.c-activityArchive__filterBtn .wp-block-button {
  width: 100%;
}

.c-activityArchive__filterBtn .wp-block-button__link svg, .c-activityArchive__filterBtn .wp-block-button__link:hover svg {
  transform: none;
}

.c-activityArchive__sidebarClose {
  position: absolute;
  left: 100%;
  top: 2rem;
  display: none;
  border: none;
  background: transparent;
  width: 2rem;
  height: 2rem;
  color: white;
}

@media screen and (max-width: 1200px) {
  .c-activityItem__locations {
    flex-direction: column;
    gap: .25rem;
  }
}


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

  .c-activityArchive__sidebarClose {
    display: block;
  }

  .c-activityArchive__filterBtn {
    display: block;
  }

  .c-activityArchive__sidebar {
    width: 300px;
    position: fixed;
    z-index: 9999;
    top: var(--height-header);
    left: 0;
    bottom: 0;
    box-shadow: 0 0 0 500px rgba(0,0,0,.7);
    background: white;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-1rem);
    border-right: 1px solid var(--clr-greyscale200);
    transition: .3s opacity, 0s visibility .3s, .3s transform;
    transition-delay: 0s, 0.3s, 0s;
    border-radius: 0;
  }

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

@media screen and (max-width: 600px) {
  .c-activityItem {
    padding: var(--width-gutter);
    flex-direction: column;
    padding: var(--width-gutter);
    border-radius: 1rem;
    gap: 1.5rem;
  }

  .c-activityItem__img {
    width: 100%;
  }

  .c-activityItem__img img {
    aspect-ratio: 16/9;
    border-radius: 1rem;
  }
}

.c-checkboxList {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.c-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.c-checkbox label:before {
  content: '';
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--clr-primary500);
  flex-shrink: 0;
  margin-top: .25rem;
  background: white;
}

.c-checkbox input:checked + label:before {
  background: white url('imgs/icon-input-check.svg') no-repeat center center / .75rem .75rem;
}

.c-checkbox input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.c-checkbox__children {
  padding-left: 1rem;
  padding-top: .25rem;
}

.c-pagination {
  margin-top: 3rem;
}

.c-pagination  {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}


.page-numbers {
  border-radius: .25rem;
  background: transparent;
  color: var(--clr-text);
  font-size: 1rem;
  padding: 0 .5rem;
  min-width: 42px;
  height: 42px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--clr-greyscale200);
  transition: .3s background, .3s color, .3s border;
}

.page-numbers:not(.prev):not(.next):hover, .page-numbers.current {
  background: var(--clr-primary500);
  border: 1px solid var(--clr-primary500);
  color: white;
}

.page-numbers.prev {
  min-width: 0;
  font-size: 0;
  border: none;
}

.page-numbers.prev:before {
  content: '';
  background: url('imgs/chevron-left.svg') center center / 9px 16px;
  width: 9px;
  height: 16px;
  flex-shrink: 0;
}

.page-numbers.next {
  min-width: 0;
  font-size: 0;
  border: none;
}

.page-numbers.next:after {
  content: '';
  background: url('imgs/chevron-right.svg') center center / 9px 16px;
  width: 9px;
  height: 16px;
  flex-shrink: 0;
}

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

.c-featuresGrid {
  gap: 2rem;
}

.c-featuresGrid .wp-block-group {
  gap: 1rem !important;
}

.c-featuresGrid .wp-block-group .wp-block-group  {
  gap: .25rem !important;
}


.c-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 3rem;
  max-width: 1500px;
  margin: calc(var(--b-space) * 2/3) auto;
}

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

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

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

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

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

  .c-cards {
    row-gap: 1.5rem;
  }

  .c-card {
    width: 100%;
  }
}

.c-card__thumb {
  position: relative;
}

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

.c-card__text {
  border-radius: .5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  color: white;
  padding: 2rem;
  font-weight: 800;
  background: rgba(37, 115, 81, .75);
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-card__text ul {
  list-style-type: none;
  padding: 0;
}

.c-card__text p:empty {
  display: none;
}

.c-card__text ul li {
  display: flex;
  margin-left: 0;
  gap: .5rem;
  padding-left: 0;
  align-items: flex-start;
}

.c-card__text ul li:before {
  content: '';
  flex-shrink: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url('imgs/icon-arrow-right.svg') center center / 1.0625rem 1.0625rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: .3s transform;
}

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

.c-card__btn {
  position: relative;
  z-index: 2;
  margin: -2rem 1rem 0;
}

.c-card__btn .wp-block-button {
  width: 100%;
}

.c-card__btn .wp-block-button__link {
  text-align: left;
  min-height: 4rem;
}

.c-card__btn .wp-block-button__link {
  font-weight: 800;
}

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