:root {
  --color-orange: #d54a00;
  --color-red: #e11824;
  --color-text: #111;
  --color-text-lighter: rgba(0, 0, 0, 0.64);
  --color-yellow: #fcc759;
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-xl: 28px;
  --rounded-full: 9999px;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-medium {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
}

.col-12.dex-bottom {
  display: none;
  /* Remove when not using Salt&Light-Agathos WordPress theme */
}

.page--grow,
.page--gs {
  background-color: #f1ecdf;
}

.page--grow *,
.page--gs * {
  box-sizing: border-box;
}

.page--grow p,
.page--gs p {
  font-weight: 400 !important;
}

.page--grow blockquote {
  border: 0;
  padding: 0;
}

.a2a_kit {
  display: none !important;
  /* Remove when not using Salt&Light-Agathos WordPress theme */
}

.grow__container {
  margin: 0 auto;
  max-width: 1140px;
}

.grow__hero {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  height: 640px;
  margin-top: 214px !important;
  /* Remove when not using Salt&Light-Agathos WordPress theme */
  overflow: hidden;
  position: relative;
  width: 100%;
}

.grow__hero__popover {
  align-items: center;
  background-color: rgba(241, 236, 223, 0);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
  width: 100vw;
  z-index: 999991;
}

.grow__hero__popover.is-open {
  background-color: rgba(241, 236, 223, 0.8);
  opacity: 1;
  pointer-events: auto;
}

.grow__hero__popover__close {
  align-items: center;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--rounded-full);
  cursor: pointer;
  display: flex;
  height: 52px;
  justify-content: center;
  position: absolute;
  right: 26px;
  top: 20px;
  transition: transform 0.3s ease;
  width: 52px;
  z-index: 2;
}

.grow__hero__popover__close:hover {
  transform: scale(1.08);
}

.grow__hero__popover__close img {
  height: 24px;
  width: 24px;
}

.grow__hero__popover__vimeo {
  max-width: 70%;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
  width: 100%;
}

.grow__hero__popover.is-open .grow__hero__popover__vimeo {
  opacity: 1;
  transform: scale(1);
}

.grow__hero__video {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 0;
}

.grow__hero__overlay {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.grow__hero .grow__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.grow__hero__logo {
  max-width: 511px;
}

.grow__hero__description {
  color: var(--color-text-lighter);
  font-size: 19px;
  line-height: 1.4;
  margin-top: 28px;
  max-width: 388px;
  text-align: center;
}

.grow__hero__callout {
  align-items: center;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  color: inherit;
  display: flex;
  gap: 16px;
  margin-top: 40px;
  max-width: 360px;
  padding: 8px 24px 8px 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 100%;
}

.grow__hero__callout:hover {
  background-color: white;
}

.grow__hero__callout__thumbnail {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 147px;
}

.grow__hero__callout__btn {
  align-items: center;
  background-color: rgba(225, 24, 36, 0.8);
  border-radius: var(--rounded-full);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  width: 48px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.grow__hero__callout:hover .grow__hero__callout__btn {
  background-color: var(--color-red);
}

.grow__hero__callout__btn img {
  height: auto;
  left: 2px;
  position: relative;
  width: 14px;
}

.grow__hero__callout__thumbnail img {
  display: block;
  max-width: 160px;
}

.grow__hero__callout__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.grow__hero__callout__title {
  font-size: 16px;
}

.grow__hero__callout__description {
  color: rgba(0, 0, 0, 0.64);
  font-size: 14px;
  line-height: 1.2;
}

.grow__s1 {
  margin-top: 0 !important;
  padding: 100px 0;
}

.grow__s1 .grow__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.grow__s1 blockquote {
  font-size: 28px;
  line-height: 140%;
  margin: 0 auto;
  max-width: 558px;
  text-align: center;
}

.grow__s1 blockquote p {
  font-size: inherit;
  margin-bottom: 20px;
}

.grow__s1 blockquote p:last-child {
  margin-bottom: 0;
}

.grow__s1 blockquote p span.char {
  font-weight: 500;
}

.grow__s1 .grow__diagram--desktop {
  margin: 80px 0;
  max-width: 1140px;
}

.grow__s1 .grow__diagram--mobile {
  display: none;
  margin: 60px 0;
  max-width: 236px;
}

.grow__s1 p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 558px;
  width: 100%;
}

.grow__s1 .grow__punchline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1.4;
  max-width: 816px;
  margin: 56px 0 80px;
  width: 100%;
}

.grow__s1 .grow__inline-icon {
  align-items: center;
  background-color: white;
  border-radius: var(--rounded-full);
  display: inline-flex;
  height: 64px;
  margin: 0 16px;
  padding: 0 30px;
}

.grow__s1 .grow__icon-leaf {
  aspect-ratio: 1/1;
  width: 36px;
}

.grow__s1 ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 16px 0 40px;
  padding: 0;
}

.grow__s1 .grow__pill {
  background: #fff;
  border-radius: var(--rounded-full);
  display: inline-flex;
  font-size: 22px;
  max-width: 444px;
  padding: 14px 28px;
  width: fit-content;
}

.page--grow .text-gradient {
  background: linear-gradient(90deg, #2d525c 0%, #31ba5f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page--grow h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 24px 0;
  max-width: 558px;
  width: 100%;
}

.grow__s1 .grow__cards-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.grow__s1 .grow__cards-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--rounded-xl);
  max-width: 267px;
  min-height: 356px;
}

.grow__s1 .grow__cards-item__description {
  font-size: 16px;
  font-weight: 500 !important;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 0 20px 28px;
}

.page--grow h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.grow__s1 h2 {
  margin-top: 40px;
}

.grow__s1 .grow__videos-heading {
  align-items: center;
  display: flex;
  gap: 7px;
  margin-top: 48px;
  max-width: 752px;
  width: 100%;
}

.grow__s1 .grow__videos-heading__number {
  align-items: center;
  background: url("../img/icon-circle.svg") center center no-repeat;
  display: inline-flex;
  font-size: 18px;
  height: 44px;
  justify-content: center;
  width: 48px;
}

.grow__s1 .grow__videos-heading__title {
  font-size: 18px;
}

.grow__s1 .grow__videos {
  margin-top: 4px;
  max-width: 752px;
  width: 100%;
}

.grow__s1 .grow__videos .grow__accordion__item {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.grow__s1 .grow__videos .grow__accordion__head {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 24px;
  transition: background-color 0.2s ease;
  width: 100%;
}

.grow__s1 .grow__videos .grow__accordion__head:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.grow__s1 .grow__videos__lesson {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-right: 28px;
  position: relative;
  text-transform: uppercase;
  top: 1px;
}

.grow__s1 .grow__videos__title {
  font-size: 19px;
}

.grow__s1 .grow__videos {
  gap: 0;
}

.grow__s1 .grow__videos .grow__accordion__item:first-child {
  border-top: 0;
  border-top-left-radius: var(--rounded-md);
  border-top-right-radius: var(--rounded-md);
}

.grow__s1 .grow__videos .grow__accordion__item:last-child {
  border-bottom-right-radius: var(--rounded-md);
  border-bottom-left-radius: var(--rounded-md);
}

.grow__s1 .grow__videos li {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
}

.grow__s1 .grow__videos__left {
  align-items: center;
  display: flex;
}

.grow__s1 .grow__videos__right {
  align-items: center;
  display: flex;
}

.grow__s1 .grow__videos__duration {
  align-items: center;
  display: flex;
  gap: 4px;
}

.grow__s1 .grow__videos__share {
  align-items: center;
  color: var(--color-red);
  cursor: pointer;
  display: none;
  font-size: 15px;
  gap: 2px;
  margin-left: 16px;
  padding: 8px 12px;
  pointer-events: auto;
  position: relative;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  z-index: 10;
  -webkit-tap-highlight-color: rgba(225, 24, 36, 0.2);
}

.grow__s1 .grow__videos__share:active {
  opacity: 0.7;
}

.grow__accordion__item.is-open .grow__videos__share {
  display: flex;
}

.grow__videos__link {
  align-items: center;
  color: var(--color-red);
  display: flex;
  font-size: 15px;
  gap: 3px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.grow__videos__link:hover {
  color: #ad121b;
}

.grow__videos__link-icon {
  height: 15px;
  width: 15px;
}

.grow__accordion__item.is-open .grow__videos__duration {
  display: none;
}

.grow__accordion__video-wrapper {
  border-radius: 10px;
  margin: 0 auto 24px;
  overflow: hidden;
  width: calc(100% - 48px);
}

.grow__accordion__thumbnail {
  border-radius: 10px;
  height: auto;
  width: 100%;
}

.grow__cta {
  display: flex;
  padding: 100px 0 50px;
  width: 100%;
}

.grow__cta__title {
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.grow__cta__left {
  display: flex;
  flex: 1;
}

.grow__cta__right {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 752px;
}

.grow__cta__col {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 24px;
}

.grow__cta__col .grow__cta__item {
  flex: 1 1 0;
}

.grow__cta__item {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--rounded-md);
  color: inherit;
  display: flex;
  flex: 0 0 calc(50% - 12px);
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 149px;
  padding: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.grow__cta__item:hover {
  background-color: white;
}

.grow__cta__item__title {
  color: black;
  font-size: 18px;
}

.grow__cta__item__description {
  color: rgba(17, 17, 17, 0.6);
  display: inline-block;
  font-size: 15px;
  margin-top: 4px;
}

.grow__cta__item__row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.grow__cta__item__btn {
  align-items: center;
  background-color: var(--color-red);
  border-radius: var(--rounded-full);
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.grow__cta__item__img {
  height: 48px;
  width: auto;
}

.grow__cta__col .grow__cta__item__img.portrait {
  border-radius: 6px;
  height: auto;
  width: 72px;
}

.grow__cta__col .grow__cta__item__img {
  height: 68px;
}

.grow__s1 .grow__outline {
  margin: 48px 0;
}

.grow__s1 .grow__outline__heading {
  align-items: center;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  gap: 7px;
  margin-bottom: 16px;
}

.grow__s1 .grow__outline__heading img {
  height: auto;
  opacity: 0.8;
  position: relative;
  top: -0.5px;
  width: 20px;
}

.grow__s1 .grow__outline__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  max-width: 752px;
  width: 100%;
}

.grow__s1 .grow__outline__list li {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: flex;
  flex: 0 0 calc(50% - 6px);
  padding: 20px 24px;
}

.grow__s1 .grow__outline__label {
  color: rgba(17, 17, 17, 0.6);
  display: inline-block;
  font-size: 14px;
  margin-right: 16px;
  position: relative;
  top: 3px;
}

.grow__s1 .grow__outline__title {
  font-size: 19px;
}

.grow__video {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  margin: 0 40px;
  max-width: 752px;
  padding: 20px 24px 24px;
  width: 100%;
}

.grow__video__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.grow__video__header .grow__videos__share {
  display: flex;
}

.grow__video__label {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-right: 16px;
  position: relative;
  text-transform: uppercase;
  top: -1px;
}

.grow__video__title {
  font-size: 19px;
}

.grow__video .grow__accordion__video-wrapper {
  margin: 0;
  width: 100%;
}

.grow__partners {
  padding: 50px 0 0;
}

.grow__partners__container {
  margin: 0 auto;
  max-width: 752px;
}

.grow__partners__subheading {
  color: rgba(17, 17, 17, 0.6);
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 8px 12px;
  text-transform: uppercase;
}

.grow__partners__list-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

ul.grow__partners__list {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 32px;
  height: 96px;
  justify-content: center;
  margin-bottom: 0;
  width: 100%;
}

ul.grow__partners__list--duplicate {
  display: none;
}

.grow__partners__item img {
  height: 40px;
  width: auto;
}

img.grow__partners__item__cadence-culture-logo {
  height: 36px;
}

img.grow__partners__item__lovesingapore-logo {
  height: 26px;
}

.gs__container {
  margin: 0 auto;
  max-width: 404px;
}

.gs__hero {
  margin-top: 0 !important;
  min-height: 100vh;
  padding: 100px 0;
}

.gs__hero h1 {
  color: black;
  font-size: 32px;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.gs__hero__callout {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  color: var(--color-text);
  display: inline-flex;
  gap: 24px;
  padding: 10px 16px 10px 8px;
  text-decoration: none;
}

.gs__callout__left {
  align-items: center;
  display: flex;
  gap: 12px;
}

.gs__callout__icon-wrapper {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  display: flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.gs__callout__icon-wrapper img {
  width: auto;
}

.gs__callout__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gs__callout__title {
  font-weight: 500;
  line-height: 1;
}

.gs__callout__description {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
}

.gs__callout__btn {
  align-items: center;
  background-color: var(--color-red);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  padding: 0 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.gs__callout__btn:hover {
  background-color: #d3101d;
  color: white;
}

.gs__donate {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  margin-top: 60px;
  padding: 28px 0;
}

.gs__donate p {
  line-height: 1.4;
}

.gs__donate__grid {
  margin-top: 28px;
  max-width: 364px;
}

.gs__grid__row {
  display: flex;
  flex: 1 1 0;
}

.gs__grid__rh {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 15px;
  padding: 10px 16px;
  width: 40%;
}

.gs__grid__rh.is--top {
  border-bottom: 0;
  border-top-left-radius: 8px;
}

.gs__grid__rh.is--bottom {
  border-bottom-left-radius: 8px;
}

.gs__grid__rd {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 15px;
  gap: 10px;
  padding: 10px 16px;
}

.gs__grid__rd.is--top {
  border-bottom: 0;
  border-top-right-radius: 8px;
}

.gs__grid__rd.is--bottom {
  border-bottom-right-radius: 8px;
}

.gs__grid__rd p {
  font-size: 15px;
}

.gs__grid__qr {
  width: 148px;
}

.gs__rd__byline {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
}

.gs__note {
  margin-bottom: 28px;
}

.gs__note p {
  line-height: 1.4;
  margin-bottom: 12px;
}

.gs__note p:last-child {
  margin-bottom: 0;
}

.gs__note__link {
  color: var(--color-red);
  cursor: pointer;
  display: inline-flex;
  gap: 3px;
  position: relative;
}

.gs__note__link img {
  height: auto;
  width: 12px;
}

.gs__tooltip {
  background-color: var(--color-yellow);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 13px;
  font-weight: 500;
  left: 50%;
  opacity: 0;
  padding: 4px 6px;
  pointer-events: none;
  position: absolute;
  top: -26px;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.gs__tooltip.is-visible {
  opacity: 1;
}

.gs__back-btn {
  align-items: center;
  background-color: #444;
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  height: 32px;
  padding: 0 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.gs__back-btn:hover {
  background-color: #222;
  color: white;
}

@media screen and (max-width: 768px) {
  .grow__container {
    max-width: calc(100% - 52px);
  }

  .page--grow h2 {
    font-size: 28px;
    margin: 30px 0 0;
  }

  .page--grow h3 {
    font-size: 28px;
    margin-top: 24px;
  }

  .grow__hero {
    height: 480px;
    margin-top: 124px !important;
    /* Remove when not using Salt&Light-Agathos WordPress theme */
  }

  .grow__hero__popover__vimeo {
    max-width: none;
  }

  .grow__hero__logo {
    max-width: 308px;
  }

  .grow__hero__description {
    font-size: 18px;
  }

  .grow__s1 {
    padding: 60px 0;
  }

  .grow__s1 blockquote p {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: left;
  }

  .grow__s1 p {
    font-size: 18px;
  }

  .grow__s1 .grow__punchline {
    font-size: 32px;
    justify-content: center;
    margin: 16px 0 32px;
  }

  .grow__s1 .grow__inline-icon {
    height: 52px;
    margin: 0 14px;
    padding: 0px 28px;
  }

  .grow__s1 .grow__icon-leaf {
    width: 28px;
  }

  .grow__s1 ul {
    margin: 0 0 28px;
  }

  .grow__s1 .grow__pill {
    border-radius: 16px;
    font-size: 20px;
    padding: 14px 16px;
  }

  .grow__s1 .grow__diagram--desktop {
    display: none;
  }

  .grow__s1 .grow__diagram--mobile {
    display: block;
  }

  .grow__s1 .grow__cards-list {
    flex-direction: column;
    margin: 12px 0 30px;
  }

  .grow__s1 .grow__cards-item {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    min-height: 0;
  }

  .grow__s1 .grow__videos-heading {
    margin-top: 24px;
  }

  .grow__s1 .grow__accordion {
    margin-bottom: 30px;
  }

  .grow__s1 .grow__videos__left {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .grow__s1 .grow__videos__lesson {
    font-size: 12px;
  }

  .grow__s1 .grow__videos__title {
    font-size: 18px;
  }

  .grow__s1 .grow__videos__duration {
    font-size: 14px;
  }

  .grow__s1 .grow__videos__duration img {
    height: 14px;
    width: 14px;
  }

  .grow__s1 .grow__outline {
    margin: 28px 0 28px;
  }

  .grow__s1 .grow__outline__list {
    gap: 0;
  }

  .grow__s1 .grow__outline__list li {
    border-radius: 0;
    flex: 1 0 100%;
  }

  .grow__s1 .grow__outline__list li:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .grow__s1 .grow__outline__list li:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .grow__s1 .grow__video__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .grow__s1 .grow__video {
    margin-bottom: 30px;
  }

  .grow__s1 .grow__cta {
    flex-direction: column;
    padding: 30px 0;
  }

  .grow__cta__item,
  .grow__cta__item:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .grow__cta__item {
    min-height: 168px;
  }

  .grow__s1 .grow__cta__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .grow__cta__col .grow__cta__item__img.portrait {
    width: 46px;
  }

  .grow__s1 .grow__cta__right {
    flex-direction: column;
    gap: 16px;
  }

  .grow__s1 .grow__partners {
    padding-top: 30px;
  }

  .grow__partners__container {
    max-width: calc(100% - 52px);
  }

  .grow__partners__list-wrapper {
    display: flex;
    overflow: hidden;
  }

  ul.grow__partners__list {
    animation: marquee 20s linear infinite;
    gap: 0 !important;
    height: 80px;
    justify-content: flex-start;
    margin: 0;
    min-width: fit-content;
    padding: 0;
    flex-shrink: 0;
  }

  .grow__partners__list--duplicate {
    display: flex !important;
    animation: marquee 20s linear infinite;
    gap: 0 !important;
    height: 80px;
    justify-content: flex-start;
    margin-top: 0;
    min-width: fit-content;
    padding: 0;
    flex-shrink: 0;
  }

  .grow__partners__item {
    padding: 0 16px;
  }

  .gs__container {
    max-width: calc(100% - 52px);
  }

  .gs__hero {
    padding: 40px 0 60px;
  }

  .gs__hero h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .gs__callout__title {
    font-size: 16px;
    line-height: 1.15;
  }

  .gs__donate {
    margin-top: 40px;
    padding: 20px 0 24px;
  }

  .gs__donate__grid {
    margin-top: 20px;
  }

  .mobile-mt-3 {
    margin-top: 12px;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }
}
