:root {
  --hero-max-width: 1820px;
  --hero-top: rgb(113, 145, 208);
  --hero-mid: rgb(170, 184, 213);
  --hero-bottom: rgb(236, 233, 230);
  --primary-blue: #7191d0;
  --soft-blue: #aab8d5;
  --cloud: #ece9e6;
  color: #111111;
  background: #ffffff;
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #ffffff;
}

.preloader {
  --preloader-shift-x: 0px;
  --preloader-shift-y: 0px;
  --preloader-target-scale: 0.7;
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: #111111;
  background:
    radial-gradient(circle at 50% 44%, rgb(255 255 255 / 0.35), transparent 30%),
    linear-gradient(180deg, #7191d0 0%, #aab8d5 58%, #ece9e6 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 620ms ease, visibility 620ms ease;
}

.preloader.is-exiting {
  opacity: 0.98;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  animation: preloader-pulse 1600ms ease-in-out infinite;
  transition:
    transform 940ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease 520ms;
}

.preloader__mark::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgb(113 145 208 / 0.36);
  border-radius: inherit;
  content: "";
  animation: preloader-ring 1600ms ease-in-out infinite;
}

.preloader.is-exiting .preloader__mark {
  animation: none;
  opacity: 0;
  transform:
    translate3d(var(--preloader-shift-x), var(--preloader-shift-y), 0)
    scale(var(--preloader-target-scale));
}

.preloader.is-exiting .preloader__mark::after {
  animation: none;
  opacity: 0;
}

.preloader__mark img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.preloader p {
  margin: 0;
  color: rgb(255 255 255 / 0.88);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(27px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgb(17 17 17 / 0.22);
  transition: opacity 420ms ease, transform 520ms ease;
}

.preloader.is-exiting p {
  opacity: 0;
  transform: translateY(-10px);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
}

button {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.navbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 192px), var(--hero-max-width));
  min-height: 76px;
  padding: 0 26px;
  color: #ffffff;
  transform: translate3d(-50%, 0, 0);
  border: 1px solid transparent;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease,
    border-radius 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.navbar.is-floating {
  color: #111111;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  box-shadow: 0 20px 58px rgb(20 25 32 / 0.12);
  transform: translate3d(-50%, 16px, 0);
  backdrop-filter: blur(12px);
}

.navbar.is-hidden {
  pointer-events: none;
  transform: translate3d(-50%, -100px, 0);
}

.navbar__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.navbar__mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 68px;
  height: 68px;
}

.navbar__logo {
  grid-area: 1 / 1;
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: opacity 220ms ease, transform 220ms ease;
}

.navbar__logo--scrolled {
  opacity: 0;
  transform: scale(0.94);
}

.navbar.is-floating .navbar__logo--transparent {
  opacity: 0;
  transform: scale(0.94);
}

.navbar.is-floating .navbar__logo--scrolled {
  opacity: 1;
  transform: scale(1);
}

.bottom-menu {
  position: fixed;
  z-index: 95;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: min(calc(100% - 72px), 300px);
  padding: 4px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 999px;
  color: #101827;
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 0.7),
    rgb(255 255 255 / 0.34)
  );
  box-shadow: 0 14px 42px rgb(15 23 42 / 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 28px, 0) scale(0.96);
  backdrop-filter: blur(18px) saturate(145%);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.bottom-menu.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.bottom-menu a {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  border-radius: 999px;
  color: #111827;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 300;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.bottom-menu a:nth-of-type(3) {
  font-weight: 200;
}

.bottom-menu a:hover,
.bottom-menu a:focus-visible {
  color: #000000;
  background: rgb(255 255 255 / 0.68);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.46);
  transform: translateY(-1px);
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.55vw, 44px);
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar.is-floating .navbar__links {
  color: rgb(17 17 17 / 0.82);
}

.navbar__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  color: #111111;
  background: rgb(233 240 255 / 0.9);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.78);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar.is-floating .navbar__cta {
  color: #ffffff;
  background: #111111;
}

.hero {
  position: relative;
  z-index: 1;
  height: 180vh;
  min-height: 1238px;
  background: var(--hero-bottom);
}

.hero.is-past .hero-fixed {
  opacity: 0;
  pointer-events: none;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--hero-top) 0%,
    var(--hero-mid) 45%,
    var(--hero-bottom) 100%
  );
}

.hero__gradient,
.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient--base {
  background:
    radial-gradient(circle at 52% 26%, rgb(255 255 255 / 0.22), transparent 34%),
    linear-gradient(180deg, rgb(116 151 213 / 0.2), transparent 58%);
}

.hero__stars {
  top: 0;
  height: 210px;
  opacity: 0.34;
  background:
    radial-gradient(circle at 8% 32%, rgb(255 255 255 / 0.85) 0 1px, transparent 1.7px),
    radial-gradient(circle at 26% 18%, rgb(255 255 255 / 0.76) 0 1px, transparent 1.8px),
    radial-gradient(circle at 68% 26%, rgb(255 255 255 / 0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 86% 42%, rgb(255 255 255 / 0.8) 0 1px, transparent 1.7px),
    radial-gradient(circle at 45% 54%, rgb(255 255 255 / 0.55) 0 1px, transparent 1.6px);
  background-size: 330px 210px, 440px 210px, 520px 210px, 380px 210px, 470px 210px;
  animation: star-twinkle 4.8s ease-in-out infinite alternate;
}

.hero__gradient--screen {
  mix-blend-mode: screen;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.18), transparent 44%);
}

.hero-fixed {
  transition: opacity 120ms linear;
  will-change: transform, opacity;
}

.hero__title,
.hero__title-row {
  position: fixed;
  z-index: 4;
  margin: 0;
  color: #ffffff;
  width: max-content;
  max-width: calc(100vw - 40px);
  font-size: clamp(48px, 9.8vw, 142px);
  font-weight: 200;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 10px 36px rgb(66 88 122 / 0.22);
  white-space: nowrap;
  pointer-events: none;
}

.hero__title {
  top: clamp(150px, 21vh, 190px);
  left: 50%;
  transform: translate3d(-50%, var(--scroll-y, 0px), 0);
}

.hero__title-row {
  top: clamp(256px, 35vh, 318px);
  left: 50%;
  display: flex;
  justify-content: center;
  transform: translate3d(-50%, var(--scroll-y, 0px), 0);
}

.hero__foundation {
  display: inline-block;
}

.hero__engine {
  position: fixed;
  z-index: 9;
  top: auto;
  bottom: 0;
  left: 50%;
  width: min(57vh, 50vw, 560px);
  height: auto;
  max-height: calc(100vh - clamp(218px, 29vh, 285px));
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 28px 34px rgb(26 31 42 / 0.22));
  transform: translate3d(-50%, var(--scroll-y, 0px), 0);
}

.hero__subject-ground {
  position: fixed;
  z-index: 7;
  left: 50%;
  bottom: 0;
  width: min(50vh, 45vw, 510px);
  height: clamp(58px, 9vh, 92px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgb(54 62 74 / 0.18), rgb(54 62 74 / 0.08) 42%, transparent 72%);
  filter: blur(14px);
  opacity: 0.72;
  transform: translate3d(-50%, var(--scroll-y, 0px), 0);
  pointer-events: none;
}

.hero__caption {
  position: fixed;
  z-index: 4;
  bottom: 28px;
  left: clamp(24px, 3.85vw, 78px);
  max-width: min(310px, calc(50vw - 72px));
  margin: 0;
  padding-left: 16px;
  color: rgb(42 42 42 / 0.58);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.32;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

.hero__caption::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 44px;
  background: rgb(42 42 42 / 0.32);
}

.mission {
  position: relative;
  z-index: 40;
  min-height: auto;
  margin-top: -12vh;
  color: #161616;
  background: #ffffff;
}

.mission__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 2fr);
  grid-template-rows: auto;
  column-gap: clamp(56px, 8vw, 170px);
  width: min(100% - 96px, var(--hero-max-width));
  margin: 0 auto;
  padding: clamp(34px, 3vw, 54px) 0 clamp(32px, 4vw, 62px);
}

.mission__eyebrow {
  margin: 0;
  color: #202020;
  font-size: clamp(13px, 0.9vw, 16.8px);
  font-weight: 700;
  line-height: 1.22;
}

.mission__statement h2 {
  max-width: 1180px;
  margin: 0;
  color: #141414;
  font-size: clamp(29px, 1.95vw, 41.3px);
  font-weight: 260;
  line-height: 1.18;
  letter-spacing: 0;
}

.story-button {
  display: inline-flex;
  gap: 6px;
  margin-top: clamp(46px, 3.3vw, 72px);
  color: inherit;
  background: transparent;
}

.story-button__icon,
.story-button__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(58px, 3.65vw, 72px);
  border-radius: 5px;
}

.story-button__icon {
  width: clamp(58px, 3.65vw, 72px);
  color: #171717;
  background: #d8e8ff;
  transition: transform 180ms ease, background 180ms ease;
}

.story-button:hover .story-button__icon {
  background: #c7dcfb;
  transform: translate(2px, 2px);
}

.story-button__icon i {
  font-size: clamp(22px, 1.5vw, 28px);
}

.story-button__text {
  padding: 0 clamp(18px, 1.35vw, 26px);
  border: 1px solid #c6c6c6;
  color: #171717;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.04);
  font-size: clamp(13.8px, 1vw, 18.3px);
  font-weight: 700;
}

.story-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 20px;
  border: 0;
  color: #111111;
  background: rgb(12 16 24 / 0.68);
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translateY(10px);
  transition:
    opacity 520ms ease,
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-modal[hidden] {
  display: none;
}

.story-modal.is-open {
  opacity: 1;
  transform: translateY(0);
}

.story-modal__panel {
  display: grid;
  gap: 0;
  width: min(100%, 980px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 38px 100px rgb(0 0 0 / 0.35);
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-modal.is-open .story-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 16px 18px 14px 24px;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.story-modal__header h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.05;
}

.story-modal__close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #171717;
  background: #eef3fb;
  transition: background 180ms ease, transform 180ms ease;
}

.story-modal__close:hover {
  background: #d8e8ff;
  transform: translateY(-1px);
}

.story-modal__close i {
  font-size: 22px;
}

.story-modal__video {
  aspect-ratio: 16 / 9;
  background: #111111;
}

.story-modal__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-popup {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #111111;
  background: rgb(5 10 14 / 0.72);
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-popup[hidden] {
  display: none;
}

.instagram-popup.is-open {
  opacity: 1;
  transform: translateY(0);
}

.instagram-popup__panel {
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr);
  width: min(100%, 980px);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 42px 110px rgb(0 0 0 / 0.38);
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-popup.is-open .instagram-popup__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.instagram-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 20px 22px 18px 26px;
  border-bottom: 1px solid rgb(17 17 17 / 0.1);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(238 244 244 / 0.88)),
    #ffffff;
}

.instagram-popup__header p {
  margin: 0 0 4px;
  color: #758080;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instagram-popup__header h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1;
}

.instagram-popup__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #111111;
  background: #eef3fb;
  transition: background 180ms ease, transform 180ms ease;
}

.instagram-popup__close:hover {
  background: #d8e8ff;
  transform: translateY(-1px);
}

.instagram-popup__close i {
  font-size: 22px;
}

.instagram-popup__feed {
  min-height: 380px;
  padding: clamp(16px, 2vw, 28px);
  overflow-y: auto;
  background: #ffffff;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  min-height: 100vh;
  padding: 12px;
  overflow-y: auto;
  background: rgb(0 0 0 / 0.72);
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup.is-open {
  opacity: 1;
  transform: translateY(0);
}

.contact-popup__card {
  position: relative;
  min-height: calc(100vh - 24px);
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 28px 90px rgb(0 0 0 / 0.32);
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transform-origin: center top;
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-popup.is-open .contact-popup__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-popup__video,
.contact-popup__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-popup__video {
  object-fit: cover;
}

.contact-popup__shade {
  background: rgb(0 0 0 / 0.22);
}

.contact-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 16px 35px rgb(0 0 0 / 0.2);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-popup__close:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.contact-popup__close i {
  font-size: 21px;
}

.contact-popup__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: calc(100vh - 24px);
  padding: 16px;
  overflow: visible;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 660ms ease 120ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.contact-popup.is-open .contact-popup__content {
  opacity: 1;
  transform: translateY(0);
}

.contact-popup__nav {
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  width: auto;
  min-height: 64px;
  padding: 10px 72px 10px 28px;
  border: 1px solid #ffffff;
  border-radius: 16px;
  background: rgb(255 255 255 / 0.6);
  box-shadow: 0 1px 14px rgb(0 0 0 / 0.08);
  backdrop-filter: blur(16px);
}

.contact-popup__sponsor {
  color: #0f172a;
  font-size: 18.4px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-popup__spacer {
  flex: 1;
  min-height: 32px;
}

.contact-popup__bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.contact-popup__headline {
  flex: 0 0 auto;
  max-width: 640px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  text-shadow: 0 8px 25px rgb(0 0 0 / 0.38);
}

.contact-popup__headline span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.contact-popup__story {
  flex: 1 1 auto;
  max-width: 720px;
  min-width: 0;
}

.contact-popup__read-more {
  display: grid;
  gap: 10px;
  max-width: 660px;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 20px;
  color: rgb(255 255 255 / 0.9);
  background: rgb(0 0 0 / 0.28);
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(10px);
}

.contact-popup__read-more p {
  margin: 0;
  font-size: clamp(12px, 1.55vw, 14px);
  line-height: 1.5;
}

.contact-popup__read-toggle {
  justify-self: start;
  width: fit-content;
  border: 0;
  border-bottom: 2px solid currentColor;
  padding: 0;
  color: #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-popup__read-toggle:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.contact-popup__read-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 360ms ease;
}

.contact-popup__read-more.is-expanded .contact-popup__read-extra {
  max-height: 640px;
  opacity: 1;
  transform: translateY(0);
}

.contact-popup__read-extra p + p {
  margin-top: 10px;
}

.contact-form-card {
  width: 100%;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 65px rgb(0 0 0 / 0.24);
}

.contact-form-card--donorbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  text-align: center;
}

.contact-form-card--donorbox dbox-widget {
  display: block;
  width: 100%;
  max-width: 500px;
  min-height: 520px;
  margin: 0 auto;
}

.contact-form-card--donorbox dbox-widget > *,
.contact-form-card--donorbox form#select_amount {
  margin-right: auto !important;
  margin-left: auto !important;
}

.contact-form-card--donorbox footer.copyright,
.contact-form-card--donorbox footer.copyright a,
.contact-form-card--donorbox footer.copyright svg,
.contact-form-card--donorbox .copyright {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.contact-form-card h2 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-form-card__email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 16px;
  background: #f9fafb;
}

.contact-form-card__email {
  min-width: 0;
}

.contact-form-card__email p {
  margin: 0 0 2px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
}

.contact-form-card__email a {
  display: block;
  overflow: hidden;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form-card__email a:hover {
  text-decoration: underline;
}

.contact-form-card__socials {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.contact-form-card__socials button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.contact-form-card__socials button:hover {
  opacity: 0.8;
}

.contact-form-card__socials button:nth-child(1) {
  color: #1f2937;
  background: #f3f4f6;
}

.contact-form-card__socials button:nth-child(2) {
  color: #ec4899;
  background: #fce7f3;
}

.contact-form-card__socials button:nth-child(3) {
  color: #fb923c;
  background: #ffedd5;
}

.contact-form-card__socials button:nth-child(4) {
  color: #2563eb;
  background: #dbeafe;
}

.contact-form-card__socials i {
  font-size: 13px;
}

.contact-form-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.contact-form-card__divider span {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.contact-form-card__divider strong {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label,
.contact-form__services p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contact-form__split {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  color: #111827;
  background: transparent;
  font-size: 14px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #111827;
}

.contact-form__services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__services div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contact-form__services button {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  color: #374151;
  background: #ffffff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-form__services button:hover {
  border-color: #9ca3af;
}

.contact-form__services button.is-selected {
  border-color: #000000;
  color: #000000;
  background: #f3f4f6;
}

.contact-form__submit {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 12px;
  color: #ffffff;
  background: #000000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease;
}

.contact-form__submit:hover {
  background: #1f2937;
}

.contact-form__submit:disabled {
  opacity: 0.6;
}

.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  text-align: center;
}

.contact-form-success[hidden] {
  display: none;
}

.contact-form-success div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #111827;
  background: #f0fdf4;
  font-size: 20px;
}

.contact-form-success h3 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}

.contact-form-success p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.capabilities {
  position: relative;
  z-index: 70;
  min-height: 100vh;
  padding: clamp(34px, 4vw, 72px) clamp(16px, 3.8vw, 72px);
  color: #111111;
  background: #f7f8f8;
}

.capabilities__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--hero-max-width);
  margin: 0 auto clamp(24px, 3vw, 42px);
}

.capabilities__intro {
  max-width: 860px;
}

.capabilities__intro h2 {
  max-width: 920px;
  margin: 0;
  color: #111111;
  font-size: clamp(29px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.capabilities__intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #677070;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.capabilities__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 999px;
  color: #111111;
  background: rgb(255 255 255 / 0.78);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95),
    0 18px 44px rgb(31 44 44 / 0.08);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.capabilities__button i {
  font-size: 18px;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 22px);
  max-width: var(--hero-max-width);
  min-height: clamp(620px, 72vh, 780px);
  margin: 0 auto;
}

.capabilities__stack {
  display: grid;
  grid-template-rows: minmax(210px, 0.74fr) minmax(270px, 1fr);
  gap: clamp(14px, 1.25vw, 22px);
}

.capabilities__stack--missions {
  grid-template-rows: minmax(390px, 0.95fr) minmax(330px, 0.9fr);
  gap: clamp(24px, 2.1vw, 34px);
}

.capabilities__stack--systems {
  grid-template-rows: minmax(420px, 1.45fr) auto;
}

.cap-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(18 35 35 / 0.09);
  border-radius: 18px;
  background: #dce3e3;
  box-shadow: 0 22px 60px rgb(21 34 34 / 0.08);
}

.cap-card--tall {
  grid-row: 1 / -1;
  min-height: 100%;
  color: #ffffff;
}

.cap-card--media video,
.cap-card--video-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.cap-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(5 12 14 / 0.4), transparent 28%),
    linear-gradient(90deg, rgb(0 0 0 / 0.74), rgb(0 0 0 / 0.38) 56%, transparent 100%),
    linear-gradient(0deg, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.68) 45%, transparent 78%);
}

.cap-card__shade--soft {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.38), transparent 34%),
    linear-gradient(90deg, rgb(0 0 0 / 0.52), rgb(0 0 0 / 0.18) 55%, rgb(0 0 0 / 0.44)),
    linear-gradient(0deg, #000000 0%, #000000 28%, rgb(0 0 0 / 0.78) 48%, transparent 78%);
}

.cap-card__shade--quote {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.58), rgb(0 0 0 / 0.28) 34%, transparent),
    linear-gradient(0deg, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.45) 62%, transparent);
}

.cap-card__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 24px;
  color: rgb(255 255 255 / 0.78);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cap-card__label--left {
  justify-content: flex-start;
  padding: 0;
  color: #758080;
}

.cap-card__story {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2vw, 28px);
  top: clamp(140px, 22vw, 220px);
  display: grid;
  gap: clamp(7px, 0.7vw, 10px);
  max-width: 620px;
  padding: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 8px;
  color: rgb(255 255 255 / 0.86);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.7), rgb(0 0 0 / 0.52)),
    rgb(5 12 14 / 0.72);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.35);
  backdrop-filter: blur(10px);
}

.cap-card__story p {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(11.8px, 0.82vw, 13.6px);
  font-weight: 450;
  line-height: 1.25;
}

.cap-card__story p:nth-child(2),
.cap-card__story p:nth-child(5),
.cap-card__story p:nth-child(6) {
  color: #ffffff;
  font-weight: 720;
}

.cap-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.72), rgb(238 244 244 / 0.86)),
    #edf2f2;
}

.cap-card--quote-media {
  min-height: 390px;
  padding: clamp(26px, 2.4vw, 34px);
  color: #ffffff;
  background: #111111;
}

.cap-card--quote-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.cap-card--quote-media .cap-card__label--left,
.cap-card--quote-media blockquote,
.cap-card--quote-media .cap-card__partner {
  position: relative;
  z-index: 1;
}

.cap-card--quote-media .cap-card__label--left {
  color: rgb(255 255 255 / 0.82);
}

.cap-card--quote blockquote {
  margin: clamp(22px, 2.4vw, 34px) 0 20px;
  color: #263030;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.62;
}

.cap-card--quote-media blockquote {
  color: rgb(255 255 255 / 0.9);
  text-shadow: 0 10px 30px rgb(0 0 0 / 0.34);
}

.cap-card__partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin-top: clamp(18px, 1.5vw, 26px);
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 6px;
  color: #111111;
  background: rgb(255 255 255 / 0.9);
  font-size: 14px;
  font-weight: 700;
}

.cap-card__attribution {
  margin: 0;
  color: #6b7676;
  font-size: 14px;
  line-height: 1.5;
}

.cap-card__attribution strong {
  display: block;
  color: #111111;
  font-size: 15px;
}

.cap-card--metric {
  display: block;
  min-height: 320px;
  color: #ffffff;
  background: #dce3e3;
}

.cap-card__metric {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.7), rgb(0 0 0 / 0.52)),
    rgb(5 12 14 / 0.72);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.35);
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 10px;
  text-shadow: 0 10px 28px rgb(0 0 0 / 0.42);
  backdrop-filter: blur(10px);
}

.cap-card__metric strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.02;
}

.cap-card__metric span {
  color: rgb(255 255 255 / 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.cap-card--tools {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.cap-card__youtube-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.18);
}

iframe.cap-card__youtube-bg {
  width: 177.78%;
  min-width: 100%;
  min-height: 100%;
}

.cap-card__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: 12px;
  color: #111111;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.28);
  font-size: 14px;
  font-weight: 760;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

.cap-card--tools:hover .cap-card__play,
.cap-card__play:focus-visible {
  opacity: 1;
  transform: translate(-50%, -53%);
}

.cap-card__play i {
  font-size: 20px;
}

.tool-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 26px 0 8px;
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.tool-marquee__row {
  display: flex;
  width: max-content;
  gap: 12px;
}

.tool-marquee__row--left {
  animation: marquee-left 24s linear infinite;
}

.tool-marquee__row--right {
  animation: marquee-right 28s linear infinite;
  transform: translateX(-50%);
}

.tool-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 14px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.18);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.24);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.tool-marquee i {
  font-size: 20px;
}

.cap-card--contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 118px;
  padding: 20px 76px 20px 24px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.72), rgb(238 244 244 / 0.86)),
    #edf2f2;
}

.cap-card__email {
  display: block;
  margin: 14px 0 6px;
  color: #111111;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 360;
}

.cap-card__phone {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  color: #6b7676;
  font-size: 14px;
  line-height: 1.5;
}

.cap-card__phone a {
  color: inherit;
}

.cap-card__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.cap-card__socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 50%;
  color: #ffffff;
  background: #111111;
  transition: transform 180ms ease, background 180ms ease;
}

.cap-card__socials a:hover {
  background: #263030;
  transform: translateY(-2px);
}

.cap-card__socials i {
  font-size: 19px;
}

.cap-card__icon-button {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 50%;
  color: #ffffff;
  background: #111111;
  transform: translateY(-50%);
}

.cap-card__icon-button i {
  font-size: 19px;
}

@keyframes star-twinkle {
  from {
    opacity: 0.18;
  }
  to {
    opacity: 0.58;
  }
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes preloader-ring {
  0% {
    opacity: 0.56;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (min-width: 640px) {
  .contact-popup {
    padding: 16px;
  }

  .contact-popup__card,
  .contact-popup__content {
    min-height: calc(100vh - 32px);
  }

  .contact-popup__card {
    border-radius: 32px;
  }

  .contact-popup__content {
    padding: 24px;
  }

  .contact-popup__nav {
    width: auto;
    padding-left: 28px;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 32px;
  }

  .contact-form__split {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .contact-popup {
    padding: 24px;
  }

  .contact-popup__card,
  .contact-popup__content {
    min-height: calc(100vh - 48px);
  }

  .contact-popup__content {
    padding: 32px;
  }
}

@media (min-width: 900px) {
  .contact-popup__card {
    min-height: calc(100vh - 48px);
    height: auto;
  }

  .contact-popup__content {
    min-height: 100%;
    height: auto;
  }

  .contact-popup__spacer {
    flex: 0;
    min-height: 56px;
  }

  .contact-popup__bottom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: stretch;
    gap: 32px;
  }

  .contact-popup__story {
    flex: 1 1 50%;
    max-width: none;
    align-self: flex-start;
  }

  .contact-form-card {
    flex: 1 1 50%;
    width: auto;
    max-width: none;
  }

  .contact-popup__read-more {
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(calc(100% - 96px), var(--hero-max-width));
    gap: 20px;
  }

  .navbar__brand {
    font-size: 15px;
  }

  .navbar__links {
    display: none;
  }

  .mission__inner {
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.7fr);
    column-gap: clamp(36px, 5vw, 72px);
    width: min(100% - 48px, var(--hero-max-width));
  }

  .mission__statement h2 {
    font-size: clamp(26px, 3.37vw, 38.2px);
  }

}

@media (max-width: 1080px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .cap-card--tall {
    min-height: 620px;
  }

  .capabilities__stack--systems {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(260px, 1fr);
  }
}

@media (max-width: 860px) {
  .navbar {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 48px), var(--hero-max-width));
    min-height: 64px;
    padding: 0 16px;
  }

  .navbar__links {
    display: none;
  }

  .hero__title,
  .hero__title-row {
    font-size: clamp(44px, 10.8vw, 82px);
  }

  .hero__title {
    left: 50%;
    top: clamp(184px, 23vh, 214px);
  }

  .hero__title-row {
    top: clamp(264px, 30vh, 308px);
    transform: translate3d(-50%, var(--scroll-y, 0px), 0);
  }

  .hero__engine {
    bottom: 0;
    width: min(74vh, 98vw, 820px);
    height: auto;
    max-height: calc(100vh - clamp(260px, 28vh, 310px));
  }

  .hero__subject-ground {
    bottom: 0;
    width: min(62vh, 84vw, 680px);
    height: clamp(58px, 7vh, 82px);
  }

  .mission {
    min-height: auto;
  }

  .mission__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: min(100% - 48px, var(--hero-max-width));
    padding: 34px 0 40px;
  }

  .mission__statement h2 {
    font-size: clamp(26px, 7.65vw, 39.8px);
    line-height: 1.1;
  }

  .story-button {
    margin-top: 34px;
  }

  .story-button__icon {
    width: 56px;
    min-height: 56px;
  }

  .story-button__text {
    min-height: 56px;
  }

}

@media (max-width: 760px) {
  .capabilities__header {
    flex-direction: column;
  }

  .capabilities__button {
    width: 100%;
  }

  .capabilities__grid,
  .capabilities__stack,
  .capabilities__stack--systems {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .capabilities__stack--systems {
    gap: 10px;
  }

  .cap-card--tall {
    min-height: 560px;
  }

}

@media (max-width: 560px) {
  .navbar {
    width: min(calc(100% - 32px), var(--hero-max-width));
  }

  .navbar__mark {
    width: 52px;
    height: 52px;
  }

  .navbar__logo {
    width: 52px;
    height: 52px;
  }

  .navbar__brand {
    font-size: 13px;
  }

  .navbar__cta {
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero__title,
  .hero__title-row {
    font-size: clamp(42px, 13vw, 58px);
    max-width: calc(100vw - 24px);
  }

  .hero__title {
    top: clamp(190px, 22vh, 206px);
  }

  .hero__title-row {
    top: clamp(242px, 28.5vh, 266px);
    width: max-content;
  }

  .hero__engine {
    bottom: 0;
    width: min(66vh, 140vw, 560px);
    max-height: calc(100vh - 286px);
  }

  .hero__subject-ground {
    bottom: 0;
    width: min(56vh, 112vw, 470px);
    height: 64px;
  }

  .hero__caption {
    display: none;
  }

  .mission__inner {
    width: min(100% - 32px, var(--hero-max-width));
  }

  .mission__eyebrow {
    max-width: 240px;
    font-size: 12.2px;
  }

  .mission__statement h2 {
    font-size: clamp(23.7px, 7.19vw, 32.1px);
  }

  .cap-card--contact {
    margin-top: -8px;
    padding-right: 68px;
  }
}
