﻿/*-------Impact Section-------*/
.impact-container {
  display: flex;
  padding: 80px 96px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.impact-heading {
  align-self: stretch;
  color: #101828;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.impact-videos-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.impact-videos-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  align-self: stretch;
}
.impact-videos-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .impact-videos-wrapper {
    grid-template-columns: 1fr;
  }
}

.impact-video-card {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
}

.impact-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111; /* fallback while image loads */
  background-size: cover;
  background-position: center;
}

.impact-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.impact-play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(2px);
}

.impact-meta {
  padding: 12px 4px 0;
}
.impact-title {
  margin: 0;
  font-weight: 700;
}
.impact-sub {
  margin: 6px 0 0;
  opacity: 0.75;
}

/* Modal */
.impact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.impact-modal.is-open {
  display: block;
}

.impact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.impact-modal-panel {
  position: relative;
  width: min(920px, 92vw);
  margin: 8vh auto 0;
  background: #0b0b0b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
}

.impact-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.impact-modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.impact-modal-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 1024px) {
  .impact-container {
  padding: 80px 32px;
}
}
/*-------News and Camps Section-------*/
.svn-rnc-container {
  /* display: flex; */
  padding: 80px 96px;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 48px;
  display: grid;
  grid-template-columns: 50% 50%;
}

.svn-rnc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}

.svn-rnc-left .heading-box,
.svn-rnc-right .heading-box {
  display: flex;
  padding: 0 0;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  align-self: center;
}

.svn-rnc-left .heading-box .subheading-heading,
.svn-rnc-right .heading-box .subheading-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.svn-rnc-left .heading-box .subheading-heading p:first-child,
.svn-rnc-right .heading-box .subheading-heading p:first-child {
  align-self: stretch;
  color: #00a985;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.svn-rnc-left .heading-box .subheading-heading p:nth-child(2),
.svn-rnc-right .heading-box .subheading-heading p:nth-child(2) {
  align-self: stretch;
  color: #101828;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.rn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
}
.rc-box,
.rn-box {
  min-height: 548px;
}
.rn-card {
  display: flex;
  min-width: 320px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 64px;
  border: 1px solid #eaecf0;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.rn-thumbnail {
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 40px;
}

.rn-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 40px;
}

.rn-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.rn-tag-title-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.rn-tag {
  display: flex;
  padding: 4px 12px;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
}

.rn-tag a {
  color: #344054;
  text-align: center;
  font-family: "MavenPro-Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.rn-title-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.rn-title-desc .title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.rn-title-desc .title > a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;

  /* flex: 1 0 0; */
  color: #101828;
  font-family: "MavenPro-Semibold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.rn-title-desc .title .redirect {
  display: flex;
  padding-top: 4px;
  flex-direction: column;
  align-items: flex-start;
}
.rn-title-desc .title .redirect img {
  width: 24px;
  height: 24px;
}
.rn-title-desc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  color: #475467;
  text-overflow: ellipsis;
  font-family: "MavenPro-Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.rn-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rn-avatar img {
  width: 40px;
  height: 40px;
}

.rn-avatar .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rn-avatar .text-box p:first-child {
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.rn-avatar .text-box p:last-child {
  color: #475467;
  font-family: "MavenPro-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.svn-rnc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}
.rc-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
}
.rc-card {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 64px;
  border: 1px solid #eaecf0;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.rc-thumbnail {
  max-width: 384px;
  max-height: 220px;
}
.rc-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 40px;
  object-fit: contain;
}

.rc-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
}

.rc-text-box .title-redirect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.rc-text-box .title-redirect > p {
  align-self: stretch;
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.rc-text-box .title-redirect .redirect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #015888;
  font-family: "MavenPro-SemiBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.rc-text-box .title-redirect .redirect a img {
  width: 20px;
  height: 20px;
}
.rc-progress {
  display: flex;
  padding: 0px 0;
  padding-top: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
}

.rc-progress-bar {
  position: relative;
  height: 8px;
  border-radius: 8px;
  width: 100%;
  background: white;
  overflow: hidden;
}

.rc-progress-bg {
  position: absolute;
  inset: 0;
  background: #eaecf0;
  border-radius: inherit;
}

.rc-progress-fg {
  position: absolute;
  inset: 0;
  background: #006ba6;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  width: 100% !important;
  will-change: transform;
}
.rc-funding-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.rc-funding-info .rc-funding-info-item:first-child span {
  color: #344054;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
.rc-funding-info .rc-funding-info-item:nth-child(2) span {
  color: #667085;
  text-align: center;
  font-family: "MavenPro-Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.rc-progress.animate .rc-progress-fg {
  animation: rcFill 1200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.rc-progress.animate .rc-progress-fg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 14px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  opacity: 0.35;
}

@keyframes rcFill {
  to {
    transform: scaleX(calc(var(--p, 0) / 100));
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-progress.animate .rc-progress-fg {
    animation: none;
    transform: scaleX(calc(var(--p, 0) / 100));
  }
}

#svn-rn-slider,
#svn-rc-slider {
  display: none;
}

.svn-rnc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}

#svn-rn-slider,
#svn-rc-slider {
  display: block;
  width: 100%;
}
.custom-arrows {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  bottom: -20%;
  left: 0px;
  width: 100%;
}
.latest-news-splide .custom-arrows {
  bottom: -16%;
}
.related-vids-splide .custom-arrows {
  bottom: -30%;
}
#svn-rn-prev,
#svn-rn-next,
#svn-rc-prev,
#svn-rc-next {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  border: 1px solid #d0d5dd;
  background-color: #fff;
}
#svn-rn-prev img,
#svn-rn-next img,
#svn-rc-prev img,
#svn-rc-next img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .svn-rnc-container {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    gap: 128px;
  }

  .rn-box,
  .rc-box {
    display: none;
  }
  .rn-card {
    min-width: unset;
    max-width: 300px;
    margin: 0 auto;
  }
  .rc-card {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 64px;
    border: 1px solid #eaecf0;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
}
/*-------Appeals Section-------*/
.svn-appeals {
  display: flex;
  padding: 80px 96px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
}

.svn-appeals-header {
  display: flex;
  padding: 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.svn-appeals-header .subheading-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.svn-appeals-header .subheading-heading p:first-child {
  align-self: stretch;
  color: #00a985;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.svn-appeals-header .subheading-heading p:nth-child(2) {
  align-self: stretch;
  color: #101828;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.appeal-card-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.appeal-card-box .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-self: stretch;
}
.appeal-card-box .bot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-self: stretch;
}
.appeal-card {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
}
.appeal-card img {
  width: 100%;
  height: auto;
}
.appeal-card .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  position: absolute;
  bottom: 32px;
}
.appeal-card .text-box a {
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.96px;
}
.appeal-card img:nth-child(2) {
  display: none;
}
@media (max-width: 1024px) {
  .svn-appeals {
    padding: 80px 32px;
  }
  .appeal-card-box .top-row,
  .appeal-card-box .bot-row {
    grid-template-columns: 1fr;
  }
  .appeal-card .text-box a {
    font-size: 30px;
    line-height: 38px;
  }
  .appeal-card {
    min-height: 240px;
  }
  .appeal-card a img:first-child {
    display: none;
  }
  .appeal-card img:nth-child(2) {
    display: block;
  }
}

/*-------Infographics Section-------*/
.infographics-counter-container {
  display: flex;
  padding: 80px 96px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.infographics-counter-wrapper {
  display: flex;
  padding: 0 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.infographics-counter-box {
  display: flex;
  padding: 64px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 64px 32px;
  align-self: stretch;
  flex-wrap: wrap;
  border-radius: 64px;
  background: #00446a;
  position: relative;
  overflow: hidden;
}

.infographic-item {
  display: flex;
  /* min-width: 240px; */
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  z-index: 1;
}

.infographic-item .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.infographic-item .text-box p:first-child {
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -1.2px;
}

.infographic-item .text-box p:nth-child(2) {
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-family: "MavenPro-SemiBold";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.infographics-counter-box .deco-img-box {
  width: 700.019px;
  height: 987.309px;
  position: absolute;
  right: 59.574px;
  bottom: -512.309px;
  opacity: 0.7;
  mix-blend-mode: luminosity;
  gap: 16px;
  display: flex;
}

.infographics-counter-box .deco-img-box .moving-column {
  display: flex;
  width: 219.975px;
  height: 950.294px;
  transform: rotate(0.087deg);
  flex-direction: column;
  align-items: flex-start;
  gap: 19.802px;
}

.infographics-counter-box .deco-img-box .moving-column img {
  width: 219.976px;
  height: 219.976px;
  flex-shrink: 0;
}
.infographics-counter-box .deco-img-box .moving-column {
  overflow: hidden;
  position: relative;
}

.infographics-counter-box .deco-img-box .moving-track {
  display: flex;
  flex-direction: column;
  gap: 19.802px;
  will-change: transform;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-1 * (219.976px + 19.802px) * 3));
  }
}

@keyframes floatDown {
  from {
    transform: translateY(calc(-1 * (219.976px + 19.802px) * 3));
  }
  to {
    transform: translateY(0);
  }
}

.infographics-counter-box .deco-img-box .moving-column.up .moving-track {
  animation: floatUp 10s linear infinite;
}

.infographics-counter-box .deco-img-box .moving-column.down .moving-track {
  animation: floatDown 10s linear infinite;
}

.infographics-counter-box
  .deco-img-box
  .moving-column:nth-child(1)
  .moving-track {
  animation-duration: 11s;
}
.infographics-counter-box
  .deco-img-box
  .moving-column:nth-child(2)
  .moving-track {
  animation-duration: 10s;
}
.infographics-counter-box
  .deco-img-box
  .moving-column:nth-child(3)
  .moving-track {
  animation-duration: 12s;
}

@media (prefers-reduced-motion: reduce) {
  .infographics-counter-box .deco-img-box .moving-track {
    animation: none !important;
  }
}

@media (max-width: 542px) {
  .infographics-counter-container {
    padding: 80px 32px;
  }
  .infographics-counter-box .deco-img-box {
    width: 700.019px;
    height: 1000.309px;
    position: absolute;
    right: -80.574px;
    bottom: -50.309px;
    opacity: 0.7;
    mix-blend-mode: luminosity;
    gap: 16px;
    display: flex;
  }
  .infographics-counter-box .deco-img-box .moving-column.up .moving-track {
    animation: none;
  }
  .infographics-counter-box .deco-img-box .moving-column.down .moving-track {
    animation: none;
  }
}
@media (min-width: 1728px) {
  .lg-hide {
    display: none;
  }
}
@media (max-width: 1280) {
  .md-hide {
    display: none;
  }
}
@media (max-width: 542px) {
  .sm-hide {
    display: none;
  }
}
