/* -------------------------------------------------------------------------- *
 * Baseline Framework *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
/* ------------------ *
 * Palette Map Lookup *
 * ------------------ *
 * Shortcut for $palette_map values in Variables.scss
 * If the shade is not declared in the palette map it will be generated
 * @param $colour: Key for the color name in the palette map
 * @param shade (optional): Key for color shade, defaults to 'default'
 * @return: The requested key value for the color/tint
 */
/* --------------------- *
 * Font Stack Map Lookup *
 * --------------------- *
 * Shortcut for $font_stack_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* ------------------- *
 * Settings Map Lookup *
 * ------------------- *
 * Shortcut for $settings_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* -------------------------------------------------------------------------- *
* Unit Conversions *
* -------------------------------------------------------------------------- */
/* ----------------------- *
 * Pixel to REM Conversion *
 * ----------------------- *
 * Converts a pixel value to a root em value based on the root font-size
 * @param $pixels: The size (in pixels) to convert
 * @return: The size in REMs
 */
/* -------------------------------------------------------------------------- *
 * String Manipulation *
 * -------------------------------------------------------------------------- */
/* ----------------- *
 * Capitalize String *
 * ----------------- *
 * Sets the first character in a string to uppercase
 * @param $string: The string to capitalize
 * @return: The capitalized string
 */
/* -------------------------------------------------------------------------- *
 * Other Functions *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------------------------------------- *
 * SASS Map Lookup Functions *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
/* -------------------------------------------------------------------------- *
 * SASS Map Lookup Functions *
 * -------------------------------------------------------------------------- */
/* ------------------ *
 * Palette Map Lookup *
 * ------------------ *
 * Shortcut for $palette_map values in Variables.scss
 * If the shade is not declared in the palette map it will be generated
 * @param $colour: Key for the color name in the palette map
 * @param shade (optional): Key for color shade, defaults to 'default'
 * @return: The requested key value for the color/tint
 */
/* --------------------- *
 * Font Stack Map Lookup *
 * --------------------- *
 * Shortcut for $font_stack_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* ------------------- *
 * Settings Map Lookup *
 * ------------------- *
 * Shortcut for $settings_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* -------------------------------------------------------------------------- *
* Unit Conversions *
* -------------------------------------------------------------------------- */
/* ----------------------- *
 * Pixel to REM Conversion *
 * ----------------------- *
 * Converts a pixel value to a root em value based on the root font-size
 * @param $pixels: The size (in pixels) to convert
 * @return: The size in REMs
 */
/* -------------------------------------------------------------------------- *
 * String Manipulation *
 * -------------------------------------------------------------------------- */
/* ----------------- *
 * Capitalize String *
 * ----------------- *
 * Sets the first character in a string to uppercase
 * @param $string: The string to capitalize
 * @return: The capitalized string
 */
/* -------------------------------------------------------------------------- *
 * Other Functions *
 * -------------------------------------------------------------------------- */
.site-header .row {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}
@media screen and (max-width: 1510px) {
  .site-header .row {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.visuallyHidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.two-column-page-overview-tiles__tiles .tile, .reports-and-projects__tiles .tile, .form-section input.gform_button.button[type=submit], .page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile, .btn, .site-header .row .menu-holder .menu-item:last-child.menu-item-has-children, .site-header .row .menu-holder .menu-item a {
  transition: all 0.3s ease-in-out;
}

/* --------------------------------- *
 * Mixins *
 * --------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
  font-family: arboria, sans-serif;
}

body {
  font-family: arboria, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5; /* 30px */
  color: #2a2c2c;
}
@media (max-width: 980px) {
  body {
    font-size: 18px;
  }
}

section {
  overflow: hidden;
}

strong {
  font-weight: 700;
}

a {
  color: #007fad;
}

ul:not(.sub-menu, .menu, .splide__pagination) {
  list-style-type: disc;
  padding-left: 22px;
}
ul:not(.sub-menu, .menu, .splide__pagination) ::marker {
  color: #00676a;
}
ul:not(.sub-menu, .menu, .splide__pagination) li:not(.related-posts__item, .archive-posts__item) {
  padding-block: 10px;
  padding-left: 12px;
}

ol:not(.sub-menu, .menu) {
  list-style-type: decimal;
  padding-left: 22px;
}
ol:not(.sub-menu, .menu) ::marker {
  color: #00676a;
  font-weight: 700;
}
ol:not(.sub-menu, .menu) li {
  padding-block: 10px;
  padding-left: 12px;
}

hr {
  border-color: #00676a;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  border-top-width: 0px;
}

.h1,
h1 {
  color: #00676a;
  font-family: arboria, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 98%; /* 62.72px */
  font-size: clamp(2.75rem, 1.878vw + 2.31rem, 6rem);
}

.h2,
h2 {
  font-family: arboria, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.04px;
  color: #00676a;
}
.h2--white,
h2--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h2,
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 700px) {
  .h2,
  h2 {
    font-size: 38px;
  }
}

.h3, .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price,
h3 {
  font-family: arboria, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1; /* 44px */
  color: #00676a;
}
.h3--white,
h3--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h3, .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price,
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .h3, .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price,
  h3 {
    font-size: 28px;
  }
}

.h4,
h4 {
  font-family: arboria, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1; /* 112.5% */
  color: #00676a;
}
.h4--white,
h4--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h4,
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 700px) {
  .h4,
  h4 {
    font-size: 24px;
  }
}

.h5,
h5 {
  font-family: arboria, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  color: #00676a;
}
@media (max-width: 700px) {
  .h5,
  h5 {
    font-size: 22px;
  }
}
.h5--white,
h5--white {
  color: #fff;
}

.text--large {
  /* Design/Body/Large */
  font-family: arboria, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4; /* 33.6px */
}
@media (max-width: 980px) {
  .text--large {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .text--large {
    font-size: 18px;
  }
}

.text--small, .component--all-stories #filters .search-bar .search-form input[type=text], footer .site-footer .row .right .menu--footer .sub-menu .menu-item a, footer .site-footer__copyright, footer .site-footer__fine-print, footer .site-footer__links, .site-header .row .menu-holder .search-bar .search-form input[type=text] {
  /* Design/Body/Small */
  font-family: arboria, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4; /* 25.2px */
}

.link {
  color: #007fad;
  font-family: arboria, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 33.6px */
  text-decoration: underline;
}
@media (max-width: 700px) {
  .link {
    font-size: 18px;
  }
}

.topographic-bg, .team-members__post .contact, .offices-listing__office, .important-dates__body, .board-members-list__members {
  background-image: url(../img/TopographicPattern.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.topographic-bg--teal, .team-members__post .contact {
  background-image: url(../img/TopographicPattern--teal.svg);
}

.lightbox-overlay {
  overflow-y: scroll;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
}
.lightbox-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.lightbox-overlay__close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}
.lightbox-overlay__container {
  position: relative;
  width: 50vw;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay__container.spotify {
  width: 35vw;
}
.lightbox-overlay__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ol.list--big-numbers {
  list-style-type: none; /* Remove default markers */
  counter-reset: list; /* Initialize a counter */
  margin-left: 60px;
  margin-top: 30px;
  padding-left: 0;
}
ol.list--big-numbers li {
  position: relative;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 45px;
  list-style-type: none;
  padding-left: 18px;
  padding-top: 0;
}
ol.list--big-numbers li::before {
  content: counter(list); /* Insert the counter value */
  counter-increment: list; /* Increment the counter */
  display: block;
  width: 50px;
  height: 50px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #20a59f;
  color: white;
  text-align: center;
  position: absolute;
  left: -60px;
  top: 0;
  font-family: arboria, sans-serif;
  font-size: 24px;
  line-height: 45px;
  font-weight: 500;
}
ol.list--big-numbers li .list--big-numbers {
  margin-left: 0;
  margin-top: 0;
  padding-left: 1.3rem;
}
ol.list--big-numbers li .list--big-numbers li {
  margin-bottom: 5px;
}
ol.list--big-numbers li li {
  list-style-type: disc;
}
ol.list--big-numbers li li::marker {
  color: #00676a;
}
ol.list--big-numbers li li::before {
  content: none;
}
ol.list--big-numbers li li .list--big-numbers li::marker {
  color: #ffd338;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li::marker {
  color: #00676a;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #ffd338;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #00676a;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #ffd338;
}

/* header */
.site-header {
  height: 140px;
  width: 100%;
  transition: all 0.1s linear;
  position: relative;
  z-index: 99999;
  top: 0;
  background-color: #00676a;
}
@media screen and (max-width: 1199px) {
  .site-header {
    height: 100px;
  }
}
@media screen and (max-width: 700px) {
  .site-header {
    height: 75px;
  }
}
.site-header .row {
  display: flex;
  justify-content: space-between;
  height: 100%;
  gap: 74px;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1515px) {
  .site-header .row {
    gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .row.main {
    display: none;
  }
}
.site-header .row .logo-holder {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .site-header .row .logo-holder img.header-logo {
    max-height: 50px;
  }
}
@media screen and (max-width: 700px) {
  .site-header .row .logo-holder img.header-logo {
    max-height: 27px;
  }
}
.site-header .row .menu-holder {
  position: relative;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .row .menu-holder .menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media screen and (max-width: 1515px) {
  .site-header .row .menu-holder .menu {
    gap: 15px;
  }
}
.site-header .row .menu-holder .menu ul,
.site-header .row .menu-holder .menu li {
  list-style-type: none;
}
@media screen and (max-width: 1199px) {
  .site-header .row .menu-holder {
    background: #00676a;
    display: none;
  }
}
.site-header .row .menu-holder .menu-item {
  position: relative;
}
.site-header .row .menu-holder .menu-item:hover {
  cursor: pointer;
}
.site-header .row .menu-holder .menu-item a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 0;
  font-size: 18px;
  white-space: nowrap;
}
.site-header .row .menu-holder .menu-item a:hover {
  text-decoration: underline;
}
.site-header .row .menu-holder .menu-item.menu-item-has-children {
  padding-right: 15px;
}
.site-header .row .menu-holder .menu-item.menu-item-has-children a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: 13px;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: white transparent transparent transparent;
}
.site-header .row .menu-holder .menu-item.menu-item-has-children li a::after {
  border: none;
}
.site-header .row .menu-holder .menu-item > a[target=_blank]::before {
  content: url("../img/link.svg");
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
.site-header .row .menu-holder .menu-item .sub-menu {
  display: none;
  position: absolute;
  background-color: #00676a;
  border-radius: 6px;
  padding: 36px 40px;
  box-shadow: 0px -4px 9px 0px rgba(34, 34, 34, 0.25), 2px 2px 6px 0px rgba(68, 68, 68, 0.25);
  margin-top: 30px;
  right: 50%;
  transform: translateX(50%);
  min-width: 180px;
  z-index: 9;
}
.site-header .row .menu-holder .menu-item .sub-menu::before {
  content: url("../img/submenu-triangle.svg");
  position: absolute;
  top: -20px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0px -8px 5px rgba(34, 34, 34, 0.25));
}
.site-header .row .menu-holder .menu-item .sub-menu li {
  margin-right: 0;
  line-height: 22px;
}
.site-header .row .menu-holder .menu-item .sub-menu li a {
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
}
.site-header .row .menu-holder .menu-item .sub-menu li a:hover {
  text-decoration: underline;
}
.site-header .row .menu-holder .menu-item:last-child.menu-item-has-children {
  margin-right: 0;
  position: relative;
  left: 346px;
}
.site-header .row .menu-holder .menu-item:last-child.menu-item-has-children > a {
  padding-right: 8px;
  color: #00676a;
}
.site-header .row .menu-holder .menu-item:last-child.menu-item-has-children > a::after {
  border-color: #00676a transparent transparent transparent;
  top: 28px;
  right: 21px;
}
.site-header .row .menu-holder .menu-item.open .sub-menu {
  display: block;
}
.site-header .row .menu-holder .menu-item.open.menu-item-has-children ::after {
  transform: rotate(180deg);
}
.site-header .row .menu-holder .search-bar {
  position: relative;
  right: 130px;
}
.site-header .row .menu-holder .search-bar .search-form {
  display: flex;
  position: relative;
}
.site-header .row .menu-holder .search-bar .search-form input[type=text] {
  border-radius: 4px;
  border: 1px solid #939393;
  background: #fff;
  display: flex;
  width: 310px;
  height: 52px;
  padding: 4px 12px;
  justify-content: space-between;
  align-items: center;
  color: #2a2c2c;
}
.site-header .row .menu-holder .search-bar .search-form button {
  position: relative;
  right: 38px;
  background-color: transparent;
  border: none;
}
.site-header .row .menu-holder .search-bar .search-form button:hover {
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .site-header .row {
    align-items: center;
  }
}
.site-header .row.mobilemenu {
  display: block;
  width: 100%;
  padding: 0;
  margin-top: -20px;
}
.site-header .row.mobilemenu.hidden {
  display: none;
}
.site-header .row.fixed {
  position: fixed;
  top: 0;
  height: 140px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 1px 1px 6px #999;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.site-header .row.fixed .fixed--menu__holder {
  width: 100%;
  display: flex;
  max-width: 1430px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .site-header .row.fixed .fixed--menu__holder {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1199px) {
  .site-header .row.fixed .logo-holder {
    margin-bottom: 25px;
  }
}
.site-header .row.fixed .menu-holder {
  background: #fff;
  height: auto;
}
.site-header .row.fixed .menu-holder .menu--main .menu-item a {
  color: #fff;
}
.site-header .row.fixed .menu-holder .menu--main .menu-item .sub-menu {
  margin-top: 15px;
}
.site-header .row.fixed .menu-holder .menu--main .menu-item.menu-item-has-children a::after {
  border-color: #00676a transparent transparent transparent;
}
.site-header .row.fixed .menu-holder::before {
  display: none;
}
.site-header .row.fixed .menu-holder::after {
  display: none;
}
.site-header .row.fixed::after {
  display: none;
}
@media screen and (max-width: 1199px) {
  .site-header .row.fixed {
    height: 100px;
    display: flex;
    opacity: 1;
    z-index: 9999;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .row.mobilemenu {
    display: none;
  }
}
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - 1390px) / 2);
  min-width: 100px;
  bottom: 0;
  overflow: hidden; /* Hides any content overflowing the wrapper */
  background-color: #00676a;
  z-index: -1; /* Place behind the menu's content */
}
@media screen and (max-width: 1199px) {
  .site-header::after {
    display: none;
  }
}
.site-header.show {
  z-index: 99999;
}
.site-header.show .row.fixed {
  opacity: 1;
  display: flex;
  height: 140px;
}
@media screen and (max-width: 1199px) {
  .site-header.show .row.fixed {
    height: 100px;
  }
}
.site-header.show .row.fixed.zindex {
  z-index: 99999;
}
.site-header.show .row.main {
  display: none;
}
@media screen and (max-width: 1199px) {
  .site-header {
    position: fixed;
    top: 0;
  }
}

.page-wrapper.fixed .site-header {
  border-radius: 0;
}
.page-wrapper.fixed .row.fixed {
  box-shadow: none;
}
@media screen and (max-width: 1199px) {
  .page-wrapper {
    padding-top: 100px;
  }
}
@media screen and (max-width: 700px) {
  .page-wrapper {
    padding-top: 75px;
  }
}

.site-header.logo--light img.header-logo {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1199px) {
  .site-header.logo--light img.header-logo {
    filter: brightness(1) invert(0);
  }
}
.site-header.logo--light.show img.header-logo {
  filter: brightness(1) invert(0);
}

@media screen and (max-width: 1200px) {
  .menu--desktop {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .menu--desktop {
    display: none;
  }
}
.menu--mobile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 1199px) {
  .menu--mobile__header {
    height: 100px;
  }
}
@media screen and (max-width: 700px) {
  .menu--mobile__header {
    height: 75px;
  }
}
@media screen and (max-width: 1199px) {
  .menu--mobile__header .logo-holder img {
    height: 72px;
  }
}
@media screen and (max-width: 700px) {
  .menu--mobile__header .logo-holder img {
    height: 60px;
  }
}
.menu--mobile .mobilemenu .contact-button {
  padding: 10px 30px 0;
}
@media screen and (max-width: 1199px) {
  .menu--mobile .mobilemenu .contact-button a {
    display: inline-block;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
    font-family: arboria, sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #00676a;
    padding: 16px 50px;
    border-radius: 50px;
    border: 3px solid transparent;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  .menu--mobile .mobilemenu .contact-button a:hover {
    border: 3px solid #00676a;
  }
}
@media screen and (max-width: 700px) {
  .menu--mobile .mobilemenu .contact-button a {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .menu--mobile {
    display: none;
    position: relative;
  }
}
@media screen and (max-width: 1199px) {
  .menu--mobile {
    display: block;
    position: fixed;
    width: 100%;
  }
}

.nav--mobile {
  overflow-y: scroll;
  padding-bottom: 100px;
  height: 100vh;
  background: #ffffff;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Hide the scrollbar */
  /* Hide the scrollbar */
}
@media screen and (min-width: 1200px) {
  .nav--mobile {
    display: none;
  }
}
.nav--mobile ::-webkit-scrollbar {
  display: none;
}
.nav--mobile.hidden {
  display: none;
}
.nav--mobile .menu li a {
  padding: 0 30px;
}
.nav--mobile .menu li.menu-item-has-children a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  top: 9px;
  margin-left: 10px;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #2a2c2c transparent transparent transparent;
}
.nav--mobile .menu li.menu-item-has-children li > a::after {
  display: none;
}
.nav--mobile .menu li.menu-item-has-children .sub-menu {
  display: none;
  background-color: #f0f0f0;
  margin-top: 15px;
  padding: 20px 0 0;
}
.nav--mobile .menu li.menu-item-has-children .sub-menu li {
  margin-right: 0;
}
.nav--mobile .menu li.menu-item-has-children .sub-menu li a {
  padding: 0 30px;
  color: #2a2c2c;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  width: 100%;
  white-space: nowrap;
}
.nav--mobile .menu li.menu-item-has-children .sub-menu li a:hover {
  text-decoration: underline;
}
.nav--mobile .menu li.menu-item-has-children:last-child {
  margin-right: 0;
}
.nav--mobile .menu li.menu-item-has-children:last-child a {
  padding-right: 0;
}
.nav--mobile .menu li.menu-item-has-children.open .sub-menu {
  display: block;
}
.nav--mobile .menu li.menu-item-has-children.open.menu-item-has-children ::after {
  transform: rotate(180deg);
}
.nav--mobile .menu--main li.menu-item {
  position: relative;
  padding-bottom: 20px;
}
.nav--mobile .menu--main li.menu-item a {
  color: #2a2c2c;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.nav--mobile .search-bar .search-form {
  margin-bottom: 25px;
  padding: 30px 30px 0;
  position: relative;
}
.nav--mobile .search-bar .search-form input[type=text] {
  border: none;
  font-family: arboria, sans-serif;
  color: #2a2c2c;
  border-bottom: 1px solid #2a2c2c;
  width: 100%;
  padding: 10px 40px 15px 0;
  background: rgba(0, 0, 0, 0);
  font-size: 24px;
}
.nav--mobile .search-bar .search-form svg {
  width: 24px;
  height: 24px;
  fill: #f0f0f0;
}
.nav--mobile .search-bar button {
  position: absolute;
  right: 40px;
  top: 50%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-btn {
  display: none; /* Hide initially */
}
.mobile-menu-btn:hover {
  cursor: pointer;
}
@media (max-width: 1199px) {
  .mobile-menu-btn {
    display: block;
    height: 20px;
  }
  .mobile-menu-btn span {
    background-color: #fff;
    height: 3px;
    width: 29px;
    display: block;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
  }
  .mobile-menu-btn.open .bar1 {
    transform: rotate(45deg) translateY(7px);
  }
  .mobile-menu-btn.open .bar2 {
    opacity: 0;
  }
  .mobile-menu-btn.open .bar3 {
    transform: rotate(-45deg) translateY(-12px) translateX(6px);
  }
}

footer {
  background-color: #00676a;
  padding: 82px 90px;
}
@media (max-width: 900px) {
  footer {
    padding: 50px 30px;
  }
}
footer .site-footer {
  display: flex;
  flex-direction: column;
  gap: 66px;
  color: #fff;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  footer .site-footer {
    gap: 30px;
  }
}
footer .site-footer a:not(.btn) {
  text-decoration: none;
  color: #fff;
}
footer .site-footer ul,
footer .site-footer li {
  list-style-type: none;
}
footer .site-footer__socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
footer .site-footer__copyright {
  font-weight: 700;
}
footer .site-footer .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  footer .site-footer .row {
    flex-direction: column;
    gap: 30px;
  }
}
footer .site-footer .row .left .btn, footer .site-footer .site-header .row .left .menu-holder .menu-item:last-child.menu-item-has-children, .site-header footer .site-footer .row .left .menu-holder .menu-item:last-child.menu-item-has-children, footer .site-footer .site-header .row .menu-holder .left .menu-item:last-child.menu-item-has-children, .site-header footer .site-footer .row .menu-holder .left .menu-item:last-child.menu-item-has-children {
  margin: 24px 0 60px;
}
footer .site-footer .row .right .menu--footer {
  display: flex;
  gap: 50px;
}
@media (max-width: 900px) {
  footer .site-footer .row .right .menu--footer {
    flex-direction: column;
    gap: 30px;
  }
}
footer .site-footer .row .right .menu--footer .menu-item > a[target=_blank]::before {
  content: url("../img/link.svg");
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
footer .site-footer .row .right .menu--footer .menu-item-has-children a {
  padding-bottom: 12px;
  font-family: arboria, sans-serif;
  font-size: 17px;
  font-weight: 500;
}
footer .site-footer .row-2 {
  align-items: flex-end;
}
@media (max-width: 1199px) {
  footer .site-footer .row-2 {
    align-items: flex-start;
  }
}

.btn, .site-header .row .menu-holder .menu-item:last-child.menu-item-has-children {
  display: inline-block;
  color: #00676a;
  font-family: arboria, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 20px */
  text-align: center;
  background: #ffd338;
  border-radius: 50px;
  border: none;
  box-shadow: var(--slight-shadow);
  padding: 19px 34px 20px 34px;
  text-decoration: none;
}
.btn:hover, .site-header .row .menu-holder .menu-item.menu-item-has-children:hover:last-child {
  background-color: #ffc700;
}
.btn:focus, .site-header .row .menu-holder .menu-item.menu-item-has-children:focus:last-child {
  outline: 3px solid black;
}

.highlight--peach {
  background-image: linear-gradient(to top, #feac80 50%, #fff 50%);
}
.highlight--green {
  background-image: linear-gradient(to top, #c8eb5c 50%, #fff 50%);
}
.highlight--blue {
  background-image: linear-gradient(to top, #8dd3ec 50%, #fff 50%);
}

.component--generic-post {
  max-width: 1240px;
  margin: 72px auto;
}
.component--generic-post .featured-image-full-width {
  margin-bottom: 72px;
}
.component--generic-post .featured-image-full-width img {
  max-width: 100%;
  max-height: 562px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}
.component--generic-post__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1399px) {
  .component--generic-post__content {
    padding-inline: var(--gutter);
  }
}
@media screen and (max-width: 1199px) {
  .component--generic-post__content {
    flex-direction: column;
  }
}
.component--generic-post__content .left {
  width: 60%;
}
.component--generic-post__content .left h1 {
  margin-bottom: 36px;
}
.component--generic-post__content .left p {
  margin-bottom: 36px;
}
.component--generic-post__content .left em {
  font-style: italic;
}
.component--generic-post__content .left a {
  color: #00676a;
}
@media screen and (max-width: 1199px) {
  .component--generic-post__content .left {
    width: 100%;
  }
}
.component--generic-post__content aside {
  width: 40%;
  max-width: 400px;
}
@media screen and (max-width: 1199px) {
  .component--generic-post__content aside {
    width: 100%;
    max-width: 100%;
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .component--generic-post__content aside .social-icons {
    max-width: 400px;
    text-align: center;
  }
}
.component--generic-post .post-meta .categories {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 20px;
  font-weight: bold;
}
.component--generic-post .post-meta .categories:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
}
.component--generic-post .post-meta .categories a {
  color: #00676a;
  text-decoration: underline;
}
.component--generic-post .post-meta .categories a:hover {
  color: #20a59f;
}
.component--generic-post__video .featured-image-full-width {
  background: #000000;
  position: relative;
}
.component--generic-post__video .featured-image-full-width .popup-video {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.component--generic-post__video .featured-image-full-width .popup-video::before {
  content: url("../img/video-play-button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: all 300ms ease-in-out;
}
.component--generic-post__video .featured-image-full-width img {
  opacity: 0.6;
  transition: all 300ms ease-in-out;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.component--generic-post__video .featured-image-full-width:hover {
  cursor: pointer;
}
.component--generic-post__video .featured-image-full-width:hover img {
  opacity: 0.8;
}
.component--generic-post__video .featured-image-full-width:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}

body.single .lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
body.single .lightbox-content {
  position: relative;
  margin: 200px auto 0;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
}
body.single .lightbox-close {
  position: absolute;
  top: -30px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
body.single .lightbox iframe, body.single .lightbox video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}

.component--sidebar__newsletter {
  background-color: #00676a;
  background-image: url("../img/newsletter-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 32px;
  color: #FFFFFF;
  border-radius: 8px;
}
.component--sidebar__newsletter .title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.component--sidebar__newsletter p {
  margin-bottom: 36px;
}
.component--sidebar__newsletter form button:hover {
  cursor: pointer;
}
.component--sidebar__share {
  margin-bottom: 70px;
}
.component--sidebar__share .title {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.component--sidebar__share ul.social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-left: 0 !important;
}
.component--sidebar__share ul.social-icons li {
  display: inline;
}
@media screen and (max-width: 445px) {
  .component--sidebar__share ul.social-icons li:first-of-type {
    padding-bottom: 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 445px) {
  .component--sidebar__share ul.social-icons li:first-of-type, .component--sidebar__share ul.social-icons li:last-of-type {
    flex-basis: 100%;
  }
}
.component--sidebar__share ul.social-icons li a {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}
.component--sidebar__share ul.social-icons li a:hover {
  fill: #ffd338;
}
.component--sidebar__share ul.social-icons li a svg {
  fill: #00676a;
}
.component--sidebar__share ul.social-icons li a svg.facebook {
  width: 36px;
  height: 36px;
}
.component--sidebar__share ul.social-icons li a svg.twitter {
  width: 36px;
  height: 34px;
}
.component--sidebar__share ul.social-icons li a svg.linkedin {
  width: 36px;
  height: 35px;
}
.component--sidebar__share ul.social-icons li a svg:hover {
  fill: #ffd338;
}
.component--sidebar__share ul.social-icons li a.copy-link {
  display: inline;
  background: #00676a;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  padding: 13px 20px 17px;
  border-radius: 30px;
  line-height: 22px;
  transition: all 300ms ease-in-out;
  width: 158px;
  vertical-align: top;
}
.component--sidebar__share ul.social-icons li a.copy-link:hover {
  background: #ffd338;
  color: #00676a;
  cursor: pointer;
}
.component--sidebar__share ul.social-icons li a.copy-link:hover path {
  stroke: #00676a;
  fill: #ffd338;
}
.component--sidebar__share ul.social-icons li a.copy-link svg {
  margin-right: 5px;
  transition: all 300ms ease-in-out;
}
.component--sidebar__share ul.social-icons li a.copy-link .copied-text {
  display: none;
}
.component--sidebar__share ul.social-icons li a.copy-link.copied {
  background: #ffd338;
  color: #00676a;
}
.component--sidebar__share ul.social-icons li a.copy-link.copied path {
  stroke: #00676a;
}
.component--sidebar__share ul.social-icons li a.copy-link.copied .copied-text {
  display: inline;
}
.component--sidebar__share ul.social-icons li a.copy-link.copied .copy-text {
  display: none;
}

.component--archives {
  padding: 3rem 0;
  text-align: left;
}
.component--archives__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.component--archives .archive-posts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(324px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.component--archives .archive-posts__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--slight-shadow);
}
.component--archives .archive-posts__item--video .related-posts__thumbnail {
  position: relative;
  display: block;
  background: #000000;
}
.component--archives .archive-posts__item--video .related-posts__thumbnail::before {
  content: url("../img/video-play-button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: all 300ms ease-in-out;
  z-index: 9;
}
.component--archives .archive-posts__item--video .related-posts__thumbnail img {
  opacity: 0.6;
}
.component--archives .archive-posts__link {
  text-decoration: none;
}
.component--archives .archive-posts__thumbnail {
  width: 100%;
  height: 310px;
  overflow: hidden;
  margin-bottom: 20px;
}
.component--archives .archive-posts__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.component--archives .archive-posts__title {
  font-size: 1.5625rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 60px;
  padding: 0 24px;
  color: #333;
  flex-grow: 1;
  text-align: left;
}
.component--archives .archive-posts__meta {
  margin-top: auto;
  padding: 0 24px 1rem;
  text-align: left;
}
.component--archives .archive-posts__date {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #2a2c2c;
  margin-bottom: 4px;
}
.component--archives .archive-posts__categories {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  font-weight: bold;
}
.component--archives .archive-posts__categories:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
}
.component--archives .archive-posts__categories a {
  color: #00676a;
  text-decoration: underline;
}
.component--archives .archive-posts__categories a:hover {
  color: #20a59f;
}

.component--all-stories {
  background: #f0f0f0;
  background-image: url("../img/our-stories-background.webp");
  background-size: cover;
}
.component--all-stories .container {
  max-width: 1240px;
  margin: 0 auto 40px;
  padding-inline: var(--gutter);
  padding-top: 73px;
}
.component--all-stories #filters {
  max-width: 1240px;
  padding-inline: var(--gutter);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.component--all-stories #filters .h3, .component--all-stories #filters .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price, .form-section--donation .form-section__wrapper .donation-total .component--all-stories #filters label.ginput_product_price {
  margin-bottom: 40px;
}
.component--all-stories #filters .filter.left .pop-group .label {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button {
  font-size: 1.125rem;
  font-weight: 500px;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button.popular {
  background: #FFFFFF;
  color: #00676a;
  border: 1px solid #00676a;
  padding: 10px 18px 12px 18px;
  border-radius: 40px;
  font-family: arboria, sans-serif;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button.popular:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
  padding-right: 5px;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button.popular.active, .component--all-stories #filters .filter.left .pop-group .button-group__button.popular:hover {
  background: #00676a;
  color: #FFFFFF;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button.popular:hover:before {
  content: url(../img/category-tag-icon-white.svg);
  vertical-align: middle;
  padding-right: 5px;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button.popular.active:before {
  content: url(../img/close-x-white.svg);
  vertical-align: middle;
  padding-right: 9px;
}
.component--all-stories #filters .filter.left .pop-group .button-group__button:hover {
  cursor: pointer;
}
.component--all-stories #filters .filter.left .pop-group .button-group #topic-filter-trigger {
  text-decoration: underline;
  color: #007fad;
  margin-left: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.component--all-stories #filters .filter.left .pop-group .button-group #topic-filter-trigger:hover {
  cursor: pointer;
  color: #00676a;
}
.component--all-stories #filters .search-bar {
  position: relative;
  right: -38px;
}
.component--all-stories #filters .search-bar .search-form {
  display: flex;
  position: relative;
}
.component--all-stories #filters .search-bar .search-form input[type=text] {
  border-radius: 4px;
  border: 1px solid #939393;
  background: #fff;
  display: flex;
  width: 310px;
  height: 52px;
  padding: 4px 12px;
  justify-content: space-between;
  align-items: center;
  color: #2a2c2c;
}
.component--all-stories #filters .search-bar .search-form button {
  position: relative;
  right: 38px;
  background-color: transparent;
  border: none;
}
.component--all-stories #filters .search-bar .search-form button:hover {
  cursor: pointer;
}
.component--all-stories #all-topics .button-group {
  position: relative;
  max-width: 1240px;
  padding-inline: var(--gutter);
  margin: 23px auto 0;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: var(--slight-shadow);
  padding: 52px 64px;
}
.component--all-stories #all-topics .button-group__button {
  font-size: 1.125rem;
  font-weight: 500px;
  margin-bottom: 29px;
  background: #FFFFFF;
  color: #00676a;
  border: 1px solid #00676a;
  padding: 10px 18px 12px 18px;
  border-radius: 40px;
  font-family: arboria, sans-serif;
}
.component--all-stories #all-topics .button-group__button.active, .component--all-stories #all-topics .button-group__button:hover {
  background: #00676a;
  color: #FFFFFF;
}
.component--all-stories #all-topics .button-group__button:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
  padding-right: 5px;
}
.component--all-stories #all-topics .button-group__button:hover {
  cursor: pointer;
}
.component--all-stories #all-topics .button-group__button:hover:before {
  content: url(../img/category-tag-icon-white.svg);
}
.component--all-stories #all-topics .button-group__button.active:before {
  content: url(../img/close-x-white.svg);
  vertical-align: middle;
  padding-right: 9px;
}
.component--all-stories #all-topics .button-group #topic-filter-trigger {
  text-decoration: underline;
  color: #007fad;
  margin-left: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.component--all-stories #all-topics .button-group #topic-filter-trigger:hover {
  cursor: pointer;
  color: #00676a;
}
.component--all-stories #all-topics .button-group .close {
  position: absolute;
  left: 20px;
  top: 20px;
}
.component--all-stories #all-topics .button-group .close:hover {
  cursor: pointer;
}

.pagination-links__wrapper {
  max-width: 1240px;
  margin: 23px auto 72px;
  padding-inline: var(--gutter);
}
.pagination-links__wrapper #pagination-links {
  text-align: center;
}
.pagination-links__wrapper #pagination-links .page-numbers {
  font-size: 1.75rem;
  color: #2a2c2c;
  text-decoration: none;
  margin-right: 28px;
}
.pagination-links__wrapper #pagination-links .page-numbers.current {
  color: #00676a;
  font-size: 1.75rem;
}
.pagination-links__wrapper #pagination-links .page-numbers.prev {
  width: 64px;
  height: 64px;
  background: #00676a;
  border-radius: 50%;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.pagination-links__wrapper #pagination-links .page-numbers.prev:before {
  content: url("../img/chevron-left.svg");
}
.pagination-links__wrapper #pagination-links .page-numbers.prev:hover {
  background: #20a59f;
}
.pagination-links__wrapper #pagination-links .page-numbers.next {
  width: 64px;
  height: 64px;
  background: #00676a;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.pagination-links__wrapper #pagination-links .page-numbers.next:before {
  content: url("../img/chevron-right.svg");
}
.pagination-links__wrapper #pagination-links .page-numbers.next:hover {
  background: #20a59f;
}

.archive.category .component--all-stories, .search .component--all-stories {
  background: none;
}
.archive.category #filters, .search #filters {
  padding-top: 0;
}

/*

 * SVG Animations for the front page
 */
/* Keyframes for sliding in from the right */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Keyframes for sliding in from the left */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* Apply animations to the SVG wrappers */
.accents__banner path {
  stroke-dasharray: 1105;
  stroke-dashoffset: 1105;
}

.accents__banner.is-visible path {
  animation: draw 2s ease-out 0.5s forwards;
}

.accents__midpage path {
  stroke-dasharray: 1835;
  stroke-dashoffset: 1835;
}

.accents__midpage.is-visible path {
  animation: draw 3s ease-out forwards;
}

.page-template-page-toc .toc-section {
  overflow: visible;
}
.page-template-page-toc .page-with-toc__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding-block: 72px;
  overflow: visible;
}
@media (max-width: 1399px) {
  .page-template-page-toc .page-with-toc__wrapper {
    padding-inline: var(--gutter);
    gap: 60px;
  }
}
.page-template-page-toc .page-with-toc__content {
  width: 820px;
}
.page-template-page-toc .page-with-toc__toc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 35px;
  align-self: flex-start;
}
@media (max-width: 1200px) {
  .page-template-page-toc .page-with-toc__toc-container {
    top: 135px;
  }
}
.page-template-page-toc .page-with-toc__table-of-contents {
  width: 310px;
  text-align: left;
  overflow: visible;
}
@media (max-width: 875px) {
  .page-template-page-toc .page-with-toc__table-of-contents {
    display: none;
  }
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__link {
  display: block;
  color: #2a2c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__link.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: #00676a;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__btn {
  display: block;
  justify-self: flex-start;
  align-self: flex-start;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__btn.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: #00676a;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-toggle {
  font-family: arboria, sans-serif;
  color: #2a2c2c;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  background: none;
  border: none;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-toggle::after {
  content: url("../img/toc-caret.svg");
  display: block;
  padding: 0;
  transition: transform 0.3s ease;
  width: 40px;
  height: 30px;
  text-align: center;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
  transform-origin: center center;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu {
  list-style: none;
  padding: 0 0 0 32px;
  margin-top: 0.5em;
  display: none;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu {
    padding: 0 0 0 8px;
  }
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu.show {
  display: flex;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu .dropdown-link {
  text-decoration: none;
  color: #2a2c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu .dropdown-link:hover {
  text-decoration: underline;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown .dropdown-menu .dropdown-link.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: #00676a;
}
.page-template-page-toc .page-with-toc__table-of-contents .table-of-contents__dropdown.is-open .dropdown-menu {
  display: block;
}
.page-template-page-toc .component--content-editor {
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .page-template-page-toc .component--content-editor {
    padding-inline: 0;
  }
}
.page-template-page-toc .component--content-editor h2,
.page-template-page-toc .component--content-editor h3 {
  padding-bottom: 16px;
}
.page-template-page-toc .component--content-editor h3 {
  color: #2a2c2c;
}
.page-template-page-toc .component--important-dates .important-dates__wrapper {
  box-shadow: none;
  margin: 0;
}
.page-template-page-toc .component--important-dates .important-dates__body {
  background: none;
  padding-block: 40px;
}
@media (max-width: 1399px) {
  .page-template-page-toc .component--important-dates .important-dates__body {
    padding-inline: 0;
  }
}
.page-template-page-toc .component--important-dates .important-dates__body .h4 {
  color: #2a2c2c;
}
.page-template-page-toc .component--important-dates .important-dates__body .date-block__name {
  font-weight: 400;
}
.page-template-page-toc .component--important-dates .important-dates__body .date-block__date {
  font-size: 20px;
}
.page-template-page-toc .component--project-overview-tiles {
  overflow: visible;
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 0;
  overflow: visible;
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__top {
  padding-bottom: 32px;
  max-width: 730px;
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile {
  display: flex;
  gap: 24px;
  width: 604px;
  height: 170px;
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: var(--slight-shadow);
  text-decoration: none;
  background-image: url(../img/graph-white-bg-2.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
@media (max-width: 875px) {
  .page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile {
    width: unset;
  }
}
@media (max-width: 700px) {
  .page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile {
    height: unset;
  }
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile:hover {
  transform: scale(1.02);
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__left {
  width: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 425px) {
  .page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__left {
    width: 100px;
  }
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__left > img {
  visibility: hidden;
}
@media (max-width: 700px) {
  .page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__left > img {
    max-height: 170px;
  }
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__right {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 0;
  justify-content: center;
}
.page-template-page-toc .component--project-overview-tiles .project-overview-tiles__tiles .tile__year {
  color: #00676a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.board-members-list {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .board-members-list {
    padding-inline: var(--gutter);
  }
}
.board-members-list__members {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 72px 64px 64px;
  border-radius: 8px;
  background-color: #f0f0f0;
  box-shadow: var(--slight-shadow);
  margin: 40px 5px;
}
@media (max-width: 1399px) {
  .board-members-list__members {
    padding-inline: 40px;
    gap: 40px 30px;
  }
}
@media (max-width: 1024px) {
  .board-members-list__members {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.board-members-list__member {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1024px) {
  .board-members-list__member {
    min-width: 200px;
  }
}
.board-members-list__name {
  color: #00676a;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1399px) {
  .board-members-list__name {
    font-size: 26px;
  }
}
.board-members-list__position {
  color: #6b6b6b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1399px) {
  .board-members-list__position {
    font-size: 18px;
  }
}

.contact-section-with-map {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-block: 72px;
}
@media (max-width: 1399px) {
  .contact-section-with-map {
    padding-inline: var(--gutter);
  }
}
@media screen and (max-width: 980px) {
  .contact-section-with-map {
    flex-wrap: wrap;
    gap: 40px;
  }
}
.contact-section-with-map__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section-with-map .h2 {
  padding-bottom: 26px;
}
.contact-section-with-map__address h3 {
  color: #2a2c2c;
  padding-bottom: 12px;
}
.contact-section-with-map__address p {
  line-height: 150%;
}
.contact-section-with-map__email, .contact-section-with-map__phone {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 700;
}
.contact-section-with-map__right {
  width: 737px;
  height: 737px;
}
@media (max-width: 1399px) {
  .contact-section-with-map__right {
    width: 600px;
    height: auto;
  }
}
.contact-section-with-map__map {
  grid-column: 1;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .contact-section-with-map__map {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-with-map__map {
    height: 300px;
  }
}
.contact-section-with-map__map .map__image {
  height: 100%;
  width: 100%;
  display: block;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contact-map {
  width: 100%;
  height: 100%;
}

.component--content-editor {
  overflow: visible;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .component--content-editor {
    padding-inline: var(--gutter);
  }
}
.component--content-editor p {
  margin-bottom: 20px;
}
.component--content-editor blockquote {
  margin-left: 0;
  margin-right: 0;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-left: 48px;
  padding-right: 48px;
  border-left: 4px solid #E8AA00;
  font-family: grad, serif;
  color: #212832;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
}
@media screen and (max-width: 980px) {
  .component--content-editor blockquote {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  .component--content-editor blockquote {
    font-size: 22px;
    padding-left: 24px;
  }
}

.faq {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .faq {
    padding-inline: var(--gutter);
  }
}
.faq__heading {
  padding-bottom: 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .faq__question {
    gap: 20px;
  }
}
.faq__question[aria-expanded=true] .faq__arrow-icon {
  transform: rotate(90deg);
}
.faq__question-text {
  font-weight: 700;
}
.faq__arrow {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease;
}
.faq__arrow .faq__arrow-icon {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
.faq__answer {
  max-width: 1030px;
  padding-top: 24px;
}
.form-section {
  max-width: 1240px;
  margin: 72px auto;
  overflow: visible;
}
@media (max-width: 1399px) {
  .form-section {
    padding-inline: var(--gutter);
  }
}
@media (max-width: 425px) {
  .form-section {
    padding-inline: 10px;
  }
}
@media (max-width: 425px) {
  .form-section--donation {
    padding-inline: var(--gutter);
  }
}
.form-section--donation .form-section__wrapper {
  background-image: none;
  background-color: transparent;
  color: #2a2c2c;
  padding: 72px 0 0;
  overflow: visible;
}
.form-section--donation .form-section__wrapper .charity-info p {
  font-family: arboria, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}
.form-section--donation .form-section__wrapper fieldset {
  overflow: visible !important;
}
.form-section--donation .form-section__wrapper hr {
  margin-top: 12px;
  margin-bottom: 52px;
}
.form-section--donation .form-section__wrapper legend,
.form-section--donation .form-section__wrapper label,
.form-section--donation .form-section__wrapper span {
  font-size: 20px;
}
.form-section--donation .form-section__wrapper .gform_required_legend {
  text-align: right;
  font-size: 18px;
}
.form-section--donation .form-section__wrapper .donation-total label.ginput_product_price_label {
  display: none;
}
.form-section--donation .form-section__wrapper input[type=text],
.form-section--donation .form-section__wrapper input[type=number],
.form-section--donation .form-section__wrapper input[type=tel],
.form-section--donation .form-section__wrapper input[type=email],
.form-section--donation .form-section__wrapper select {
  min-height: 50px !important;
  font-family: arboria, sans-serif;
  font-size: 18px;
  align-items: center;
}
.form-section--donation .form-section__wrapper input[type=text]:focus, .form-section--donation .form-section__wrapper input[type=text]:focus-visible,
.form-section--donation .form-section__wrapper input[type=number]:focus,
.form-section--donation .form-section__wrapper input[type=number]:focus-visible,
.form-section--donation .form-section__wrapper input[type=tel]:focus,
.form-section--donation .form-section__wrapper input[type=tel]:focus-visible,
.form-section--donation .form-section__wrapper input[type=email]:focus,
.form-section--donation .form-section__wrapper input[type=email]:focus-visible,
.form-section--donation .form-section__wrapper select:focus,
.form-section--donation .form-section__wrapper select:focus-visible {
  outline: 3px solid black !important;
}
.form-section--donation .form-section__wrapper .gform-theme--framework .gform-field-label--type-inline {
  margin-inline: 0;
}
.form-section--donation .form-section__wrapper .donation-intent .gfield_radio .gchoice h5 {
  color: inherit;
  font-size: 20px;
  padding-bottom: 16px;
}
.form-section--donation .form-section__wrapper .donation-intent .gfield_radio .gchoice p {
  font-size: 18px;
  font-weight: 400;
}
.form-section--donation .form-section__wrapper .donation-intent .gfield_radio .gchoice input[type=radio] ~ label {
  padding: 20px;
}
.form-section--donation .form-section__wrapper .gfield_radio {
  flex-direction: row !important;
  flex-wrap: wrap;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice {
  max-width: 305px;
  text-align: center;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio] {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  cursor: pointer;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio]:checked ~ label {
  background-color: #00676a;
  color: #fff;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio]:focus ~ label, .form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio]:focus-visible ~ label {
  outline: 3px solid black;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio] ~ label {
  background-color: #f5f8fb;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 500;
}
.form-section--donation .form-section__wrapper .gfield_radio .gchoice input[type=radio] ~ label:hover {
  cursor: pointer;
}
.form-section--donation h3.h3 {
  color: #00676a;
  padding-bottom: 0;
}
.form-section input.gform_button.button[type=submit] {
  display: inline-block !important;
  color: #00676a !important;
  font-family: arboria, sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 1 !important; /* 20px */
  text-align: center !important;
  background: #ffd338 !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: var(--slight-shadow) !important;
  padding: 19px 34px 20px 34px !important;
  text-decoration: none !important;
}
.form-section input.gform_button.button[type=submit]:hover {
  background-color: #ffc700 !important;
}
.form-section input.gform_button.button[type=submit]:focus {
  outline: 3px solid black !important;
}
.form-section__wrapper {
  padding: 60px 72px;
  background-color: #00676a;
  background-image: url(../img/Form-BG-Coloured.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  color: #fff;
}
@media (max-width: 768px) {
  .form-section__wrapper {
    padding: 40px 30px;
  }
}
.form-section .h3, .form-section .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price, .form-section--donation .form-section__wrapper .donation-total .form-section label.ginput_product_price {
  color: #fff;
  padding-bottom: 16px;
}
.form-section__form {
  padding-top: 52px;
}
.form-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-section .field-wrapper {
  display: flex;
  gap: 24px;
  height: 117px;
}
@media (max-width: 768px) {
  .form-section .field-wrapper {
    flex-direction: column;
    height: unset;
  }
}
.form-section .field-wrapper > * {
  max-width: 100%;
  width: 100%;
}
.form-section .field-wrapper.questions {
  height: 152px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .form-section .field-wrapper.questions {
    min-height: 58px;
    height: unset;
    margin-top: -30px;
  }
}
.form-section .field-wrapper.questions textarea {
  width: 100%;
  padding: 10px;
  height: 108px;
  font-family: arboria, sans-serif;
  font-size: 20px;
  border-radius: 4px;
}
.form-section .field-wrapper label {
  font-size: 20px;
  height: 72px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .form-section .field-wrapper label {
    height: unset;
  }
}
.form-section .field-wrapper input {
  height: 58px;
  width: 100%;
  border-radius: 4px;
  border: none;
  font-family: arboria, sans-serif;
  font-size: 20px;
  padding: 10px;
}
.form-section .field-wrapper .wpcf7-checkbox input {
  width: auto;
  height: auto;
}
.form-section .field-wrapper .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.form-section .field-wrapper .wpcf7-form-control-wrap {
  height: 58px;
  display: inline-block;
  padding-top: 14px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-section .field-wrapper .wpcf7-form-control-wrap {
    min-height: 58px;
    height: unset;
  }
}
.form-section .field-wrapper .wpcf7-form-control-wrap select {
  width: 100%;
  height: 58px;
  border-radius: 4px;
  font-size: 18px;
  padding: 10px;
  font-family: arboria, sans-serif;
  background-image: url(../img/downarrow.svg);
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: 97%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gform-theme--foundation .gform_footer {
  display: block;
}

.gform-loader {
  background-size: 25px !important; /* Adjust the size as needed */
  background-position: center left 10px !important; /* Repositions the spinner */
  width: 20px !important;
  height: 20px !important;
}

.gform_footer svg {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.component--fullwidth-image {
  width: 100vw;
}

.funders {
  background-color: #fff;
}
.funders__wrapper {
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 73px;
}
@media (max-width: 1399px) {
  .funders__wrapper {
    padding-inline: var(--gutter);
  }
}
.funders__description {
  max-width: 950px;
  margin: 0 auto;
  padding: 24px 0 55px;
}
.funders__slider-wrapper {
  display: flex;
  gap: 50px;
  align-items: baseline;
  padding-bottom: 34px;
}
@media (max-width: 1024px) {
  .funders__slider-wrapper {
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .funders .splide__arrows {
    gap: 30px;
    margin-left: 0;
    padding-top: 0;
  }
}
.funders .splide__arrow {
  border: none;
  background: none;
}
.funders .splide__arrow:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .funders .splide__arrow svg {
    width: 40px;
  }
}
.funders .splide__arrow--next svg {
  transform: rotate(180deg);
}
.funders .splide__pagination {
  gap: 24px;
}
@media (max-width: 895px) {
  .funders .splide__pagination {
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .funders .splide__pagination {
    gap: 10px;
  }
}
.funders .splide__pagination__page {
  background-color: #777777;
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
@media (max-width: 895px) {
  .funders .splide__pagination__page {
    width: 6px;
    height: 12px;
  }
}
.funders .splide__pagination__page.is-active {
  background-color: #20a59f;
}
.funders .splide__list {
  display: flex;
  gap: 44px;
}
@media (max-width: 1024px) {
  .funders .splide__list {
    gap: 30px;
  }
}

.important-dates__wrapper {
  max-width: 1240px;
  margin: 72px auto;
  border-radius: 8px;
  box-shadow: var(--section-shadow);
}
@media (max-width: 1399px) {
  .important-dates__wrapper {
    margin-inline: var(--gutter);
  }
}
.important-dates__header {
  text-align: center;
  padding-block: 52px;
  background-color: #00676a;
  border-radius: 8px 8px 0 0;
  background-image: url(../img/teal-lines-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1399px) {
  .important-dates__header {
    padding-inline: var(--gutter);
  }
}
.important-dates__header .h2 {
  color: #fff;
}
.important-dates__body {
  background-color: #f0f0f0;
  padding-block: 60px;
  border-radius: 0 0 8px 8px;
  background-position: left;
}
@media (max-width: 1399px) {
  .important-dates__body {
    padding-inline: var(--gutter);
  }
}
.important-dates__content-wrapper {
  max-width: 815px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
.important-dates .date-block {
  text-align: left;
  width: 100%;
}
.important-dates .date-block .h4 {
  padding-bottom: 24px;
}
.important-dates .date-block__date-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
}
@media (max-width: 600px) {
  .important-dates .date-block__date-wrapper {
    align-items: center;
  }
}
.important-dates .date-block__name {
  font-weight: 700;
}
.important-dates .date-block__date {
  text-align: right;
  font-family: grad, serif;
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .important-dates .date-block__date {
    font-size: 18px;
  }
}
.important-dates .date-block__date::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #939393;
  width: 15vw;
  align-self: end;
  margin-right: 100px;
}
@media (max-width: 768px) {
  .important-dates .date-block__date::before {
    margin-right: 5vw;
    width: 10vw;
  }
}
@media (max-width: 600px) {
  .important-dates .date-block__date::before {
    display: none;
  }
}

.job-postings {
  max-width: 1256px;
  margin: 0 auto;
  padding-block: 72px;
}
@media (max-width: 1399px) {
  .job-postings {
    padding-inline: var(--gutter);
  }
}
.job-postings__title {
  margin-inline: 8px;
}
.job-postings__posts {
  display: flex;
  gap: 24px;
  padding-top: 40px;
  margin-inline: 8px;
}
@media (max-width: 980px) {
  .job-postings__posts {
    flex-direction: column;
  }
}
.job-postings__post {
  flex-basis: 50%;
  padding: 28px 32px;
  background-color: #00676a;
  background-image: url(../img/graph-white-bg.svg);
  background-size: cover;
  background-position: left;
  color: #fff;
  border-radius: 4px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--slight-shadow);
}
.job-postings__post .post__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-postings__post .post__title {
  color: #fff;
}
.job-postings__post .post__department {
  border-radius: 16px;
  background: #c3dedf;
  padding: 4px 9px 5px 9px;
  color: #00676a;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  align-self: flex-start;
}
.job-postings__post .post__link {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4; /* 33.6px */
  color: #ffc700;
  padding-top: 10px;
}
.job-postings__post .post__link::after {
  content: url("../img/link-caret--yellow.svg");
  padding-left: 8px;
}
@media (max-width: 980px) {
  .job-postings__post .post__link {
    font-size: 20px;
  }
}

.hero-section {
  /* Focal point + optional height override */
  background-position: var(--fx, 50%) var(--fy, 50%);
  background-repeat: no-repeat;
  background-size: cover;
  height: var(--hero-h, 784px); /* override via --hero-h if needed */
  position: relative;
}
@media screen and (min-width: 2000px) and (max-width: 2559px) {
  .hero-section {
    height: var(--hero-h, 984px);
  }
}
@media screen and (min-width: 2560px) {
  .hero-section {
    height: var(--hero-h, 1100px);
  }
}
@media (max-width: 1135px) {
  .hero-section {
    min-height: 380px;
    height: unset;
    --fx: 50%;
    --fy: 50%;
    background-position: center center;
  }
}
.hero-section--no-bg {
  height: 431px;
  background-image: url(../img/graph-bg-overlay.svg);
  background-color: #00676a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section--no-bg .hero-section__background-holder {
  background-image: url(../img/hero-section-frame--no-bg.svg);
}
@media (max-width: 1135px) {
  .hero-section--no-bg .hero-section__background-holder {
    background-image: linear-gradient(274deg, rgba(0, 0, 0, 0.26) 13.7%, rgba(0, 0, 0, 0.73) 58.45%);
    background-position: center;
    padding: 5vw 0 16vw;
    display: flex;
    align-items: center;
    min-height: 380px;
  }
}
.hero-section--no-bg .hero-section__content-wrapper {
  justify-content: flex-end;
  padding-bottom: 195px;
}
@media (max-width: 1135px) {
  .hero-section--no-bg .hero-section__content-wrapper {
    padding-bottom: 0;
    justify-content: center;
  }
}
@media (max-width: 1135px) {
  .hero-section--no-bg {
    height: unset;
  }
}
.hero-section__background-holder {
  background-image: url(../img/hero-section-frame.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 380px;
}
@media (max-width: 1135px) {
  .hero-section__background-holder {
    background-image: linear-gradient(274deg, rgba(0, 0, 0, 0.26) 13.7%, rgba(0, 0, 0, 0.73) 58.45%);
    background-position: center;
    padding: 5vw 0 16vw;
    display: flex;
    align-items: center;
  }
}
.hero-section__wrapper {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.hero-section__content-wrapper {
  height: 100%;
  width: 484px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 2560px) {
  .hero-section__content-wrapper {
    width: 50%;
  }
}
@media (max-width: 1399px) {
  .hero-section__content-wrapper {
    padding-inline: var(--gutter);
  }
}
@media (max-width: 520px) {
  .hero-section__content-wrapper {
    width: 100%;
  }
}
@media (max-width: 1135px) {
  .hero-section__content-wrapper .h1 {
    color: #fff;
  }
}
.hero-section__subtitle {
  color: #00676a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  border-radius: 25px;
  padding: 6px 16px 8px 16px;
  background-color: #fff;
  box-shadow: 1px 1px 1px 0px rgba(204, 204, 204, 0.25);
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1135px) {
  .hero-section__subtitle {
    background: none;
    color: #ffc700;
    padding: 0;
    box-shadow: none;
  }
}
.hero-section__description {
  max-width: 525px;
}
@media (max-width: 1135px) {
  .hero-section__description {
    color: #fff;
  }
}
.hero-section__mobile-shape {
  display: none;
}
@media (max-width: 1135px) {
  .hero-section__mobile-shape {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.hero-section.inverted .hero-section__wrapper h1 {
  color: #FFFFFF;
}
.hero-section.inverted .hero-section__description {
  color: #FFFFFF;
}
.hero-section.inverted .hero-section__background-holder {
  background-image: url(../img/hero-section-frame-inverted.webp);
}

.homepage-hero {
  position: relative;
  min-height: 825px;
}
@media (min-width: 2000px) {
  .homepage-hero {
    min-height: 1000px;
  }
}
@media (max-width: 1199px) {
  .homepage-hero {
    height: 65vw;
    min-height: 545px;
    margin-bottom: 72px;
  }
}
@media (max-width: 400px) {
  .homepage-hero {
    height: 500px;
    min-height: 500px;
  }
}
.homepage-hero__wrapper {
  display: flex;
  position: relative;
  min-height: 813px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .homepage-hero__wrapper {
    display: flex;
    align-items: center;
    height: 65vw;
    min-height: 545px;
  }
}
@media (max-width: 400px) {
  .homepage-hero__wrapper {
    height: 500px;
    min-height: 500px;
  }
}
.homepage-hero__content {
  margin-bottom: 20px;
}
.homepage-hero__content h1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .homepage-hero__content {
    text-align: center;
    padding-bottom: 115px;
  }
  .homepage-hero__content .hero-section__description {
    margin: 0 auto;
    max-width: 94%;
  }
}
.homepage-hero__mobile-bg {
  display: none;
}
@media (max-width: 1199px) {
  .homepage-hero__mobile-bg {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask: url("../img/mobile-homepage-hero-frame.svg") no-repeat center top;
    -webkit-mask: url("../img/mobile-homepage-hero-frame.svg") no-repeat center top;
    mask-size: cover;
    -webkit-mask-size: cover;
    width: 100vw;
    height: 125vw;
    position: absolute;
    z-index: 2;
    bottom: 15px;
  }
}
@media (max-width: 1199px) and (max-width: 425px) {
  .homepage-hero__mobile-bg {
    bottom: unset;
    top: -15px;
  }
}
.homepage-hero .homepage-hero__border-image--mobile {
  display: none;
}
@media (max-width: 1199px) {
  .homepage-hero .homepage-hero__border-image--mobile {
    border-radius: 0;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask: url("../img/mobile-homepage-hero-frame.svg") no-repeat center top;
    -webkit-mask: url("../img/mobile-homepage-hero-frame.svg") no-repeat center top;
    mask-size: cover;
    -webkit-mask-size: cover;
    width: 100vw;
    height: 125vw;
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 425px) {
  .homepage-hero .homepage-hero__border-image--mobile {
    bottom: unset;
    top: 0;
  }
}
.homepage-hero__left {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .homepage-hero__left {
    padding-left: var(--gutter);
    position: relative;
  }
}
@media (max-width: 1199px) {
  .homepage-hero__left {
    padding: 0;
  }
}
.homepage-hero__title {
  max-width: 525px;
  font-family: arboria, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1; /* 85.6px */
  letter-spacing: 1.6px;
  color: #00676a;
  font-size: clamp(3.125rem, 3.64vw + 2.27rem, 5rem);
}
@media (max-width: 1399px) {
  .homepage-hero__title {
    font-size: 5.5vw;
  }
}
@media (max-width: 1199px) {
  .homepage-hero__title {
    color: #fff;
    text-align: center;
    max-width: 100%;
    font-size: 80px;
    padding-inline: var(--gutter);
  }
}
@media (max-width: 1024px) {
  .homepage-hero__title {
    font-size: 50px;
  }
}
@media (max-width: 425px) {
  .homepage-hero__title {
    font-size: 13vw;
  }
}
.homepage-hero__spacer {
  width: 679px;
}
@media (max-width: 1199px) {
  .homepage-hero__spacer {
    display: none;
  }
}
@media (max-width: 1199px) {
  .homepage-hero__right {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.homepage-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 862px;
  aspect-ratio: 1/1;
}
@media (max-width: 1199px) {
  .homepage-hero__image-wrapper {
    max-width: 100vw;
  }
}
.homepage-hero__image-wrapper .homepage-hero__main-image {
  height: 807px;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 2;
}
@media (min-width: 2000px) {
  .homepage-hero__image-wrapper .homepage-hero__main-image {
    height: 907px;
  }
}
@media (max-width: 1199px) {
  .homepage-hero__image-wrapper .homepage-hero__main-image {
    display: none;
  }
}
.homepage-hero__image-wrapper .homepage-hero__border-image {
  border-radius: 0 0 0 100%;
  position: absolute;
  top: -65px;
  right: 0;
  height: 901px;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 2000px) {
  .homepage-hero__image-wrapper .homepage-hero__border-image {
    height: 1013px;
    top: -70px;
  }
}
@media (max-width: 1199px) {
  .homepage-hero__image-wrapper .homepage-hero__border-image {
    display: none;
  }
}
.homepage-hero__image-wrapper .homepage-hero__pattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 1199px) {
  .homepage-hero__image-wrapper .homepage-hero__pattern {
    display: none;
  }
}

.home.wp-singular {
  background-image: url(../img/Homepage-bg.svg);
  background-size: contain;
  background-position: top;
  background-color: #f0f0f0;
  background-repeat: repeat-x;
}

.component--map-embed {
  max-width: 1240px;
  margin: 0 auto;
  padding-block: 40px;
}
@media (max-width: 1399px) {
  .component--map-embed {
    padding-inline: var(--gutter);
  }
}
.component--map-embed > div {
  max-width: 1028px;
}

.offices-listing {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .offices-listing {
    padding-inline: var(--gutter);
  }
}
.offices-listing__offices {
  display: flex;
  gap: 24px;
  margin: 40px 5px;
}
@media (max-width: 768px) {
  .offices-listing__offices {
    flex-direction: column;
  }
}
.offices-listing__office {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  background-color: #f0f0f0;
  box-shadow: var(--slight-shadow);
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-block: 72px;
}
@media (max-width: 768px) {
  .offices-listing__office {
    width: 100%;
  }
}
.offices-listing__name {
  color: #2a2c2c;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.offices-listing__address {
  text-align: center;
}

.reports-and-projects {
  max-width: 1240px;
  margin: 0 auto;
  overflow: visible;
  padding-block: 72px;
}
@media (max-width: 1399px) {
  .reports-and-projects {
    padding-inline: var(--gutter);
  }
}
.reports-and-projects__description {
  color: #2a2c2c;
  display: block;
  padding-bottom: 24px;
  font-weight: 700;
}
.reports-and-projects__select {
  width: 350px;
  height: 58px;
  border-radius: 4px;
  font-size: 18px;
  padding: 10px;
  font-family: arboria, sans-serif;
  background-image: url(../img/downarrow.svg);
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: 97%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 60px;
}
@media (max-width: 550px) {
  .reports-and-projects__select {
    width: 80vw;
  }
}
.reports-and-projects__tiles {
  display: flex;
  gap: 24px;
  padding: 0 0 32px;
  flex-wrap: wrap;
}
.reports-and-projects__tiles .tile {
  display: flex;
  gap: 24px;
  width: 604px;
  height: 170px;
  flex-basis: 604px;
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: var(--slight-shadow);
  text-decoration: none;
  background-image: url(../img/graph-white-bg-2.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .reports-and-projects__tiles .tile {
    height: unset;
  }
}
.reports-and-projects__tiles .tile:hover {
  transform: scale(1.02);
}
.reports-and-projects__tiles .tile__left {
  width: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 425px) {
  .reports-and-projects__tiles .tile__left {
    width: 100px;
  }
}
.reports-and-projects__tiles .tile__left > img {
  visibility: hidden;
}
@media (max-width: 700px) {
  .reports-and-projects__tiles .tile__left > img {
    max-height: 170px;
  }
}
.reports-and-projects__tiles .tile__right {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 0;
  justify-content: center;
}
.reports-and-projects__tiles .tile__year {
  color: #00676a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .stats-overview {
    padding-inline: var(--gutter);
  }
}
.stats-overview__wrapper {
  max-width: 1240px;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-image: url("../img/GridPattern_Teal.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #00676a;
  border-radius: 8px;
  padding: 64px 40px;
}
@media (max-width: 1199px) {
  .stats-overview__wrapper {
    padding: 40px;
    height: auto;
  }
}
.stats-overview .h2 {
  color: #fff;
}
.stats-overview__stats {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 68px;
  gap: 20px;
}
@media (max-width: 1199px) {
  .stats-overview__stats {
    flex-wrap: wrap;
    row-gap: 80px;
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .stats-overview__stats {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.stats-overview .link {
  color: #ffd338;
  font-size: 24px;
}
.stats-overview .link::after {
  content: url("../img/link-caret--yellow.svg");
  padding-left: 8px;
}
.stats-overview .stat__wrapper {
  width: 25%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-inline: 6px;
  align-items: center;
}
@media (max-width: 1199px) {
  .stats-overview .stat__wrapper {
    flex-basis: 48%;
    width: 100%;
  }
}
.stats-overview .stat__icon {
  width: 100px;
  height: 100px;
}
.stats-overview .stat__number {
  font-family: grad, serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 28px 0 12px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .stats-overview .stat__number {
    font-size: 50px;
  }
}
@media (max-width: 640px) {
  .stats-overview .stat__number {
    font-size: 40px;
  }
}
.stats-overview .stat__name {
  white-space: nowrap;
}
.stats-overview.reducedPadding {
  margin-bottom: 73px;
}
.stats-overview.reducedPadding .stats-overview__wrapper {
  height: 520px;
}
@media (max-width: 1199px) {
  .stats-overview.reducedPadding .stats-overview__wrapper {
    height: auto;
  }
}
.stats-overview.nobackground h2 {
  color: #00676a;
}
.stats-overview.nobackground .stats-overview__wrapper {
  background: none;
  padding: 0;
  height: auto;
  max-width: 1200px;
}
.stats-overview.nobackground .stats-overview__wrapper .h2 {
  color: #00676a;
  margin-bottom: 40px;
}
.stats-overview.nobackground .stats-overview__wrapper .stats-overview__stats {
  padding: 0;
}
.stats-overview.nobackground .stats-overview__wrapper .stats-overview__stats .stat__number {
  color: #00676a;
  padding: 12px 0;
}
.stats-overview.nobackground .stats-overview__wrapper .stats-overview__stats .stat__name {
  color: #00676a;
}
.stats-overview.nobackground .stats-overview__stats {
  flex-wrap: wrap;
  gap: 60px;
  flex-basis: auto;
  justify-content: center;
}
.stats-overview.nobackground .stat__wrapper {
  flex-wrap: wrap;
  gap: 20px;
  min-width: 292px;
  width: calc(33.3333333333% - 40px);
  max-width: 292px;
}
.stats-overview.nobackground .stat__number {
  color: #00676a;
}
.stats-overview.nobackground .stat__name {
  color: #00676a;
  white-space: wrap;
}

.component--team-members {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 0;
}
@media (max-width: 1399px) {
  .component--team-members {
    padding-inline: var(--gutter);
  }
}

.team-members__title {
  padding-bottom: 16px;
}
.team-members__posts {
  display: flex;
  gap: 40px 24px;
  flex-wrap: wrap;
  padding-block: 40px;
}
@media (max-width: 1399px) {
  .team-members__posts {
    row-gap: 40px;
  }
}
@media (max-width: 660px) {
  .team-members__posts {
    display: block;
  }
}
.team-members__post {
  flex-basis: 397px;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--slight-shadow);
}
@media (max-width: 1399px) {
  .team-members__post {
    flex-basis: 31%;
    height: 100%;
  }
}
@media (max-width: 960px) {
  .team-members__post {
    flex-basis: 397px;
  }
}
@media (max-width: 660px) {
  .team-members__post {
    max-width: 397px;
    margin-bottom: 40px;
  }
}
@media (max-width: 460px) {
  .team-members__post {
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
  }
}
.team-members__post .post__title {
  padding-top: 30px;
}
.team-members__post .post__title .h3, .team-members__post .post__title .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price, .form-section--donation .form-section__wrapper .donation-total .team-members__post .post__title label.ginput_product_price {
  text-decoration: none;
  display: block;
}
.team-members__post .post__title .h3:hover, .team-members__post .post__title .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price:hover, .form-section--donation .form-section__wrapper .donation-total .team-members__post .post__title label.ginput_product_price:hover {
  text-decoration: underline;
}
.team-members__post .post__image {
  height: 100%;
  width: 100%;
  max-width: 397px;
  max-height: 348px;
  display: block;
  overflow: hidden;
  position: relative;
}
@media (max-width: 460px) {
  .team-members__post .post__image {
    width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
  }
}
.team-members__post .post__image .wp-post-image {
  visibility: hidden;
  max-height: 397px;
  width: 100%;
}
.team-members__post .post__image .image__bg-holder {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.team-members__post #email-icon,
.team-members__post #city-icon,
.team-members__post #phone-icon {
  margin-right: 8px;
}
.team-members__post .contact {
  background-color: #00676a;
  padding: 83px 24px 24px;
  border-radius: 0 0 8px 8px;
  mask: url("../img/staff-frame.svg") no-repeat center top;
  -webkit-mask: url("../img/staff-frame.svg") no-repeat center top;
  mask-size: cover;
  -webkit-mask-size: cover;
  width: 397px;
  min-height: 385px;
  margin-top: -53px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .team-members__post .contact {
    width: 100%;
    margin-top: -60px;
  }
}
@media (max-width: 660px) {
  .team-members__post .contact {
    width: 397px;
    margin-top: -57px;
    max-width: calc(100vw - 60px);
  }
}
.team-members__post .contact__name .name {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.team-members__post .contact__name .position {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.team-members__post .contact__info .city,
.team-members__post .contact__info .email,
.team-members__post .contact__info .phone {
  color: #ffd338;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.team-members__post .contact__read-more {
  text-align: right;
  width: 100%;
}
.team-members__post .contact__read-more a {
  color: #ffd338;
  text-decoration: none;
  font-weight: 700;
}
.team-members__post .contact__read-more a > img {
  padding: 0px 8px;
  transform: rotate(90deg);
}

.lightbox-overlay__container {
  overflow-y: hidden;
  width: auto;
}
.lightbox-overlay__container .team-members__post {
  max-width: 603px;
}
@media (max-width: 1000px) {
  .lightbox-overlay__container .team-members__post {
    width: 80vw;
    max-width: 80vw;
  }
}
.lightbox-overlay__container .team-members__post .post__image {
  max-width: 603px;
  max-height: 522px;
}
@media (max-width: 1000px) {
  .lightbox-overlay__container .team-members__post .post__image {
    width: 80vw;
    max-width: 80vw;
  }
}
.lightbox-overlay__container .team-members__post .post__image .wp-post-image {
  max-height: 522px;
}
.lightbox-overlay__container .team-members__post .contact {
  width: 603px;
  max-width: 50vw;
  height: -moz-min-content;
  height: min-content;
  margin-top: -90px;
}
@media (max-width: 1000px) {
  .lightbox-overlay__container .team-members__post .contact {
    padding-top: 100px;
    width: 80vw;
    max-width: 80vw;
  }
}
@media (max-width: 800px) {
  .lightbox-overlay__container .team-members__post .contact {
    padding-top: 120px;
    margin-top: -120px;
  }
}
.lightbox-overlay__container .team-members__post .contact .bio {
  color: #fff;
  padding: 32px 0 6px;
}
.lightbox-overlay__container .team-members__post .contact .bio p {
  margin-bottom: 20px;
}

.component--timeline {
  background-image: url(../img/timeline-topographic-bg.svg);
  background-size: cover;
  background-position: center;
}
.component--timeline .timeline__teal-line {
  position: relative;
  background: none;
  padding-top: 72px;
}
.component--timeline .timeline__teal-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background-color: #00676a;
  /* Animated draw: height grows based on --line-progress set via JS */
  height: var(--line-progress, 0%);
  transition: height 0.35s ease-out;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1320px) {
  .component--timeline .timeline__teal-line::before {
    left: 116px;
  }
}
@media (max-width: 700px) {
  .component--timeline .timeline__teal-line::before {
    left: 50px;
  }
}
@media (max-width: 425px) {
  .component--timeline .timeline__teal-line::before {
    display: none;
  }
}
.component--timeline .timeline {
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .component--timeline .timeline {
    padding-inline: var(--gutter);
  }
}
.component--timeline .timeline .h2 {
  height: 67px;
}
@media (max-width: 1320px) {
  .component--timeline .timeline .h2 {
    text-align: center;
  }
}
.component--timeline .timeline__wrapper {
  padding: 134px 0 172px;
}
@media (max-width: 1320px) {
  .component--timeline .timeline__wrapper {
    padding-left: 65px;
  }
}
@media (max-width: 700px) {
  .component--timeline .timeline__wrapper {
    padding-left: 0;
    padding-top: 80px;
  }
}
@media (max-width: 425px) {
  .component--timeline .timeline__wrapper {
    padding-bottom: 100px;
  }
}
.component--timeline .timeline .point__wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.component--timeline .timeline .point__wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1320px) {
  .component--timeline .timeline .point__wrapper {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .component--timeline .timeline .point__wrapper {
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .component--timeline .timeline .point__wrapper {
    display: block;
  }
}
.component--timeline .timeline .point__wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 1320px) {
  .component--timeline .timeline .point__wrapper:nth-child(odd) {
    flex-direction: row;
  }
}
@media (max-width: 425px) {
  .component--timeline .timeline .point__wrapper > img {
    display: none;
  }
}
.component--timeline .timeline .point__content {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding: 32px;
  border-radius: 4px;
  background-color: #00676a;
  color: #fff;
}
@media (max-width: 1320px) {
  .component--timeline .timeline .point__content {
    max-width: 80vw;
    height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.component--timeline .timeline .point__content .h5 {
  color: #fff;
  padding-bottom: 16px;
}
.component--timeline .timeline .point__content .point__description {
  height: 210px;
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: auto;
  scrollbar-color: #f0f0f0 #00676a;
}
.component--timeline .timeline .point__content .point__description p {
  font-size: 1.25rem;
}
@media (max-width: 700px) {
  .component--timeline .timeline .point__content .point__description {
    height: 237px;
  }
}
.component--timeline .timeline .point__content .point__description::-webkit-scrollbar {
  width: 15px;
  height: 10px;
}
.component--timeline .timeline .point__content .point__description::-webkit-scrollbar-track {
  background: #00676a;
  border-radius: 4px;
}
.component--timeline .timeline .point__content .point__description::-webkit-scrollbar-thumb {
  background-color: #f0f0f0;
  border-radius: 10px;
  border: 4px solid #00676a;
}
.component--timeline .timeline .point__content .point__description::-webkit-scrollbar-thumb:hover {
  background-color: #00676a;
}

.two-column-image-text-cta {
  padding-bottom: 175px;
}
@media (max-width: 1399px) {
  .two-column-image-text-cta {
    padding-inline: var(--gutter);
  }
}
@media (max-width: 768px) {
  .two-column-image-text-cta {
    padding-bottom: 100px;
  }
}
.two-column-image-text-cta__wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .two-column-image-text-cta__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.two-column-image-text-cta__left {
  flex-basis: 678px;
}
@media (max-width: 1399px) {
  .two-column-image-text-cta__left {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .two-column-image-text-cta__left {
    max-width: 100%;
  }
}
.two-column-image-text-cta__image-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .two-column-image-text-cta__image-wrapper {
    max-height: 80vw;
  }
}
.two-column-image-text-cta__image-wrapper img {
  visibility: hidden;
}
.two-column-image-text-cta__right {
  flex-basis: 446px;
}
@media (max-width: 1399px) {
  .two-column-image-text-cta__right {
    flex-basis: 50%;
  }
}
.two-column-image-text-cta__description {
  padding: 24px 0 40px;
}

.two-column-page-overview-tiles {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 0;
  overflow: visible;
}
@media (max-width: 1399px) {
  .two-column-page-overview-tiles {
    padding-inline: var(--gutter);
  }
}
.two-column-page-overview-tiles__top {
  padding-bottom: 57px;
  max-width: 730px;
}
.two-column-page-overview-tiles__top .h2 {
  padding-bottom: 12px;
}
.two-column-page-overview-tiles__tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.two-column-page-overview-tiles__tiles .tile {
  display: flex;
  gap: 24px;
  width: 604px;
  height: 170px;
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: var(--slight-shadow);
  text-decoration: none;
}
@media (max-width: 1399px) {
  .two-column-page-overview-tiles__tiles .tile {
    width: 48%;
  }
}
@media (max-width: 1024px) {
  .two-column-page-overview-tiles__tiles .tile {
    width: 80vw;
    max-width: 80vw;
    height: 250px;
  }
}
@media (max-width: 500px) {
  .two-column-page-overview-tiles__tiles .tile {
    height: unset;
    flex-direction: column;
  }
}
.two-column-page-overview-tiles__tiles .tile:hover {
  transform: scale(1.02);
}
.two-column-page-overview-tiles__tiles .tile__left {
  width: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 500px) {
  .two-column-page-overview-tiles__tiles .tile__left {
    width: 100%;
    border-radius: 4px 4px 0 0;
    height: 176px;
  }
}
.two-column-page-overview-tiles__tiles .tile__left > img {
  visibility: hidden;
}
.two-column-page-overview-tiles__tiles .tile__right {
  padding: 20px 20px 20px 0;
}
@media (max-width: 500px) {
  .two-column-page-overview-tiles__tiles .tile__right {
    padding: 0 20px 20px;
  }
}
.two-column-page-overview-tiles__tiles .tile__right .text--small, .two-column-page-overview-tiles__tiles .tile__right .site-header .row .menu-holder .search-bar .search-form input[type=text], .site-header .row .menu-holder .search-bar .search-form .two-column-page-overview-tiles__tiles .tile__right input[type=text], .two-column-page-overview-tiles__tiles .tile__right footer .site-footer__fine-print, footer .two-column-page-overview-tiles__tiles .tile__right .site-footer__fine-print, .two-column-page-overview-tiles__tiles .tile__right footer .site-footer__links, footer .two-column-page-overview-tiles__tiles .tile__right .site-footer__links, .two-column-page-overview-tiles__tiles .tile__right footer .site-footer__copyright, footer .two-column-page-overview-tiles__tiles .tile__right .site-footer__copyright, .two-column-page-overview-tiles__tiles .tile__right footer .site-footer .row .right .menu--footer .sub-menu .menu-item a, footer .site-footer .row .right .menu--footer .sub-menu .menu-item .two-column-page-overview-tiles__tiles .tile__right a, .two-column-page-overview-tiles__tiles .tile__right .component--all-stories #filters .search-bar .search-form input[type=text], .component--all-stories #filters .search-bar .search-form .two-column-page-overview-tiles__tiles .tile__right input[type=text] {
  color: #2a2c2c;
}

.who-we-are {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  gap: 80px;
  color: #2a2c2c;
}
@media (max-width: 1399px) {
  .who-we-are {
    padding-inline: var(--gutter);
    gap: 50px;
  }
}
@media (max-width: 980px) {
  .who-we-are {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
.who-we-are .h2 {
  padding-bottom: 40px;
}
@media (max-width: 980px) {
  .who-we-are .h2 {
    padding-bottom: 0;
  }
}
.who-we-are__sidebar {
  min-width: 245px;
}
.who-we-are__sidebar ul {
  padding-inline-start: 40px;
}
.who-we-are__sidebar ul ::marker {
  color: #2a2c2c;
}
@media (min-width: 980px) {
  .who-we-are .mobile {
    display: none;
  }
}
@media (max-width: 980px) {
  .who-we-are .mobile {
    display: block;
  }
}
@media (min-width: 980px) {
  .who-we-are .desktop {
    display: block;
  }
}
@media (max-width: 980px) {
  .who-we-are .desktop {
    display: none;
  }
}

.work-with-us {
  background-color: #fff;
  position: relative;
}
.work-with-us__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 0 155px;
}
@media (max-width: 1399px) {
  .work-with-us__wrapper {
    padding-inline: var(--gutter);
  }
}
.work-with-us__top {
  text-align: center;
  max-width: 930px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.work-with-us__top .h2 {
  margin-bottom: 24px;
}
.work-with-us__columns {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 980px) {
  .work-with-us__columns {
    flex-direction: column;
    gap: 60px;
  }
}
.work-with-us__column {
  max-width: 50%;
}
@media (max-width: 980px) {
  .work-with-us__column {
    max-width: 100%;
  }
}
.work-with-us__column .h3, .work-with-us__column .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price, .form-section--donation .form-section__wrapper .donation-total .work-with-us__column label.ginput_product_price {
  margin-bottom: 12px;
}
.work-with-us__column a {
  text-decoration: none;
}
.work-with-us__column-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 252px;
}
@media (max-width: 980px) {
  .work-with-us__column-content {
    min-height: unset;
  }
}
.work-with-us__image-wrapper {
  width: 100%;
  height: 348px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin-bottom: 28px;
}
@media (max-width: 980px) {
  .work-with-us__image-wrapper {
    height: 60vw;
  }
}
.work-with-us__image-wrapper > img {
  visibility: hidden;
}
.work-with-us__links {
  display: flex;
  gap: 32px;
}
@media (max-width: 1199px) {
  .work-with-us__links {
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
  }
}
.work-with-us__links > span {
  color: #939393;
}
@media (max-width: 1199px) {
  .work-with-us__links > span {
    display: none;
  }
}
.work-with-us__links .link {
  font-size: 24px;
  line-height: 1.4;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .work-with-us__links .link {
    font-size: 20px;
  }
}
.work-with-us__links .link::after {
  content: url("../img/link-caret.svg");
  padding-left: 8px;
}

.component--related-posts {
  padding: 3rem 1rem;
  text-align: left;
  background-color: #f0f0f0;
  background-image: url("../img/related-stories-topographic.svg");
  background-size: cover;
}
.component--related-posts .h2 {
  margin-bottom: 40px;
}
.component--related-posts .related-posts__wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.component--related-posts .related-posts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.component--related-posts .related-posts__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--slight-shadow);
}
.component--related-posts .related-posts__item--video .related-posts__thumbnail {
  position: relative;
  display: block;
  background: #000000;
}
.component--related-posts .related-posts__item--video .related-posts__thumbnail::before {
  content: url("../img/video-play-button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: all 300ms ease-in-out;
  z-index: 9;
}
.component--related-posts .related-posts__item--video .related-posts__thumbnail img {
  opacity: 0.6;
}
.component--related-posts .related-posts__link {
  text-decoration: none;
}
.component--related-posts .related-posts__thumbnail {
  width: 100%;
  height: 310px;
  overflow: hidden;
  margin-bottom: 20px;
}
.component--related-posts .related-posts__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.component--related-posts .related-posts__title {
  font-size: 1.5625rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 60px;
  padding: 0 24px;
  color: #333;
  flex-grow: 1;
  text-align: left;
}
.component--related-posts .related-posts__meta {
  margin-top: auto;
  padding: 0 24px 1rem;
  text-align: left;
}
.component--related-posts .related-posts__date {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #2a2c2c;
  margin-bottom: 4px;
}
.component--related-posts .related-posts__categories {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  font-weight: bold;
}
.component--related-posts .related-posts__categories:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
}
.component--related-posts .related-posts__categories a {
  color: #00676a;
  text-decoration: underline;
}
.component--related-posts .related-posts__categories a:hover {
  color: #20a59f;
}

.component--story-highlights {
  background-color: #f0f0f0;
  background-image: url("../img/related-stories-topographic.svg");
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
.component--story-highlights__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 2000px) {
  .component--story-highlights__wrapper {
    max-width: 80%;
  }
}
@media screen and (max-width: 1399px) {
  .component--story-highlights__wrapper {
    padding-inline: var(--gutter);
  }
}
.component--story-highlights__description p {
  font-family: Arboria;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  max-width: 935px;
  padding-right: 10px;
  margin-top: 23px;
}
.component--story-highlights__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.component--story-highlights__header .btn, .component--story-highlights__header .site-header .row .menu-holder .menu-item:last-child.menu-item-has-children, .site-header .row .menu-holder .component--story-highlights__header .menu-item:last-child.menu-item-has-children {
  white-space: nowrap;
}
.component--story-highlights__header .btn:after, .component--story-highlights__header .site-header .row .menu-holder .menu-item.menu-item-has-children:last-child:after, .site-header .row .menu-holder .component--story-highlights__header .menu-item.menu-item-has-children:last-child:after {
  content: url("../img/link-caret-teal.svg");
  padding-left: 10px;
}
.component--story-highlights .splide {
  position: relative;
}
.component--story-highlights .splide__arrows {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
}
.component--story-highlights .splide__arrow {
  border: none;
  border-radius: 50%;
}
.component--story-highlights .splide__arrow:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .component--story-highlights .splide__arrow svg {
    width: 40px;
  }
}
.component--story-highlights .splide__arrow--next {
  border-radius: 50%;
}
.component--story-highlights .splide__arrow--next svg {
  transform: rotate(180deg);
}
.component--story-highlights .splide__pagination {
  gap: 24px;
  margin-top: 90px;
  z-index: 1;
  position: relative;
}
@media (max-width: 895px) {
  .component--story-highlights .splide__pagination {
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .component--story-highlights .splide__pagination {
    gap: 10px;
  }
}
.component--story-highlights .splide__pagination__page {
  background-color: #777777;
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
@media (max-width: 895px) {
  .component--story-highlights .splide__pagination__page {
    width: 6px;
    height: 12px;
  }
}
.component--story-highlights .splide__pagination__page.is-active, .component--story-highlights .splide__pagination__page:hover {
  background-color: #20a59f;
}
.component--story-highlights .splide__pagination__page:hover {
  cursor: pointer;
}
.component--story-highlights .splide__list {
  display: flex;
  gap: 44px;
  padding-bottom: 15px !important;
}
@media screen and (max-width: 980px) {
  .component--story-highlights .splide__list {
    gap: 0;
  }
}
.component--story-highlights .splide__container {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 275px;
}
.component--story-highlights .splide__container p {
  color: #00676a;
}
@media screen and (max-width: 980px) {
  .component--story-highlights .splide__container {
    height: auto;
  }
}
.component--story-highlights .splide__track {
  overflow: unset;
}
.component--story-highlights .splide__title {
  margin-bottom: 5px;
}
.component--story-highlights .splide__title a {
  text-decoration: none;
  color: #2a2c2c;
}
.component--story-highlights .splide__categories {
  color: #00676a;
}
.component--story-highlights .splide__categories:before {
  content: url(../img/category-tag-icon.svg);
  vertical-align: middle;
}
.component--story-highlights .splide__categories a {
  color: #00676a;
  text-decoration: underline;
}
.component--story-highlights .splide__slide {
  width: 400px;
  padding: 0 !important;
  padding-block: 0 !important;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--slight-shadow);
}
.component--story-highlights .splide__slide .splide__thumbnail {
  width: 400px;
  height: 310px;
  transition: width 100ms linear;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 980px) {
  .component--story-highlights .splide__slide .splide__thumbnail {
    width: 100%;
  }
}
.component--story-highlights .splide__slide .splide__content p {
  display: none;
}
.component--story-highlights .splide__slide .splide__date {
  color: #2a2c2c;
}
.component--story-highlights .splide__slide:first-child {
  background: #00676a;
  color: #FFFFFF;
  width: 800px;
}
.component--story-highlights .splide__slide:first-child .splide__thumbnail {
  width: 820px;
  height: 310px;
}
.component--story-highlights .splide__slide:first-child .splide__title a {
  color: #FFFFFF;
  text-decoration: none;
}
.component--story-highlights .splide__slide:first-child .splide__date {
  color: #FFFFFF;
}
.component--story-highlights .splide__slide:first-child .splide__categories {
  color: #ffd338;
}
.component--story-highlights .splide__slide:first-child .splide__categories a {
  color: #ffd338;
  text-decoration: underline;
}
.component--story-highlights .splide__slide:first-child .splide__categories:before {
  content: url(../img/category-tag-icon-yellow.svg);
  vertical-align: middle;
}
.component--story-highlights .splide__slide:first-child .splide__content p {
  color: #FFFFFF;
  display: block;
}
@media screen and (max-width: 980px) {
  .component--story-highlights .splide__slide:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .component--story-highlights .splide__slide {
    width: 100%;
  }
}

.component--featured-story {
  max-width: 1240px;
  margin: 72px auto;
  padding-inline: var(--gutter);
}
.component--featured-story__wrapper {
  height: 442px;
  display: flex;
  flex-direction: row;
  border-radius: 8px;
  box-shadow: var(--slight-shadow);
  overflow: hidden;
}
.component--featured-story__wrapper--left {
  width: 33%;
}
.component--featured-story__wrapper--left .image-container {
  width: 100%;
  max-width: 482px;
  height: 100%;
  height: 442px;
}
@media screen and (max-width: 768px) {
  .component--featured-story__wrapper--left .image-container {
    max-width: 100%;
  }
}
.component--featured-story__wrapper--left a {
  display: block;
}
@media screen and (max-width: 768px) {
  .component--featured-story__wrapper--left {
    width: 100%;
  }
}
.component--featured-story__wrapper--right {
  background: #00676a;
  color: #FFFFFF;
  width: 67%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.component--featured-story__wrapper--right a {
  color: #FFFFFF;
  text-decoration: none;
}
.component--featured-story__wrapper--right .h3, .component--featured-story__wrapper--right .form-section--donation .form-section__wrapper .donation-total label.ginput_product_price, .form-section--donation .form-section__wrapper .donation-total .component--featured-story__wrapper--right label.ginput_product_price {
  margin-bottom: 10px;
}
.component--featured-story__wrapper--right .subtitle {
  color: #FFFFFF;
  text-transform: uppercase;
}
.component--featured-story__wrapper--right .subtitle:before {
  content: url(../img/featured-story.svg);
  vertical-align: middle;
  margin-right: 10px;
}
.component--featured-story__wrapper--right .categories:before {
  content: url(../img/category-tag-icon-yellow.svg);
  vertical-align: middle;
}
.component--featured-story__wrapper--right .categories a {
  color: #ffd338;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .component--featured-story__wrapper--right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .component--featured-story__wrapper {
    height: auto;
    flex-direction: column;
  }
}

.component--contact-form {
  padding: 80px 0;
  position: relative;
  overflow: visible;
}
.component--contact-form__container {
  border-radius: 8px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  width: 94%;
  background: #00676A;
  background-image: url("../img/form-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 78px;
  overflow: hidden;
}
.component--contact-form__container h2 {
  color: #FFFFFF;
  margin-bottom: 40px;
}
.component--contact-form__container label {
  color: #FFFFFF;
  font-size: 1.25rem;
}
.component--contact-form__container sup {
  color: #ff0004;
}
.component--contact-form__container input[type=text], .component--contact-form__container input[type=email] {
  padding: 19px 12px;
  border-radius: 4px;
  border: none;
  font-size: 1.125rem;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 700px) {
  .component--contact-form__container input[type=text], .component--contact-form__container input[type=email] {
    margin-bottom: 0;
  }
}
.component--contact-form__container input[type=submit] {
  margin-top: 20px;
  z-index: 2;
  position: relative;
}
.component--contact-form__container input[type=submit]:hover {
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .component--contact-form__container input[type=email] {
    margin-bottom: 20px;
  }
}
.component--contact-form__container .row {
  display: flex;
  gap: 24px;
}
.component--contact-form__container .row p {
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .component--contact-form__container .row {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 700px) {
  .component--contact-form__container {
    padding: 40px 28px;
  }
}

.annualreports-stats-overview__wrapper {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-image: url("../img/GridPattern_Teal.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #00676a;
  padding: 64px 40px;
  position: relative;
}
.annualreports-stats-overview__wrapper::before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #00676a 50%, rgba(0, 103, 106, 0) 100%);
}
@media (max-width: 1199px) {
  .annualreports-stats-overview__wrapper {
    padding: 40px;
    height: auto;
  }
}
.annualreports-stats-overview__content {
  position: relative;
  z-index: 1;
}
.annualreports-stats-overview__subtitle {
  display: inline-flex;
  padding: 6px 16px 8px 16px;
  justify-content: center;
  align-items: center;
  color: var(--Brand-Colours-Teal, #00676A);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Arboria;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 25px;
  box-shadow: 1px 1px 1px 0 rgba(204, 204, 204, 0.25);
}
.annualreports-stats-overview .h2 {
  color: #fff;
  margin-bottom: 54px;
}
.annualreports-stats-overview__stats {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 0;
  justify-content: center;
  padding: 30px 0 68px;
  gap: 24px;
}
@media (max-width: 1199px) {
  .annualreports-stats-overview__stats {
    flex-wrap: wrap;
    row-gap: 80px;
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .annualreports-stats-overview__stats {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.annualreports-stats-overview .stat__wrapper {
  flex: 1 1 calc(33.3333333333% - 24px);
  max-width: 300px;
  display: flex;
  flex-direction: column;
  padding-inline: 6px;
  align-items: center;
}
@media (max-width: 1199px) {
  .annualreports-stats-overview .stat__wrapper {
    flex-basis: 48%;
    width: 100%;
  }
}
.annualreports-stats-overview .stat__number {
  font-family: grad, serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 28px 0 12px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .annualreports-stats-overview .stat__number {
    font-size: 50px;
  }
}
@media (max-width: 640px) {
  .annualreports-stats-overview .stat__number {
    font-size: 40px;
  }
}
.annualreports-stats-overview .stat__name {
  white-space: nowrap;
}
.annualreports-stats-overview .stat__description {
  text-align: center;
  font-family: Arboria;
  font-size: 18px;
  font-style: normal;
  line-height: 140%; /* 25.2px */
}

.component--annualreports-land-donations, .annualreports-land-donations {
  padding: 100px 0;
  background-color: #F0F0F0;
  background-image: url("../img/vector-background-curves.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
.component--annualreports-land-donations__wrapper, .annualreports-land-donations__wrapper {
  max-width: 1030px;
  margin: 0 auto;
  width: 94%;
}
.component--annualreports-land-donations__wrapper a, .annualreports-land-donations__wrapper a {
  text-decoration: none;
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
  .component--annualreports-land-donations__wrapper a, .annualreports-land-donations__wrapper a {
    flex-direction: column;
  }
}
.component--annualreports-land-donations__wrapper blockquote, .annualreports-land-donations__wrapper blockquote {
  margin-left: 0;
  margin-right: 0;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-left: 48px;
  padding-right: 48px;
  border-left: 4px solid #E8AA00;
  font-family: grad, serif;
  color: #212832;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
}
@media screen and (max-width: 980px) {
  .component--annualreports-land-donations__wrapper blockquote, .annualreports-land-donations__wrapper blockquote {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  .component--annualreports-land-donations__wrapper blockquote, .annualreports-land-donations__wrapper blockquote {
    font-size: 22px;
    padding-left: 24px;
  }
}
.component--annualreports-land-donations__wrapper p, .annualreports-land-donations__wrapper p {
  margin-bottom: 20px;
  color: #2a2c2c;
}
.component--annualreports-land-donations__link, .annualreports-land-donations__link {
  display: flex;
  width: 50%;
  background-color: #F0F0F0;
  border: 1px solid #D0D0D0;
  box-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
}
.component--annualreports-land-donations__link-image, .annualreports-land-donations__link-image {
  background-repeat: no-repeat;
  background-position: center;
  min-width: 190px;
  height: 170px;
  width: 190px;
  background-size: cover;
}
@media screen and (max-width: 700px) {
  .component--annualreports-land-donations__link-image, .annualreports-land-donations__link-image {
    width: 100%;
  }
}
.component--annualreports-land-donations__link-content, .annualreports-land-donations__link-content {
  width: 66%;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .component--annualreports-land-donations__link-content, .annualreports-land-donations__link-content {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .component--annualreports-land-donations__link, .annualreports-land-donations__link {
    width: 100%;
    margin-bottom: 20px;
  }
}
.component--annualreports-land-donations__links, .annualreports-land-donations__links {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .component--annualreports-land-donations__links, .annualreports-land-donations__links {
    display: block;
  }
}

.annualreports-financial-overview {
  padding: 100px 0;
  background-color: #F2F2F2;
}
.annualreports-financial-overview__wrapper {
  max-width: 1240px;
  width: 94%;
  margin: 0 auto;
}
.annualreports-financial-overview__wrapper h2 {
  margin-bottom: 36px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__wrapper a {
    display: flex;
  }
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__wrapper {
    width: 90%;
  }
}
.annualreports-financial-overview__columns {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__columns {
    display: block;
  }
}
.annualreports-financial-overview__column {
  width: 50%;
}
.annualreports-financial-overview__column ul {
  margin-top: 10px;
}
.annualreports-financial-overview__column ul li {
  padding-left: 0 !important;
  padding-block: 0 !important;
  padding-bottom: 5px !important;
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__column {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.annualreports-financial-overview__commitment {
  max-width: 1024px;
  margin: 88px auto 44px;
}
.annualreports-financial-overview__commitment h2 {
  margin-bottom: 44px;
}
.annualreports-financial-overview__commitment p {
  margin-bottom: 24px;
}
.annualreports-financial-overview__link {
  display: flex;
  background-color: #F0F0F0;
  border: 1px solid #D0D0D0;
  box-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  width: 50%;
}
.annualreports-financial-overview__link-image {
  background-repeat: no-repeat;
  background-position: center;
  min-width: 190px;
  height: 170px;
  width: 190px;
  background-size: cover;
  background-color: #666;
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__link-image {
    width: 100%;
  }
}
.annualreports-financial-overview__link-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66%;
  padding: 20px;
  box-sizing: border-box;
}
.annualreports-financial-overview__link-content h3 {
  margin-bottom: 12px;
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__link-content {
    width: 100%;
  }
}
.annualreports-financial-overview__link:first-child p {
  color: #00676a;
  font-family: Arboria;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 106.25% */
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__link:first-child p {
    font-size: 24px;
    line-height: 26px;
  }
}
.annualreports-financial-overview__link:first-child h3 {
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__link {
    width: 100%;
  }
}
.annualreports-financial-overview__links {
  display: flex;
  gap: 24px;
  padding-top: 20px;
}
.annualreports-financial-overview__links a {
  text-decoration: none;
  color: #00676a;
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__links a {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__links a {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 980px) {
  .annualreports-financial-overview__links {
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .annualreports-financial-overview__piecharts .annualreports-financial-overview__grid .row {
    flex-direction: column;
  }
}
@media screen and (max-width: 1300px) {
  .annualreports-financial-overview__piecharts .annualreports-financial-overview__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.annualreports-financial-overview__barcharts .financial-commitment--twocol {
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .annualreports-financial-overview__barcharts .financial-commitment--twocol {
    display: block;
  }
}
@media screen and (max-width: 1300px) {
  .annualreports-financial-overview__barcharts .fc-legend__list {
    margin-bottom: 20px;
  }
}

.thank-you__wrapper {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-image: url("../img/GridPattern_Teal.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #00676a;
  padding: 64px 40px;
  position: relative;
}
.thank-you__wrapper::before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #00676a 5%, rgba(0, 103, 106, 0) 100%);
}
.thank-you__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 94%;
}
.thank-you__content .h2, .thank-you__content h2 {
  color: #fff;
  margin-bottom: 24px;
}
.thank-you__content p {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.component--post-embed, .post-embed {
  padding: 100px 0;
}
.component--post-embed__container, .post-embed__container {
  max-width: 1030px;
  margin: 0 auto;
  width: 94%;
}
.component--post-embed__container a, .post-embed__container a {
  text-decoration: none;
  color: #FFFFFF;
}
.component--post-embed__container blockquote, .post-embed__container blockquote {
  margin-left: 0;
  margin-right: 0;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-left: 48px;
  padding-right: 48px;
  border-left: 4px solid #E8AA00;
  font-family: grad, serif;
  color: #212832;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
}
@media screen and (max-width: 980px) {
  .component--post-embed__container blockquote, .post-embed__container blockquote {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  .component--post-embed__container blockquote, .post-embed__container blockquote {
    font-size: 22px;
    padding-left: 24px;
  }
}
.component--post-embed__container h2, .post-embed__container h2 {
  margin-bottom: 24px;
}
.component--post-embed__container p, .post-embed__container p {
  margin-bottom: 20px;
}
.component--post-embed__container article, .post-embed__container article {
  background: #00676a;
  border-radius: 8px;
  overflow: hidden;
}
.component--post-embed__container article .h4, .post-embed__container article .h4 {
  color: #FFFFFF;
  margin-bottom: 12px;
}
.component--post-embed__container article p, .post-embed__container article p {
  color: #FFFFFF;
}
.component--post-embed__content, .post-embed__content {
  padding: 27px 24px;
}
.component--post-embed__thumbnail, .post-embed__thumbnail {
  height: 355px;
  width: 100%;
}
.component--post-embed__thumbnail img, .post-embed__thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.component--post-embed.has-background {
  background-color: #F0F0F0;
}

.staff-link__wrapper {
  max-width: 1030px;
  margin: 0 auto;
}
.staff-link__item {
  min-width: 400px;
  display: flex;
  padding-left: 70px;
  position: relative;
}
.staff-link__item::after {
  content: "";
  position: absolute;
  right: 0; /* stick to the right side */
  top: 25%; /* start 25% from the top */
  height: 50%; /* half height */
  width: 3px; /* thickness */
  background-color: #E8AA00; /* or whatever color */
}
@media screen and (max-width: 980px) {
  .staff-link__item::after {
    display: none;
  }
}
.staff-link__item-image {
  background-repeat: no-repeat;
  background-position: center;
  min-width: 132px;
  height: 132px;
  width: 132px;
  border-radius: 50%;
  background-size: cover;
}
.staff-link__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66%;
  padding-left: 32px;
  box-sizing: border-box;
  padding-right: 60px;
}
@media screen and (max-width: 700px) {
  .staff-link__item-content {
    padding-right: 0;
    padding-left: 16px;
  }
}
.staff-link__item-position {
  text-transform: uppercase;
  font-size: 16px;
}
.staff-link__item:first-child {
  padding-left: 0;
}
.staff-link__item:last-child {
  padding-right: 0;
}
.staff-link__item:last-child .staff-link__item-content {
  padding-right: 0;
}
.staff-link__item:last-child::after {
  display: none;
}
@media screen and (max-width: 980px) {
  .staff-link__item {
    padding-left: 0;
    margin-top: 20px;
  }
}
.staff-link__items {
  display: flex;
  padding-top: 20px;
}
@media screen and (max-width: 980px) {
  .staff-link__items {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.staff-link__wrapper {
  max-width: 1030px;
  margin: 0 auto;
}

.accents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.accents__banner {
  position: absolute;
  top: 475px;
  height: 700px;
  width: 100%;
  z-index: -1;
}
.accents__banner svg {
  width: 62%;
  height: 100%;
}
@media screen and (min-width: 2000px) {
  .accents__banner svg {
    width: 65%;
  }
}
@media screen and (min-width: 2500px) {
  .accents__banner svg {
    width: 70%;
  }
}
@media screen and (min-width: 3000px) {
  .accents__banner svg {
    width: 90%;
  }
}
@media screen and (min-width: 2000px) {
  .accents__banner {
    height: 1000px;
    top: 350px;
  }
}
.accents__midpage {
  position: absolute;
  top: 1325px;
  height: auto;
  width: 100%;
  max-height: 300px;
  z-index: -1;
}
.accents__midpage svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 2000px) {
  .accents__midpage {
    top: 1500px;
  }
}
.accents__storyhighlights {
  position: absolute;
  top: 0;
  height: auto;
  width: 100%;
  z-index: 1;
}
.accents__storyhighlights svg {
  width: 100%;
  height: 100%;
}
.accents__storyhighlights svg path {
  stroke-dasharray: 5250;
  stroke-dashoffset: 5250;
}
@media screen and (min-width: 2000px) {
  .accents__storyhighlights {
    top: 1500px;
  }
}
.accents__storyhighlights.is-visible path {
  animation: draw 4s ease-out forwards;
}
.accents__workWithUs {
  position: absolute;
  top: 0;
  height: auto;
  width: 100%;
  z-index: 0;
}
.accents__workWithUs svg {
  width: auto;
  height: 100%;
}
.accents__workWithUs svg path {
  stroke-dasharray: 1051;
  stroke-dashoffset: 1051;
}
.accents__workWithUs.is-visible path {
  animation: draw 4s ease-out forwards;
}
.accents__formhighlights {
  position: absolute;
  bottom: 30px;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 0;
}
.accents__formhighlights svg {
  width: auto;
  height: 100%;
}
.accents__formhighlights.is-visible path {
  animation: draw 4s ease-out forwards;
}
.accents__annualreports--one svg ellipse, .accents__annualreports--two svg ellipse, .accents__annualreports--three svg ellipse, .accents__annualreports--four svg ellipse, .accents__annualreports--footer svg ellipse {
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}
.accents__annualreports--one.is-visible svg ellipse, .accents__annualreports--two.is-visible svg ellipse, .accents__annualreports--three.is-visible svg ellipse, .accents__annualreports--four.is-visible svg ellipse, .accents__annualreports--footer.is-visible svg ellipse {
  opacity: 1;
}
.accents__annualreports--one {
  position: absolute;
  top: 800px;
  height: 750px;
  width: 162px;
  z-index: 1;
  right: 1px;
}
.accents__annualreports--one svg {
  height: 100%;
}
.accents__annualreports--one svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
@media screen and (max-width: 1300px) {
  .accents__annualreports--one svg {
    width: 100%;
  }
}
.accents__annualreports--one.is-visible svg path {
  animation: draw 4s ease-out forwards;
}
@media screen and (min-width: 2000px) {
  .accents__annualreports--one {
    height: 1000px;
    top: 350px;
  }
}
@media screen and (max-width: 1150px) {
  .accents__annualreports--one {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .accents__annualreports--one {
    width: 81px;
    height: 375px;
    top: 725px;
  }
  .accents__annualreports--one svg {
    width: 100%;
    height: 100%;
  }
}
.accents__annualreports--two {
  position: absolute;
  left: 0;
  top: 0;
  height: 1095px;
  width: 208px;
  z-index: 1;
}
.accents__annualreports--two svg {
  height: 100%;
}
.accents__annualreports--two svg path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.accents__annualreports--two.is-visible svg path {
  animation: draw 4s ease-out forwards;
}
@media screen and (max-width: 1300px) {
  .accents__annualreports--two svg {
    width: 100%;
  }
}
@media screen and (max-width: 1150px) {
  .accents__annualreports--two {
    width: 104px;
    height: 547.5px;
  }
  .accents__annualreports--two svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .accents__annualreports--two {
    width: 104px;
    height: 547.5px;
  }
  .accents__annualreports--two svg {
    width: 100%;
    height: 100%;
  }
}
.accents__annualreports--three {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.accents__annualreports--three svg {
  width: 100%;
  height: auto;
}
.accents__annualreports--three svg path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
}
.accents__annualreports--three.is-visible svg path {
  animation: draw 5s ease-out forwards;
}
@media screen and (min-width: 2000px) {
  .accents__annualreports--three {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  .accents__annualreports--three {
    left: -5%;
    width: 105%;
  }
}
@media screen and (max-width: 700px) {
  .accents__annualreports--three {
    display: none;
  }
}
.accents__annualreports--four {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.accents__annualreports--four svg {
  width: 100%;
  height: auto;
  transform: scaleY(0.75);
  transform-origin: top left;
}
.accents__annualreports--four svg path {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
@media screen and (max-width: 1400px) {
  .accents__annualreports--four svg {
    transform: scaleY(1);
  }
}
.accents__annualreports--four.is-visible svg path {
  animation: draw 6s ease-out forwards;
}
@media screen and (max-width: 1150px) {
  .accents__annualreports--four {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .accents__annualreports--four svg {
    width: 100%;
  }
}
.accents__annualreports--footer {
  position: absolute;
  left: -25px !important;
  top: 0;
  width: 100%;
  max-width: 444px;
  height: 594px;
  z-index: 1;
  overflow: hidden;
}
.accents__annualreports--footer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.accents__annualreports--footer svg path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.accents__annualreports--footer.is-visible svg path {
  animation: draw 4.5s ease-out forwards;
}
@media screen and (max-width: 700px) {
  .accents__annualreports--footer {
    display: none;
  }
}
.accents__annualreports--workwithus {
  position: absolute;
  left: 0;
  top: 0;
  width: 302px;
  height: 675px;
  z-index: 1;
}
.accents__annualreports--workwithus svg {
  width: 100%;
  height: 100%;
}
.accents__annualreports--workwithus svg path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.accents__annualreports--workwithus.is-visible svg path {
  animation: draw 5s ease-out forwards;
}
@media screen and (max-width: 980px) {
  .accents__annualreports--workwithus {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .accents__annualreports--workwithus {
    width: 196.3px;
    height: 438.75px;
  }
}
.accents__annualreports--landdonations {
  position: absolute;
  right: 0;
  top: 0;
  width: 403px;
  height: 646px;
  z-index: 1;
  overflow: hidden;
}
.accents__annualreports--landdonations svg {
  width: 100%;
  height: 100%;
}
.accents__annualreports--landdonations svg path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
}
.accents__annualreports--landdonations svg ellipse {
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}
.accents__annualreports--landdonations.is-visible svg path {
  animation: draw 5s ease-out forwards;
}
.accents__annualreports--landdonations.is-visible svg ellipse {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .accents__annualreports--landdonations {
    display: none;
  }
}

.page-template-page-annual-reports .component--content-editor {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-page-annual-reports .component--content-editor h2 {
  margin-bottom: 24px;
}
.page-template-page-annual-reports .work-with-us__column-content {
  justify-content: flex-start;
}
.page-template-page-annual-reports .work-with-us__links {
  padding-top: 30px;
}
.page-template-page-annual-reports #component-68be6dd6cc775 {
  position: relative;
  z-index: 2;
}
.page-template-page-annual-reports #component-68be6e9663672 {
  padding: 350px 0 50px;
  position: relative;
  z-index: 1;
  margin-top: -350px;
  margin-bottom: 0;
  background-color: #F0F0F0;
  background-image: url("../img/vector-background-curves.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
.page-template-page-annual-reports #component-68c08e6e96a91 .work-with-us__wrapper {
  padding-bottom: 75px;
  position: relative;
  z-index: 2;
}
.page-template-page-annual-reports #component-68bf45398867e {
  background-color: #D2D0D3;
  background-position: 200px;
}
.page-template-page-annual-reports .component--content-editor {
  position: relative;
  z-index: 2;
}
.page-template-page-annual-reports #component-68c473434ac73.component--story-highlights .accents {
  display: none !important;
}
@media (min-width: 2200px) {
  .page-template-page-annual-reports #component-68bf45398867e .hero-section__wrapper {
    max-width: 70%;
  }
}
@media (max-width: 1399px) {
  .page-template-page-annual-reports #component-68be62e300592.stats-overview {
    padding: 0;
  }
}
@media (max-width: 1135px) {
  .page-template-page-annual-reports #component-68be603c852ee .hero-section__content-wrapper {
    width: 90%;
  }
  .page-template-page-annual-reports .hero-section.inverted .hero-section__background-holder {
    background-image: linear-gradient(274deg, rgba(0, 0, 0, 0.26) 13.7%, rgba(0, 0, 0, 0.73) 58.45%) !important;
  }
  .page-template-page-annual-reports #component-68bf45398867e.component--hero-section {
    background-position: 0px;
  }
}
@media (max-width: 980px) {
  .page-template-page-annual-reports .work-with-us__wrapper {
    padding-top: 0;
  }
  .page-template-page-annual-reports .hero-section__wrapper {
    margin-left: 0;
  }
  .page-template-page-annual-reports .hero-section__content-wrapper {
    width: 650px;
  }
  .page-template-page-annual-reports .hero-section__description {
    width: 100%;
    max-width: 650px;
  }
}
@media (max-width: 640px) {
  .page-template-page-annual-reports .stats-overview.nobackground .stats-overview__stats {
    align-items: center;
  }
  .page-template-page-annual-reports .component--story-highlights__header {
    flex-direction: column;
  }
  .page-template-page-annual-reports .component--story-highlights__header .btn, .page-template-page-annual-reports .component--story-highlights__header .site-header .row .menu-holder .menu-item:last-child.menu-item-has-children, .site-header .row .menu-holder .page-template-page-annual-reports .component--story-highlights__header .menu-item:last-child.menu-item-has-children {
    margin-top: 20px;
  }
  .page-template-page-annual-reports #component-68be603c852ee .hero-section__content-wrapper {
    width: 100%;
  }
}
/*# sourceMappingURL=main.min.css.map */
