@charset "UTF-8";
lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 720px;
}

/* gradient */
lite-youtube::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.54) 14%, rgba(0, 0, 0, 0.15) 54%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0) 94%);
  height: 99px;
  width: 100%;
  font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
  color: hsl(0, 0%, 93.33%);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  padding: 25px 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

lite-youtube:hover::before {
  color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* play button */
lite-youtube > .lyt-playbtn {
  display: block;
  /* Make the button element cover the whole area for a large hover/click target… */
  width: 100%;
  height: 100%;
  /* …but visually it's still the same size */
  background: no-repeat center/68px 48px;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}

lite-youtube:hover > .lyt-playbtn,
lite-youtube .lyt-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lyt-playbtn {
  opacity: 0;
  pointer-events: none;
}

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

:root {
  --easing: cubic-bezier(1, 0.5, 0.4, 1);
}

/* =Transition with cover screen */
.transition {
  --base-bottom-triangle-left: polygon(0 0, 0% 100%, 12% 100%);
  --base-top-triangle-left: polygon(100% 0, 88% 0, 100% 100%);
  --base-bottom-triangle-right: polygon(100% 0, 88% 100%, 100% 100%);
  --base-top-triangle-right: polygon(12% 100%, 0 0, 0 100%);
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--pale-blue);
  transform: translateX(calc(-100% - 50vw));
  z-index: 9999;
  visibility: hidden;
}

.transition::after {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  clip-path: var(--base-bottom-triangle-left);
}

.transition::before {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  clip-path: var(--base-top-triangle-left);
}

.from-left-leave *,
.from-left-enter *,
.from-left-leave-active *,
.from-left-enter-active *,
.from-left-enter-to *,
.from-left-leave-to *,
.from-right-leave *,
.from-right-enter *,
.from-right-leave-active *,
.from-right-enter-active *,
.from-right-leave-to *,
.from-right-enter-to * {
  visibility: visible;
}

.from-left-leave,
.from-left-enter,
.from-left-leave-active .transition,
.from-left-enter-active .transition {
  transition: transform 700ms var(--easing);
}

.from-left-leave .transition {
  transform: translateX(calc(-100% - 50vw));
}

.from-left-leave-to .transition,
.from-left-enter .transition {
  transform: translateX(0);
}

.from-left-enter-to .transition {
  transform: translateX(calc(100% + 50vw));
}

.from-right-leave,
.from-right-enter,
.from-right-leave-active .transition,
.from-right-enter-active .transition {
  transition: transform 700ms var(--easing);
}

.from-right-leave .transition {
  transform: translateX(calc(100% + 50vw));
}

.from-right-leave-to .transition,
.from-right-enter .transition {
  transform: translateX(0);
}
.from-right-leave-to .transition::before, .from-right-leave-to .transition::after,
.from-right-enter .transition::before,
.from-right-enter .transition::after {
  transform: scaleY(-1);
}

.from-right-enter-to .transition {
  transform: translateX(calc(-100% - 50vw));
}
.from-right-enter-to .transition::before, .from-right-enter-to .transition::after {
  transform: scaleY(-1);
}

:root {
  --primary-color: #00617f;
  --primary-dark-color: #003b49;
  --secondary-color: #d14124;
  --primary-light-color: #dff0f2;
  --primary-medium-color: #77c5d5;
  --pale-blue: #dceeef;
  --dirty-blue: #99b0b6;
  --light-gray: rgba(52, 58, 64, 0.17);
}

@font-face {
  font-family: "FreightSans";
  font-weight: 400;
  src: url("../fonts/freigsanprobook-webfont.woff2") format("woff2");
  src: url("../fonts/freigsanprobook-webfont.woff") format("woff");
}
@font-face {
  font-family: "FreightSans";
  font-weight: 600;
  src: url("../fonts/freigsanprosem-webfont.woff2") format("woff2");
  src: url("../fonts/freigsanprosem-webfont.woff") format("woff");
}
@font-face {
  font-family: "FreightSans";
  font-weight: 700;
  src: url("../fonts/freigsanprobold-webfont.woff2") format("woff2");
  src: url("../fonts/freigsanprobold-webfont.woff") format("woff");
}
@font-face {
  font-family: "Adelle";
  font-weight: 300;
  src: url("../fonts/Adelle-Light.woff2") format("woff2");
  src: url("../fonts/Adelle-Light.woff") format("woff");
}
@font-face {
  font-family: "Adelle";
  font-weight: 400;
  src: url("../fonts/Adelle-Regular.woff2") format("woff2");
  src: url("../fonts/Adelle-Regular.woff") format("woff");
}
@font-face {
  font-family: "Adelle";
  font-weight: 700;
  src: url("../fonts/Adelle-Bold.woff2") format("woff2");
  src: url("../fonts/Adelle-Bold.woff") format("woff");
}
@font-face {
  font-family: "FreightSansProLight-Italic";
  src: url("../fonts/373BB6_5_0.eot");
  src: url("../fonts/373BB6_5_0.eot?#iefix") format("embedded-opentype"), url("../fonts/373BB6_5_0.woff2") format("woff2"), url("../fonts/373BB6_5_0.woff") format("woff"), url("../fonts/373BB6_5_0.ttf") format("truetype");
}
@font-face {
  font-family: "FreightSansProLight-Regular";
  src: url("../fonts/373BB6_7_0.eot");
  src: url("../fonts/373BB6_7_0.eot?#iefix") format("embedded-opentype"), url("../fonts/373BB6_7_0.woff2") format("woff2"), url("../fonts/373BB6_7_0.woff") format("woff"), url("../fonts/373BB6_7_0.ttf") format("truetype");
}
:root {
  --header-height: 158px;
  --footer-height: 73px;
  --center-column-width: 1200px;
}

@media (width < 450px) {
  :root {
    --header-height: 166px;
  }
}
:root {
  --ascendium-sans:
      FreightSans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  --ascendium-serif:
      "Adelle", Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  --ascendium-sans-cond:
      freight-sans-condensed-pro, FreightSans, system-ui, -apple-system,
      BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
      "Open Sans", "Helvetica Neue", sans-serif;
  --ascendium-sans-light:
      FreightSansProLight-Regular, FreightSans, system-ui, -apple-system,
      BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
      "Open Sans", "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--ascendium-sans);
  font-variant-numeric: lining-nums;
}

h1 {
  color: var(--primary-color);
  font-weight: 700;
}

a {
  font-variant-numeric: lining-nums;
}

p {
  color: var(--primary-dark-color);
  font-variant-numeric: lining-nums;
  font-family: var(--ascendium-serif);
  font-weight: 400;
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.subpage-h1-heading {
  max-width: var(--center-column-width);
  margin-inline: auto;
  font-size: 2.625rem;
  font-weight: 600;
  color: var(--primary-dark-color);
}
.subpage-h1-heading span {
  color: var(--secondary-color);
}

@media (width < 850px) {
  .subpage-h1-heading {
    font-size: 2rem;
  }
}
@media (width < 450px) {
  .subpage-h1-heading {
    font-size: 1.5rem;
  }
}
.button-link {
  padding: 1rem 1.2rem;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.button-link.red {
  background-color: var(--secondary-color);
  color: white;
}
.button-link.red:hover, .button-link.red:focus-visible {
  background-color: color-mix(in srgb, var(--secondary-color), black 20%);
}

:root {
  interpolate-size: allow-keywords;
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.lock-bg {
  position: fixed;
  visibility: hidden;
}

body:not(.homepage) main {
  overflow-x: hidden;
  margin-block-start: var(--header-height);
}

.stripes-bar {
  width: 100%;
  overflow: hidden;
}
.stripes-bar img {
  max-height: 47px;
  width: auto;
  position: relative;
  left: 50%;
  translate: -50% 0;
}

.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  background: white;
  z-index: 2;
}
.main-header .header-container {
  padding-block: 1rem;
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: flex;
  gap: 2rem;
  justify-content: left;
  align-items: center;
}
.main-header .header-container .header-logo {
  width: 160px;
}
.main-header .header-container .tagline {
  font-weight: 600;
  color: var(--primary-dark-color);
  font-size: 0.875rem;
}
.main-header .page-nav {
  background-color: var(--primary-dark-color);
  font-weight: 700;
  padding-block: 1rem;
  z-index: 3;
  font-family: var(--ascendium-sans);
}
.main-header .page-nav .prevLink,
.main-header .page-nav .nextLink {
  text-decoration: none;
  color: white;
  text-decoration-color: white;
}
.main-header .page-nav .prevLink .page-nav-with-arrows,
.main-header .page-nav .nextLink .page-nav-with-arrows {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.main-header .page-nav .prevLink:hover span:nth-of-type(1), .main-header .page-nav .prevLink:focus-visible span:nth-of-type(1),
.main-header .page-nav .nextLink:hover span:nth-of-type(1),
.main-header .page-nav .nextLink:focus-visible span:nth-of-type(1) {
  text-decoration: underline;
}
.main-header .page-nav .nextLink {
  justify-content: end;
}
.main-header .page-nav .center-column {
  max-width: var(--center-column-width);
  margin: 0 auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  align-items: center;
}
.main-header .page-nav .center-column .next {
  text-align: right;
}
.main-header .page-nav svg {
  display: inline;
  width: 0.9rem;
}
.main-header .page-nav svg path {
  fill: white;
}
.main-header .page-nav .prev svg {
  transform: rotate(180deg);
}
.main-header .page-nav .page-nav-text {
  font-weight: 400;
}
@media (width < 850px) {
  .main-header .page-nav {
    height: auto;
    padding-block: 0.5rem;
  }
  .main-header .page-nav .center-column {
    align-items: start;
  }
}
@media (width < 450px) {
  .main-header .page-nav {
    height: 90px;
  }
  .main-header .page-nav .prev,
  .main-header .page-nav .next {
    margin-block: auto;
  }
  .main-header .page-nav .page-nav-text {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.homepage .tagline {
  display: none;
}

@media (width < 1390px) {
  .main-header .header-container {
    padding-inline: 1rem;
  }
}
@media (width < 450px) {
  .main-header .header-container {
    gap: 1rem;
  }
  .main-header .header-container .tagline {
    font-size: 0.7rem;
    max-width: 8rem;
  }
}
.main-footer {
  height: var(--footer-height);
  background-color: white;
  color: white;
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-footer .center-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: center;
  max-width: var(--center-column-width);
  margin-inline: auto;
  padding-inline: 1rem;
}
.main-footer .center-column .copyright {
  font-size: 0.75rem;
}
.main-footer .footer-social {
  justify-self: end;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.main-footer .footer-social .connect-text {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.main-footer .footer-social .icons {
  float: right;
  margin-left: 1rem;
}
.main-footer .footer-social .icons > * {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  margin-inline: 0.75rem;
  float: left;
}

.homepage .main-footer {
  position: absolute;
  bottom: 0;
}

@media (width < 850px) {
  :root {
    --footer-height: auto;
  }
  .main-footer {
    padding-block: 1rem;
  }
  .main-footer .center-column {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 0;
  }
  .main-footer .center-column .copyright {
    text-align: center;
    order: 2;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    max-width: 14rem;
    margin-inline: auto;
  }
  .main-footer .center-column .footer-social {
    order: 1;
    flex-direction: column;
    margin: 0 auto;
  }
  .main-footer .center-column .footer-social .icons {
    margin-top: 0.5rem;
    float: none;
    margin-left: 0;
  }
}
.share-icon {
  max-width: 30px;
}

#s-line {
  /* Shared styles for better cross-browser support */
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
#s-line #animatedPath {
  stroke-dasharray: 1249.494;
  stroke-dashoffset: 1249.494;
  animation: draw-line 2s ease-in-out forwards;
}
#s-line #line1 {
  stroke-dasharray: 22.25;
  stroke-dashoffset: 22.25;
  animation: draw-line 0.25s ease-in-out forwards 2s;
}
#s-line #line2 {
  stroke-dasharray: 997.32;
  stroke-dashoffset: 997.32;
  animation: draw-line 2s ease-in-out forwards 2.25s;
}
#s-line .svg-line,
#s-line .svg-path {
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 15;
  fill: none;
}
#s-line #animatedPath {
  stroke: var(--secondary-color);
}
#s-line #line1 {
  stroke: var(--primary-color);
}
#s-line #line2 {
  stroke: var(--primary-medium-color);
}

@keyframes vertical-lines-draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
#vertical-lines {
  height: 253px;
}
#vertical-lines .cls-1,
#vertical-lines .cls-2 {
  fill: none;
  stroke-linecap: round;
  stroke-width: 15px;
}
#vertical-lines .cls-1 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 177px;
  stroke-dashoffset: 177px;
}
#vertical-lines .cls-2 {
  stroke: var(--secondary-color);
  stroke-dasharray: 34px;
  stroke-dashoffset: 34px;
}

#horizontal-lines {
  height: 253px;
}
#horizontal-lines .cls-1,
#horizontal-lines .cls-2 {
  fill: none;
  stroke-linecap: round;
  stroke-width: 15px;
}
#horizontal-lines .cls-1 {
  stroke: var(--primary-dark-color);
  stroke-dasharray: 177px;
  stroke-dashoffset: 177px;
  animation: draw-line 1s ease-in-out forwards;
}
#horizontal-lines .cls-2 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 34px;
  stroke-dashoffset: 34px;
  animation: draw-line 0.25s ease-in-out forwards 1s;
}

#wave .wave-path {
  fill: var(--pale-blue);
}

#blueLine {
  width: 165px;
}
#blueLine .blue-line {
  fill: none;
  stroke: var(--primary-dark-color);
  stroke-linecap: round;
  stroke-width: 15px;
  stroke-dasharray: 145px;
  stroke-dashoffset: 145px;
}

.lines3 .cls-1,
.lines3 .cls-2,
.lines3 .cls-3 {
  fill: none;
  stroke-linecap: round;
  stroke-width: 15px;
}
.lines3 .cls-1 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 177px;
  stroke-dashoffset: 177px;
}
.lines3 .cls-2 {
  stroke: var(--secondary-color);
  stroke-dasharray: 34px;
  stroke-dashoffset: 34px;
}
.lines3 .cls-3 {
  stroke: var(--primary-dark-color);
  stroke-dasharray: 145px;
  stroke-dashoffset: 145px;
}

.lines3.draw-line .cls-1 {
  animation: draw-line 1s ease-in-out forwards 0s;
}
.lines3.draw-line .cls-2 {
  animation: draw-line 0.25s ease-in-out forwards 1s;
}
.lines3.draw-line .cls-3 {
  animation: draw-line 0.75s ease-in-out forwards 1.25s;
}

#blue-2-lines .cls-1,
#blue-2-lines .cls-2 {
  fill: none;
  stroke-linecap: round;
  stroke-width: 15px;
}
#blue-2-lines .cls-1 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 404px;
  stroke-dashoffset: 404px;
  animation: draw-line 1s ease-in-out forwards 0s;
}
#blue-2-lines .cls-2 {
  stroke: var(--primary-color);
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  animation: draw-line 0.25s ease-in-out forwards 1s;
}

#red-1-line .cls-1 {
  stroke: var(--secondary-color);
  stroke-linecap: round;
  stroke-width: 15px;
  stroke-dasharray: 80px;
  stroke-dashoffset: 80px;
  animation: draw-line 0.75s ease-in-out forwards 0s;
}

#svg-3-lines-red-curve .curve-1,
#svg-3-lines-red-curve .line-1,
#svg-3-lines-red-curve .line-2 {
  fill: none;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 15px;
}
#svg-3-lines-red-curve .curve-1 {
  stroke: var(--secondary-color);
  stroke-dasharray: 262px;
  stroke-dashoffset: 262px;
}
#svg-3-lines-red-curve .line-2 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 536px;
  stroke-dashoffset: 536px;
}
#svg-3-lines-red-curve .line-1 {
  stroke: var(--primary-color);
  stroke-dasharray: 81px;
  stroke-dashoffset: 81px;
}

#svg-3-lines-red-curve.start-drawing .line-2 {
  animation: draw-line 1s ease-in-out forwards 0s;
}
#svg-3-lines-red-curve.start-drawing .line-1 {
  animation: draw-line 0.5s ease-in-out forwards 1s;
}
#svg-3-lines-red-curve.start-drawing .curve-1 {
  animation: draw-line 1s ease-in-out forwards 1.5s;
}

#hook .curve,
#hook .line-1,
#hook .line-2 {
  fill: none;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 15px;
}
#hook .line-1 {
  stroke: var(--primary-medium-color);
  stroke-dasharray: 969px;
  stroke-dashoffset: 969px;
}
#hook .line-2 {
  stroke: var(--primary-color);
  stroke-dasharray: 52px;
  stroke-dashoffset: 52px;
}
#hook .curve {
  stroke: var(--secondary-color);
  stroke-dasharray: 506px;
  stroke-dashoffset: 506px;
}

#hook.start-drawing .line-1 {
  animation: draw-line 1s ease-in-out forwards 0s;
}
#hook.start-drawing .line-2 {
  animation: draw-line 0.5s ease-in-out forwards 1s;
}
#hook.start-drawing .curve {
  animation: draw-line 1s ease-in-out forwards 1.5s;
}

#single-pale-blue-line {
  max-width: 275px;
}
#single-pale-blue-line .line {
  fill: none;
  stroke: var(--primary-medium-color);
  stroke-linecap: round;
  stroke-width: 15px;
  stroke-dasharray: 260px;
  stroke-dashoffset: 260px;
  animation: draw-line 1s ease-in-out forwards 0s;
}

#single-red-line {
  max-width: 418px;
  scale: -1;
}
#single-red-line .line {
  stroke: var(--secondary-color);
  stroke-linecap: round;
  stroke-width: 15px;
  stroke-dasharray: 404px;
  stroke-dashoffset: 404px;
  animation: draw-line 1s ease-in-out forwards 0s;
}

#bod-squggles {
  max-height: 1021px;
}
#bod-squggles .line1,
#bod-squggles .line2,
#bod-squggles .path1 {
  fill: none;
  stroke-linecap: round;
  stroke-width: 15px;
}
#bod-squggles .line1,
#bod-squggles .line2 {
  stroke-miterlimit: 10;
}
#bod-squggles .line2 {
  stroke: #77c5d5;
  stroke-dasharray: 678px;
  stroke-dashoffset: 678px;
}
#bod-squggles .path1 {
  stroke: #d14124;
  stroke-dasharray: 958px;
  stroke-dashoffset: 958px;
}
#bod-squggles .line1 {
  stroke: #28607c;
  stroke-dasharray: 3px;
  stroke-dashoffset: 3px;
}
#bod-squggles .line2 {
  animation: draw-line 1s ease-in-out forwards 1s;
}
#bod-squggles .line1 {
  animation: draw-line 0.25s ease-in-out forwards 2s;
}
#bod-squggles .path1 {
  animation: draw-line 1s ease-in-out forwards 2.25s;
}

.share {
  position: fixed;
  top: 60dvh;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  background: white;
  padding: 0.9rem 0.6rem;
  border: 1px solid black;
  border-left-width: 0px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.share h3 {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--secondary-color);
  text-align: center;
  font-weight: 700;
}
.share .share-icon {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
}
.share .share-icon {
  margin-top: 0.6rem;
}

.share-mobile {
  display: none;
  margin-inline: auto;
  width: 170px;
  align-items: center;
  justify-content: center;
  background-color: white;
  margin-bottom: 0.5rem;
  border: solid 1px black;
}
.share-mobile h3 {
  color: var(--primary-dark-color);
  font-size: 0.7rem;
  font-weight: 700;
  margin-block: 0.75rem;
}
.share-mobile .share-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

@media (width < 450px) {
  .share {
    display: none;
  }
  .share-mobile {
    display: flex;
  }
}
.menu-button {
  z-index: 5;
  width: 73px;
  height: 73px;
  border: none;
  position: fixed;
  top: 0;
  right: 10px;
  background: white;
  padding: 0;
  max-width: 60px;
}
.menu-button #hamToX line {
  stroke: var(--secondary-color);
}
.menu-button #hamToX #line1,
.menu-button #hamToX #line2,
.menu-button #hamToX #line3 {
  transform-box: fill-box;
  transform-origin: center;
  transition: all ease 0.5s;
}

.animate-ham-to-x #line1 {
  transform: translateY(104px) rotate(315deg);
}
.animate-ham-to-x #line2 {
  opacity: 0;
}
.animate-ham-to-x #line3 {
  transform: translateY(-104px) rotate(-315deg);
}

.menu-logo {
  max-width: 250px;
}

.menu-panel > .center-column {
  padding-inline: 2rem;
  max-width: var(--center-column-width);
  margin-inline: auto;
}

.menu-panel.show {
  min-height: 100vh;
  translate: 0 0;
}

.menu-panel {
  transition: translate 500ms;
  translate: 0 -100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100vw;
  z-index: 4;
  background: white;
  overflow: hidden;
  visibility: hidden;
}
.menu-panel .menu-stripes {
  position: relative;
  right: 5rem;
  margin-block-start: 1rem;
  height: 47px;
  width: 100%;
  background-image: url("../images/stripes-bar.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-size: cover;
}
.menu-panel .menu-header {
  display: flex;
  gap: 2rem;
  margin-block: 4rem;
}
.menu-panel .menu-header .menu-header-logo {
  max-width: 260px;
}
.menu-panel .menu-header .menu-tagline {
  margin-top: 2.15rem;
  display: block;
  font-weight: 600;
  color: var(--primary-color);
}
.menu-panel h3 {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.menu-panel ul.menu-items {
  padding: 0;
}
.menu-panel ul.menu-items > li:first-of-type {
  border-top: solid 1px var(--primary-light-color);
}
.menu-panel ul.menu-items li {
  margin-top: 0;
  font-size: 1.2rem;
  list-style: none;
  padding-block: 1rem;
  font-weight: 700;
}
.menu-panel ul.menu-items li:has(ul) {
  border-bottom: solid 1px var(--light-gray);
}
.menu-panel ul.menu-items ul {
  padding-left: 2rem;
  margin-top: 0;
}
.menu-panel ul.menu-items ul li {
  font-weight: 400;
  border: none;
  padding-block: 0.75rem;
}
.menu-panel ul.menu-items a {
  font-family: var(--ascendium-sans);
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}
.menu-panel ul.menu-items a::before {
  content: "";
  position: absolute;
  top: 6px;
  right: -20px;
  width: 16px;
  height: 16px;
  background-image: url("../images/double-arrows-red.svg");
  background-repeat: no-repeat;
  transition: 250ms opacity;
  animation: menu_link_bounce ease alternate 250ms infinite;
  opacity: 0;
}
.menu-panel ul.menu-items a:hover,
.menu-panel ul.menu-items a:focus-visible {
  color: var(--secondary-color);
}
.menu-panel ul.menu-items a:hover::before,
.menu-panel ul.menu-items a:focus-visible::before {
  opacity: 1;
}
.menu-panel .menu-heading {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  gap: 2rem;
}
.menu-panel .menu-items {
  width: fit-content;
}

.menu-panel .footer-grid {
  --icon-gap: 6px;
  --icon-size: 25px;
  display: grid;
  gap: var(--icon-gap);
  grid-template-columns: calc(var(--icon-size) * 2 + var(--icon-gap) * 3) 1fr;
  justify-items: left;
}
.menu-panel .footer-grid .icons {
  padding: var(--icon-gap);
  height: calc(var(--icon-size) * 2 + var(--icon-gap) * 3);
  background-color: var(--primary-light-color);
  grid-row: 1/-3;
  display: grid;
  gap: var(--icon-gap);
  grid-template-columns: 1fr 1fr;
  place-content: center;
}
.menu-panel .footer-grid .icons .icon {
  display: grid;
  place-content: center;
}
.menu-panel .footer-grid .icons .icon svg {
  width: var(--icon-size);
  height: var(--icon-size);
}
.menu-panel .footer-grid .download,
.menu-panel .footer-grid .learn-more {
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  align-items: center;
  background: var(--primary-light-color);
}
.menu-panel .footer-grid .download p,
.menu-panel .footer-grid .learn-more p {
  font-family: var(--ascendium-sans);
  font-size: 1rem;
  line-height: 1.2;
}
.menu-panel .footer-grid .download a,
.menu-panel .footer-grid .learn-more a {
  text-decoration: underline;
  color: var(--primary-dark-color);
}
.menu-panel .footer-grid .download a:hover,
.menu-panel .footer-grid .download a:focus-visible,
.menu-panel .footer-grid .learn-more a:hover,
.menu-panel .footer-grid .learn-more a:focus-visible {
  text-decoration: none;
}

@media (width <= 480px) {
  .menu-panel .menu-header {
    margin-block: 2rem;
    align-items: center;
  }
  .menu-panel .menu-header .menu-tagline {
    font-size: 0.875rem;
    margin: 0;
  }
  .menu-panel .footer-grid {
    display: block;
    height: auto;
    padding-bottom: 1rem;
    background-color: var(--primary-light-color);
    margin-bottom: 1rem;
  }
  .menu-panel .footer-grid .icons {
    padding: 1rem 0 1rem 1rem;
    justify-content: start;
    height: auto;
    display: flex;
  }
  .menu-panel .footer-grid .download,
  .menu-panel .footer-grid .learn-more {
    padding-bottom: 1rem;
  }
}
.icons-expand button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icons-expand button span {
  letter-spacing: 0.6px;
  font-family: var(--ascendium-sans);
  font-weight: 400;
  font-size: 15px;
}
.icons-expand .icon-minus-collapse {
  display: none;
}
.icons-expand img {
  width: 28px;
  height: 28px;
}

.icons-expand.expanded .icon-minus-collapse {
  display: flex;
}
.icons-expand.expanded .icon-plus-expand {
  display: none;
}

.developing-strategies,
.creating-opportunities,
.aligning-systems {
  border-bottom: 1px solid black;
}
.developing-strategies .hero,
.creating-opportunities .hero,
.aligning-systems .hero {
  max-width: 1573px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.developing-strategies .hero img,
.creating-opportunities .hero img,
.aligning-systems .hero img {
  animation: hero-in 0.75s ease-in-out 0s forwards;
}
.developing-strategies .callout-bar,
.creating-opportunities .callout-bar,
.aligning-systems .callout-bar {
  color: var(--primary-dark-color);
  font-family: var(--ascendium-sans-cond);
  font-weight: 600;
  font-size: 0.875rem;
  max-width: 205px;
  line-height: 1.2;
  background-color: var(--pale-blue);
  padding-block: 0.5rem;
  position: relative;
}
.developing-strategies .callout-bar::after,
.creating-opportunities .callout-bar::after,
.aligning-systems .callout-bar::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 3rem;
  height: 100%;
  right: -2rem;
  top: 0;
  background: inherit;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.developing-strategies .callout-bar::before,
.creating-opportunities .callout-bar::before,
.aligning-systems .callout-bar::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 13rem;
  height: 100%;
  left: -187px;
  top: 0;
  background: inherit;
}
.developing-strategies .video-container,
.creating-opportunities .video-container,
.aligning-systems .video-container {
  margin-block: -10rem 3rem;
  position: relative;
}
.developing-strategies .video-container .video-wrapper,
.creating-opportunities .video-container .video-wrapper,
.aligning-systems .video-container .video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.developing-strategies .video-container .video-wrapper iframe,
.creating-opportunities .video-container .video-wrapper iframe,
.aligning-systems .video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.developing-strategies .video-container .video-caption,
.creating-opportunities .video-container .video-caption,
.aligning-systems .video-container .video-caption {
  max-width: 413px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--ascendium-sans);
  line-height: 1.2;
}
.developing-strategies .middle-section,
.creating-opportunities .middle-section,
.aligning-systems .middle-section {
  background-color: var(--pale-blue);
  padding-block: 3rem 7rem;
  position: relative;
}
.developing-strategies .middle-section .inner,
.creating-opportunities .middle-section .inner,
.aligning-systems .middle-section .inner {
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4.5fr 3.5fr;
  gap: 4rem;
  position: relative;
}
.developing-strategies .middle-section .inner h2,
.creating-opportunities .middle-section .inner h2,
.aligning-systems .middle-section .inner h2 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.developing-strategies .middle-section .inner .svg-wrapper,
.creating-opportunities .middle-section .inner .svg-wrapper,
.aligning-systems .middle-section .inner .svg-wrapper {
  position: absolute;
  overflow: hidden;
  width: 857px;
  height: 185.98px;
  bottom: -7rem;
  right: -29rem;
}
.developing-strategies .middle-section .inner .svg-wrapper svg,
.creating-opportunities .middle-section .inner .svg-wrapper svg,
.aligning-systems .middle-section .inner .svg-wrapper svg {
  position: absolute;
  top: 6px;
}
.developing-strategies .middle-section .expander + .expander,
.creating-opportunities .middle-section .expander + .expander,
.aligning-systems .middle-section .expander + .expander {
  margin-top: 4rem;
}
.developing-strategies .middle-section .expander,
.creating-opportunities .middle-section .expander,
.aligning-systems .middle-section .expander {
  position: relative;
}
.developing-strategies .middle-section .expander a,
.creating-opportunities .middle-section .expander a,
.aligning-systems .middle-section .expander a {
  color: var(--secondary-color);
}
.developing-strategies .middle-section .expander a:hover,
.developing-strategies .middle-section .expander a:focus-visible,
.creating-opportunities .middle-section .expander a:hover,
.creating-opportunities .middle-section .expander a:focus-visible,
.aligning-systems .middle-section .expander a:hover,
.aligning-systems .middle-section .expander a:focus-visible {
  text-decoration: none;
}
.developing-strategies .middle-section .expander .icons-expand,
.creating-opportunities .middle-section .expander .icons-expand,
.aligning-systems .middle-section .expander .icons-expand {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
}
.developing-strategies .middle-section .expander .expanded-content,
.creating-opportunities .middle-section .expander .expanded-content,
.aligning-systems .middle-section .expander .expanded-content {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  transition: height 0.3s, visibility 0.3s;
}
.developing-strategies .middle-section .expander .expanded-content p:first-of-type,
.creating-opportunities .middle-section .expander .expanded-content p:first-of-type,
.aligning-systems .middle-section .expander .expanded-content p:first-of-type {
  margin-top: 1rem;
}
.developing-strategies .middle-section .expander .expanded-content[aria-hidden=false],
.creating-opportunities .middle-section .expander .expanded-content[aria-hidden=false],
.aligning-systems .middle-section .expander .expanded-content[aria-hidden=false] {
  height: auto;
  visibility: visible;
}
.developing-strategies .middle-section #sidebar,
.creating-opportunities .middle-section #sidebar,
.aligning-systems .middle-section #sidebar {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 3rem 2rem;
  border-top-left-radius: 110px;
  margin-block-start: -7rem;
  transition: all ease-in-out 1s;
  opacity: 0;
  translate: 4rem 0;
}
.developing-strategies .middle-section #sidebar h3,
.creating-opportunities .middle-section #sidebar h3,
.aligning-systems .middle-section #sidebar h3 {
  max-width: 19rem;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.developing-strategies .middle-section #sidebar p,
.creating-opportunities .middle-section #sidebar p,
.aligning-systems .middle-section #sidebar p {
  font-family: var(--ascendium-sans-light);
  color: white;
}
.developing-strategies .middle-section #sidebar p strong,
.creating-opportunities .middle-section #sidebar p strong,
.aligning-systems .middle-section #sidebar p strong {
  font-family: var(--ascendium-sans);
  font-weight: 600;
}
.developing-strategies .middle-section #sidebar.sidebar-in,
.creating-opportunities .middle-section #sidebar.sidebar-in,
.aligning-systems .middle-section #sidebar.sidebar-in {
  opacity: 1;
  translate: 0 0;
}
.developing-strategies .related-stories,
.creating-opportunities .related-stories,
.aligning-systems .related-stories {
  max-width: var(--center-column-width);
  margin-inline: auto;
  padding-block: 3rem;
}
.developing-strategies .related-stories .rocket-title,
.creating-opportunities .related-stories .rocket-title,
.aligning-systems .related-stories .rocket-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.developing-strategies .related-stories .rocket-title img,
.creating-opportunities .related-stories .rocket-title img,
.aligning-systems .related-stories .rocket-title img {
  width: 26px;
  height: 26px;
}
.developing-strategies .related-stories .columns,
.creating-opportunities .related-stories .columns,
.aligning-systems .related-stories .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
.developing-strategies .related-stories .columns ul,
.creating-opportunities .related-stories .columns ul,
.aligning-systems .related-stories .columns ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.developing-strategies .related-stories .columns ul li a,
.creating-opportunities .related-stories .columns ul li a,
.aligning-systems .related-stories .columns ul li a {
  display: inline-block;
  font-family: var(--ascendium-sans-light);
  font-size: 1.125rem;
  margin-block: 1rem;
  color: var(--primary-color);
  text-decoration: none;
}
.developing-strategies .related-stories .columns ul li a .arrows,
.creating-opportunities .related-stories .columns ul li a .arrows,
.aligning-systems .related-stories .columns ul li a .arrows {
  display: inline;
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  transition: 250ms opacity;
  animation: menu_link_bounce ease alternate 250ms infinite;
}
.developing-strategies .related-stories .columns ul li a:hover,
.developing-strategies .related-stories .columns ul li a:focus-visible,
.creating-opportunities .related-stories .columns ul li a:hover,
.creating-opportunities .related-stories .columns ul li a:focus-visible,
.aligning-systems .related-stories .columns ul li a:hover,
.aligning-systems .related-stories .columns ul li a:focus-visible {
  color: var(--secondary-color);
  text-decoration: underline;
}
.developing-strategies .related-stories .columns ul li:not(:last-of-type),
.creating-opportunities .related-stories .columns ul li:not(:last-of-type),
.aligning-systems .related-stories .columns ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--dirty-blue);
}
@media (width < 1390px) {
  .developing-strategies .middle-section .inner,
  .creating-opportunities .middle-section .inner,
  .aligning-systems .middle-section .inner {
    padding-inline: 2rem;
  }
  .developing-strategies .related-stories,
  .creating-opportunities .related-stories,
  .aligning-systems .related-stories {
    padding-inline: 2rem;
  }
}
@media (width < 1024px) {
  .developing-strategies .middle-section,
  .creating-opportunities .middle-section,
  .aligning-systems .middle-section {
    padding-bottom: 2rem;
  }
  .developing-strategies .middle-section.aligning-systems-middle-section .inner,
  .developing-strategies .middle-section .inner,
  .creating-opportunities .middle-section.aligning-systems-middle-section .inner,
  .creating-opportunities .middle-section .inner,
  .aligning-systems .middle-section.aligning-systems-middle-section .inner,
  .aligning-systems .middle-section .inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .developing-strategies .middle-section.aligning-systems-middle-section .inner #sidebar,
  .developing-strategies .middle-section .inner #sidebar,
  .creating-opportunities .middle-section.aligning-systems-middle-section .inner #sidebar,
  .creating-opportunities .middle-section .inner #sidebar,
  .aligning-systems .middle-section.aligning-systems-middle-section .inner #sidebar,
  .aligning-systems .middle-section .inner #sidebar {
    margin-block-start: 2rem;
    translate: 0 0;
    opacity: 1;
  }
  .developing-strategies .middle-section.aligning-systems-middle-section .inner #svg-3-lines-red-curve,
  .developing-strategies .middle-section .inner #svg-3-lines-red-curve,
  .creating-opportunities .middle-section.aligning-systems-middle-section .inner #svg-3-lines-red-curve,
  .creating-opportunities .middle-section .inner #svg-3-lines-red-curve,
  .aligning-systems .middle-section.aligning-systems-middle-section .inner #svg-3-lines-red-curve,
  .aligning-systems .middle-section .inner #svg-3-lines-red-curve {
    display: none;
  }
  .developing-strategies .related-stories .columns,
  .creating-opportunities .related-stories .columns,
  .aligning-systems .related-stories .columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .developing-strategies .related-stories .columns .col1 li:last-child,
  .creating-opportunities .related-stories .columns .col1 li:last-child,
  .aligning-systems .related-stories .columns .col1 li:last-child {
    border-bottom: 1px solid var(--dirty-blue);
  }
}
@keyframes hero-in {
  0% {
    opacity: 0;
    translate: 0 -3rem;
    filter: blur(1.5rem);
  }
  100% {
    translate: 0 0;
    opacity: 1;
    filter: blur(0);
  }
}

.highlights-slider {
  padding-block: 4rem 0;
  background-color: var(--pale-blue);
}
.highlights-slider .highlights-slider-heading {
  text-align: center;
  margin-block-end: 3rem;
  font-size: 1.5rem;
}
.highlights-slider .carousel-highlights {
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.highlights-slider button {
  cursor: pointer;
}
.highlights-slider .slider-center-column {
  display: flex;
  align-items: center;
}
@media (width < 850px) {
  .highlights-slider .slider-center-column {
    padding-inline: 1rem;
  }
}
.highlights-slider .carousel-inner {
  padding-inline: 4.5rem;
  position: relative;
}
.highlights-slider .carousel-inner .highlights-slide {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
  margin-inline: auto;
  position: relative;
}
.highlights-slider .carousel-inner .highlights-slide .highlight-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.highlights-slider .carousel-inner .highlights-slide .highlight-cards p {
  font-family: var(--ascendium-sans-light);
  margin-top: 1rem;
}
.highlights-slider .carousel-inner .highlights-slide .donated-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-around;
  width: 100%;
}
.highlights-slider .carousel-inner .highlights-slide .donated-hours > div {
  margin-inline: auto;
  padding-block-end: 4rem;
}
.highlights-slider .carousel-inner .highlights-slide .donated-hours h3 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--primary-dark-color);
}
.highlights-slider .carousel-inner .highlights-slide .donated-hours h3 span {
  font-size: 1.625rem;
}
.highlights-slider .carousel-inner .highlights-slide .donated-hours p {
  max-width: 18rem;
  font-family: var(--ascendium-sans-light);
  margin-top: 1rem;
  text-wrap: pretty;
}
.highlights-slider .carousel-inner .highlights-slide .slide-3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.highlights-slider .carousel-inner .highlights-slide .slide-3-content .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-block: 4rem;
}
.highlights-slider .carousel-inner .highlights-slide .slide-3-content .content p {
  font-family: var(--ascendium-sans-light);
  max-width: 12rem;
}
.highlights-slider .carousel-inner .prev,
.highlights-slider .carousel-inner .next {
  position: absolute;
  width: 55px;
  height: 55px;
  background: var(--primary-dark-color);
  border-radius: 50%;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  translate: 0 -50%;
}
.highlights-slider .carousel-inner .prev svg,
.highlights-slider .carousel-inner .next svg {
  width: 45%;
}
.highlights-slider .carousel-inner .prev {
  left: 0;
}
.highlights-slider .carousel-inner .next {
  right: 0;
}
.highlights-slider .carousel-inner .next svg {
  transform: rotate(180deg);
}
.highlights-slider .dots {
  display: flex;
  max-width: 20rem;
  margin-inline: auto;
  gap: 1rem;
  justify-content: center;
}
.highlights-slider .dots button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-dark-color);
  opacity: 1;
  border-radius: 50%;
  border: none;
  box-shadow: none;
}
.highlights-slider .dots button.active {
  background-color: var(--secondary-color);
}
@media (width < 1390px) {
  .highlights-slider .highlights-slide {
    padding-inline: 1rem;
  }
}
@media (width < 850px) {
  .highlights-slider {
    padding-inline: 2rem;
  }
  .highlights-slider .carousel-inner .highlights-slide .highlight-cards {
    grid-template-columns: 1fr 1fr;
  }
  .highlights-slider .carousel-inner .highlights-slide .donated-hours {
    grid-template-columns: 1fr;
  }
  .highlights-slider .carousel-inner .highlights-slide .donated-hours h3 {
    font-size: 2.5rem;
  }
  .highlights-slider .carousel-inner .highlights-slide .donated-hours > div {
    margin-inline: auto;
    padding-block-end: 1rem;
  }
  .highlights-slider .carousel-inner .highlights-slide .slide-3-content {
    grid-template-columns: 1fr;
  }
  .highlights-slider .carousel-inner .highlights-slide .slide-3-content .content {
    grid-template-columns: 1fr;
    margin-block: 1rem;
  }
  .highlights-slider .carousel-inner .highlights-slide .slide-3-content .content p {
    max-width: 100%;
  }
  .highlights-slider .next,
  .highlights-slider .prev,
  .highlights-slider .dots {
    transform: scale(0.7);
  }
  .highlights-slider .next,
  .highlights-slider .prev {
    top: 4rem;
  }
  .highlights-slider .prev {
    translate: -45%;
  }
  .highlights-slider .next {
    translate: 45%;
  }
}
@media (width < 450px) {
  .highlights-slider .carousel-inner .highlights-slide .highlight-cards {
    grid-template-columns: 1fr;
  }
}

body.homepage {
  width: 100vw;
}
body.homepage .main-header {
  position: fixed;
}

.home-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(90deg, var(--primary-dark-color) 0%, #004c61 55%, var(--primary-color) 100%);
  background-size: cover;
  display: grid;
  place-content: center;
}
.home-wrapper .stripes-bg {
  position: absolute;
  bottom: 30px;
  left: 34%;
  width: 1700px;
  height: 1600px;
  opacity: 0;
  z-index: 0;
  animation: angle-fade-in 5s cubic-bezier(0.19, 1, 0.22, 1) 4s forwards;
}
.home-wrapper .inner-content {
  width: 1570px;
  height: 877px;
  position: relative;
}
.home-wrapper .inner-content header {
  position: absolute;
  top: 240px;
  left: 255px;
}
.home-wrapper .inner-content header .main-title {
  font-size: 3.75rem;
  color: white;
  text-transform: uppercase;
  line-height: 54px;
  /* the following added for animation */
  display: inline-block;
  white-space: pre-wrap;
  opacity: 0;
}
.home-wrapper .inner-content header .main-title span {
  display: inline-block;
}
.home-wrapper .inner-content header nav {
  margin-top: 4.5rem;
}
.home-wrapper .inner-content .line-and-hard-hat {
  position: absolute;
  top: 8rem;
  left: 30rem;
}
.home-wrapper .inner-content .line-and-hard-hat #s-line {
  position: absolute;
  width: 1700px;
}
.home-wrapper .inner-content .line-and-hard-hat .hard-hat {
  width: 490px;
  position: absolute;
  left: 310px;
  top: 77px;
  animation: slide-up-hard-hat 3s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}
.home-wrapper .inner-content .line-and-hard-hat #vertical-lines {
  position: absolute;
  top: 450px;
  left: -150px;
}
.home-wrapper .inner-content .desktop-subtitle,
.home-wrapper .inner-content .mobile-subtitle {
  font-weight: 600;
  color: white;
  font-size: 1.25rem;
}
.home-wrapper .inner-content .desktop-subtitle {
  position: absolute;
  left: 790px;
  top: 4rem;
  font-weight: 600;
  color: white;
  font-size: 1.25rem;
  overflow: hidden; /* Ensure content outside the clip-path is hidden */
  clip-path: inset(0 100% 0 0); /* Initially hide the entire element */
  animation: reveal-left-to-right 0.4s ease-out 0.7s forwards;
}
.home-wrapper .inner-content .mobile-subtitle {
  display: none;
  margin-bottom: 1rem;
}
.home-wrapper .inner-content .circle {
  border-radius: 50%;
  opacity: 0;
}
.home-wrapper .inner-content .bg-circle1 {
  position: absolute;
  left: -206px;
  top: 50px;
  width: 412px;
  height: 412px;
  animation: slide-up-op-6 5s cubic-bezier(0.19, 1, 0.22, 1) 2s forwards;
  background: transparent linear-gradient(90deg, #002230 0%, #00293a 29%, #003c55 79%, #004763 100%);
}
.home-wrapper .inner-content .bg-circle2 {
  position: absolute;
  top: 40px;
  left: 930px;
  width: 480px;
  height: 480px;
  background: transparent linear-gradient(0deg, #002230 0%, #00293a 29%, #003c55 79%, #004763 100%);
  animation: slide-up-op-6 5s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}
.home-wrapper .inner-content .bg-circle3 {
  background: transparent linear-gradient(180deg, #ffffff 0%, #cad1d4 14%, #8d9da3 31%, #5b717a 48%, #334e59 64%, #173642 78%, #062734 91%, #002230 100%);
  width: 410px;
  height: 410px;
  position: absolute;
  top: 680px;
  left: 460px;
  animation: slide-up-op-4 5s cubic-bezier(0.19, 1, 0.22, 1) 3s forwards;
}
.home-wrapper #ReadTheReport {
  display: inline-block;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0); /* Start with no glow */
  animation: throbbing-glow-ReadTheReport 1.5s infinite ease-in-out, grow-shrink-ReadTheReport 5s infinite ease-in-out;
}
@keyframes throbbing-glow-ReadTheReport {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0); /* No glow */
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Bright glow */
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0); /* No glow */
  }
}
@keyframes grow-shrink-ReadTheReport {
  40% {
    scale: 1;
  }
  45% {
    scale: 0.9;
  }
  50% {
    scale: 1.2;
  }
  55% {
    scale: 0.95;
  }
  58% {
    scale: 1;
  }
}
@media (height < 925px) {
  .home-wrapper .inner-content .desktop-subtitle {
    left: 486px;
    top: 10rem;
  }
}
@media (width < 1721px) {
  .home-wrapper .stripes-bg {
    left: 23%;
  }
}
@media (width < 1140px) {
  .home-wrapper .inner-content header {
    left: 25rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat {
    left: 25rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat #vertical-lines {
    left: 75px;
  }
}
@media (width < 820px) {
  .home-wrapper {
    place-content: flex-start center;
  }
  .home-wrapper .stripes-bg {
    right: 0;
    left: auto;
  }
  .home-wrapper .inner-content {
    display: flex;
    flex-direction: column-reverse;
    width: auto;
    height: auto;
    top: 12rem;
  }
  .home-wrapper .inner-content header {
    position: relative;
    top: -4rem;
    left: 0;
  }
  .home-wrapper .inner-content header nav {
    margin-top: 2rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat {
    top: 18rem;
    transform: scale(0.7);
    left: -16.5rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat .hard-hat {
    top: 0;
  }
  .home-wrapper .inner-content .line-and-hard-hat #s-line {
    position: absolute;
    width: 1400px;
    left: 7rem;
    top: -1.5rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat #vertical-lines {
    display: none;
  }
  .home-wrapper .inner-content .desktop-subtitle {
    display: none;
  }
  .home-wrapper .inner-content .mobile-subtitle {
    display: block;
  }
}
@media (width < 820px) and (width < 450px) and (height < 750px) {
  .home-wrapper .inner-content {
    top: 10rem;
  }
  .home-wrapper .inner-content .line-and-hard-hat {
    top: 8rem;
    scale: 0.7;
    left: -11.8rem;
  }
  .home-wrapper .inner-content header .main-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .home-wrapper .inner-content header nav {
    margin-top: 1.5rem;
  }
}
@keyframes slide-up-op-6 {
  0% {
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 0.6;
  }
}
@keyframes slide-up-op-4 {
  0% {
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 0.4;
  }
}
@keyframes slide-up-op-1 {
  0% {
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes angle-fade-in {
  0% {
    translate: 30px -30px;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes reveal-left-to-right {
  0% {
    clip-path: inset(0 100% 0 0); /* Fully hidden */
  }
  100% {
    clip-path: inset(0 0 0 0); /* Fully revealed */
  }
}
@keyframes slide-up-hard-hat {
  0% {
    filter: blur(1.5rem);
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
    filter: blur(0);
  }
}

.chairmans-message {
  overflow-x: hidden;
}
.chairmans-message .heading {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.chairmans-message .heading .subpage-h1-heading {
  display: inline-block;
  margin-block: 4rem 3rem;
  position: relative;
}
.chairmans-message .heading .subpage-h1-heading #vertical-lines {
  position: absolute;
  left: -150px;
  top: -100px;
  rotate: -90deg;
}
.chairmans-message .heading .subpage-h1-heading span {
  margin-inline-start: 4rem;
  display: block;
}
.chairmans-message .heading .subpage-h1-heading #blueLine {
  position: absolute;
  right: -190px;
  top: 70px;
}
.chairmans-message .center-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--center-column-width);
  margin-inline: auto;
  gap: 3rem;
}
.chairmans-message .center-column a {
  color: var(--secondary-color);
}
.chairmans-message .center-column a:hover, .chairmans-message .center-column a:focus-visible {
  text-decoration: none;
}
.chairmans-message .dick-signature {
  margin-top: 2rem;
}
.chairmans-message .dick-signature p {
  font-family: var(--ascendium-sans);
}
.chairmans-message .dick-signature img {
  max-width: 141px;
}
.chairmans-message .dick-signature .name {
  font-weight: 700;
  font-size: 1.625rem;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.chairmans-message .dick-signature .position {
  font-size: 0.875rem;
  line-height: 1.2;
  display: inline-block;
}
.chairmans-message .richard-george-image {
  position: relative;
}
.chairmans-message .richard-george-image img {
  border-top-left-radius: 110px;
  position: absolute;
  top: 0;
  left: 0;
  width: 862px;
  animation: slide-from-right 1s ease-in-out forwards;
}
.chairmans-message .wave-footer {
  position: relative;
  max-height: 400px;
  overflow: hidden;
  margin-block-start: -17rem;
}
.chairmans-message .wave-footer .wave-footer-text {
  max-width: 372px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  left: 62%;
  top: 6rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.chairmans-message .wave-footer .wave-footer-text p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
.chairmans-message .wave-footer #wave {
  width: 3000px;
  position: relative;
  top: 0;
  left: 50%;
  translate: -50% 0;
  animation: slide-wave-from-right 1s ease-in-out forwards;
}
@media (width < 1320px) {
  .chairmans-message .subpage-h1-heading {
    padding-inline: 3rem;
  }
  .chairmans-message .center-column > div:nth-child(1) {
    padding-inline-start: 5rem;
  }
  .chairmans-message .center-column .richard-george-image img {
    height: 1000px;
    object-fit: cover;
  }
}
@media (width < 1008px) {
  .chairmans-message .heading .subpage-h1-heading {
    text-align: center;
    display: block;
  }
  .chairmans-message .heading .subpage-h1-heading span {
    margin-left: 0;
  }
  .chairmans-message .heading #vertical-lines,
  .chairmans-message .heading #blueLine {
    display: none;
  }
  .chairmans-message .center-column {
    grid-template-columns: 1fr;
  }
  .chairmans-message .center-column > div:nth-child(1) {
    padding-inline-end: 5rem;
  }
  .chairmans-message .center-column .richard-george-image {
    margin-inline: auto;
    width: 100%;
  }
  .chairmans-message .center-column .richard-george-image img {
    width: 100%;
    position: relative;
    height: auto;
    border-top-left-radius: 0;
  }
  .chairmans-message .wave-footer {
    margin-block-start: 0;
    background-color: var(--pale-blue);
  }
  .chairmans-message .wave-footer .wave-footer-text {
    max-width: 372px;
    position: relative;
    margin-inline: auto;
    margin-block: 3rem;
    top: auto;
    left: auto;
  }
  .chairmans-message .wave-footer #wave {
    display: none;
  }
}
@media (width < 450px) {
  .chairmans-message .subpage-h1-heading {
    padding-inline: 1rem;
  }
  .chairmans-message .center-column > div:nth-child(1) {
    padding-inline: 2rem;
  }
}
.chairmans-message #vertical-lines .cls-1 {
  animation: draw-line 1s ease-in-out forwards;
}
.chairmans-message #vertical-lines .cls-2 {
  animation: draw-line 0.25s ease-in-out forwards 1s;
}
.chairmans-message #blueLine .blue-line {
  animation: draw-line 1s ease-in-out forwards 0s;
}
@keyframes slide-from-right {
  0% {
    translate: 4% 0;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes slide-wave-from-right {
  0% {
    translate: -47% 0;
  }
  100% {
    translate: -50% 0;
  }
}

.page-2024-funding .heading {
  margin-block-start: 4rem;
  text-align: center;
}
.page-2024-funding .heading h1 {
  color: var(--primary-dark-color);
  font-weight: 600;
}
.page-2024-funding .heading h1 span {
  color: var(--primary-medium-color);
}
.page-2024-funding .heading .subtitle {
  margin-inline: auto;
  margin-block-start: 1.5rem;
  max-width: 532px;
}
.page-2024-funding .pill, .page-2024-funding .grantmaking-highlights h2, .page-2024-funding .field-engagement .center-column h2, .page-2024-funding .significant-areas .center-column h2, .page-2024-funding .total-giving h2 {
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 999px;
  display: grid;
  place-content: center;
}
.page-2024-funding .total-giving {
  background-color: var(--pale-blue);
  padding-block: 4rem;
  margin-inline: auto;
  margin-block-start: 3rem;
  max-width: 1085px;
  border-top-left-radius: 110px;
  border-bottom-right-radius: 110px;
  opacity: 0;
  transform-origin: center center;
  animation: scale-in 1.5s ease-in-out 0s forwards;
  position: relative;
}
.page-2024-funding .total-giving * {
  font-family: var(--ascendium-sans);
  margin: 0;
  line-height: 1;
}
.page-2024-funding .total-giving h2 {
  width: 270px;
  margin-inline: auto;
}
.page-2024-funding .total-giving p:nth-of-type(1) {
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
}
.page-2024-funding .total-giving p:nth-of-type(2) {
  font-size: 2.25rem;
  text-align: center;
}
.page-2024-funding .total-giving .divider {
  height: 2px;
  background-color: var(--primary-dark-color);
  max-width: 699px;
  margin-inline: auto;
  margin-block: 1rem;
}
.page-2024-funding .total-giving p:last-of-type {
  font-family: var(--ascendium-serif);
  margin-top: 1rem;
  max-width: 554px;
  margin-inline: auto;
  text-align: center;
  line-height: 1.2;
}
.page-2024-funding .total-giving #total-giving-amount {
  transform-origin: center;
  animation: zoom-in-amount 5s ease-in-out 0s forwards;
}
.page-2024-funding .significant-areas {
  background-image: url("../images/SignificantAreasBG@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-top: 218px solid var(--primary-color);
  z-index: -1;
  margin-block-start: -17rem;
}
.page-2024-funding .significant-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.page-2024-funding .significant-areas .center-column {
  padding: 8rem 0 4rem 0;
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: flex;
  position: relative;
  z-index: 1;
}
.page-2024-funding .significant-areas .center-column h2 {
  width: 470px;
}
.page-2024-funding .significant-areas .center-column .intro {
  color: white;
  max-width: 470px;
  margin-top: 1.5rem;
}
.page-2024-funding .significant-areas .center-column .areas {
  max-width: 870px;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.page-2024-funding .significant-areas .center-column .areas .area {
  display: flex;
  gap: 1.5rem;
}
.page-2024-funding .significant-areas .center-column .areas .area img {
  width: 80px;
  height: 80px;
}
.page-2024-funding .significant-areas .center-column .areas .area p {
  color: white;
  font-family: var(--ascendium-sans-light);
}
.page-2024-funding .significant-areas .center-column .areas .area p strong {
  font-weight: 600;
  font-family: var(--ascendium-sans);
}
.page-2024-funding .field-engagement {
  padding-block: 4rem;
  background-color: var(--primary-color);
}
.page-2024-funding .field-engagement .center-column {
  max-width: calc(var(--center-column-width) - 13rem);
  margin-inline: auto;
}
.page-2024-funding .field-engagement .center-column h2 {
  width: 568px;
  margin-inline: auto;
  margin-block-end: 4rem;
}
.page-2024-funding .field-engagement .center-column .stats-and-map {
  display: flex;
  gap: 4rem;
  margin-inline: auto;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .left-content p {
  color: white;
  max-width: 270px;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .left-content .hosted {
  font-family: var(--ascendium-sans-light);
  position: relative;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .left-content .hosted strong {
  font-family: var(--ascendium-sans);
  font-weight: 600;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .left-content .hosted::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  background-image: url("../images/triple-arrows.svg");
  width: 12px;
  height: 27px;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .convening-image {
  width: 238px;
  height: 238px;
  margin: 3rem 0 1.5rem;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map {
  position: relative;
  width: 659px;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p {
  position: absolute;
  z-index: 1;
  width: 138px;
  font-family: var(--ascendium-sans-light);
  line-height: 1.2;
  opacity: 0;
  translate: 0 4rem;
  transition: all ease-in-out 1s;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p strong {
  font-family: var(--ascendium-sans);
  font-weight: 600;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p span {
  font-size: 2.6rem;
  display: block;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(1) {
  top: 5rem;
  left: 4rem;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(2) {
  top: 7rem;
  left: 15rem;
  transition-delay: 0.5s;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(3) {
  top: 10rem;
  left: 25rem;
  transition-delay: 1s;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(1).slide-up {
  opacity: 1;
  translate: 0 0;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(2).slide-up {
  opacity: 1;
  translate: 0 0;
}
.page-2024-funding .field-engagement .center-column .stats-and-map .us-map p:nth-of-type(3).slide-up {
  opacity: 1;
  translate: 0 0;
}
.page-2024-funding .grantmaking-highlights h2 {
  width: 472px;
  margin: 4rem auto 2rem;
}
.page-2024-funding .grantmaking-highlights .intro {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
}
.page-2024-funding .grantmaking-highlights .grantmaking-pie {
  max-width: 721px;
  margin: 4rem auto;
  opacity: 0;
  scale: 0.25;
  transition: all ease-in-out 1s;
}
.page-2024-funding .grantmaking-highlights .grantmaking-pie.zoom-in {
  scale: 1;
  opacity: 1;
}
.page-2024-funding .grantmaking-highlights .outro {
  width: 772px;
  height: 100px;
  background-color: var(--pale-blue);
  place-content: center;
  border-radius: 50px;
  margin: 0 auto 3rem;
  position: relative;
  transition: all ease-in-out 0.5s;
  opacity: 0;
  scale: 0.25;
}
.page-2024-funding .grantmaking-highlights .outro p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 460px;
  margin-inline: auto;
  text-align: center;
}
.page-2024-funding .grantmaking-highlights .outro p span {
  color: var(--secondary-color);
}
.page-2024-funding .grantmaking-highlights .outro .left-line,
.page-2024-funding .grantmaking-highlights .outro .right-line {
  position: absolute;
  width: 480px;
  top: 2.5rem;
}
.page-2024-funding .grantmaking-highlights .outro .left-line {
  left: -35rem;
}
.page-2024-funding .grantmaking-highlights .outro .right-line {
  right: -35rem;
  rotate: 180deg;
}
.page-2024-funding .grantmaking-highlights .outro.zoom-in {
  scale: 1;
  opacity: 1;
}
@media (width < 1024px) {
  .page-2024-funding .heading {
    margin-inline: 1rem;
  }
  .page-2024-funding .total-giving {
    padding-inline: 1rem;
  }
  .page-2024-funding .total-giving p:first-of-type {
    font-size: 2.8rem;
  }
  .page-2024-funding .significant-areas {
    border-color: white;
  }
  .page-2024-funding .significant-areas .center-column {
    margin-inline: 1rem;
  }
  .page-2024-funding .significant-areas .center-column .areas {
    grid-template-columns: 1fr;
  }
  .page-2024-funding .significant-areas::before {
    background: linear-gradient(to right, rgb(47, 41, 38) 0%, rgba(47, 41, 38, 0.9) 70%, rgba(47, 41, 38, 0.9) 100%);
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map {
    display: block;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .left-content * {
    text-align: center;
    margin-inline: auto;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .left-content p.hosted::before {
    display: none;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .us-map {
    margin-inline: auto;
  }
  .page-2024-funding .grantmaking-highlights {
    padding-inline: 2rem;
  }
  .page-2024-funding .grantmaking-highlights .outro {
    width: auto;
    height: auto;
    padding: 1rem 2rem;
  }
  .page-2024-funding .grantmaking-highlights .outro p {
    font-size: 1rem;
  }
}
@media (width < 680px) {
  .page-2024-funding .pill, .page-2024-funding .total-giving h2, .page-2024-funding .significant-areas .center-column h2, .page-2024-funding .field-engagement .center-column h2, .page-2024-funding .grantmaking-highlights h2 {
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-size: 1rem;
    margin-inline: 2rem;
  }
  .page-2024-funding .field-engagement {
    padding-block-end: 2rem;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .us-map {
    width: auto;
    background-color: var(--pale-blue);
    margin: 2rem;
    padding: 2rem;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .us-map img {
    display: none;
  }
  .page-2024-funding .field-engagement .center-column .stats-and-map .us-map p {
    top: auto !important;
    left: auto !important;
    width: auto !important;
    padding-block: 1rem;
    margin-top: 0;
    position: relative;
  }
}
@keyframes scale-in {
  0% {
    opacity: 0;
    scale: 1.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes zoom-in-amount {
  from {
    scale: 0.1;
  }
  to {
    scale: 1;
  }
}

.presidents-message {
  overflow-x: hidden;
  position: relative;
}
.presidents-message .heading {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.presidents-message .heading .subpage-h1-heading {
  display: inline-block;
  margin-block: 4rem 3rem;
  position: relative;
}
.presidents-message .heading .subpage-h1-heading #vertical-lines {
  position: absolute;
  left: -150px;
  top: -100px;
  rotate: -90deg;
}
.presidents-message .heading .subpage-h1-heading span {
  margin-inline-start: 4rem;
  display: block;
}
.presidents-message .heading .subpage-h1-heading #blueLine {
  position: absolute;
  right: -190px;
  top: 70px;
}
.presidents-message .center-column {
  max-width: var(--center-column-width);
  display: flex;
  margin-inline: auto;
  gap: 3rem;
}
.presidents-message .center-column .video-container {
  margin-block: 3rem;
  position: relative;
}
.presidents-message .center-column .video-container .video-wrapper {
  width: 469px;
  aspect-ratio: 16/9;
}
.presidents-message .center-column .video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.presidents-message .center-column .video-container .video-caption {
  max-width: 365px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--ascendium-sans);
  line-height: 1.2;
}
.presidents-message .keith-signature {
  margin-top: 2rem;
}
.presidents-message .keith-signature p {
  font-family: var(--ascendium-sans);
}
.presidents-message .keith-signature img {
  max-width: 141px;
}
.presidents-message .keith-signature .name {
  font-weight: 700;
  font-size: 1.625rem;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.presidents-message .keith-signature .position {
  font-size: 0.875rem;
  line-height: 1.2;
  display: inline-block;
}
.presidents-message .keith-witham-image {
  margin-right: -15rem;
  width: 42rem;
  overflow: hidden;
  position: relative;
  min-height: 922px;
}
.presidents-message .keith-witham-image .keith-photo {
  border-top-left-radius: 110px;
  position: absolute;
  top: 0;
  left: 0;
  width: 670px;
  opacity: 0;
  translate: 4rem;
  animation: slide-in 2s ease-in-out 0s forwards;
}
.presidents-message .wave-footer {
  bottom: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  left: 50%;
  translate: -50% 0px;
  bottom: 0;
  position: absolute;
  max-height: 360px;
  overflow: hidden;
  z-index: -1;
}
.presidents-message .wave-footer .wave-footer-text {
  max-width: 388px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  left: 29%;
  top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.presidents-message .wave-footer .wave-footer-text p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
.presidents-message .wave-footer #wave {
  width: 3000px;
  position: relative;
  transform: scaleX(-1);
}
.presidents-message .stripes-bar img {
  position: absolute;
  bottom: 0;
  mix-blend-mode: multiply;
}
@media (width < 1320px) {
  .presidents-message .subpage-h1-heading {
    padding-inline: 3rem;
  }
  .presidents-message .center-column > div:nth-child(1) {
    padding-inline-start: 5rem;
  }
  .presidents-message .wave-footer {
    margin-block-start: 0;
    background-color: var(--pale-blue);
    position: relative;
  }
  .presidents-message .wave-footer .wave-footer-text {
    position: relative;
    margin-inline: auto;
    margin-block: 3rem;
    top: auto;
    left: auto;
  }
  .presidents-message .wave-footer #wave {
    display: none;
  }
}
@media (width < 1008px) {
  .presidents-message .heading .subpage-h1-heading {
    text-align: center;
    display: block;
  }
  .presidents-message .heading .subpage-h1-heading span {
    margin-left: 0;
  }
  .presidents-message .heading #vertical-lines,
  .presidents-message .heading #blueLine {
    display: none;
  }
  .presidents-message .center-column {
    display: block;
  }
  .presidents-message .center-column > div:nth-child(1) {
    padding-inline: 2rem;
  }
  .presidents-message .center-column .video-container {
    margin-block-start: 2rem;
    text-align: center;
  }
  .presidents-message .center-column .video-container .video-wrapper {
    width: 100%;
  }
  .presidents-message .center-column .keith-witham-image {
    margin-inline: auto;
    width: 100%;
    min-height: auto;
  }
  .presidents-message .center-column .keith-witham-image img {
    width: 100%;
    position: relative;
    height: 600px;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 0;
  }
}
.presidents-message #vertical-lines .cls-1 {
  animation: draw-line 1s ease-in-out forwards;
}
.presidents-message #vertical-lines .cls-2 {
  animation: draw-line 0.25s ease-in-out forwards 1s;
}
.presidents-message #blueLine .blue-line {
  animation: draw-line 1s ease-in-out forwards 0s;
}
@keyframes slide-in {
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

.strategic-grantmaking-2024 .center-column {
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.strategic-grantmaking-2024 .center-column .inner-column {
  margin-block: 4rem;
  max-width: calc(var(--center-column-width) - 8rem);
  margin-inline-start: auto;
  display: flex;
  gap: 6rem;
}
.strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading {
  max-width: 470px;
  margin-inline: 0;
  margin-bottom: 2rem;
  position: relative;
}
.strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading span {
  color: var(--secondary-color);
}
.strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading #blue-2-lines {
  position: absolute;
  top: 18px;
  left: -506px;
  width: 476px;
}
.strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading #red-1-line {
  position: absolute;
  width: 95px;
  right: 85px;
  bottom: 15px;
  rotate: 180deg;
}
.strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading #red-1-line .cls-1 {
  animation-delay: 0.5s;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card + .evidence-card {
  margin-block-start: 2rem;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 500px;
  align-items: center;
  color: var(--primary-dark-color);
  text-decoration: none;
  font-size: 1.3125rem;
  font-family: var(--ascendium-sans);
  position: relative;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card a span {
  display: block;
  position: relative;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card a span .arrows {
  display: inline;
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  transition: 250ms opacity;
  animation: menu_link_bounce ease alternate 250ms infinite;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card a:hover,
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card a:focus-visible {
  color: var(--secondary-color);
  text-decoration: underline;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card img {
  max-width: 224px;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card {
  opacity: 0;
  translate: 0 -2rem;
  filter: blur(1.5rem);
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card:nth-child(1) {
  animation: bob-in 0.5s ease-in-out 0.5s forwards;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card:nth-child(2) {
  animation: bob-in 0.5s ease-in-out 1s forwards;
}
.strategic-grantmaking-2024 .center-column .inner-column .evidence-card:nth-child(3) {
  animation: bob-in 0.5s ease-in-out 1.5s forwards;
}
@media (width < 1024px) {
  .strategic-grantmaking-2024 .center-column .inner-column {
    display: block;
    padding-inline: 2rem;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading {
    padding-inline: 0;
    max-width: 100%;
    text-align: center;
    display: block;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .subpage-h1-heading span {
    margin-left: 0;
  }
  .strategic-grantmaking-2024 .center-column .inner-column #blue-2-lines,
  .strategic-grantmaking-2024 .center-column .inner-column #red-1-line {
    display: none;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .evidence-card a:first-child {
    margin-block-start: 3rem;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .evidence-card a {
    margin-inline: auto;
    display: block;
    text-align: center;
    width: 100%;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .evidence-card a img {
    margin-block-start: 0.5rem;
    margin-inline: auto;
  }
  .strategic-grantmaking-2024 .center-column .inner-column .evidence-card a span .arrows {
    display: none;
  }
}
@keyframes bob-in {
  70% {
    translate: 0 3rem;
    opacity: 1;
    filter: blur(0);
  }
  100% {
    translate: 0 0;
    opacity: 1;
    filter: blur(0);
  }
}

.creating-opportunities {
  border-bottom: 1px solid black;
}
.creating-opportunities .top-section {
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4.5fr 3.5fr;
  gap: 3rem;
  margin-block-end: 3rem;
}
.creating-opportunities .top-section .subpage-h1-heading {
  margin-block: 1.5rem 2rem;
}
.creating-opportunities .top-section .we-are-commited {
  max-width: 422px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-block-start: 5rem;
  margin-inline-start: 3rem;
}
.creating-opportunities .top-section .we-are-commited p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
@media (width < 1390px) {
  .creating-opportunities .top-section {
    padding-inline: 2rem;
  }
}
@media (width < 1024px) {
  .creating-opportunities .top-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .creating-opportunities .top-section .video-container {
    margin-block: 2rem;
  }
  .creating-opportunities .top-section .video-container video {
    width: 100%;
  }
  .creating-opportunities .top-section .video-container .we-are-commited {
    margin-inline: auto;
  }
}
@media (width < 450px) {
  .creating-opportunities {
    overflow: hidden;
  }
  .creating-opportunities .hero {
    width: 600px;
  }
}

.developing-strategies .top-section {
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4.5fr 3.5fr;
  gap: 3rem;
  margin-block-end: 3rem;
}
.developing-strategies .top-section .callout-bar {
  margin-top: -13.5rem;
}
.developing-strategies .top-section .subpage-h1-heading {
  margin-block: 1.5rem 2rem;
}
.developing-strategies .top-section .baked-goods {
  margin-top: 4rem;
}
.developing-strategies .top-section .video-container {
  margin-block: 3rem;
}
.developing-strategies .top-section .todays-learners {
  max-width: 422px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-block-start: 5rem;
  margin-inline-start: 3rem;
}
.developing-strategies .top-section .todays-learners p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
@media (width < 1390px) {
  .developing-strategies .top-section {
    padding-inline: 2rem;
  }
  .developing-strategies .top-section .callout-bar {
    margin-top: -8.5rem;
  }
}
@media (width < 1024px) {
  .developing-strategies .top-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .developing-strategies .top-section .callout-bar {
    margin-block: 2rem;
  }
  .developing-strategies .top-section .video-container {
    margin-block: 2rem;
  }
  .developing-strategies .top-section .video-container video {
    width: 100%;
  }
  .developing-strategies .top-section .video-container .todays-learners {
    margin-inline: auto;
  }
}
@media (width < 450px) {
  .developing-strategies {
    overflow: hidden;
  }
  .developing-strategies .hero {
    position: relative;
    height: 150px;
  }
  .developing-strategies .hero img {
    position: absolute;
    width: 600px;
    right: 0;
  }
}

.aligning-systems {
  border-bottom: 1px solid black;
}
.aligning-systems .top-section {
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 3rem;
  margin-block-end: 3rem;
}
.aligning-systems .top-section .subpage-h1-heading {
  margin-block: 1.5rem 2rem;
}
.aligning-systems .top-section .we-are-commited {
  max-width: 422px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-block-start: 5rem;
  margin-inline-start: 3rem;
}
.aligning-systems .top-section .we-are-commited p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
.aligning-systems .aligning-systems-middle-section .inner {
  grid-template-columns: 5fr 3fr;
}
.aligning-systems .aligning-systems-middle-section .inner .svg-wrapper {
  height: 80px;
}
@media (width < 1390px) {
  .aligning-systems .top-section {
    padding-inline: 2rem;
  }
}
@media (width < 1024px) {
  .aligning-systems .top-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .aligning-systems .top-section .video-container {
    margin-block: 2rem;
  }
  .aligning-systems .top-section .video-container video {
    width: 100%;
  }
  .aligning-systems .top-section .video-container .we-are-commited {
    margin-inline: auto;
  }
}
@media (width < 450px) {
  .aligning-systems {
    overflow: hidden;
  }
  .aligning-systems .hero {
    width: 600px;
  }
}

.creating-evidence {
  overflow-x: hidden;
}
.creating-evidence .center-column {
  max-width: var(--center-column-width);
  margin-inline: auto;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.creating-evidence .center-column .heading {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.creating-evidence .center-column .heading .subpage-h1-heading {
  display: inline-block;
  margin-block: 4rem 3rem;
  position: relative;
}
.creating-evidence .center-column .heading .subpage-h1-heading #horizontal-lines {
  position: absolute;
  left: -150px;
  top: -100px;
  rotate: -90deg;
}
.creating-evidence .center-column .heading .subpage-h1-heading #blueLine {
  position: absolute;
  right: -40px;
  top: 122px;
}
.creating-evidence .center-column .with-good-evidence {
  max-width: 522px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-block-start: 2rem;
  position: relative;
  z-index: 1;
}
.creating-evidence .center-column .with-good-evidence #vertical-lines {
  transform: rotate(180deg);
}
.creating-evidence .center-column .with-good-evidence p {
  font-family: var(--ascendium-sans);
  font-size: 1.5rem;
}
.creating-evidence .center-column .jessa-and-bethany {
  position: relative;
  max-width: 555px;
  z-index: 1;
  margin-block-start: 7rem;
  animation: slide-jessa-and-bethany-up 1.5s ease-in-out 0s forwards;
}
.creating-evidence .wave-wrapper {
  height: 373px;
  overflow: hidden;
  margin-block-start: -18rem;
  animation: slide-wave-over 1.5s ease-in-out 0s forwards;
}
.creating-evidence .wave-wrapper #wave {
  width: 3000px;
  position: relative;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.creating-evidence .lower-content {
  background-color: var(--pale-blue);
  padding-block: 4rem;
}
.creating-evidence .lower-content .inner {
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--center-column-width);
  margin-inline: auto;
  position: relative;
}
.creating-evidence .lower-content .inner h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}
.creating-evidence .lower-content .inner .svg-wrapper {
  position: absolute;
  overflow: hidden;
  width: 1263.61px;
  height: 10rem;
  bottom: -4rem;
  right: -45rem;
}
.creating-evidence .lower-content .inner .svg-wrapper svg {
  position: absolute;
  top: 6px;
}
@media (width < 1390px) {
  .creating-evidence .center-column {
    padding-inline: 2rem;
  }
  .creating-evidence .center-column .heading .subpage-h1-heading br {
    display: none;
  }
  .creating-evidence .center-column .heading .subpage-h1-heading #vertical-lines,
  .creating-evidence .center-column .heading .subpage-h1-heading .blue-line {
    display: none;
  }
  .creating-evidence .lower-content .inner {
    padding-inline: 2rem;
  }
  .creating-evidence .lower-content .inner .svg-wrapper {
    right: -54rem;
  }
}
@media (width < 850px) {
  .creating-evidence .center-column {
    grid-template-columns: 1fr;
  }
  .creating-evidence .center-column .heading .subpage-h1-heading {
    text-align: center;
    display: block;
  }
  .creating-evidence .center-column .heading .subpage-h1-heading br {
    display: inline;
  }
  .creating-evidence .center-column .heading .subpage-h1-heading #vertical-lines,
  .creating-evidence .center-column .heading .subpage-h1-heading .blue-line {
    display: none;
  }
  .creating-evidence .center-column .with-good-evidence {
    margin-inline: auto;
  }
  .creating-evidence .center-column .jessa-and-bethany {
    margin: 0;
    margin-inline: auto;
    max-width: 300px;
  }
  .creating-evidence .wave-wrapper {
    margin-block-start: -22rem;
  }
  .creating-evidence .lower-content .inner {
    grid-template-columns: 1fr;
  }
  .creating-evidence .lower-content .inner .svg-wrapper {
    display: none;
  }
}
.creating-evidence #vertical-lines .cls-1 {
  animation: draw-line 1s ease-in-out forwards;
}
.creating-evidence #vertical-lines .cls-2 {
  animation: draw-line 0.25s ease-in-out forwards 1s;
}
.creating-evidence #blueLine .blue-line {
  animation: draw-line 1s ease-in-out forwards 0s;
}
@keyframes slide-jessa-and-bethany-up {
  from {
    filter: blur(1.5rem);
    opacity: 0;
    translate: 0 10rem;
  }
  to {
    filter: blur(0);
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slide-wave-over {
  from {
    translate: 50rem 0;
  }
  to {
    translate: 0 0;
  }
}

.continuing-commitment {
  overflow-x: hidden;
  border-bottom: 1px solid black;
}
.continuing-commitment .subpage-h1-heading {
  text-align: center;
  margin-block: 3rem;
}
.continuing-commitment .commitment-list {
  background-color: var(--pale-blue);
  padding-block: 4rem;
}
.continuing-commitment .commitment-list .center-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--center-column-width);
  margin-inline: auto;
  gap: 10rem;
}
.continuing-commitment .commitment-list .center-column h2 {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 999px;
  font-size: 1.4375rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.continuing-commitment .commitment-list .center-column .commitment {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  translate: 0 -4rem;
  opacity: 0;
  animation: commitment-slideup 0.5s ease-out var(--animation-delay) forwards;
}
.continuing-commitment .commitment-list .center-column .commitment img {
  max-width: 71px;
}
.continuing-commitment .commitment-list .center-column .commitment p {
  font-size: 1.125rem;
  font-family: var(--ascendium-sans-light);
  text-wrap: pretty;
}
.continuing-commitment .great-ideas {
  padding-bottom: 2rem;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-block-start: -6rem;
}
.continuing-commitment .great-ideas > div:first-child {
  position: relative;
}
.continuing-commitment .great-ideas > div:first-child #horizontal-lines {
  position: absolute;
  rotate: -90deg;
  left: -13rem;
  top: 5rem;
}
.continuing-commitment .great-ideas h2 {
  margin-top: 6rem;
  font-weight: 700;
  max-width: 20rem;
  font-size: 2rem;
  margin-block-end: 0.5rem;
  position: relative;
  color: var(--primary-dark-color);
}
.continuing-commitment .great-ideas h2::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  background-image: url("../images/triple-arrows-dark-primary.svg");
  width: 12px;
  height: 27px;
  rotate: 90deg;
}
.continuing-commitment .great-ideas p {
  font-family: var(--ascendium-sans);
}
.continuing-commitment .great-ideas img {
  max-width: 399px;
}
@media (width < 1390px) {
  .continuing-commitment .subpage-h1-heading,
  .continuing-commitment .center-column,
  .continuing-commitment .great-ideas {
    padding-inline: 2rem;
  }
}
@media (width < 850px) {
  .continuing-commitment .commitment-list .center-column {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
  .continuing-commitment .great-ideas {
    display: block;
    margin-block-start: 0;
  }
  .continuing-commitment .great-ideas h2 {
    text-align: center;
    margin-inline: auto;
    margin-block-start: 3rem;
  }
  .continuing-commitment .great-ideas h2::before {
    display: none;
  }
  .continuing-commitment .great-ideas img {
    margin-inline: auto;
    margin-block-start: 2rem;
  }
}
@keyframes commitment-slideup {
  80% {
    translate: 0 2rem;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}

.media-partnerships {
  overflow-x: hidden;
  position: relative;
  border-bottom: solid black 1px;
}
.media-partnerships .wave-wrapper {
  rotate: 180deg;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  animation: slide-creating-evidence-wave-over 1.5s ease-in-out 0s forwards;
}
.media-partnerships .wave-wrapper #wave {
  width: 3000px;
  position: relative;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.media-partnerships .center-column {
  max-width: var(--center-column-width);
  margin-inline: auto;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.media-partnerships .center-column .heading {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.media-partnerships .center-column .heading .subpage-h1-heading {
  display: inline-block;
  margin-block: 4rem 3rem;
  position: relative;
}
.media-partnerships .center-column .heading .subpage-h1-heading #vertical-lines {
  position: absolute;
  left: -150px;
  top: -100px;
  rotate: -90deg;
}
.media-partnerships .center-column .heading .subpage-h1-heading #horizontal-lines {
  rotate: -90deg;
  scale: -1;
  position: absolute;
  right: 60px;
  top: 0;
}
.media-partnerships .center-column .partnership-image {
  margin-block-start: 4rem;
  position: relative;
  max-width: 473px;
  z-index: 1;
  animation: slide-photo-up 1.5s ease-in-out 0s forwards;
}
.media-partnerships .center-column .caption {
  position: relative;
  font-family: var(--ascendium-sans-light);
  max-width: 355px;
  margin-inline-start: 8rem;
  margin-block-start: 3rem;
  opacity: 0;
  animation: fade-in 0.5s ease-in-out 1s forwards;
}
.media-partnerships .center-column .caption strong {
  font-family: var(--ascendium-sans);
  font-weight: 600;
}
.media-partnerships .center-column .caption::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  background-image: url("../images/triple-arrows-dark-primary.svg");
  width: 12px;
  height: 27px;
}
.media-partnerships .logos .logos-mobile {
  display: none;
}
.media-partnerships .logos {
  margin-block: 5rem;
  max-width: 1570px;
  margin-inline: auto;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 0;
}
.media-partnerships .logos img {
  position: relative;
  z-index: 0;
}
.media-partnerships .logos::after, .media-partnerships .logos::before {
  content: "";
  position: absolute;
  width: 999px;
  height: 100%;
  top: 0;
  z-index: -1;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.2);
}
.media-partnerships .logos::after {
  background-color: #77c5d5;
  right: -999px;
}
.media-partnerships .logos::before {
  background-color: #28607c;
  left: -999px;
}
.media-partnerships .lower-section {
  display: grid;
  grid-template-columns: 5fr 2.5fr;
  max-width: var(--center-column-width);
  gap: 6rem;
  margin-inline: auto;
  margin-block-end: 4rem;
}
.media-partnerships .lower-section ul {
  padding: 0 0 0 1rem;
}
.media-partnerships .lower-section ul li {
  margin: 1rem 0 0 0;
}
.media-partnerships .lower-section ul li::marker {
  color: var(--secondary-color);
}
.media-partnerships .lower-section ul li p a {
  color: var(--secondary-color);
}
.media-partnerships .lower-section ul li p a:hover, .media-partnerships .lower-section ul li p a:focus-visible {
  text-decoration: none;
}
.media-partnerships .lower-section .sidebar {
  background-color: var(--primary-dark-color);
  padding: 3rem 5rem 3rem 3rem;
  border-bottom-right-radius: 110px;
  translate: 4rem 0;
  opacity: 0;
  transition: all ease-in-out 1s;
}
.media-partnerships .lower-section .sidebar ul {
  padding: 0;
  list-style: none;
}
.media-partnerships .lower-section .sidebar li:not(:first-child) {
  border-top: 1px solid white;
  padding-block-start: 1rem;
}
.media-partnerships .lower-section .sidebar .rocket-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.media-partnerships .lower-section .sidebar .rocket-title img {
  width: 26px;
  height: 26px;
}
.media-partnerships .lower-section .sidebar a {
  color: white;
  font-family: var(--ascendium-sans-light);
  text-decoration: none;
}
.media-partnerships .lower-section .sidebar a .arrows {
  display: inline;
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  transition: 250ms opacity;
  animation: menu_link_bounce ease alternate 250ms infinite;
}
.media-partnerships .lower-section .sidebar a:hover, .media-partnerships .lower-section .sidebar a:focus-visible {
  text-decoration: underline;
}
.media-partnerships .lower-section .sidebar.sidebar-in {
  translate: 0 0;
  opacity: 1;
}
@media (width < 1390px) {
  .media-partnerships .center-column,
  .media-partnerships .lower-section {
    padding-inline: 2rem;
  }
}
@media (width < 850px) {
  .media-partnerships .center-column .heading .subpage-h1-heading {
    text-align: center;
    margin-inline: auto;
    display: block;
  }
  .media-partnerships .center-column .heading .subpage-h1-heading svg {
    display: none;
  }
  .media-partnerships .center-column,
  .media-partnerships .lower-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .media-partnerships .center-column .partnership-image {
    max-width: 300px;
    margin-block: 0;
    margin-inline: auto;
  }
  .media-partnerships .center-column .caption {
    margin-inline: auto;
    margin-block: 2rem;
  }
  .media-partnerships .center-column .caption::before {
    display: none;
  }
  .media-partnerships .logos {
    margin-block: 0 2rem;
  }
}
@media (width < 450px) {
  .media-partnerships .center-column .heading .subpage-h1-heading br {
    display: none;
  }
  .media-partnerships .logos .logos-desktop {
    display: none;
  }
  .media-partnerships .logos .logos-mobile {
    display: block;
  }
}
.media-partnerships #vertical-lines .cls-1 {
  animation: draw-line 1s ease-in-out forwards;
}
.media-partnerships #vertical-lines .cls-2 {
  animation: draw-line 0.25s ease-in-out forwards 1s;
}
@keyframes slide-photo-up {
  from {
    filter: blur(1.5rem);
    opacity: 0;
    translate: 0 10rem;
  }
  to {
    filter: blur(0);
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slide-creating-evidence-wave-over {
  from {
    translate: -57% 0;
  }
  to {
    translate: -50% 0;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.giving-back {
  overflow-x: hidden;
  position: relative;
  border-bottom: solid black 1px;
}
.giving-back .heading {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.giving-back .heading .subpage-h1-heading {
  display: inline-block;
  margin-block: 4rem 3rem;
  position: relative;
}
.giving-back .heading .subpage-h1-heading #single-red-line {
  position: absolute;
  left: -440px;
  top: 20px;
}
.giving-back .heading .subpage-h1-heading #single-pale-blue-line {
  position: absolute;
  right: -303px;
  top: 20px;
}
.giving-back .center-column {
  max-width: var(--center-column-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.giving-back .center-column .vto-slideshow {
  position: relative;
  width: 100%;
  height: auto;
}
.giving-back .center-column .vto-slideshow img {
  border-radius: 110px 0 110px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.giving-back .center-column .vto-slideshow img:first-child {
  position: relative;
}
.giving-back .center-column .vto-slideshow img.active {
  opacity: 1;
}
.giving-back .center-column .caption {
  margin-top: 1rem;
  font-family: var(--ascendium-sans-light);
  justify-content: center;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.giving-back .center-column .caption img {
  width: 26px;
  height: 26px;
}
.giving-back .lower-section {
  position: relative;
  padding-block: 4rem;
}
.giving-back .lower-section .inner {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.giving-back .lower-section .inner img {
  position: relative;
  max-width: 388px;
}
.giving-back .lower-section .inner p {
  margin-top: 3rem;
}
.giving-back .lower-section .wave-wrapper {
  rotate: 180deg;
  position: absolute;
  top: -312px;
  left: 46%;
  translate: -50% 0;
  z-index: -1;
}
.giving-back .lower-section .wave-wrapper #wave {
  width: 3000px;
  position: relative;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.giving-back .mobile-highlights {
  display: none;
}
.giving-back .mobile-highlights p {
  font-family: var(--ascendium-sans-light);
}
.giving-back .mobile-highlights .highlight-card {
  max-width: 350px;
  margin-inline: auto;
}
.giving-back .mobile-highlights .highlight-card p {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.giving-back .mobile-highlights .donated-hours > div {
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
}
.giving-back .mobile-highlights .donated-hours > div h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.giving-back .mobile-highlights .donated-hours > div h3 span {
  font-size: 1.625rem;
}
.giving-back .mobile-highlights .donated-hours > div p {
  margin-top: 0;
  text-wrap: pretty;
}
.giving-back .mobile-highlights .slide-3-card {
  margin-top: 2rem;
  max-width: 350px;
  margin-inline: auto;
}
.giving-back .mobile-highlights .slide-3-card p {
  margin-top: 1rem;
}
@media (width < 1390px) {
  .giving-back .center-column,
  .giving-back .heading {
    padding-inline: 2rem;
  }
}
@media (width < 850px) {
  .giving-back .carousel-highlights {
    display: none;
  }
  .giving-back .mobile-highlights {
    display: block;
  }
  .giving-back .heading .subpage-h1-heading {
    display: block;
    text-align: center;
  }
  .giving-back .heading .subpage-h1-heading #single-red-line,
  .giving-back .heading .subpage-h1-heading #single-pale-blue-line {
    display: none;
  }
  .giving-back .center-column {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .giving-back .lower-section .inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 2rem;
  }
  .giving-back .lower-section .inner p {
    margin-block-start: 0;
  }
  .giving-back .lower-section .inner img {
    margin-inline: auto;
  }
}

.bod-2024 .bio-meta p, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo p, .bod-2024 .top-section .bod-members .bod-member-card p {
  font-family: var(--ascendium-sans);
  text-align: center;
}
.bod-2024 .bio-meta .bod-member-image, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-image, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-image {
  max-width: 216px;
  margin-inline: auto;
}
.bod-2024 .bio-meta .bod-member-name, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-name, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  margin-block: 1rem 0.5rem;
}
.bod-2024 .bio-meta .bod-member-location, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-location, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-location {
  font-weight: 400;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-block-start: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bod-2024 .bio-meta .bod-member-location .bod-member-bio-button, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-location .bod-member-bio-button, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-location .bod-member-bio-button {
  border: none;
  font-weight: 400;
  font-size: 1.125rem;
  background: transparent;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.bod-2024 .bio-meta .bod-member-location .bod-member-bio-button .plus-icon, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-location .bod-member-bio-button .plus-icon, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-location .bod-member-bio-button .plus-icon {
  margin-block-end: -1px;
  width: 15.5px;
  pointer-events: none;
}
.bod-2024 .bio-meta .bod-member-bio-button:hover, .bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-bio-button:hover, .bod-2024 .top-section .bod-members .bod-member-card .bod-member-bio-button:hover,
.bod-2024 .bio-meta .bod-member-bio-button:focus-visible,
.bod-2024 dialog .dialog-content .board-member-bio .bio-photo .bod-member-bio-button:focus-visible,
.bod-2024 .top-section .bod-members .bod-member-card .bod-member-bio-button:focus-visible {
  text-decoration: underline;
}
.bod-2024 .subpage-h1-heading {
  text-align: center;
  margin-block: 3rem;
}
.bod-2024 .top-section {
  position: relative;
  max-width: var(--center-column-width);
  margin-inline: auto;
}
.bod-2024 .top-section #bod-squggles {
  position: absolute;
  right: -6rem;
  top: 22rem;
}
.bod-2024 .top-section .bod-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.bod-2024 .top-section .bod-members .bod-member-card {
  margin-block: 1rem 2rem;
}
.bod-2024 .top-section .bod-members .bod-member-modal-card {
  max-width: 240px;
}
.bod-2024 .top-section .bod-members .bod-member-modal-card p {
  font-family: var(--ascendium-sans);
}
@media (width > 450px) {
  .bod-2024 .top-section .bod-members .bod-member-card {
    opacity: 0;
    animation: bod-slideup 0.5s ease var(--animation-delay) forwards;
  }
}
.bod-2024 .wave-wrapper {
  z-index: -1;
  position: relative;
  height: 683px;
  overflow: hidden;
  margin-block-start: -40rem;
}
.bod-2024 .wave-wrapper #wave {
  width: 3000px;
  position: relative;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.bod-2024 dialog.show {
  transform: translateY(0);
  opacity: 1;
}
.bod-2024 dialog.show::backdrop {
  opacity: 1;
}
.bod-2024 dialog {
  transition: all 500ms ease;
  opacity: 0;
  transform: translateY(20%);
  overflow: auto;
  overscroll-behavior: contain;
  background: transparent;
  border: none;
  scroll-behavior: smooth;
}
.bod-2024 dialog .dialog-content {
  overflow: hidden;
  max-width: 1200px;
  background-color: var(--pale-blue);
  padding: 6rem 10rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  border-radius: 110px 0 110px 0;
}
.bod-2024 dialog .dialog-content button {
  cursor: pointer;
}
.bod-2024 dialog .dialog-content .prev,
.bod-2024 dialog .dialog-content .next {
  position: absolute;
  width: 81px;
  height: 81px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: none;
  box-shadow: none;
  margin-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bod-2024 dialog .dialog-content .prev svg,
.bod-2024 dialog .dialog-content .next svg {
  width: 30%;
}
.bod-2024 dialog .dialog-content .prev {
  left: 0;
}
.bod-2024 dialog .dialog-content .next {
  right: 0;
}
.bod-2024 dialog .dialog-content .next svg {
  transform: rotate(180deg);
}
.bod-2024 dialog .dialog-content .close {
  background: var(--primary-dark-color);
  position: absolute;
  top: 0;
  right: 0;
  width: 57px;
  height: 57px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bod-2024 dialog .dialog-content .close svg {
  width: 60%;
}
.bod-2024 dialog .dialog-content .board-member-bio {
  position: relative;
  gap: 3rem;
  display: flex;
  text-align: left;
}
.bod-2024 dialog .dialog-content .board-member-bio .bio-photo {
  flex: 0 0 240px;
  text-align: center;
}
.bod-2024 dialog .dialog-content .board-member-bio .bio {
  text-align: left;
  text-wrap: pretty;
}
.bod-2024 dialog .dialog-content .board-member-bio[aria-hidden=true] {
  display: none;
}
@media (width < 850px) {
  .bod-2024 dialog .dialog-content {
    padding: 4rem 6rem;
  }
  .bod-2024 dialog .dialog-content .board-member-bio {
    flex-direction: column;
  }
  .bod-2024 dialog .dialog-content .board-member-bio .bio-photo {
    margin-inline: auto;
  }
  .bod-2024 dialog .dialog-content .prev,
  .bod-2024 dialog .dialog-content .next {
    height: 50px;
    width: 50px;
  }
}
@media (width < 450px) {
  .bod-2024 dialog .dialog-content {
    padding: 4rem 2rem 10rem;
  }
  .bod-2024 dialog .dialog-content .prev,
  .bod-2024 dialog .dialog-content .next {
    width: 81px;
    height: 81px;
    bottom: 4rem;
  }
}
.bod-2024 dialog::backdrop {
  transition: all 500ms ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (width < 1024px) {
  .bod-2024 .top-section #bod-squggles {
    display: none;
  }
}
@media (width < 850px) {
  .bod-2024 .top-section .bod-members {
    grid-template-columns: 1fr 1fr;
  }
  .bod-2024 .top-section .bod-members .spacer {
    display: none;
  }
}
@media (width < 450px) {
  .bod-2024 .top-section .bod-members {
    grid-template-columns: 1fr;
  }
}
@keyframes bod-slideup {
  from {
    transform: translateY(75px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
