/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
@import url("https://use.typekit.net/chq3xvg.css");
/*
	Custom Login
	Description: Style the WordPress Login page
*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900&display=swap");
@import url("https://use.typekit.net/chq3xvg.css");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap");
/* -------------------------------------------
***** Optional Imports *****
------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

svg {
  width: 100%;
  height: 100%;
}

b {
  font-weight: bold;
}

::-webkit-input-placeholder {
  color: #777;
}

::-moz-placeholder {
  color: #777;
}

:-ms-input-placeholder {
  color: #777;
}

::-ms-input-placeholder {
  color: #777;
}

::placeholder {
  color: #777;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*
* Global button styling
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* Breakpoint debugging
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/* ------------------------------
***** INNER BANNERS *****
-------------------------------*/
.banner-static {
  --banner-height: 500px;
  --tablet-height: 400px;
  --mobile-height: 250px;
  --title-color: white;
  --overlay-opacity: 0;
  --bg-pos: center center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: var(--banner-height);
  width: 100%;
  margin-bottom: 5rem;
  background-image: -webkit-gradient(linear, left bottom, right top, from(var(--wp--preset--color--primary)), to(var(--wp--preset--color--tertiary)));
  background-image: linear-gradient(to top right, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--tertiary) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
@media (max-width: 1024px) {
  .banner-static {
    height: var(--tablet-height);
  }
}
@media (max-width: 782px) {
  .banner-static {
    height: var(--mobile-height);
  }
}
.banner-static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: var(--overlay-opacity);
  z-index: 1;
}
.banner-static .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos-x) calc(var(--bg-pos-y) + var(--pos-offset, 0%));
     object-position: var(--bg-pos-x) calc(var(--bg-pos-y) + var(--pos-offset, 0%));
  z-index: 0;
}
@media (max-width: 1024px) {
  .banner-static .banner-image {
    top: 0;
  }
}
.banner-static .wrap {
  position: relative;
  z-index: 2;
  margin: 0 auto 3rem;
  color: var(--title-color);
}

.banner-slideshow {
  --slide-height: 100vh;
  --tablet-height: 700px;
  --mobile-height: 500px;
  --overlay-opacity: 0.5;
  --bg-pos: center;
  --swiper-pagination-bullet-width: 2rem;
  --swiper-pagination-bullet-height: 2rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: black;
  --swiper-pagination-color: white;
  --bullet-border: 2px solid white;
  --swiper-navigation-color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: var(--slide-height);
}
@media (max-width: 1024px) {
  .banner-slideshow {
    --slide-height: var(--tablet-height);
  }
}
@media (max-width: 782px) {
  .banner-slideshow {
    --slide-height: var(--mobile-height);
  }
}
.banner-slideshow .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  height: var(--slide-height);
  padding: var(--wp--preset--spacing--normal);
}
.banner-slideshow .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: var(--overlay-opacity);
}
.banner-slideshow .swiper-slide iframe {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-slideshow .swiper-slide .slide-media {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos);
     object-position: var(--bg-pos);
}
.banner-slideshow .swiper-slide .wrap {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 6rem 0;
  color: #fff;
}
@media (min-width: 783px) {
  .banner-slideshow .swiper-slide .wrap .banner-caption {
    width: 65%;
  }
}
@media (min-width: 1025px) {
  .banner-slideshow .swiper-slide .wrap .banner-caption {
    width: 50%;
  }
}
@media (max-width: 782px) {
  .banner-slideshow .swiper-slide .wrap .banner-caption {
    width: 80%;
  }
}
.banner-slideshow .swiper-slide .wrap h2 {
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.banner-slideshow .swiper-slide .wrap h2 span {
  display: inline-block;
}
.banner-slideshow .swiper-slide .wrap p {
  text-align: center;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.banner-slideshow .banner-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  color: var(--wp--preset--color--accent-green);
  display: grid;
  grid-template-columns: minmax(var(--wp--style--root--padding-left), 1fr) repeat(12, minmax(0, calc(var(--wp--style--global--wide-size) / 12))) minmax(var(--wp--style--root--padding-right), 1fr);
}
.banner-slideshow .banner-skip {
  padding: var(--wp--preset--spacing--normal) 0;
}
.banner-slideshow .banner-skip-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-column: 1/3;
  margin-left: var(--wp--style--root--padding-left);
}
.banner-slideshow .banner-skip svg {
  max-width: 30px;
}
.banner-slideshow .banner-skip svg path {
  -webkit-animation: pulse 1.8s infinite;
          animation: pulse 1.8s infinite;
  fill: var(--wp--preset--color--accent-green);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.banner-slideshow .banner-skip svg path:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.banner-slideshow .banner-skip svg path:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.banner-slideshow .banner-skip:hover svg path {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 1 !important;
}
.banner-slideshow .banner-stats {
  grid-column: 8/-1;
  border-top: 3px solid var(--wp--preset--color--accent-green);
  background: var(--wp--preset--color--dark-green);
}
@media (max-width: 1024px) {
  .banner-slideshow .banner-stats {
    grid-column: 6/-1;
  }
}
@media (max-width: 782px) {
  .banner-slideshow .banner-stats {
    grid-column: 4/-1;
  }
}
.banner-slideshow .banner-stats .wp-block-columns {
  margin: 0;
  max-width: calc(var(--wp--style--global--wide-size) / 2);
}
.banner-slideshow .banner-stats .wp-block-columns .wp-block-column {
  padding: var(--wp--preset--spacing--normal) var(--wp--preset--spacing--x-small);
}
.banner-slideshow .banner-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  font-size: 4rem;
  text-align: center;
  font-family: var(--wp--preset--font-family--primary);
  margin-bottom: 0.5em;
}
.banner-slideshow .banner-stat__stat {
  color: var(--wp--preset--color--accent-green);
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (min-width: 1441px) {
  .banner-slideshow .banner-stat__stat {
    font-size: 5rem;
  }
}
@media (max-width: 1024px) {
  .banner-slideshow .banner-stat__stat br {
    display: none;
  }
}
@media (max-width: 782px) {
  .banner-slideshow .banner-stat__stat {
    font-size: 3rem;
  }
}
.banner-slideshow .banner-stat__text {
  display: block;
  color: white;
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (max-width: 782px) {
  .banner-slideshow .banner-stat__text {
    font-size: 12px;
  }
}
.banner-slideshow .swiper-pagination {
  margin: 2rem 0;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet {
  border: var(--bullet-border);
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  border-radius: 50px !important;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible, .banner-slideshow .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
  background: var(--swiper-pagination-color);
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
.wrap {
  width: 100%;
  max-width: var(--wp--style--global--wide-size);
  margin: auto;
}

.fill-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text-center,
.center {
  text-align: center !important;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.hidden,
.hide {
  display: none !important;
}

.floatleft {
  float: left !important;
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.floatright {
  float: right !important;
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

.max-width-100 {
  max-width: 100px !important;
}

.max-width-200 {
  max-width: 200px !important;
}

.max-width-300 {
  max-width: 300px !important;
}

.max-width-400 {
  max-width: 400px !important;
}

.max-width-500 {
  max-width: 500px !important;
}

.max-width-600 {
  max-width: 600px !important;
}

.max-width-700 {
  max-width: 700px !important;
}

.max-width-800 {
  max-width: 800px !important;
}

.max-width-900 {
  max-width: 900px !important;
}

.max-width-1000 {
  max-width: 1000px !important;
}

.min-width-100 {
  min-width: 100px !important;
}

.min-width-200 {
  min-width: 200px !important;
}

.min-width-300 {
  min-width: 300px !important;
}

.min-width-400 {
  min-width: 400px !important;
}

.min-width-500 {
  min-width: 500px !important;
}

.min-width-600 {
  min-width: 600px !important;
}

.min-width-700 {
  min-width: 700px !important;
}

.min-width-800 {
  min-width: 800px !important;
}

.min-width-900 {
  min-width: 900px !important;
}

.min-width-1000 {
  min-width: 1000px !important;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.pt0 {
  padding-top: 0rem !important;
}

.pb0 {
  padding-bottom: 0rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.pt1 {
  padding-top: 1rem !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

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

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

.mt3 {
  margin-top: 3rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.pt3 {
  padding-top: 3rem !important;
}

.pb3 {
  padding-bottom: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.pt4 {
  padding-top: 4rem !important;
}

.pb4 {
  padding-bottom: 4rem !important;
}

.mt5 {
  margin-top: 5rem !important;
}

.mb5 {
  margin-bottom: 5rem !important;
}

.pt5 {
  padding-top: 5rem !important;
}

.pb5 {
  padding-bottom: 5rem !important;
}

.mt6 {
  margin-top: 6rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.pt6 {
  padding-top: 6rem !important;
}

.pb6 {
  padding-bottom: 6rem !important;
}

.mt7 {
  margin-top: 7rem !important;
}

.mb7 {
  margin-bottom: 7rem !important;
}

.pt7 {
  padding-top: 7rem !important;
}

.pb7 {
  padding-bottom: 7rem !important;
}

.mt8 {
  margin-top: 8rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.pt8 {
  padding-top: 8rem !important;
}

.pb8 {
  padding-bottom: 8rem !important;
}

.mt9 {
  margin-top: 9rem !important;
}

.mb9 {
  margin-bottom: 9rem !important;
}

.pt9 {
  padding-top: 9rem !important;
}

.pb9 {
  padding-bottom: 9rem !important;
}

.mt10 {
  margin-top: 10rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.pt10 {
  padding-top: 10rem !important;
}

.pb10 {
  padding-bottom: 10rem !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

ul,
ol {
  padding: 0 0 0 1em;
  margin: 0 0 1.5em 0;
}
ul li,
ol li {
  margin-bottom: 0.5em;
}

ol li {
  list-style: decimal;
}

main .content a:not(:has(img), .wp-block-button__link, .sidebar-link) {
  position: relative;
  -webkit-transition: 200ms;
  transition: 200ms;
}
main .content a:not(:has(img), .wp-block-button__link, .sidebar-link)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  -webkit-transition: width 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):hover, main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):active, main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):focus {
  color: var(--wp--preset--color--tertiary);
  text-decoration: none;
}
main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):hover::before, main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):active::before, main .content a:not(:has(img), .wp-block-button__link, .sidebar-link):focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

img.alignright {
  margin: 0 0 0 20px;
  width: 50%;
  height: auto;
  float: right;
}
img.alignleft {
  margin: 0 20px 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 783px) {
  img.alignright, img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
img.aligncenter {
  margin: 0 auto;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

pre {
  display: block;
  font-family: monospace;
  white-space: pre;
  margin: 1em 0;
}

html {
  scroll-padding-top: 100px;
}

html {
  overscroll-behavior-y: none;
  background: #fff;
  scroll-behavior: smooth;
  font-size: 50%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.menu-opened {
  scroll-behavior: auto;
  overflow: hidden;
}
html.menu-opened footer,
html.menu-opened main {
  pointer-events: none;
}
@media (min-width: 501px) {
  html {
    font-size: 55%;
  }
}
@media (min-width: 783px) {
  html {
    font-size: 57.5%;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: 62.5%;
  }
}

body {
  overscroll-behavior-y: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--wp--preset--font-family--primary);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--wp--preset--color--foreground);
}
body a:where(:not(.wp-element-button)) {
  text-decoration: none;
}
html.menu-opened body {
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main > .container > .content {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

iframe {
  display: block;
  width: 100%;
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: -40px;
  background-color: #f1f1f1;
  padding: 8px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}

/*
@font-face {
	font-family: 'SourceSans3';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url('../fonts/SourceSans3/SourceSans3.ttf') format('woff');
}

@font-face {
	font-family: 'SourceSans3';
	font-weight: 400;
	font-style: italic;
	font-display: swap;
	src: url('../fonts/SourceSans3/SourceSans3-italic.ttf') format('woff');
}
*/
.wp-block-button {
  border-radius: 4px;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link {
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--secondary);
  background-clip: content-box;
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: calc(50% - 0.43em);
  right: 1em;
  border-top: 0.43em solid transparent;
  border-bottom: 0.43em solid transparent;
  border-left: 0.43em solid currentColor;
  -webkit-transition: border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border-left-color 200ms ease-out;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wp-block-button .wp-block-button__link:hover {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
}
.wp-block-button .wp-block-button__link:hover::before {
  width: 0%;
  left: auto;
  right: 0;
}
.wp-block-button .wp-block-button__link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  border-left-color: currentColor;
}
.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text) {
  padding-right: 3em;
}
.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text)::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: currentColor;
  right: 1em;
  width: 1.1em;
  font-size: 1.1em;
  border-color: transparent;
  -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text):hover::after {
  -webkit-transform: none;
          transform: none;
}
.wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text)::after {
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.wp-block-button .wp-block-button__link.has-background {
  background: transparent !important;
}
.wp-block-button .wp-block-button__link.has-background.has-primary-background-color {
  border-color: var(--wp--preset--color--primary);
}
.wp-block-button .wp-block-button__link.has-background.has-primary-background-color::before {
  background: var(--wp--preset--color--primary);
}
.wp-block-button .wp-block-button__link.has-background.has-primary-background-color:hover {
  color: var(--wp--preset--color--primary) !important;
}
.wp-block-button .wp-block-button__link.has-background-background-color {
  color: var(--wp--preset--color--secondary) !important;
}
.wp-block-button .wp-block-button__link.has-background-background-color::before {
  border-radius: 3px;
  background: #fff;
}
.wp-block-button .wp-block-button__link.has-background-background-color::after {
  border-left-color: var(--wp--preset--color--secondary);
}
.wp-block-button .wp-block-button__link.has-background-background-color:hover {
  color: #fff !important;
}
.wp-block-button .wp-block-button__link.has-background-background-color:hover::after {
  border-left-color: #fff;
}
.wp-block-button .wp-block-button__link.has-text-color {
  border-color: #fff;
}
.wp-block-button .wp-block-button__link.has-text-color::before {
  background-color: #fff;
}
.wp-block-button .wp-block-button__link.has-text-color::after {
  border-left-color: #fff;
}
.wp-block-button .wp-block-button__link.has-text-color:hover {
  color: var(--wp--preset--color--secondary) !important;
}
.wp-block-button .wp-block-button__link.has-text-color:hover::after {
  border-left-color: var(--wp--preset--color--secondary);
}
.wp-block-button.is-style-fill-width {
  width: 100%;
}
.wp-block-button.is-style-fill-width .wp-block-button__link {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (max-width: 782px) {
  .wp-block-buttons.is-content-justification-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.kpi-key__links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3em;
  position: relative;
}
.kpi-key__links__title {
  font-weight: 700;
  color: var(--wp--preset--color--black);
}
.kpi-key__risk-section {
  margin: 0;
  padding: 0;
  list-style: none;
}
.kpi-key__link--strategy img {
  width: 25px;
  height: 25px;
  border: 0.5px solid #fff;
  padding: 4px;
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.kpi-key__link__number, .kpi-key__link__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  background: var(--risk-color, var(--wp--preset--color--secondary));
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.kpi-key__link__title {
  position: absolute;
  -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  max-width: 215px;
  display: inline-block;
  height: auto;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.2em;
  border-radius: 3px;
  font-size: 14px;
  z-index: 100;
  bottom: 130%;
  left: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  text-align: center;
  cursor: pointer;
}
.kpi-key__link:hover .kpi-key__link__title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}

p.is-style-intro {
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 500;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.4;
  color: #000;
}
p.is-style-feature {
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 500;
  font-size: var(--wp--preset--font-size--feature);
  line-height: 1.1;
  color: #000;
  text-wrap: balance;
}

ul.wp-block-list {
  list-style-type: none;
  position: relative !important;
  padding-left: 1em;
}
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  height: 1.5em;
  width: 1ch;
  left: 0.1em;
  background: var(--wp--preset--color--green);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="12" viewBox="0 0 6 12"><path id="Path_4749" data-name="Path 4749" d="M0,12.032l6-6-6-6Z" transform="translate(0 -0.032)" fill="%239eb6ad"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="12" viewBox="0 0 6 12"><path id="Path_4749" data-name="Path 4749" d="M0,12.032l6-6-6-6Z" transform="translate(0 -0.032)" fill="%239eb6ad"/></svg>') no-repeat center;
}
ul.wp-block-list li:has(a[href$=".pdf"]), ul.wp-block-list li:has(a[href^=".pdf"]), ul.wp-block-list li:has(a[href*=".pdf#"]), ul.wp-block-list li:has(a[href*=".pdf?"]) {
  position: relative !important;
  padding-left: 0.2em;
}
ul.wp-block-list li:has(a[href$=".pdf"])::before, ul.wp-block-list li:has(a[href^=".pdf"])::before, ul.wp-block-list li:has(a[href*=".pdf#"])::before, ul.wp-block-list li:has(a[href*=".pdf?"])::before {
  content: "";
  display: inline-block;
  background-color: var(--wp--preset--color--primary);
  top: 45%;
  left: -1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 1em;
  font-size: 1em;
  border-color: transparent;
  -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
ul.wp-block-list li:has(a[href$=".pdf"]) a, ul.wp-block-list li:has(a[href^=".pdf"]) a, ul.wp-block-list li:has(a[href*=".pdf#"]) a, ul.wp-block-list li:has(a[href*=".pdf?"]) a {
  position: relative;
}
ul.wp-block-list li:has(a[href$=".pdf"]) a:hover::after, ul.wp-block-list li:has(a[href^=".pdf"]) a:hover::after, ul.wp-block-list li:has(a[href*=".pdf#"]) a:hover::after, ul.wp-block-list li:has(a[href*=".pdf?"]) a:hover::after {
  -webkit-transform: none;
          transform: none;
}
ul.wp-block-list li.resources::before {
  background: var(--wp--preset--color--tertiary);
}
ul.wp-block-list li.opportunity::before {
  background: #9acc0b;
}
ul.wp-block-list li.to-all::before {
  background: #4399cf;
}

.wp-block-proactive-accordion {
  --accordion--title-font: var(--wp--preset--font-family--secondary);
  --accordion--title-size: var(--wp--preset--font-size--heading-3);
  --accordion--title-color: #fff;
  --accordion--title-color--active: var(--wp--preset--color--primary);
  --accordion--title-color--hover: var(--wp--preset--color--primary);
  --accordion--border-color: #fff;
  --accordion--border-color--hover: #fff;
  --accordion--border-color--active: #fff;
  --accordion--background-color: var(--wp--preset--color--green);
}
.wp-block-proactive-accordion .accordion-item__header {
  background: var(--accordion--background-color);
  padding: 2rem 6rem 2rem 1.5rem;
  font-weight: 700;
  -webkit-transition: 200ms;
  transition: 200ms;
  line-height: 1.2;
}
.wp-block-proactive-accordion .accordion-item__header:hover {
  background: transparent;
}
.wp-block-proactive-accordion .accordion-item__header:hover .accordion-item__icon {
  --arrow-color: var(--wp--preset--color--green);
}
.wp-block-proactive-accordion .accordion-item__icon {
  right: var(--wp--preset--spacing--small);
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: 50% 25%;
          transform-origin: 50% 25%;
  --arrow-color: #fff;
  --arrow-size: 10px;
}
.wp-block-proactive-accordion .accordion-item__icon::before {
  content: "";
  height: 0px;
  width: 0px;
  border: none;
  border-top: var(--arrow-size) solid var(--arrow-color);
  border-left: var(--arrow-size) solid transparent;
  border-right: var(--arrow-size) solid transparent;
}
.wp-block-proactive-accordion .accordion-item__icon span {
  display: none;
}
.wp-block-proactive-accordion .accordion-item[aria-expanded=true] .accordion-item__header {
  background: transparent;
}
.wp-block-proactive-accordion .accordion-item[aria-expanded=true] .accordion-item__icon {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  --arrow-color: var(--wp--preset--color--green);
}
.wp-block-proactive-accordion .accordion-item__content {
  -webkit-transition: 650ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 650ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}
.wp-block-proactive-accordion .accordion-item__content-inner {
  padding: 0 0 var(--wp--preset--spacing--medium) 0;
}
.wp-block-proactive-accordion .accordion-item.wcp-a[aria-expanded=true], .wp-block-proactive-accordion .accordion-item.wcp-b[aria-expanded=true], .wp-block-proactive-accordion .accordion-item.wcp-c[aria-expanded=true] {
  background: var(--wp--preset--color--light-grey);
}
.wp-block-proactive-accordion .accordion-item.wcp-a {
  --accordion--background-color: var(--wp--preset--color--tertiary);
  --accordion--title-color--active: var(--wp--preset--color--tertiary);
  --accordion--title-color--hover: var(--wp--preset--color--tertiary);
}
.wp-block-proactive-accordion .accordion-item.wcp-b {
  --accordion--background-color: var(--wp--preset--color--accent-green);
  --accordion--title-color--active: var(--wp--preset--color--accent-green);
  --accordion--title-color--hover: var(--wp--preset--color--accent-green);
}
.wp-block-proactive-accordion .accordion-item.wcp-c {
  --accordion--background-color: var(--wp--preset--color--secondary);
  --accordion--title-color--active: var(--wp--preset--color--secondary);
  --accordion--title-color--hover: var(--wp--preset--color--secondary);
}

.wp-block-proactive-tabs {
  --proactive-tab__color: var(--wp--preset--color--green);
  --proactive-tab__color__hover: var(--wp--preset--color--tertiary);
  --proactive-tab__color__active: var(--wp--preset--color--tertiary);
  --proactive-tab__bg: transparent;
  --proactive-tab__bg__hover: transparent;
  --proactive-tab__bg__active: transparent;
  border-bottom: 1px solid var(--wp--preset--color--tertiary);
}
.wp-block-proactive-tabs__tabs-list {
  border-bottom: 3px solid var(--wp--preset--color--tertiary);
  gap: 0;
}
.wp-block-proactive-tabs__tabs-list__tab:first-child .tabs-button {
  padding-left: 0;
}
.wp-block-proactive-tabs__tabs-list__tab .tabs-button {
  position: relative;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}
.wp-block-proactive-tabs__tabs-list__tab .tabs-button::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wp-block-proactive-tabs__tabs-list__tab.active .tabs-button::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.wp-block-proactive-tabs .tab-content {
  overflow: visible;
}
.wp-block-proactive-tabs .tab-content__inner {
  padding: var(--wp--preset--spacing--normal) 0;
}
.wp-block-proactive-tabs .tab-content__inner p:last-of-type {
  margin-bottom: 0;
}

.wp-block-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.wp-block-table + h2, .wp-block-table + h3, .wp-block-table + h4, .wp-block-table + h5, .wp-block-table + h6 {
  margin-top: 3rem;
}
.wp-block-table thead,
.wp-block-table tfoot {
  color: black;
  text-transform: unset;
}
.wp-block-table thead tr,
.wp-block-table tfoot tr {
  border-bottom: 3px solid var(--wp--preset--color--primary);
}
.wp-block-table thead th,
.wp-block-table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
  vertical-align: bottom;
}
@media (max-width: 500px) {
  .wp-block-table thead th,
  .wp-block-table tfoot th {
    font-size: 14px;
  }
}
.wp-block-table thead th {
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
  font-weight: 700;
  border: 0;
}
.wp-block-table thead th.report, .wp-block-table thead th.webcast, .wp-block-table thead th.presentation, .wp-block-table thead th.download, .wp-block-table thead th.edit {
  width: 12rem;
  text-align: center;
}
.wp-block-table tbody {
  border-bottom: 1px solid var(--wp--preset--color--primary);
}
.wp-block-table tbody tr:nth-child(odd) {
  background: var(--wp--preset--color--light-grey);
}
.wp-block-table tbody tr td {
  border: 0;
  vertical-align: middle;
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
}
.wp-block-table tbody tr th {
  font-weight: 500;
}
.wp-block-table tbody .document_date {
  font-weight: 700;
  width: 140px;
}
.wp-block-table tbody .file_name {
  font-size: inherit;
}
.wp-block-table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}
.wp-block-table tbody .file_name a::before {
  content: none;
}
.wp-block-table tbody .file_name a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--tertiary);
}
.wp-block-table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 782px) {
  .wp-block-table tbody .file_size {
    min-width: 9rem;
  }
}
.wp-block-table tbody .date_published {
  width: 10rem;
  font-size: 1.4rem;
}
.wp-block-table tbody .report,
.wp-block-table tbody .webcast,
.wp-block-table tbody .presentation,
.wp-block-table tbody .download,
.wp-block-table tbody .edit {
  width: 12rem;
  text-align: center;
  position: relative;
  font-size: var(--wp--preset--font-size--normal);
}
.wp-block-table tbody .report > a,
.wp-block-table tbody .webcast > a,
.wp-block-table tbody .presentation > a,
.wp-block-table tbody .download > a,
.wp-block-table tbody .edit > a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.wp-block-table tbody .report > a svg,
.wp-block-table tbody .webcast > a svg,
.wp-block-table tbody .presentation > a svg,
.wp-block-table tbody .download > a svg,
.wp-block-table tbody .edit > a svg {
  pointer-events: none;
}
.wp-block-table tbody .report > a::before,
.wp-block-table tbody .webcast > a::before,
.wp-block-table tbody .presentation > a::before,
.wp-block-table tbody .download > a::before,
.wp-block-table tbody .edit > a::before {
  content: none;
}
.wp-block-table tbody .report > a:focus, .wp-block-table tbody .report > a:hover,
.wp-block-table tbody .webcast > a:focus,
.wp-block-table tbody .webcast > a:hover,
.wp-block-table tbody .presentation > a:focus,
.wp-block-table tbody .presentation > a:hover,
.wp-block-table tbody .download > a:focus,
.wp-block-table tbody .download > a:hover,
.wp-block-table tbody .edit > a:focus,
.wp-block-table tbody .edit > a:hover {
  color: var(--wp--preset--color--tertiary);
}
.wp-block-table tbody .report > a:focus svg, .wp-block-table tbody .report > a:hover svg,
.wp-block-table tbody .webcast > a:focus svg,
.wp-block-table tbody .webcast > a:hover svg,
.wp-block-table tbody .presentation > a:focus svg,
.wp-block-table tbody .presentation > a:hover svg,
.wp-block-table tbody .download > a:focus svg,
.wp-block-table tbody .download > a:hover svg,
.wp-block-table tbody .edit > a:focus svg,
.wp-block-table tbody .edit > a:hover svg {
  fill: var(--wp--preset--color--tertiary);
}
.wp-block-table tbody .report svg,
.wp-block-table tbody .webcast svg,
.wp-block-table tbody .presentation svg,
.wp-block-table tbody .download svg,
.wp-block-table tbody .edit svg {
  width: 25px;
  height: 20px;
  fill: var(--wp--preset--color--primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.wp-block-table tbody .report .esef-zip,
.wp-block-table tbody .webcast .esef-zip,
.wp-block-table tbody .presentation .esef-zip,
.wp-block-table tbody .download .esef-zip,
.wp-block-table tbody .edit .esef-zip {
  position: relative;
}
.wp-block-table tbody .report .esef-zip::after,
.wp-block-table tbody .webcast .esef-zip::after,
.wp-block-table tbody .presentation .esef-zip::after,
.wp-block-table tbody .download .esef-zip::after,
.wp-block-table tbody .edit .esef-zip::after {
  content: "Download ESEF Zip";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -180%);
          transform: translate(-50%, -180%);
  background: var(--wp--preset--color--primary);
  color: white;
  opacity: 0;
  font-size: var(--wp--preset--font-size--x-small);
  border-radius: 4px;
  white-space: nowrap;
  padding: 0.5em 1em;
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wp-block-table tbody .report .esef-zip:hover::after,
.wp-block-table tbody .webcast .esef-zip:hover::after,
.wp-block-table tbody .presentation .esef-zip:hover::after,
.wp-block-table tbody .download .esef-zip:hover::after,
.wp-block-table tbody .edit .esef-zip:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
}
.wp-block-table tfoot {
  border-top: 1px solid;
}
.wp-block-table tfoot td {
  background: none;
  border: none;
  font-weight: 700;
}
.wp-block-table figcaption {
  line-height: 1.8;
  margin-top: var(--wp--preset--spacing--x-small);
  font-size: var(--wp--preset--font-size--x-small);
  color: var(--wp--preset--color--foreground);
}
@media (max-width: 1024px) {
  .wp-block-table {
    overflow: scroll;
  }
}
.wp-block-table.production-table thead tr th:first-child,
.wp-block-table.production-table tbody tr td:first-child {
  width: 150px;
}
@media (max-width: 500px) {
  .wp-block-table.production-table {
    overflow: scroll;
  }
  .wp-block-table.production-table thead tr th,
  .wp-block-table.production-table tbody tr td {
    width: 90px;
  }
  .wp-block-table.production-table thead tr th:first-child,
  .wp-block-table.production-table tbody tr td:first-child {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .wp-block-table.climate-change thead th,
  .wp-block-table.climate-change tbody td {
    width: 105px;
  }
}
.wp-block-table.expenditure thead th:first-child,
.wp-block-table.expenditure tbody td:first-child {
  width: 130px;
}

.plyr {
  --plyr-color-main: transparent;
  --plyr-video-control-color-hover: var(--wp--preset--color--secondary);
  --plyr-range-fill-background: var(--wp--preset--color--secondary);
}
.plyr__poster {
  background-size: cover;
  background-position: center;
}
.plyr__progress input[type=range] {
  color: var(--wp--preset--color--secondary);
}
.plyr__control--overlaid::before {
  content: "";
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 53"><g fill="none" stroke="%23fff" stroke-width="2"><rect width="53" height="53" stroke="none" rx="5"/><rect width="51" height="51" x="1" y="1" rx="4"/></g><path fill="%23fff" d="M22.771 38.777 34.23 26.5 22.771 14.223Z"/></svg>');
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 53"><g fill="none" stroke="%23fff" stroke-width="2"><rect width="53" height="53" stroke="none" rx="5"/><rect width="51" height="51" x="1" y="1" rx="4"/></g><path fill="%23fff" d="M22.771 38.777 34.23 26.5 22.771 14.223Z"/></svg>');
  background: #fff;
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}
.plyr__control--overlaid svg {
  display: none;
}
.plyr__control--overlaid:hover::before {
  background: var(--wp--preset--color--green);
}
.plyr--stopped .plyr__controls {
  opacity: 0;
}
.plyr--playing:hover .plyr__controls, .plyr--paused:not(.plyr--stopped):hover .plyr__controls {
  opacity: 1;
}

header.header {
  isolation: isolate;
}
body.admin-bar header.header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header.header {
    top: 46px;
  }
}
@media (max-width: 1024px) {
  header.header * {
    -webkit-tap-highlight-color: transparent;
  }
}
header.header nav,
header.header nav ul,
header.header nav li,
header.header nav a {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header.header nav a {
  cursor: pointer;
}
header.header button,
header.header input,
header.header form {
  all: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
header.header a:focus-visible,
header.header button:focus-visible,
header.header input:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}

.header {
  --tertiary: var(--wp--preset--color--tertiary);
  --primary: var(--wp--preset--color--primary);
  --tertiary: var(--wp--preset--color--tertiary);
  --top-nav-font: var(--wp--preset--font-family--primary);
  /* Transitions */
  --transition: 250ms ease-out;
  /* Header */
  --header-bg: #fff;
  --sticky-bg: #fff;
  --mega-menu-bg: #fff;
  /* Mobile Header */
  --mob-header: #fff;
  --mob-header-sticky: #fff;
  /* Logo */
  --logo: 234px;
  --logo-sticky: 180px;
  --logo-tablet: 180px;
  --logo-sticky-tablet: 130px;
  --logo-menu-opened-tablet: 160px;
  --logo-mobile: 180px;
  --logo-sticky-mobile: 180px;
  --logo-menu-opened: 180px;
  --logo-padding: 1.5rem 0;
  --logo-padding-mobile: 1.5rem 0;
  --logo-color: #fff;
  /* Top Level Navigation */
  /* Colors */
  --top-color: #000;
  --top-color-hover: var(--wp--preset--color--tertiary);
  --top-bg-hover: transparent;
  /* Sticky Colors */
  --top-color-sticky: #000;
  --top-color-sticky-hover: var(--primary);
  --top-bg-sticky-hover: var(--tertiary);
  /* Current Menu Item */
  --top-current: var(--tertiary);
  --top-current-bg: transparent;
  --top-current-hover: var(--tertiary);
  --top-current-bg-hover: transparent;
  --top-current-sticky: var(--tertiary);
  --top-current-sticky-hover: var(--tertiary);
  --top-current-bg-sticky: transparent;
  --top-current-bg-sticky-hover: transparent;
  /* Parent Item */
  --menu-parent: var(--primary);
  --menu-parent-bg: transparent;
  /* Sub Menu Navigation */
  /* Colors */
  --sub-color: var(--primary);
  --sub-bg: white;
  --sub-color-hover: var(--tertiary);
  --sub-bg-hover: transparent;
  /* Current Sub Menu Item */
  --sub-current: var(--tertiary);
  --sub-current-bg: transparent;
  /* Mobile Menu */
  /* Background */
  --mob-bg: #fff;
  /* Colors */
  --mob-color: #000;
  --mob-color-hover: var(--tertiary);
  --mob-bg-hover: var(--tertiary);
  /* Current Item */
  --mob-current: var(--tertiary);
  --mob-current-bg: transparent;
  --mob-current-hover: var(--tertiary);
  --mob-current-bg-hover: transparent;
  /* Current Parent Item */
  --mob-current-parent: var(--tertiary);
  --mob-current-parent-bg: transparent;
  --mob-button-color: var(--primary);
  --mob-button-color-sticky: var(--primary);
  --mob-button-color-open: var(--tertiary);
  --mob-menu-expand: white;
}

header.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  grid-template-columns: minmax(var(--wp--style--root--padding-left), 1fr) repeat(12, minmax(0, calc(var(--wp--style--global--wide-size) / 12))) minmax(var(--wp--style--root--padding-right), 1fr);
  padding: 2rem;
}
@media (min-width: 1025px) {
  header.header {
    padding-bottom: 0;
  }
  header.header.hovering {
    background: #fff;
  }
  header.header.hovering.sticky .header-right {
    -webkit-box-shadow: 0 0 0 0;
            box-shadow: 0 0 0 0;
    -webkit-transition: -webkit-box-shadow 100ms;
    transition: -webkit-box-shadow 100ms;
    transition: box-shadow 100ms;
    transition: box-shadow 100ms, -webkit-box-shadow 100ms;
  }
  header.header.hovering .logo svg #kenmare,
  header.header.hovering .logo svg #logomark-2 {
    fill: var(--wp--preset--color--dark-green);
  }
  header.header.hovering .logo svg #resources_plc,
  header.header.hovering .logo svg #Path_56 {
    fill: var(--wp--preset--color--green);
  }
}
@media (max-width: 1024px) {
  header.header {
    padding: 2rem;
  }
  header.header .wrap {
    background: #fff;
    -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 782px) {
  header.header.scrolling {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
@media (min-width: 783px) {
  header.header.sticky .logo {
    width: var(--logo-sticky-tablet);
  }
}
@media (min-width: 1025px) {
  header.header.sticky .logo {
    width: var(--logo-sticky);
    opacity: 0;
    visibility: hidden;
    width: var(--logo-sticky-mobile);
  }
  header.header.sticky .header-right {
    -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    position: absolute;
  }
  header.header.sticky .header-right svg#kenmare-k {
    opacity: 1;
    width: 45px;
    padding: 1rem 0;
    -webkit-transition-delay: width 0ms, opacity 450ms;
            transition-delay: width 0ms, opacity 450ms;
  }
}
header.header.sticky .burger-menu span > span {
  background: var(--mob-button-color-sticky);
}
header.header.sticky nav.header-nav ul#menu-primary > li:hover > a {
  color: var(--top-color-sticky-hover);
}
header.header.sticky nav.header-nav ul#menu-primary > li > a {
  color: var(--top-color-sticky);
}
header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-parent > a, header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-item > a {
  background: var(--top-current-bg-sticky);
}
header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-parent > a span, header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-item > a span {
  color: var(--top-current-sticky);
  border-bottom-color: var(--top-current-sticky);
}
header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-parent:hover > a, header.header.sticky nav.header-nav ul#menu-primary > li.current-menu-item:hover > a {
  color: var(--top-current-sticky-hover);
  background: var(--top-current-bg-sticky-hover);
}
header.header.sticky nav.header-nav ul#menu-primary .sub-menu > li.current-menu-item a {
  color: var(--sub-current);
  background: var(--sub-current-bg);
}
html.menu-opened header.header .logo {
  width: var(--logo-menu-opened);
}
@media (min-width: 783px) {
  html.menu-opened header.header .logo {
    width: var(--logo-menu-opened-tablet);
  }
}
html.menu-opened header.header .burger-menu .span-wrap span {
  background: var(--mob-button-color-open);
}
html.menu-opened header.header .burger-menu .span-wrap span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
html.menu-opened header.header .burger-menu .span-wrap span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
html.menu-opened header.header .burger-menu .span-wrap span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
html.menu-opened header.header .burger-menu .span-wrap span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header.header > .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
}
header.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--logo-mobile);
  margin: 0 1.75rem 0 0;
  padding: 1.5rem 0;
  -webkit-transition: all var(--transition);
  transition: all var(--transition);
}
@media (min-width: 783px) {
  header.header .logo {
    width: var(--logo-tablet);
  }
}
@media (min-width: 1025px) {
  header.header .logo {
    width: var(--logo);
  }
  header.header .logo img,
  header.header .logo svg {
    width: 100%;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
  }
  header.header .logo img path,
  header.header .logo svg path {
    fill: var(--logo-color);
    -webkit-transition: fill var(--transition);
    transition: fill var(--transition);
  }
}
header.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
header.header .header-right svg#kenmare-k {
  padding: 1.5rem 0;
  margin-left: 2rem;
  width: 0;
  opacity: 0;
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
header.header .burger-menu {
  z-index: 9999;
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 10px;
}
@media (min-width: 1025px) {
  header.header .burger-menu {
    display: none;
  }
}
header.header .burger-menu .span-wrap {
  position: relative;
  display: block;
  width: 35px;
  height: 20px;
}
header.header .burger-menu .span-wrap span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  border-radius: 2px;
  background: var(--mob-button-color);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header.header .burger-menu .span-wrap span:nth-child(1) {
  top: 0px;
}
header.header .burger-menu .span-wrap span:nth-child(2), header.header .burger-menu .span-wrap span:nth-child(3) {
  top: 9px;
}
header.header .burger-menu .span-wrap span:nth-child(4) {
  top: 18px;
}
@media (min-width: 1025px) {
  header.header .header-right {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--header-bg);
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header.header nav.header-nav ul#menu-primary > li {
    position: relative;
  }
  header.header nav.header-nav ul#menu-primary > li.dropdown-opened > .sub-menu-depth-1, header.header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > .sub-menu-depth-1, header.header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > .sub-menu-depth-1 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header nav.header-nav ul#menu-primary > li.dropdown-opened > a, header.header nav.header-nav ul#menu-primary > li:not(.click-controller):hover > a, header.header nav.header-nav ul#menu-primary > li.menu-item-has-children:focus-within > a {
    color: var(--top-color-hover);
    background: var(--top-bg-hover);
  }
  header.header nav.header-nav ul#menu-primary > li > a {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--top-nav-font);
    padding: 0 1.5rem;
    text-transform: uppercase;
    color: var(--top-color);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  header.header nav.header-nav ul#menu-primary > li > a {
    font-size: 14px;
    padding: 0 1.75rem;
  }
}
@media (min-width: 1025px) {
  header.header nav.header-nav ul#menu-primary > li > a span {
    white-space: nowrap;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    -webkit-transition: color 200ms;
    transition: color 200ms;
    line-height: 2.5;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-31 {
    margin-right: 1em;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en > a, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt > a {
    color: var(--wp--preset--color--secondary);
    font-weight: 800;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en > a span, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt > a span {
    border: 0;
    color: var(--wp--preset--color--secondary);
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en > a::before, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt > a::before {
    content: none;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en > a:hover, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt > a:hover {
    background: #fff;
    color: var(--wp--preset--color--tertiary);
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en > a:hover span, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt > a:hover span {
    color: currentColor;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop {
    position: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form {
    background: var(--wp--preset--color--green);
    display: grid;
    grid-template-columns: minmax(var(--wp--style--root--padding-left), 1fr) repeat(12, minmax(0, calc(var(--wp--style--global--wide-size) / 12))) minmax(var(--wp--style--root--padding-right), 1fr);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
    cursor: auto;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form button svg {
    fill: #fff;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form button:hover {
    cursor: pointer;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form button:hover svg {
    fill: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner {
    grid-column: 6/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
            flex: 1 1 200px;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
            flex: 1 1 200px;
    border-bottom: 1px solid #fff;
    margin-right: var(--wp--preset--spacing--normal);
    color: #fff;
    padding: 0.5em 0;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input::-webkit-input-placeholder {
    color: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input::-moz-placeholder {
    color: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input:-ms-input-placeholder {
    color: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input::-ms-input-placeholder {
    color: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input::placeholder {
    color: #000;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner input:focus-visible {
    outline: 0px;
    border-radius: 0;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner button[type=submit] {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 86px;
            flex: 0 1 86px;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner button[type=submit] svg {
    width: 4.8rem;
    height: 4.8rem;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-form__inner .close-search {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 140px;
            flex: 0 1 140px;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop:hover {
    cursor: pointer;
    background: var(--wp--preset--color--green);
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop:hover svg {
    fill: #fff;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop .search-trigger {
    padding: 0 2rem 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop svg {
    width: 16px;
    height: 16px;
    fill: #000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller:hover {
    cursor: pointer;
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller:hover > a {
    color: var(--top-color-hover);
    background: var(--top-bg-hover);
  }
  header.header nav.header-nav ul#menu-primary > li.click-controller > a {
    pointer-events: none;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    background: var(--top-current-bg);
    color: var(--top-current);
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a::before {
    opacity: 1;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a:hover {
    background: var(--top-current-bg-hover);
    color: var(--top-current-hover);
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    background: var(--top-current-bg);
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a span, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a span {
    color: var(--top-current);
    border-bottom-color: currentColor;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a::before, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a::before {
    opacity: 1;
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a:hover, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a:hover {
    background: var(--top-current-bg-hover);
  }
  header.header nav.header-nav ul#menu-primary > li.current-menu-item > a:hover span, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a:hover span {
    color: var(--top-current-hover);
    border-bottom-color: currentColor;
  }
  header.header nav.header-nav ul#menu-primary > li .back-button,
  header.header nav.header-nav ul#menu-primary > li .top-level-link {
    display: none;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 100%;
    left: auto;
    right: 0;
    width: auto;
    height: auto !important;
    padding: 1rem 0;
    background: var(--sub-bg);
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
            box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li:hover > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li:hover > a {
    color: var(--sub-color-hover);
    background: var(--sub-bg-hover);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    width: 100%;
    color: var(--sub-color);
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
    line-height: 1.2;
    background: var(--sub-bg);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a > span,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a > span {
    position: relative;
    padding: 0.2rem 0;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a > span::before,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a > span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 1px;
    background: currentColor;
    -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:hover,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:hover {
    color: var(--sub-color-hover);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:hover span::before,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:hover span::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a {
    background: var(--sub-current-bg);
    color: var(--sub-current);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children {
    position: relative;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children > a {
    border-left: 5px solid var(--sub-color);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children:hover .sub-menu-depth-2, header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children:hover .sub-menu-depth-2,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.menu-item-has-children.menu-item-has-children:focus-within .sub-menu-depth-2 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    top: -1rem;
    left: 100%;
    width: 200px;
    padding: 0;
    -webkit-box-shadow: 1rem 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
            box-shadow: 1rem 0.5rem 1rem 0 rgba(0, 0, 0, 0.14);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2::before {
    content: none;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    font-size: 1.4rem;
    background: lightgoldenrodyellow;
  }
  header.header nav.header-nav ul#menu-primary .mobile-menu-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1024px) {
  header.header .wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  header.header nav.header-nav {
    z-index: -2;
    position: absolute;
    right: 0;
    top: -2rem;
    left: auto;
    width: 100%;
    max-width: 300px;
    border-top: 1px solid var(--wp--preset--color--light-green);
    background: var(--mob-bg);
    -webkit-transition: var(--transition-menu);
    transition: var(--transition-menu);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.3);
  }
  header.header nav.header-nav,
  header.header nav.header-nav ul,
  header.header nav.header-nav li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  html.menu-opened header.header nav.header-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(2rem);
            transform: translate(2rem);
  }
  header.header nav.header-nav ul#menu-primary {
    padding: var(--wp--preset--spacing--normal);
    padding-bottom: var(--wp--preset--spacing--normal);
    margin-top: var(--wp--preset--spacing--large);
  }
  header.header nav.header-nav ul#menu-primary > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header.header nav.header-nav ul#menu-primary > li > a {
    padding: 1.5rem 2rem;
    font-size: 2.2rem;
    color: var(--mob-color);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile form {
    display: grid;
    grid-template-columns: 1fr 5rem;
    padding: 0 2rem;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input {
    padding: 1rem 0rem;
    color: var(--wp--preset--color--foreground);
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid var(--wp--preset--color--light-grey);
    border-radius: 0;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input::-webkit-input-placeholder {
    color: rgba(87, 87, 87, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input::-moz-placeholder {
    color: rgba(87, 87, 87, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input:-ms-input-placeholder {
    color: rgba(87, 87, 87, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input::-ms-input-placeholder {
    color: rgba(87, 87, 87, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input::placeholder {
    color: rgba(87, 87, 87, 0.5);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile input:focus {
    outline: 0;
    border-color: var(--wp--preset--color--tertiary);
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header.header nav.header-nav ul#menu-primary > li.search-mobile button svg {
    width: 20px;
    height: 20px;
    fill: var(--wp--preset--color--green);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header.header nav.header-nav ul#menu-primary > li.search-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  header.header nav.header-nav ul#menu-primary > li.has-active-child > a, header.header nav.header-nav ul#menu-primary > li.current-menu-item > a, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a {
    background: var(--mob-current-bg);
  }
  header.header nav.header-nav ul#menu-primary > li.has-active-child > a span, header.header nav.header-nav ul#menu-primary > li.current-menu-item > a span, header.header nav.header-nav ul#menu-primary > li.current-menu-parent > a span {
    color: var(--mob-current) !important;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en {
    margin-top: 1em;
  }
  header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-pt a, header.header nav.header-nav ul#menu-primary > li#menu-item-wpml-ls-2-en a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--wp--preset--color--secondary);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a {
    padding: 1.2rem 1rem;
    font-size: 2rem;
    color: var(--mob-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a span,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a span {
    pointer-events: none;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:hover,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:hover {
    color: var(--mob-color-hover);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li > a:focus-visible,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid var(--wp--preset--color--secondary);
    outline-offset: -2px;
    border-radius: 2px;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a, header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-page-parent > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-page-parent > a {
    background: transparent;
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-menu-item > a span, header.header nav.header-nav ul#menu-primary .sub-menu-depth-1 > li.current-page-parent > a span,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-menu-item > a span,
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 > li.current-page-parent > a span {
    color: var(--mob-current);
  }
  header.header nav.header-nav ul#menu-primary .sub-menu-depth-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
  }
  header.header nav.header-nav.full-width {
    max-width: none;
  }
  header.header nav.header-nav.full-height {
    height: 100vh;
  }
  header.header nav.header-nav.scrollable {
    overflow-y: scroll;
    height: 100vh;
  }
  header.header nav.header-nav.scrollable ul#menu-primary > li:last-child {
    margin-bottom: 12rem;
  }
  header.header nav.header-nav.slideRight {
    left: 0;
    right: auto;
    -webkit-transform: translateX(calc(100% - 2rem));
            transform: translateX(calc(100% - 2rem));
  }
  header.header nav.header-nav.slideLeft {
    -webkit-transform: translateX(calc(100% + 2rem));
            transform: translateX(calc(100% + 2rem));
  }
  header.header nav.header-nav.slideDown {
    -webkit-transform: translateY(calc(100% - 2rem));
            transform: translateY(calc(100% - 2rem));
  }
  header.header nav.header-nav.fade {
    opacity: 0;
    visibility: none;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children > a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children .mobile-menu-control {
    display: inline-block;
    width: 0;
    height: 0;
    top: calc(50% - 0.43em);
    right: 1em;
    border-top: 0.6em solid transparent;
    border-bottom: 0.6em solid transparent;
    border-left: 0.6em solid var(--wp--preset--color--green);
    -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children.submenu-visible > a {
    color: var(--top-current-sticky);
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children.submenu-visible > .mobile-menu-control {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children .mega-menu-container {
    width: 100%;
  }
  header.header nav.header-nav.collapsed ul#menu-primary li.menu-item-has-children ul.sub-menu {
    display: none;
    overflow: hidden;
    width: 100%;
    height: 0;
    margin: 0;
    -webkit-transition: 250ms ease-out;
    transition: 250ms ease-out;
  }
  header.header nav.header-nav.collapsed ul#menu-primary .sub-menu-depth-1 li.menu-item-has-children > a::before {
    opacity: 0.5;
  }
  header.header nav.header-nav.menu-panel {
    overflow-x: hidden;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary {
    position: relative;
    -webkit-transition: 350ms ease-out;
    transition: 350ms ease-out;
    top: 40px;
    left: 0;
    padding: 0;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > a {
    pointer-events: none;
    position: relative;
    width: auto !important;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > .mobile-menu-control {
    margin-right: 1em;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > a button.mobile-menu-control {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > .sub-menu {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    visibility: visible;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu {
    position: absolute;
    padding: 0 2rem;
    top: 0px;
    width: calc(100% - 4rem);
    left: 100%;
    opacity: 0;
    visibility: hidden;
    height: auto;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: 450ms ease-out;
    transition: 450ms ease-out;
    overflow: visible;
    border: 0;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu-depth-2 {
    top: 0;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button button {
    position: relative;
    display: block;
    font-size: 2.2rem;
    color: currentColor;
    padding: 1.2rem 1rem;
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .back-button button::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    top: calc(50% - 0.4em);
    left: -0.5em;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.4em solid var(--wp--preset--color--green);
    -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header.header nav.header-nav.menu-panel ul#menu-primary li.menu-item-has-children > ul.sub-menu .top-level-link {
    display: block;
    color: var(--wp--preset--color--primary);
  }
  header.header nav.header-nav.not-clickable ul#menu-primary li.menu-item-has-children > a {
    pointer-events: none;
  }
  header.header nav.header-nav.clickable ul#menu-primary li.menu-item-has-children > a {
    max-width: calc(100% - 8.5rem);
  }
}
@media (max-width: 782px) {
  header.header nav.header-nav {
    max-width: 250px;
  }
}
@media (min-width: 1025px) {
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item {
    position: static;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.dropdown-opened .mega-menu-container, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item:not(.click-controller):hover .mega-menu-container, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item.menu-item-has-children:focus-within .mega-menu-container {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    cursor: auto;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-container {
    border-top: 1px solid #000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    margin-left: -50vw;
    -webkit-transform: translateX(calc(var(--mega-menu-offset) * -1));
            transform: translateX(calc(var(--mega-menu-offset) * -1));
    left: 50%;
    width: calc(100vw - 0.8rem);
    background: var(--mega-menu-bg);
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity var(--transition);
    transition: opacity var(--transition);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(var(--wp--preset--color--light-green), 0.15);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image {
    position: relative;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text {
    padding: var(--wp--preset--spacing--medium);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text .mega-menu-title a {
    display: inline-block;
    color: var(--wp--preset--color--foreground);
    font-family: var(--wp--preset--font-family--secondary);
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 700;
    margin-bottom: 1.5rem;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text .mega-menu-title a:hover {
    color: var(--wp--preset--color--secondary);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text p {
    color: var(--wp--preset--color--foreground);
    font-size: 16px;
    font-weight: 500;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text p a {
    color: var(--wp--preset--color--tertiary);
    display: inline-block;
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-text p a:hover {
    color: var(--wp--preset--color--secondary);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap > ul.sub-menu {
    all: unset;
    position: relative;
    display: block !important;
    padding: var(--wp--preset--spacing--medium) 0;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    width: 45%;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    all: unset;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1::before,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2::before {
    display: none;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li {
    all: unset;
    display: block;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a {
    all: unset;
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: var(--top-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0.25rem 1rem;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
    margin: 0.5em 0;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:hover,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:hover {
    color: var(--sub-color-hover);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li > a:focus-visible,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a:focus-visible {
    outline: 2px solid var(--wp--preset--color--secondary);
    outline-offset: -2px;
    border-radius: 2px;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children {
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children::after,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.5em;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.4em solid var(--wp--preset--color--green);
    -webkit-transform: translate(0, 1px);
            transform: translate(0, 1px);
    -webkit-transition: border 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: border 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border 200ms ease;
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children:focus-visible, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children.hovering,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children:focus-visible,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children.hovering {
    background: #ededed;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children:focus-visible::after, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children.hovering::after,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children:focus-visible::after,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children.hovering::after {
    border-left-color: var(--wp--preset--color--tertiary);
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children:focus-visible > .sub-menu, header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 > li.menu-item-has-children.hovering > .sub-menu,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children:focus-visible > .sub-menu,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li.menu-item-has-children.hovering > .sub-menu {
    display: block !important;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 .back-button,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-1 .top-level-link,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 .back-button,
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 .top-level-link {
    display: none;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 li a {
    font-size: var(--wp--preset--font-size--small);
    margin: 0.2em 0;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 {
    position: absolute;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    display: none !important;
    border-left: 1px solid #ededed;
    height: 100% !important;
    top: 0;
    right: 0;
    padding-top: var(--wp--preset--spacing--medium);
    padding-bottom: var(--wp--preset--spacing--medium);
    padding-left: 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition-delay: 450ms;
            transition-delay: 450ms;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li > a {
    opacity: 0.75;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .sub-menu-depth-2 > li:nth-of-type(3) > a {
    margin-top: 0.5em;
  }
}
@media (max-width: 1024px) {
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .wrap {
    all: unset;
  }
  header.header nav.header-nav.mega-menu-enabled ul#menu-primary li.mega-menu-item .mega-menu-content {
    display: none;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel {
    overflow-x: hidden;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary {
    position: relative;
    -webkit-transition: 350ms ease-out;
    transition: 350ms ease-out;
    top: 40px;
    left: 0;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu {
    position: absolute;
    padding: 0 2rem;
    top: 0;
    width: calc(100% - 4rem);
    left: 100%;
    opacity: 0;
    visibility: hidden;
    height: auto;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: 450ms ease-out;
    transition: 450ms ease-out;
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
    overflow: visible;
    border: 0;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu-depth-2 {
    top: 0;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button button {
    display: block;
    font-size: 2.2rem;
    color: var(--wp--preset--color--foreground);
    padding: 1.2rem 1rem;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .back-button button::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    top: calc(50% - 0.4em);
    left: -0.5em;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.4em solid var(--wp--preset--color--green);
    -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .top-level-link {
    display: block;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible > a button.mobile-menu-control {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary li.menu-item-has-children.submenu-visible .wrap > ul.sub-menu {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    visibility: visible;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel ul#menu-primary .sub-menu li {
    -webkit-transform: unset !important;
            transform: unset !important;
  }
  header.header nav.header-nav.mega-menu-enabled.menu-panel.hide-top ul#menu-primary li.menu-item-has-children .wrap > ul.sub-menu .top-level-link {
    display: none;
  }
}

#footer-links {
  background: var(--wp--preset--color--secondary);
  background-image: url(../img/textures/footer-links-pattern.svg);
  background-size: cover;
  background-blend-mode: soft-light;
  color: #fff;
}
#footer-links > * {
  max-width: var(--wp--style--global--wide-size);
}
#footer-links .wp-block-group {
  margin: 0 auto;
  padding: var(--wp--preset--spacing--medium) 0;
}
#footer-links .wp-block-group h2 {
  color: #fff;
}
#footer-links .wp-block-group .wp-block-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: var(--wp--preset--spacing--medium);
}
#footer-links .wp-block-group .wp-block-buttons .wp-block-button__link {
  border-color: #fff !important;
}

footer.footer {
  --footer-bg: #19281f;
  --links: #fff;
  --links-hover: var(--wp--preset--color--accent-green);
  --subfooter-bg: transparent;
  --sub-links: var(--wp--preset--color--accent-green);
  --sub-links-hover: var(--wp--preset--color--tertiary);
  color: #fff;
  background: var(--footer-bg);
  border-top: 5px solid var(--wp--preset--color--accent-green);
  padding-top: var(--wp--preset--spacing--medium);
  padding-bottom: var(--wp--preset--spacing--normal);
  z-index: 1;
}
footer.footer h2,
footer.footer h3 {
  font-size: var(--wp--preset--font-size--medium);
  color: var(--wp--preset--color--accent-green);
}
footer.footer p {
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}
footer.footer strong {
  color: #fff;
  font-weight: 600;
}
footer.footer .wp-block-button__link {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  border-color: var(--wp--preset--color--accent-green);
  background: transparent;
}
footer.footer .wp-block-button__link::before {
  background: var(--wp--preset--color--accent-green);
  border-radius: 0;
}
footer.footer .wp-block-button__link:hover {
  color: var(--wp--preset--color--accent-green);
}
footer.footer a:not(.wp-block-button__link, .social-link) {
  color: var(--links);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  position: relative;
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 400;
  text-decoration: none;
}
footer.footer a:not(.wp-block-button__link, .social-link):hover {
  text-decoration: none;
  color: var(--links-hover);
}
footer.footer a:not(.wp-block-button__link, .social-link):focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}
footer.footer .cd-top {
  position: fixed;
  z-index: 9;
  width: 60px;
  height: 60px;
  padding: 1rem;
  right: -100px;
  bottom: 20px;
  border-radius: 10rem;
  background: var(--wp--preset--color--primary);
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
footer.footer .cd-top.cd-is-visible {
  right: 20px;
}
footer.footer .cd-top:hover {
  cursor: pointer;
}
footer.footer .cd-top:hover svg {
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}
footer.footer .cd-top svg {
  fill: var(--wp--preset--color--tertiary);
  -webkit-transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
footer.footer .footer-columns .footer-spacer {
  max-width: var(--wp--style--global--wide-size);
  margin: auto;
  width: 100%;
  height: 1px;
  background: white;
}
footer.footer .footer-columns .wrap {
  border-bottom: 1px solid rgba(var(--wp--preset--color--light-green), 0.45);
}
footer.footer .footer-columns .wrap:last-of-type {
  margin-bottom: 0;
}
footer.footer .footer-columns .wrap.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer.footer .footer-columns .wrap.footer-top #footer-logo {
  max-width: 45px;
}
footer.footer .footer-columns .wrap.wp-block-columns {
  margin: var(--wp--preset--spacing--medium) auto;
  gap: var(--wp--preset--spacing--medium);
}
footer.footer .footer-columns .wrap.wp-block-columns:first-of-type {
  margin-top: 0;
}
footer.footer .footer-columns .wrap.wp-block-columns .wp-block-columns {
  margin: 0;
}
footer.footer .footer-columns .wrap .footer-contact-info .wp-block-columns .wp-block-column:first-of-type {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
footer.footer .footer-columns .wrap .footer-contact-info .wp-block-columns .wp-block-column:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
}
footer.footer .footer-columns .wrap .footer-awards {
  max-width: 500px;
}
footer.footer .footer-columns .wrap .footer-awards img {
  max-height: 100px;
  width: auto;
}
footer.footer .footer-columns .wrap .footer-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--wp--preset--spacing--medium);
}
footer.footer .footer-columns .wrap .footer-menus ul.menu {
  margin: 0;
  padding: 0;
}
footer.footer .footer-columns .wrap .footer-menus ul.menu li {
  list-style: none;
  margin-bottom: 0.2em;
  font-weight: 400;
  font-family: var(--wp--preset--font-family--primary);
}
@media (min-width: 783px) {
  footer.footer .footer-columns .wrap .footer-menus {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer.footer .footer-columns .wrap .footer-menus li {
    text-align: right;
  }
}
@media (max-width: 782px) {
  footer.footer .footer-columns .wrap {
    grid-template-columns: 1fr 1fr;
  }
  footer.footer .footer-columns .wrap .col:nth-child(3) {
    grid-column: 1/-1;
  }
}
@media (max-width: 500px) {
  footer.footer .footer-columns .wrap {
    grid-template-columns: 1fr;
  }
}
footer.footer .sub-footer {
  background: var(--subfooter-bg);
}
footer.footer .sub-footer .wrap {
  border-top: 1px solid white;
  padding: var(--wp--preset--spacing--small) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-size: 1.6rem;
}
@media (min-width: 1025px) {
  footer.footer .sub-footer .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer.footer .sub-footer .wrap p {
  margin: 0;
}
footer.footer .sub-footer .wrap a {
  color: var(--sub-links);
  text-decoration: none;
  font-weight: 400;
}
footer.footer .sub-footer .wrap a:hover {
  color: var(--sub-links-hover);
  text-decoration: underline;
}
footer.footer .sub-footer .wrap .legal ul {
  margin: 0;
  padding: 0;
}
@media (min-width: 1025px) {
  footer.footer .sub-footer .wrap .legal ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}
footer.footer .sub-footer .wrap .legal ul li {
  list-style: none;
  margin-bottom: 0;
}
footer.footer .sub-footer .wrap .legal ul li a {
  display: inline-block;
  padding: 0.5em 0;
}
@media (min-width: 1025px) {
  footer.footer .sub-footer .wrap .legal ul li:last-child {
    padding-right: 0;
  }
}
@media (max-width: 782px) {
  footer.footer .sub-footer .wrap .legal {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer.footer .sub-footer .wrap .credit {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
footer.footer .sub-footer .wrap .credit a {
  text-transform: uppercase;
}

.layout.layout-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--wp--preset--spacing--medium);
}
@media (max-width: 782px) {
  .layout.layout-sidebar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.layout.layout-sidebar .content {
  width: 100%;
  max-width: calc(100% - (26rem + var(--wp--preset--spacing--medium)));
}
@media (min-width: 783px) {
  .layout.layout-sidebar .content .alignfull.is-layout-constrained > *:not(.alignwide) {
    max-width: var(--wp--style--global--wide-size) !important;
    padding-left: calc(26rem + var(--wp--preset--spacing--medium));
  }
}
@media (min-width: 783px) {
  .layout.layout-sidebar .content .alignfull .wp-block-group.is-layout-constrained > .wp-block-group,
  .layout.layout-sidebar .content .alignfull .wp-block-group.is-layout-constrained > .wp-block-columns,
  .layout.layout-sidebar .content .alignfull .wp-block-group.is-layout-constrained > .wp-block-media-text,
  .layout.layout-sidebar .content .alignfull .wp-block-columns.is-layout-constrained > .wp-block-group,
  .layout.layout-sidebar .content .alignfull .wp-block-columns.is-layout-constrained > .wp-block-columns,
  .layout.layout-sidebar .content .alignfull .wp-block-columns.is-layout-constrained > .wp-block-media-text {
    max-width: var(--wp--style--global--wide-size) !important;
    padding-left: calc(26rem + var(--wp--preset--spacing--medium));
  }
}
@media (max-width: 782px) {
  .layout.layout-sidebar .content {
    max-width: none;
  }
}
.layout.layout-sidebar .sidebar {
  width: 100%;
  max-width: 26rem;
  z-index: 10;
  pointer-events: none;
}
.layout.layout-sidebar .sidebar .sidebar-widget.sticky {
  position: sticky;
  top: calc(83px + var(--wp--preset--spacing--medium) + var(--wp-admin--admin-bar--height, 0px));
}
@media (max-width: 1024px) {
  .layout.layout-sidebar .sidebar {
    top: calc(51.5px + var(--wp--preset--spacing--medium) + var(--wp-admin--admin-bar--height));
  }
}
@media (max-width: 782px) {
  .layout.layout-sidebar .sidebar {
    max-width: none;
  }
}
.layout.layout-full > *:not(.alignfull) {
  max-width: 1160px;
}
.layout.layout-full .alignfull {
  max-width: unset;
}
.layout.layout-narrow > *:not(.alignfull) {
  max-width: 800px;
}

.container > .content .has-global-padding > .alignfull {
  margin-right: calc(var(--wp--style--root--padding-right) * -1) !important;
  margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
}

.search .layout > .content {
  margin: 3rem 0 var(--wp--preset--spacing--x-large);
}

.results-list {
  display: grid;
  grid-gap: 2rem;
  padding: 0;
}
.results-list .result-item {
  display: block;
  position: relative;
  padding: 2rem;
  background: var(--wp--preset--color--light-grey);
  border: 1px solid var(--wp--preset--color--light-green);
  border-radius: 3px;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.results-list .result-item > a::before {
  content: none !important;
}
.results-list .result-item h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.results-list .result-item h4 svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.results-list .result-item .resources {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  padding-top: 0.5em;
  margin-top: 0.8em;
  margin-bottom: 0;
  border-top: 1px solid var(--wp--preset--color--light-grey);
}
.results-list .result-item:hover {
  -webkit-box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.075);
          box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.075);
}
.results-list .result-item:hover span,
.results-list .result-item:hover h4 {
  color: var(--wp--preset--color--tertiary);
}
.results-list .result-item:hover svg {
  fill: var(--wp--preset--color--tertiary);
}
.results-list .result-item .title {
  margin-bottom: 0;
  font-family: var(--wp--preset--font-family--primary);
  color: var(--wp--preset--color--primary);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  font-size: 2.4rem;
}
.results-list .result-item .excerpt {
  margin: 0;
}
.results-list .result-item .read-more {
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}
.results-list .result-item .search-excerpt {
  background: yellow;
}

.sidebar-widget {
  margin-bottom: 5rem;
  pointer-events: all;
}
.sidebar-widget .widget + .widget {
  margin-top: 2rem;
}
.sidebar-widget .sidebar-title,
.sidebar-widget .parent-link {
  font-weight: 800;
  -webkit-transition: 150ms ease;
  transition: 150ms ease;
  background: var(--wp--preset--color--light-grey);
}
.sidebar-widget .sidebar-title.current,
.sidebar-widget .parent-link.current {
  background: var(--wp--preset--color--green);
  color: #fff;
}
.sidebar-widget .sidebar-title {
  padding: 1rem 1.5rem;
  font-weight: normal;
}
.sidebar-widget ul {
  margin: 0;
  padding: 0;
}
.sidebar-widget li {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  background: var(--wp--preset--color--light-grey);
}
.sidebar-widget li.current-year, .sidebar-widget li.current-post,
.sidebar-widget li .current {
  background: var(--wp--preset--color--green);
  color: #fff;
}
.sidebar-widget li > .children {
  display: block;
  padding: 0;
}
.sidebar-widget li > .children li {
  background: transparent;
}
.sidebar-widget li > .children li a {
  font-size: var(--wp--preset--font-size--x-small);
  padding: 6px 20px;
  color: var(--wp--preset--color--tertiary);
}
.sidebar-widget li > .children li:hover a,
.sidebar-widget li > .children li .current {
  background: var(--wp--preset--color--green);
  color: #fff;
}
.sidebar-widget li.page_item_has_children.current_page_item, .sidebar-widget li.page_item_has_children.current_page_parent {
  background: #ebf0ee;
  border-top: 1px solid #fff;
}
.sidebar-widget li.page_item_has_children.current_page_item a, .sidebar-widget li.page_item_has_children.current_page_parent a {
  background: transparent;
  color: var(--wp--preset--color--foreground);
}
.sidebar-widget li.page_item_has_children.current_page_item .children li a, .sidebar-widget li.page_item_has_children.current_page_parent .children li a {
  color: var(--wp--preset--color--tertiary);
}
.sidebar-widget li.page_item_has_children.current_page_item .children li.current_page_item a, .sidebar-widget li.page_item_has_children.current_page_parent .children li.current_page_item a {
  color: #fff;
}
.sidebar-widget li.page_item_has_children.current_page_item .children li:hover a, .sidebar-widget li.page_item_has_children.current_page_parent .children li:hover a {
  color: #fff;
}
.sidebar-widget a {
  color: var(--wp--preset--color--foreground);
  display: block;
  padding: 8px 10px;
  font-size: var(--wp--preset--font-size--normal);
  -webkit-transition: 150ms ease;
  transition: 150ms ease;
  font-weight: 400;
}
.sidebar-widget a:focus, .sidebar-widget a:hover {
  color: #fff;
  background: var(--wp--preset--color--green);
  text-decoration: none;
}

.posts {
  display: grid;
  grid-gap: 2rem;
}
.posts .excerpt {
  background: #fff;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.posts .excerpt h3,
.posts .excerpt p {
  margin-bottom: 1rem;
}
.posts p.meta {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
}
.posts h3 {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--wp--preset--font-family--secondary);
}
.posts .btn-sm {
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 10rem;
  fill: var(--wp--preset--color--primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  line-height: 1;
  white-space: nowrap;
}
.posts .btn-sm svg {
  width: 25px;
  height: auto;
  fill: var(--wp--preset--color--primary);
}

.single-latest_news .post-nav .nav-links,
.single-post .post-nav .nav-links {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 501px) {
  .single-latest_news .post-nav .nav-links,
  .single-post .post-nav .nav-links {
    grid-template-columns: 1fr 1fr;
  }
  .single-latest_news .post-nav .nav-links .nav-next,
  .single-post .post-nav .nav-links .nav-next {
    grid-column: 2/2;
  }
  .single-latest_news .post-nav .nav-links .nav-previous,
  .single-post .post-nav .nav-links .nav-previous {
    grid-column: 1/1;
  }
}
.single-latest_news .post-nav .nav-links > div,
.single-post .post-nav .nav-links > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-latest_news .post-nav .nav-links a,
.single-post .post-nav .nav-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 3rem;
  padding: 2rem;
  background: #eee;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.single-latest_news .post-nav .nav-links a:hover,
.single-post .post-nav .nav-links a:hover {
  background: var(--wp--preset--color--primary);
  text-decoration: none;
}
.single-latest_news .post-nav .nav-links a:hover span,
.single-post .post-nav .nav-links a:hover span {
  color: #fff;
}
.single-latest_news .post-nav .nav-links a:hover svg,
.single-post .post-nav .nav-links a:hover svg {
  fill: #fff;
}
.single-latest_news .post-nav .nav-links a span,
.single-post .post-nav .nav-links a span {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--wp--preset--color--primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.single-latest_news .post-nav .nav-links a svg,
.single-post .post-nav .nav-links a svg {
  width: 100%;
  max-width: 20px;
  height: 30px;
  fill: var(--wp--preset--color--primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.bir-pagination {
  margin-top: var(--wp--preset--spacing--medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--wp--preset--spacing--x-small);
}
.bir-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.bir-pagination .page-numbers {
  line-height: 1;
  background: var(--wp--preset--color--light-grey);
  color: #000;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 3px;
}
.bir-pagination .page-numbers::before {
  content: none !important;
}
.bir-pagination .page-numbers:hover {
  background: var(--wp--preset--color--tertiary);
  color: #fff !important;
}
.bir-pagination .page-numbers.current {
  background: var(--wp--preset--color--tertiary);
  color: #fff;
}

.single .content {
  margin-bottom: var(--wp--preset--spacing--large);
}
.single .content .post-title {
  line-height: 1.2;
}
.single .content .post-title span {
  display: block;
  font-size: var(--wp--preset--font-size--medium);
  text-transform: uppercase;
  color: var(--wp--preset--color--tertiary);
}
.single .content .post-thumbnail {
  margin-bottom: var(--wp--preset--spacing--medium);
}
@media (min-width: 1025px) {
  .single .content .post-thumbnail, .single .content .post-video {
    float: right;
    width: 45%;
    margin-left: var(--wp--preset--spacing--medium);
  }
  .single .content .post-inner {
    width: 47%;
    float: left;
  }
}

/* -------------------------------------------
***** DEFAULT FORM STYLING *****
------------------------------------------- */
.user-content .gform_wrapper.gravity-theme form legend,
.user-content .gform_wrapper.gravity-theme form label,
.user-content form legend,
.user-content form label {
  font-size: 1.6rem;
  color: var(--wp--preset--color--primary);
}
.user-content .gform_wrapper.gravity-theme form input,
.user-content .gform_wrapper.gravity-theme form select,
.user-content .gform_wrapper.gravity-theme form textarea,
.user-content form input,
.user-content form select,
.user-content form textarea {
  font-family: var(--wp--preset--font-family--primary);
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--wp--preset--color--primary);
  outline: 2px solid transparent;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font-size: 1.8rem;
  border-radius: 0;
}
.user-content .gform_wrapper.gravity-theme form input:focus,
.user-content .gform_wrapper.gravity-theme form select:focus,
.user-content .gform_wrapper.gravity-theme form textarea:focus,
.user-content form input:focus,
.user-content form select:focus,
.user-content form textarea:focus {
  outline: 2px solid var(--wp--preset--color--secondary);
}
.user-content .gform_wrapper.gravity-theme form select,
.user-content form select {
  background-image: url("../img/custom/select-arrow.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: calc(100% - 10px) center;
}
.user-content .gform_wrapper.gravity-theme form input[type=checkbox],
.user-content .gform_wrapper.gravity-theme form input[type=radio],
.user-content form input[type=checkbox],
.user-content form input[type=radio] {
  all: unset;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--wp--preset--color--primary);
}
.user-content .gform_wrapper.gravity-theme form input[type=checkbox]::before,
.user-content .gform_wrapper.gravity-theme form input[type=radio]::before,
.user-content form input[type=checkbox]::before,
.user-content form input[type=radio]::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.user-content .gform_wrapper.gravity-theme form input[type=checkbox],
.user-content form input[type=checkbox] {
  background-color: #fff;
}
.user-content .gform_wrapper.gravity-theme form input[type=checkbox]:checked,
.user-content form input[type=checkbox]:checked {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
}
.user-content .gform_wrapper.gravity-theme form input[type=checkbox]::before,
.user-content form input[type=checkbox]::before {
  border-radius: 0;
}
.user-content .gform_wrapper.gravity-theme form input[type=radio],
.user-content form input[type=radio] {
  border-radius: 50%;
}
.user-content .gform_wrapper.gravity-theme form input[type=radio]:checked,
.user-content form input[type=radio]:checked {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
}

/* -------------------------------------------
***** GRAVITY FORM STYLING *****
------------------------------------------- */
.gform_confirmation_wrapper {
  padding: 2rem;
  font-size: 2rem;
  color: var(--wp--preset--color--foreground);
  background: #d0f3c8;
}

.user-content .gform_wrapper.gravity-theme .gform_validation_errors {
  background: #fff9f9;
  border: 2px solid #c02b0a;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 1.5rem;
  position: relative;
  width: 100%;
}
.user-content .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: inherit;
}

.user-content .gform_wrapper.gravity-theme form .gfield_validation_message {
  padding: 1rem;
  font-size: 1.4rem;
}
.user-content .gform_wrapper.gravity-theme form .gform_required_legend {
  display: none;
}
.user-content .gform_wrapper.gravity-theme form .gform_fields {
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem 2rem;
}
.user-content .gform_wrapper.gravity-theme form .gform_fields .half-col {
  grid-column: span 1 !important;
}
@media (max-width: 782px) {
  .user-content .gform_wrapper.gravity-theme form .gform_fields .half-col {
    grid-column: span 2 !important;
  }
}
.user-content .gform_wrapper.gravity-theme form .gform_fields .gfield.gfield--width-full {
  grid-column: span 2;
}
.user-content .gform_wrapper.gravity-theme form .gfield_label {
  margin-bottom: 1rem;
}
.user-content .gform_wrapper.gravity-theme form .gfield_radio,
.user-content .gform_wrapper.gravity-theme form .gfield_checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
}
.user-content .gform_wrapper.gravity-theme form .gfield_radio .gchoice,
.user-content .gform_wrapper.gravity-theme form .gfield_checkbox .gchoice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-content .gform_wrapper.gravity-theme form .gfield_radio label,
.user-content .gform_wrapper.gravity-theme form .gfield_checkbox label {
  margin: 0;
  padding-left: 10px;
  max-width: none;
}
.user-content .gform_wrapper.gravity-theme form .gform_footer,
.user-content .gform_wrapper.gravity-theme form .gform_page_footer {
  margin: 4rem 0 0;
  padding: 0;
}
.user-content .gform_wrapper.gravity-theme form .ginput_container_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-content .gform_wrapper.gravity-theme form .ginput_container_consent label {
  margin-bottom: 0;
  padding-left: 10px;
  text-transform: none;
  font-size: 1.6rem;
}
.user-content .gform_wrapper.gravity-theme form .gform_footer button {
  margin: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.user-content .gform_wrapper.gravity-theme form .gform_footer button:hover {
  cursor: pointer;
}
.user-content .gform_wrapper.gravity-theme form a {
  color: var(--wp--preset--color--secondary);
}
.user-content .gform_wrapper.gravity-theme form a:focus, .user-content .gform_wrapper.gravity-theme form a:hover {
  color: var(--wp--preset--color--secondary);
}

.unsupported-browser {
  display: none;
  visibility: hidden;
  opacity: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .unsupported-browser {
    display: block;
    visibility: inherit;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: var(--wp--preset--color--primary);
    padding: 30px;
  }
  .unsupported-browser .unsupported-browser-wrapper {
    height: auto;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
  }
  .unsupported-browser .unsupported-browser-wrapper h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .unsupported-browser .unsupported-browser-wrapper p {
    font-size: 1.6rem;
  }
  .unsupported-browser .unsupported-browser-wrapper a {
    text-decoration: underline;
    color: var(--wp--preset--color--primary);
  }
}
html body.login {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--wp--preset--color--green);
  background-image: url("../img/custom/login-bg.jpg");
  background-size: cover;
  background-position: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Manrope", sans-serif;
}
html body.login::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
}
html .language-switcher {
  margin-top: 2rem;
}
html .language-switcher label {
  display: none !important;
}
html .login .privacy-policy-page-link {
  margin: 5rem 0 2rem;
}
html body.login.login-action-login div#login h1 a {
  background-image: url("../img/custom/login-logo.svg");
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 a {
  padding-bottom: 0;
  width: 270px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-image: url("../img/custom/login-logo.svg");
  display: block;
  margin: 3rem auto 0;
  padding: 0;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #fff;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: var(--wp--preset--color--foreground) !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: underline !important;
}
html .login #login {
  overflow: hidden;
  min-width: 400px !important;
  background: #fff;
  margin: 0;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  position: relative;
  z-index: 2;
}
html .login #backtoblog {
  float: left;
  margin: 0;
  padding: 0 0 20px 20px;
  opacity: 0.7;
}
html .login #backtoblog a {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: var(--wp--preset--color--foreground);
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: #fff;
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--wp--preset--color--foreground);
  padding: 15px 10px;
  margin-top: 5px;
  font-size: 16px;
  border-radius: 5px;
}
html .login form input[type=text]:focus,
html .login form input[type=password]:focus {
  border-color: var(--wp--preset--color--tertiary);
}
html .login form label[for=user_login]:before {
  content: "\f110";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form label[for=user_pass]:before {
  content: "\f160";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form p.submit {
  position: relative;
  float: right;
  color: #ed7004;
}
html .login form p.submit::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: calc(50% - 0.43em);
  right: 1em;
  border-top: 0.43em solid transparent;
  border-bottom: 0.43em solid transparent;
  border-left: 0.43em solid currentColor;
  -webkit-transition: color 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
html .login form p.submit #wp-submit {
  position: relative;
  background-color: transparent;
  border-radius: 5px;
  border-color: #ed7004;
  border-width: 2px;
  border-style: solid;
  color: currentColor;
  font-family: "Radio Canada Big", sans-serif;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 600;
  line-height: 1;
  padding-top: 0.8em;
  padding-right: 2em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  text-transform: uppercase;
}
html .login form p.submit:hover {
  color: #fff;
}
html .login form p.submit:hover #wp-submit {
  background-color: #ed7004;
  text-decoration: none;
}
html .login form p.submit:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  border-left-color: currentColor;
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .forgetmenot {
  display: none;
}

/* --- PAGE : 404 --- */
.error404 .layout > .content {
  margin: 3rem 0 var(--wp--preset--spacing--x-large);
}
.error404 main .user-content h1 {
  margin: 0 0 3rem 0;
  opacity: 0.6;
}
.error404 main .user-content h1 strong {
  display: block;
  font-size: 11rem;
  color: #7c8084;
  line-height: 12rem;
}
.error404 main .user-content h1 span {
  display: block;
  font-size: 3rem;
  margin-top: -1rem;
  color: #687077;
}
.error404 main .user-content p {
  max-width: 50%;
  margin: 0 auto;
}
.error404 main .user-content p a {
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}

.fullscreen-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.97);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.1s linear, opacity 0.1s linear;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fullscreen-search.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0.2s linear, opacity 0.2s linear;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen-search .close-search {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 1.25rem;
  z-index: 3;
  background: var(--wp--preset--color--primary);
}
.fullscreen-search .close-search:hover {
  cursor: pointer;
  background: #000;
}
.fullscreen-search .close-search svg {
  fill: var(--wp--preset--color--tertiary);
}
.fullscreen-search .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 80%;
  max-width: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
}
.fullscreen-search .search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fullscreen-search .search-form label {
  width: 100%;
  display: inline-block;
  font-family: "Radio Canada Big", sans-serif;
  color: #fff;
  font-size: 3.6rem;
  text-transform: none;
  line-height: 1;
  margin: 0 0 1rem;
}
.fullscreen-search .search-form input {
  -webkit-appearance: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 1.6rem;
  font-size: 1.8rem;
  color: var(--wp--preset--color--foreground);
  line-height: 1;
  border: 0;
  background: #fff;
}
.fullscreen-search .search-form input:focus {
  background: lightgoldenrodyellow;
}
.fullscreen-search .search-form button {
  -webkit-appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  outline: 0;
  background: var(--wp--preset--color--primary);
  color: #fff;
  width: 5rem;
  font-size: 2rem;
  line-height: 1;
  padding: 1.2rem;
}
.fullscreen-search .search-form button svg {
  fill: var(--wp--preset--color--tertiary);
}
.fullscreen-search .search-form button:hover {
  cursor: pointer;
  background: #000;
}

.social-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.social-wrapper ul li {
  list-style: none;
  margin-bottom: 0;
}
.social-wrapper ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social-wrapper ul li a:hover span.icon svg {
  fill: var(--wp--preset--color--tertiary);
}
.social-wrapper ul li span.icon {
  display: block;
  width: 3rem;
  height: 3rem;
}
.social-wrapper ul li span.icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social-wrapper ul li span.icon svg #f {
  fill: transparent;
}

/* -------------------------------------------
***** Custom *****
------------------------------------------- */
.pum-container button.popmake-close {
  display: none !important;
}

@media (max-width: 1024px) {
  .wp-block-cover.sustainability-report .wp-block-spacer {
    height: 160px !important;
  }
}
@media (max-width: 500px) {
  .wp-block-cover.sustainability-report {
    min-height: 200px !important;
  }
  .wp-block-cover.sustainability-report .wp-block-cover__image-background {
    height: 120% !important;
    top: auto !important;
  }
}

.glightbox-container .goverlay {
  background: rgba(0, 0, 0, 0.7);
}
.glightbox-container .gslide-image img {
  max-height: 70vh;
}
.glightbox-container .gvideo-container {
  padding: 0;
  -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}
.glightbox-container .gvideo-container .gslide-media {
  padding: 1em;
  background: var(--wp--preset--color--light-green);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.glightbox-container .gvideo-container .gdesc-inner {
  padding: 0 1em 1em;
  background: var(--wp--preset--color--light-green);
}
.glightbox-container .gvideo-container .gdesc-inner .gslide-title {
  color: var(--wp--preset--color--foreground);
  margin: 0;
  font-family: "Manrope", sans-serif;
}

.is-layout-grid .wp-block-image a,
.wp-block-gallery .wp-block-image a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}
.is-layout-grid .wp-block-image a img,
.wp-block-gallery .wp-block-image a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-layout-grid .wp-block-image a::before,
.wp-block-gallery .wp-block-image a::before {
  content: "";
  position: absolute;
  background: var(--wp--preset--gradient--green) !important;
  inset: 0;
  z-index: 1;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
  opacity: 0;
  pointer-events: none;
}
.is-layout-grid .wp-block-image a::after,
.wp-block-gallery .wp-block-image a::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" width="16" height="16" viewBox="0 0 16 16"><path id="search_icon" data-name="search icon" d="M2,7A4.951,4.951,0,0,1,7,2a4.951,4.951,0,0,1,5,5,4.951,4.951,0,0,1-5,5A4.951,4.951,0,0,1,2,7Zm12.3,8.7a.99.99,0,0,0,1.4-1.4l-3.1-3.1A6.847,6.847,0,0,0,14,7,6.957,6.957,0,0,0,7,0,6.957,6.957,0,0,0,0,7a6.957,6.957,0,0,0,7,7,6.847,6.847,0,0,0,4.2-1.4Z"></path></svg>');
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.is-layout-grid .wp-block-image a:hover::before,
.wp-block-gallery .wp-block-image a:hover::before {
  opacity: 0.6;
}
.is-layout-grid .wp-block-image a:hover::after,
.wp-block-gallery .wp-block-image a:hover::after {
  opacity: 1;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  border-top: 0 !important;
}

@media (max-width: 782px) {
  .moove-gdpr-cookie-notice {
    text-align: center;
  }
  .moove-gdpr-button-holder .mgbutton {
    margin: auto !important;
  }
}
body #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
body #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
  font-family: "Radio Canada Big", sans-serif;
  border: 2px solid var(--wp--preset--color--secondary);
  background: transparent;
  border-radius: 4px;
  color: var(--wp--preset--color--secondary) !important;
  font-weight: 600;
  text-transform: uppercase;
}
body #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:hover,
body #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover {
  background: var(--wp--preset--color--secondary) !important;
  color: #fff !important;
}
body #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
body #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  font-family: "Radio Canada Big", sans-serif;
  border: 2px solid var(--wp--preset--color--secondary);
  background: transparent;
  border-radius: 4px;
  color: var(--wp--preset--color--secondary);
  font-weight: 600;
  text-transform: uppercase;
}
body #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,
body #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
  background-color: var(--wp--preset--color--secondary) !important;
  color: #fff;
}

.rank-math-html-sitemap__list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
}
.rank-math-html-sitemap__item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.rank-math-html-sitemap__item:hover {
  background-color: var(--wp--preset--color--light-grey);
  border-color: #ccc;
}
.rank-math-html-sitemap__item a {
  text-decoration: none;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
  display: block;
}
.rank-math-html-sitemap__item a::before {
  content: none !important;
}
.rank-math-html-sitemap__item a:hover {
  color: var(--wp--preset--color--secondary);
}
.rank-math-html-sitemap__item.category-sitemap {
  background-color: #eaf5ff;
}
.rank-math-html-sitemap__item.post-sitemap {
  background-color: #fffae6;
}
@media (max-width: 768px) {
  .rank-math-html-sitemap ul {
    font-size: 14px;
  }
  .rank-math-html-sitemap ul li {
    padding: 8px;
  }
}

/* -------------------------------------------
***** Editor & User Content Styling *****
------------------------------------------- */
/*
* Global button styling
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* Breakpoint debugging
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
html.interface-interface-skeleton__html-container,
html.block-editor-iframe__html {
  font-size: 62.5%;
}

html.interface-interface-skeleton__html-container .edit-post-fullscreen-mode-close.components-button,
html.interface-interface-skeleton__html-container .edit-site-site-icon__image,
html.block-editor-iframe__html .edit-post-fullscreen-mode-close.components-button,
html.block-editor-iframe__html .edit-site-site-icon__image {
  background: #fff;
}

html.interface-interface-skeleton__html-container .edit-post-fullscreen-mode-close.components-button::before,
html.interface-interface-skeleton__html-container .edit-site-site-icon__image::before,
html.block-editor-iframe__html .edit-post-fullscreen-mode-close.components-button::before,
html.block-editor-iframe__html .edit-site-site-icon__image::before {
  content: none;
}

.wp-admin #wpfooter {
  padding: 5px 20px;
  background: #616569;
}

.wp-admin #footer-upgrade,
.wp-admin #footer-left {
  font-size: 12px !important;
  color: #e4e4e4;
}

.wp-admin #footer-left a {
  color: #fff;
  text-decoration: none;
}

.wp-admin #footer-left a:hover,
.wp-admin #footer-left a:active,
.wp-admin #footer-left a:focus {
  text-decoration: underline;
}

.wp-admin #footer-left a.cmb {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
}

.wp-admin #footer-left a span {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  padding: 0 1px 0 0;
  color: #fed150;
}

.wp-admin #footer-left a strong {
  font-weight: bold;
}

.wp-admin .hide-admin {
  position: relative;
}

.wp-admin .hide-admin::before {
  content: "Hidden";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.2em 0.5em;
  background: var(--wp--preset--color--secondary);
  z-index: 2;
  opacity: 1;
}

.wp-admin .hide-admin::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  outline: 2px dotted rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.wp-admin div[data-name=make_link_dropdown_control],
.wp-admin div[data-name=enable_mega_menu_item],
.wp-admin div[data-name=mega_menu_featured_image],
.wp-admin div[data-name=mega_menu_text_description] {
  display: none !important;
}

.wp-admin .menu-item-depth-0 div[data-name=make_link_dropdown_control] {
  display: block !important;
}

.wp-admin.mega-menu-option-active .menu-item-depth-0 div[data-name=enable_mega_menu_item],
.wp-admin.mega-menu-option-active .menu-item-depth-0 div[data-name=mega_menu_featured_image],
.wp-admin.mega-menu-option-active .menu-item-depth-0 div[data-name=mega_menu_text_description] {
  display: block !important;
}

.wp-admin.mega-menu-option-active .menu-item-depth-0 .acf-fields.acf-menu-item-fields > .acf-field {
  margin: 15px 0;
  padding-right: 10px;
}

.wp-block-button {
  border-radius: 4px;
  overflow: hidden;
}

.wp-block-button .wp-block-button__link {
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.wp-block-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--secondary);
  background-clip: content-box;
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: calc(50% - 0.43em);
  right: 1em;
  border-top: 0.43em solid transparent;
  border-bottom: 0.43em solid transparent;
  border-left: 0.43em solid currentColor;
  -webkit-transition: border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border-left-color 200ms ease-out;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), border-left-color 200ms ease-out, -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-button .wp-block-button__link:hover {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
}

.wp-block-button .wp-block-button__link:hover::before {
  width: 0%;
  left: auto;
  right: 0;
}

.wp-block-button .wp-block-button__link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  border-left-color: currentColor;
}

.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text), .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text), .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text) {
  padding-right: 3em;
}

.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text)::after, .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text)::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: currentColor;
  right: 1em;
  width: 1.1em;
  font-size: 1.1em;
  border-color: transparent;
  -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}

.wp-block-button .wp-block-button__link[href$=".pdf"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href^=".pdf"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href*=".pdf#"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href*=".pdf?"]:not(.pdf-text):hover::after, .wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text):hover::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text):hover::after {
  -webkit-transform: none;
          transform: none;
}

.wp-block-button .wp-block-button__link[href$=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href^=".xlsx"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx#"]:not(.xlsx-text)::after, .wp-block-button .wp-block-button__link[href*=".xlsx?"]:not(.pdf-text)::after {
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}

.wp-block-button .wp-block-button__link.has-background {
  background: transparent !important;
}

.wp-block-button .wp-block-button__link.has-background.has-primary-background-color {
  border-color: var(--wp--preset--color--primary);
}

.wp-block-button .wp-block-button__link.has-background.has-primary-background-color::before {
  background: var(--wp--preset--color--primary);
}

.wp-block-button .wp-block-button__link.has-background.has-primary-background-color:hover {
  color: var(--wp--preset--color--primary) !important;
}

.wp-block-button .wp-block-button__link.has-background-background-color {
  color: var(--wp--preset--color--secondary) !important;
}

.wp-block-button .wp-block-button__link.has-background-background-color::before {
  border-radius: 3px;
  background: #fff;
}

.wp-block-button .wp-block-button__link.has-background-background-color::after {
  border-left-color: var(--wp--preset--color--secondary);
}

.wp-block-button .wp-block-button__link.has-background-background-color:hover {
  color: #fff !important;
}

.wp-block-button .wp-block-button__link.has-background-background-color:hover::after {
  border-left-color: #fff;
}

.wp-block-button .wp-block-button__link.has-text-color {
  border-color: #fff;
}

.wp-block-button .wp-block-button__link.has-text-color::before {
  background-color: #fff;
}

.wp-block-button .wp-block-button__link.has-text-color::after {
  border-left-color: #fff;
}

.wp-block-button .wp-block-button__link.has-text-color:hover {
  color: var(--wp--preset--color--secondary) !important;
}

.wp-block-button .wp-block-button__link.has-text-color:hover::after {
  border-left-color: var(--wp--preset--color--secondary);
}

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

.wp-block-button.is-style-fill-width .wp-block-button__link {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (max-width: 782px) {
  .wp-block-buttons.is-content-justification-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
p.is-style-intro {
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 500;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.4;
  color: #000;
}

p.is-style-feature {
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 500;
  font-size: var(--wp--preset--font-size--feature);
  line-height: 1.1;
  color: #000;
  text-wrap: balance;
}

ul.wp-block-list {
  list-style-type: none;
  position: relative !important;
  padding-left: 1em;
}

ul.wp-block-list li::before {
  content: "";
  position: absolute;
  height: 1.5em;
  width: 1ch;
  left: 0.1em;
  background: var(--wp--preset--color--green);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="12" viewBox="0 0 6 12"><path id="Path_4749" data-name="Path 4749" d="M0,12.032l6-6-6-6Z" transform="translate(0 -0.032)" fill="%239eb6ad"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="12" viewBox="0 0 6 12"><path id="Path_4749" data-name="Path 4749" d="M0,12.032l6-6-6-6Z" transform="translate(0 -0.032)" fill="%239eb6ad"/></svg>') no-repeat center;
}

ul.wp-block-list li:has(a[href$=".pdf"]), ul.wp-block-list li:has(a[href^=".pdf"]), ul.wp-block-list li:has(a[href*=".pdf#"]), ul.wp-block-list li:has(a[href*=".pdf?"]) {
  position: relative !important;
  padding-left: 0.2em;
}

ul.wp-block-list li:has(a[href$=".pdf"])::before, ul.wp-block-list li:has(a[href^=".pdf"])::before, ul.wp-block-list li:has(a[href*=".pdf#"])::before, ul.wp-block-list li:has(a[href*=".pdf?"])::before {
  content: "";
  display: inline-block;
  background-color: var(--wp--preset--color--primary);
  top: 45%;
  left: -1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 1em;
  font-size: 1em;
  border-color: transparent;
  -webkit-transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

ul.wp-block-list li:has(a[href$=".pdf"]) a, ul.wp-block-list li:has(a[href^=".pdf"]) a, ul.wp-block-list li:has(a[href*=".pdf#"]) a, ul.wp-block-list li:has(a[href*=".pdf?"]) a {
  position: relative;
}

ul.wp-block-list li:has(a[href$=".pdf"]) a:hover::after, ul.wp-block-list li:has(a[href^=".pdf"]) a:hover::after, ul.wp-block-list li:has(a[href*=".pdf#"]) a:hover::after, ul.wp-block-list li:has(a[href*=".pdf?"]) a:hover::after {
  -webkit-transform: none;
          transform: none;
}

ul.wp-block-list li.resources::before {
  background: var(--wp--preset--color--tertiary);
}

ul.wp-block-list li.opportunity::before {
  background: #9acc0b;
}

ul.wp-block-list li.to-all::before {
  background: #4399cf;
}

.kpi-key__links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3em;
  position: relative;
}

.kpi-key__links__title {
  font-weight: 700;
  color: var(--wp--preset--color--black);
}

.kpi-key__risk-section {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kpi-key__link--strategy img {
  width: 25px;
  height: 25px;
  border: 0.5px solid #fff;
  padding: 4px;
  -webkit-filter: brightness(100);
          filter: brightness(100);
}

.kpi-key__link__number, .kpi-key__link__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  background: var(--risk-color, var(--wp--preset--color--secondary));
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.kpi-key__link__title {
  position: absolute;
  -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  max-width: 215px;
  display: inline-block;
  height: auto;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.2em;
  border-radius: 3px;
  font-size: 14px;
  z-index: 100;
  bottom: 130%;
  left: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  text-align: center;
  cursor: pointer;
}

.kpi-key__link:hover .kpi-key__link__title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.wp-block-proactive-accordion {
  --accordion--title-font: var(--wp--preset--font-family--secondary);
  --accordion--title-size: var(--wp--preset--font-size--heading-3);
  --accordion--title-color: #fff;
  --accordion--title-color--active: var(--wp--preset--color--primary);
  --accordion--title-color--hover: var(--wp--preset--color--primary);
  --accordion--border-color: #fff;
  --accordion--border-color--hover: #fff;
  --accordion--border-color--active: #fff;
  --accordion--background-color: var(--wp--preset--color--green);
}

.wp-block-proactive-accordion .accordion-item__header {
  background: var(--accordion--background-color);
  padding: 2rem 6rem 2rem 1.5rem;
  font-weight: 700;
  -webkit-transition: 200ms;
  transition: 200ms;
  line-height: 1.2;
}

.wp-block-proactive-accordion .accordion-item__header:hover {
  background: transparent;
}

.wp-block-proactive-accordion .accordion-item__header:hover .accordion-item__icon {
  --arrow-color: var(--wp--preset--color--green);
}

.wp-block-proactive-accordion .accordion-item__icon {
  right: var(--wp--preset--spacing--small);
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: 50% 25%;
          transform-origin: 50% 25%;
  --arrow-color: #fff;
  --arrow-size: 10px;
}

.wp-block-proactive-accordion .accordion-item__icon::before {
  content: "";
  height: 0px;
  width: 0px;
  border: none;
  border-top: var(--arrow-size) solid var(--arrow-color);
  border-left: var(--arrow-size) solid transparent;
  border-right: var(--arrow-size) solid transparent;
}

.wp-block-proactive-accordion .accordion-item__icon span {
  display: none;
}

.wp-block-proactive-accordion .accordion-item[aria-expanded=true] .accordion-item__header {
  background: transparent;
}

.wp-block-proactive-accordion .accordion-item[aria-expanded=true] .accordion-item__icon {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  --arrow-color: var(--wp--preset--color--green);
}

.wp-block-proactive-accordion .accordion-item__content {
  -webkit-transition: 650ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 650ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.wp-block-proactive-accordion .accordion-item__content-inner {
  padding: 0 0 var(--wp--preset--spacing--medium) 0;
}

.wp-block-proactive-accordion .accordion-item.wcp-a[aria-expanded=true], .wp-block-proactive-accordion .accordion-item.wcp-b[aria-expanded=true], .wp-block-proactive-accordion .accordion-item.wcp-c[aria-expanded=true] {
  background: var(--wp--preset--color--light-grey);
}

.wp-block-proactive-accordion .accordion-item.wcp-a {
  --accordion--background-color: var(--wp--preset--color--tertiary);
  --accordion--title-color--active: var(--wp--preset--color--tertiary);
  --accordion--title-color--hover: var(--wp--preset--color--tertiary);
}

.wp-block-proactive-accordion .accordion-item.wcp-b {
  --accordion--background-color: var(--wp--preset--color--accent-green);
  --accordion--title-color--active: var(--wp--preset--color--accent-green);
  --accordion--title-color--hover: var(--wp--preset--color--accent-green);
}

.wp-block-proactive-accordion .accordion-item.wcp-c {
  --accordion--background-color: var(--wp--preset--color--secondary);
  --accordion--title-color--active: var(--wp--preset--color--secondary);
  --accordion--title-color--hover: var(--wp--preset--color--secondary);
}

.wp-block-proactive-tabs {
  --proactive-tab__color: var(--wp--preset--color--green);
  --proactive-tab__color__hover: var(--wp--preset--color--tertiary);
  --proactive-tab__color__active: var(--wp--preset--color--tertiary);
  --proactive-tab__bg: transparent;
  --proactive-tab__bg__hover: transparent;
  --proactive-tab__bg__active: transparent;
  border-bottom: 1px solid var(--wp--preset--color--tertiary);
}

.wp-block-proactive-tabs__tabs-list {
  border-bottom: 3px solid var(--wp--preset--color--tertiary);
  gap: 0;
}

.wp-block-proactive-tabs__tabs-list__tab:first-child .tabs-button {
  padding-left: 0;
}

.wp-block-proactive-tabs__tabs-list__tab .tabs-button {
  position: relative;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}

.wp-block-proactive-tabs__tabs-list__tab .tabs-button::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-proactive-tabs__tabs-list__tab.active .tabs-button::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.wp-block-proactive-tabs .tab-content {
  overflow: visible;
}

.wp-block-proactive-tabs .tab-content__inner {
  padding: var(--wp--preset--spacing--normal) 0;
}

.wp-block-proactive-tabs .tab-content__inner p:last-of-type {
  margin-bottom: 0;
}

.wp-block-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.wp-block-table + h2, .wp-block-table + h3, .wp-block-table + h4, .wp-block-table + h5, .wp-block-table + h6 {
  margin-top: 3rem;
}

.wp-block-table thead,
.wp-block-table tfoot {
  color: black;
  text-transform: unset;
}

.wp-block-table thead tr,
.wp-block-table tfoot tr {
  border-bottom: 3px solid var(--wp--preset--color--primary);
}

.wp-block-table thead th,
.wp-block-table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
  vertical-align: bottom;
}

@media (max-width: 500px) {
  .wp-block-table thead th,
  .wp-block-table tfoot th {
    font-size: 14px;
  }
}
.wp-block-table thead th {
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
  font-weight: 700;
  border: 0;
}

.wp-block-table thead th.report, .wp-block-table thead th.webcast, .wp-block-table thead th.presentation, .wp-block-table thead th.download, .wp-block-table thead th.edit {
  width: 12rem;
  text-align: center;
}

.wp-block-table tbody {
  border-bottom: 1px solid var(--wp--preset--color--primary);
}

.wp-block-table tbody tr:nth-child(odd) {
  background: var(--wp--preset--color--light-grey);
}

.wp-block-table tbody tr td {
  border: 0;
  vertical-align: middle;
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
}

.wp-block-table tbody tr th {
  font-weight: 500;
}

.wp-block-table tbody .document_date {
  font-weight: 700;
  width: 140px;
}

.wp-block-table tbody .file_name {
  font-size: inherit;
}

.wp-block-table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}

.wp-block-table tbody .file_name a::before {
  content: none;
}

.wp-block-table tbody .file_name a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--tertiary);
}

.wp-block-table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 782px) {
  .wp-block-table tbody .file_size {
    min-width: 9rem;
  }
}
.wp-block-table tbody .date_published {
  width: 10rem;
  font-size: 1.4rem;
}

.wp-block-table tbody .report,
.wp-block-table tbody .webcast,
.wp-block-table tbody .presentation,
.wp-block-table tbody .download,
.wp-block-table tbody .edit {
  width: 12rem;
  text-align: center;
  position: relative;
  font-size: var(--wp--preset--font-size--normal);
}

.wp-block-table tbody .report > a,
.wp-block-table tbody .webcast > a,
.wp-block-table tbody .presentation > a,
.wp-block-table tbody .download > a,
.wp-block-table tbody .edit > a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.wp-block-table tbody .report > a svg,
.wp-block-table tbody .webcast > a svg,
.wp-block-table tbody .presentation > a svg,
.wp-block-table tbody .download > a svg,
.wp-block-table tbody .edit > a svg {
  pointer-events: none;
}

.wp-block-table tbody .report > a::before,
.wp-block-table tbody .webcast > a::before,
.wp-block-table tbody .presentation > a::before,
.wp-block-table tbody .download > a::before,
.wp-block-table tbody .edit > a::before {
  content: none;
}

.wp-block-table tbody .report > a:focus, .wp-block-table tbody .report > a:hover,
.wp-block-table tbody .webcast > a:focus,
.wp-block-table tbody .webcast > a:hover,
.wp-block-table tbody .presentation > a:focus,
.wp-block-table tbody .presentation > a:hover,
.wp-block-table tbody .download > a:focus,
.wp-block-table tbody .download > a:hover,
.wp-block-table tbody .edit > a:focus,
.wp-block-table tbody .edit > a:hover {
  color: var(--wp--preset--color--tertiary);
}

.wp-block-table tbody .report > a:focus svg, .wp-block-table tbody .report > a:hover svg,
.wp-block-table tbody .webcast > a:focus svg,
.wp-block-table tbody .webcast > a:hover svg,
.wp-block-table tbody .presentation > a:focus svg,
.wp-block-table tbody .presentation > a:hover svg,
.wp-block-table tbody .download > a:focus svg,
.wp-block-table tbody .download > a:hover svg,
.wp-block-table tbody .edit > a:focus svg,
.wp-block-table tbody .edit > a:hover svg {
  fill: var(--wp--preset--color--tertiary);
}

.wp-block-table tbody .report svg,
.wp-block-table tbody .webcast svg,
.wp-block-table tbody .presentation svg,
.wp-block-table tbody .download svg,
.wp-block-table tbody .edit svg {
  width: 25px;
  height: 20px;
  fill: var(--wp--preset--color--primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.wp-block-table tbody .report .esef-zip,
.wp-block-table tbody .webcast .esef-zip,
.wp-block-table tbody .presentation .esef-zip,
.wp-block-table tbody .download .esef-zip,
.wp-block-table tbody .edit .esef-zip {
  position: relative;
}

.wp-block-table tbody .report .esef-zip::after,
.wp-block-table tbody .webcast .esef-zip::after,
.wp-block-table tbody .presentation .esef-zip::after,
.wp-block-table tbody .download .esef-zip::after,
.wp-block-table tbody .edit .esef-zip::after {
  content: "Download ESEF Zip";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -180%);
          transform: translate(-50%, -180%);
  background: var(--wp--preset--color--primary);
  color: white;
  opacity: 0;
  font-size: var(--wp--preset--font-size--x-small);
  border-radius: 4px;
  white-space: nowrap;
  padding: 0.5em 1em;
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-table tbody .report .esef-zip:hover::after,
.wp-block-table tbody .webcast .esef-zip:hover::after,
.wp-block-table tbody .presentation .esef-zip:hover::after,
.wp-block-table tbody .download .esef-zip:hover::after,
.wp-block-table tbody .edit .esef-zip:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
}

.wp-block-table tfoot {
  border-top: 1px solid;
}

.wp-block-table tfoot td {
  background: none;
  border: none;
  font-weight: 700;
}

.wp-block-table figcaption {
  line-height: 1.8;
  margin-top: var(--wp--preset--spacing--x-small);
  font-size: var(--wp--preset--font-size--x-small);
  color: var(--wp--preset--color--foreground);
}

@media (max-width: 1024px) {
  .wp-block-table {
    overflow: scroll;
  }
}
.wp-block-table.production-table thead tr th:first-child,
.wp-block-table.production-table tbody tr td:first-child {
  width: 150px;
}

@media (max-width: 500px) {
  .wp-block-table.production-table {
    overflow: scroll;
  }
  .wp-block-table.production-table thead tr th,
  .wp-block-table.production-table tbody tr td {
    width: 90px;
  }
  .wp-block-table.production-table thead tr th:first-child,
  .wp-block-table.production-table tbody tr td:first-child {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .wp-block-table.climate-change thead th,
  .wp-block-table.climate-change tbody td {
    width: 105px;
  }
}
.wp-block-table.expenditure thead th:first-child,
.wp-block-table.expenditure tbody td:first-child {
  width: 130px;
}

.plyr {
  --plyr-color-main: transparent;
  --plyr-video-control-color-hover: var(--wp--preset--color--secondary);
  --plyr-range-fill-background: var(--wp--preset--color--secondary);
}

.plyr__poster {
  background-size: cover;
  background-position: center;
}

.plyr__progress input[type=range] {
  color: var(--wp--preset--color--secondary);
}

.plyr__control--overlaid::before {
  content: "";
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 53"><g fill="none" stroke="%23fff" stroke-width="2"><rect width="53" height="53" stroke="none" rx="5"/><rect width="51" height="51" x="1" y="1" rx="4"/></g><path fill="%23fff" d="M22.771 38.777 34.23 26.5 22.771 14.223Z"/></svg>');
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 53"><g fill="none" stroke="%23fff" stroke-width="2"><rect width="53" height="53" stroke="none" rx="5"/><rect width="51" height="51" x="1" y="1" rx="4"/></g><path fill="%23fff" d="M22.771 38.777 34.23 26.5 22.771 14.223Z"/></svg>');
  background: #fff;
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.plyr__control--overlaid svg {
  display: none;
}

.plyr__control--overlaid:hover::before {
  background: var(--wp--preset--color--green);
}

.plyr--stopped .plyr__controls {
  opacity: 0;
}

.plyr--playing:hover .plyr__controls, .plyr--paused:not(.plyr--stopped):hover .plyr__controls {
  opacity: 1;
}

.editor-styles-wrapper {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(ul)) {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}