
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

#newhome {
  --card-radius: 4.55% / 3.5%;
  --card-edge: hsl(47, 100%, 78%);
  --card-back: hsl(205, 100%, 25%);
  --card-glow: hsl(93, 100%, 69%);
  --sunpillar-1: hsl(2, 100%, 73%);
  --sunpillar-2: hsl(53, 100%, 69%);
  --sunpillar-3: hsl(93, 100%, 69%);
  --sunpillar-4: hsl(176, 100%, 76%);
  --sunpillar-5: hsl(228, 100%, 74%);
  --sunpillar-6: hsl(283, 100%, 73%);
  --sunpillar-clr-1: var(--sunpillar-1);
  --sunpillar-clr-2: var(--sunpillar-2);
  --sunpillar-clr-3: var(--sunpillar-3);
  --sunpillar-clr-4: var(--sunpillar-4);
  --sunpillar-clr-5: var(--sunpillar-5);
  --sunpillar-clr-6: var(--sunpillar-6);
  /* ---- interaction state defaults ---- */
  --pointer-x: 50%;
  --pointer-y: 50%;
  --background-x: 50%;
  --background-y: 50%;
  --pointer-from-center: 0;
  --pointer-from-top: 0.5;
  --pointer-from-left: 0.5;
  --card-opacity: 0;
  --card-scale: 1;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --translate-x: 0px;
  --translate-y: 0px;
  /* glow on hover */
  /* ============================================================
     SHINE LAYER
     Uses mask + foil background images set as inline CSS vars.
     blend-mode: color-dodge makes the rainbow visible only over
     non-black regions of the underlying card art.
  ============================================================ */
  /* Before/after use rotated color order for layered rainbow depth */
  /* ============================================================
     MASKING
     The mask image (a card-shaped stencil) controls which pixels
     of .card__shine are visible — revealing foil only where the
     card has etched/holographic regions.
  ============================================================ */
  /* ============================================================
     VSTAR SHINE EFFECT
     Three-layer gradient stack simulating real holofoil:
     1. Foil texture image
     2. Repeating rainbow "sunpillar" strips
     3. Angled metallic glint lines
     4. Radial shadow from pointer position
  ============================================================ */
  /* ============================================================
     GLARE LAYER
     A radial gradient spotlight that follows the mouse position.
     overlay blend mode makes it brighten/darken the card art.
  ============================================================ */
}
#newhome .card-scene {
  perspective: 600px;
  width: 250px;
  height: 150px;
}
#newhome .holocard {
  transform: translate3d(0, 0, 0.01px);
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 2;
}
#newhome .holocard, #newhome .card__rotator {
  aspect-ratio: var(--card-aspect);
  border-radius: var(--card-radius);
}
#newhome .card__translater {
  display: grid;
  perspective: 600px;
  will-change: transform;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: translate3d(var(--translate-x), var(--translate-y), 0) scale(var(--card-scale));
  transition: transform 0.08s ease-out;
}
#newhome .card__rotator {
  display: grid;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(var(--rotate-x)) rotateX(var(--rotate-y));
  transition: transform 0.08s ease-out, box-shadow 0.3s ease;
  cursor: pointer;
}
#newhome .card__rotator * {
  width: 100%;
  display: grid;
  grid-area: 1/1;
  aspect-ratio: var(--card-aspect);
  border-radius: var(--card-radius);
  overflow: hidden;
  pointer-events: none;
}
#newhome .holocard.active .card__rotator {
  box-shadow: 0 0 3px -1px white, 0 0 3px 1px var(--card-edge), 0 0 8px 2px var(--card-glow), 0px 10px 20px -5px var(--color-box-azolla-shadow), 0 0 40px -30px var(--card-glow), 0 0 50px -20px var(--card-glow);
}
#newhome .card__rotator {
  box-shadow: 0 0 3px -1px transparent, 0 0 2px 1px transparent, 0 0 5px 0px transparent, 0px 10px 20px -5px var(--color-box-azolla-shadow), 0 2px 15px -5px var(--color-box-azolla-shadow), 0 0 20px 0px transparent;
}
#newhome .card__front {
  transform: translate3d(0, 0, 0.01px);
}
#newhome .card__front img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--card-radius);
}
#newhome .card__shine {
  transform: translateZ(1px);
  z-index: 3;
  background-image: var(--foil);
  background-size: var(--imgsize, cover);
  background-position: center;
  filter: brightness(0.85) contrast(2.75) saturate(0.65);
  mix-blend-mode: color-dodge;
  opacity: var(--card-opacity);
}
#newhome .card__shine::before,
#newhome .card__shine::after {
  --sunpillar-clr-1: var(--sunpillar-5);
  --sunpillar-clr-2: var(--sunpillar-6);
  --sunpillar-clr-3: var(--sunpillar-1);
  --sunpillar-clr-4: var(--sunpillar-2);
  --sunpillar-clr-5: var(--sunpillar-3);
  --sunpillar-clr-6: var(--sunpillar-4);
  content: "";
  grid-area: 1/1;
  transform: translateZ(1px);
  border-radius: var(--card-radius);
}
#newhome .card__shine::after {
  --sunpillar-clr-1: var(--sunpillar-6);
  --sunpillar-clr-2: var(--sunpillar-1);
  --sunpillar-clr-3: var(--sunpillar-2);
  --sunpillar-clr-4: var(--sunpillar-3);
  --sunpillar-clr-5: var(--sunpillar-4);
  --sunpillar-clr-6: var(--sunpillar-5);
  transform: translateZ(1.2px);
}
#newhome .holocard.masked .card__shine,
#newhome .holocard.masked .card__shine::before,
#newhome .holocard.masked .card__shine::after {
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center center;
  mask-position: center center;
}
#newhome .holocard[data-rarity="rare holo vstar"] .card__shine,
#newhome .holocard[data-rarity="rare holo vstar"] .card__shine::after {
  --space: 5%;
  --angle: 133deg;
  --imgsize: cover;
  background-image: var(--foil), repeating-linear-gradient(0deg, var(--sunpillar-clr-1) calc(var(--space) * 1), var(--sunpillar-clr-2) calc(var(--space) * 2), var(--sunpillar-clr-3) calc(var(--space) * 3), var(--sunpillar-clr-4) calc(var(--space) * 4), var(--sunpillar-clr-5) calc(var(--space) * 5), var(--sunpillar-clr-6) calc(var(--space) * 6), var(--sunpillar-clr-1) calc(var(--space) * 7)), repeating-linear-gradient(var(--angle), #0e152e 0%, hsl(180, 10%, 60%) 3.8%, hsl(180, 29%, 66%) 4.5%, hsl(180, 10%, 60%) 5.2%, #0e152e 10%, #0e152e 12%), radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y), hsla(0, 0%, 0%, 0.1) 12%, hsla(0, 0%, 0%, 0.15) 20%, hsla(0, 0%, 0%, 0.25) 120%);
  background-blend-mode: soft-light, hue, hard-light;
  /*background-size: var(--imgsize), 200% 700%, 300% 100%, 200% 100%;*/
  background-size: var(--imgsize), 250% 700%, 350% 100%, 250% 100%;
  background-position: center center, 0% var(--background-y), var(--background-x) var(--background-y), var(--background-x) var(--background-y);
  filter: brightness(calc(var(--pointer-from-center) * 0.75 + 0.25)) contrast(2) saturate(1.25);
}
#newhome .holocard[data-rarity="rare holo vstar"] .card__shine::after {
  background-size: var(--imgsize), 200% 400%, 195% 100%, 200% 100%;
  /*  background-position:
      center center,
      0% var(--background-y),
      calc(var(--background-x) * -1) calc(var(--background-y) * -1),
      var(--background-x) var(--background-y);*/
  background-position: center center, 0% var(--background-y), calc(var(--background-x) * -1 - 25%) calc(var(--background-y) * -1 - 25%), var(--background-x) var(--background-y);
  filter: brightness(calc(var(--pointer-from-center) * 0.75 + 0.5)) contrast(1.5) saturate(1.5);
  mix-blend-mode: exclusion;
}
#newhome .holocard[data-rarity="rare holo vstar"] .card__shine::before {
  background-image: radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y), hsla(190, 7%, 80%, 0.75) 0%, hsla(260, 7%, 50%, 0.25) 45%, hsl(310, 7%, 50%) 120%);
  mix-blend-mode: hard-light;
  z-index: 2;
  opacity: 0.8;
}
#newhome .card__glare {
  transform: translateZ(1.41px);
  background-image: radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y), hsla(0, 0%, 100%, 0.8) 10%, hsla(0, 0%, 100%, 0.65) 20%, hsla(0, 0%, 0%, 0.5) 90%);
  opacity: var(--card-opacity);
  mix-blend-mode: overlay;
}
#newhome .card[data-rarity="rare holo vstar"] .card__glare {
  filter: brightness(0.7) contrast(2);
  background-image: radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y), hsl(195, 90%, 90%) 5%, hsl(300, 3%, 60%) 60%, hsl(350, 0%, 15%) 150%);
  mix-blend-mode: hard-light;
  opacity: calc(var(--card-opacity) * var(--pointer-from-center) * 0.75);
}

#cards:hover > .hero-project-card::before {
  opacity: 1;
  transition-delay: 0.1s;
}

.hero-project-card {
  position: relative;
}
.hero-project-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  z-index: 1;
  transition: opacity 500ms ease;
  background-image: conic-gradient(from 0deg at var(--mouse-x) var(--mouse-y), #FFBD8C 0%, #FD8585 11%, #FD8585 15%, #F882FF 27%, #F882FF 31%, #8785FE 42%, #8785FE 46%, #9AFCFF 55%, #9AFCFF 59%, #99FD9C 70%, #99FD9C 74%, #FFFD84 87%, #FFFD84 91%, #FFBD8C 100%);
}
.hero-project-card .project-thumb-wrapper {
  position: relative;
  z-index: 2;
  border-radius: inherit;
}

body.dark_mode #newhome {
  --color-box-azolla-shadow: #000;
  --colorful-section-subheader: $colorTextLabel;
  --gradient-color-1: #14363E;
  --gradient-color-2: #0E1F18;
  --gradient-color-3: #144D55;
  --colorful-gradient-border: #12392F;
  --background-color-1: rgba(30, 60, 55, 0.85);
  --howitworks-card-bg: #141616;
  --howitworks-card-stroke: #12392F;
  --howitworks-card-title: #fff;
  --features-card-bg: #172327;
  --features-card-stroke: #12392F;
  --features-card-strong: #fff;
  --testimonials-bg: #0E1D21;
  --testimonials-bg-2: var(--testimonials-bg);
  --testimonial-card-bg: #0F2126;
  --testimonial-card-stroke: #12322E;
  --testimonial-button-color: #D4DDE2;
}

#newhome {
  --color-box-azolla-shadow: #ccc;
  --colorful-section-subheader: $colorTextLabel;
  --gradient-color-1: #175662;
  --gradient-color-2: #32614D;
  --gradient-color-3: #144D55;
  --colorful-gradient-border: #6bd7bc;
  --background-color-1: rgba(81, 124, 117, 0.85);
  --howitworks-card-bg: #FAFBF8;
  --howitworks-card-stroke: #D0D8AF;
  --howitworks-card-title: #0F2325;
  --features-card-bg: #FAFBF8;
  --features-card-stroke: #D3D6D3;
  --features-card-strong: #0F2325;
  --testimonials-bg: #fff;
  --testimonials-bg-2: #F3F5F1;
  --testimonial-card-bg: #fff;
  --testimonial-card-stroke: #BBE5DA;
  --testimonial-button-color: #666157;
  background-color: var(--color-bg);
}
#newhome .row {
  margin: 0;
}
#newhome .fluid-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
#newhome header.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 900px;
  background: #101010;
  height: 78vh;
  margin-bottom: 60px;
  top: -70px;
}
@media (min-width: 768px) {
  #newhome header.hero {
    height: 1110px;
    margin-bottom: 0px;
  }
}
#newhome header.hero .hero-bg-overlay {
  opacity: 0.2;
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100vh;
  min-height: 1100px;
  --hdr-gradient: linear-gradient(
    to top in oklab,
    oklch(80% 0.30 170 / 0%) 47%,
    oklch(33% 0.29 187 / 23%) 98%
  );
  --sdr-gradient: linear-gradient(to top, #00f49f00 47%, #003431 98%);
  background: var(--hdr-gradient);
}
@media (min-width: 768px) {
  #newhome header.hero .hero-bg-overlay {
    height: 100%;
  }
}
#newhome header.hero .hero-bg-overlay-2 {
  opacity: 0.8;
  z-index: 5;
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 28, 19, 0) 92%, rgba(16, 26, 27, 0.5) 100%);
  height: 100vh;
  min-height: 1100px;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-bg-overlay-2 {
    height: 100%;
  }
}
#newhome header.hero .hero-bg {
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 1100px;
  z-index: 4;
  opacity: 0.72;
  height: 100vh;
  background: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/bigstarbg.webp");
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-bg {
    top: 0px;
    left: 0;
    width: auto;
    height: 100%;
  }
}
#newhome header.hero .hero-bg-cutoff {
  height: 120vh;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-bg-cutoff {
    height: 1180px;
    width: 110%;
  }
}
#newhome header.hero .hero-title {
  position: absolute;
  width: 100%;
  z-index: 14;
  text-align: center;
  display: flex;
  flex-direction: column;
  top: 40px;
  padding: 24px 0 0 0;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-title {
    top: clamp(90px, 10vh, 200px);
  }
  #newhome header.hero .hero-title .width-auto {
    width: auto;
  }
}
#newhome header.hero .hero-title h1 {
  font-family: "DentonMedium";
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.8px;
  color: #FFF;
  font-size: 33px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-title h1 {
    text-align: center;
    letter-spacing: 1px;
    margin: 0 auto;
    font-size: 51px;
  }
}
#newhome header.hero .hero-title .hero-tagline-row p {
  margin: 0;
  padding: 0 20px;
  position: relative;
  color: #b7edd9;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  #newhome header.hero .hero-title .hero-tagline-row p {
    margin: 10px auto;
    font-size: 23px;
    width: 64vw;
  }
}
#newhome header.hero .hero-title .hero-tagline-row .button-row {
  display: flex;
  margin-top: 20px;
  gap: 15px;
  position: relative;
  align-content: center;
  align-items: center;
  justify-content: center;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn {
  padding: 11px 20px;
  font-size: 16.5px;
  border-radius: 6px;
  transition-duration: 0.2s;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn-primary {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 0;
  background: linear-gradient(to right, #1DE498, #17A4C5);
  border: none;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, #10B777, #14B4A8);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn-primary:hover::before {
  opacity: 0;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .isolate {
  isolation: isolate;
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn-transparent {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgba(20, 20, 20, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
#newhome header.hero .hero-title .hero-tagline-row .button-row .btn-transparent:hover {
  color: #FFF;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition-duration: 0.2s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
#newhome header.hero .shader {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* to force GPU performance */
}
#newhome header.hero .shader__layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  height: 98%;
  background-size: 100%;
  min-height: 1100px;
}
#newhome header.hero .specular {
  mix-blend-mode: plus-lighter;
  height: 100%;
  background-attachment: fixed;
  transition-duration: 0.4s;
  display: none;
  --hdr-gradient: radial-gradient(
    farthest-corner circle at 84% 13% in oklab,
    oklch(80% 0.38 167) 1% 21%,
    oklch(80% 0.46 212) 32%,
    oklch(84% 0.46 270) 43%,
    53%,
    oklch(89% 0.36 12) 60%,
    oklch(80% 0.41 159) 84% 96%
  );
  background-image: var(--hdr-gradient);
}
#newhome header.hero .mask {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  mix-blend-mode: multiply;
  background-position: center center;
  background-image: url(https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/mask_multi.webp);
  filter: invert(1);
}
@media (min-width: 768px) {
  #newhome header.hero .mask {
    top: 0px;
    left: 0;
    width: auto;
    height: 100%;
  }
}
#newhome section.hero-project-cards {
  --gap: 1.8rem;
  position: relative;
  min-height: 400px;
  /* Responsive adjustments */
}
@media (min-width: 768px) {
  #newhome section.hero-project-cards {
    top: 50px;
    min-height: 442px;
  }
}
#newhome section.hero-project-cards .banner-card {
  border-radius: 8px;
  background-size: cover;
  display: inline-block;
}
#newhome section.hero-project-cards .col {
  width: auto;
}
@media (min-width: 768px) {
  #newhome section.hero-project-cards .col {
    width: 100%;
  }
}
#newhome section.hero-project-cards .big-card {
  width: 491px;
  height: 290px;
}
#newhome section.hero-project-cards .new-marky {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
}
#newhome section.hero-project-cards .new-marky-content {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  min-width: 100%;
}
#newhome section.hero-project-cards .new-marky-content .col {
  width: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.hero-project-cards .new-marky-content .col {
    width: 100%;
  }
}
#newhome section.hero-project-cards .new-marky-content .col-row {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#newhome section.hero-project-cards .marqueebg {
  background: linear-gradient(to bottom, rgba(15, 17, 16, 0) 0%, rgb(15, 17, 16) 30%, rgb(13, 21, 20) 70%, rgba(15, 17, 16, 0) 100%);
  height: 680px;
  width: 100vw;
  position: absolute;
  z-index: -1;
  top: -110px;
}
#newhome section.hero-project-cards .dark-project-card {
  max-width: 270px;
  text-align: left;
  background: #0D1D1C;
}
#newhome section.hero-project-cards .dark-project-card.project-card {
  border: #0D1D1C;
}
#newhome section.hero-project-cards .dark-project-card.project-card .project-card-content, #newhome section.hero-project-cards .dark-project-card.project-card .project-card-footer {
  background: #0D1D1C !important;
}
#newhome section.hero-project-cards .dark-project-card.project-card .project-card-content .progress, #newhome section.hero-project-cards .dark-project-card.project-card .project-card-footer .progress {
  background-color: transparent;
}
#newhome section.hero-project-cards .dark-project-card.project-card .project-card-content small, #newhome section.hero-project-cards .dark-project-card.project-card .project-card-footer small {
  color: #D4D9DB;
}
#newhome section.hero-project-cards .dark-project-card.project-card .project-card-footer .progress .bar {
  background-color: #0dc981;
}
#newhome section.hero-project-cards .dark-project-card h3, #newhome section.hero-project-cards .dark-project-card h4, #newhome section.hero-project-cards .dark-project-card a, #newhome section.hero-project-cards .dark-project-card p {
  color: #FFF;
}
#newhome section.hero-project-cards .dark-project-card .project-title {
  font-size: 13px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.hero-project-cards .dark-project-card p {
  font-size: 14px;
  line-height: 19px;
  color: var(--color-text-muted);
}
#newhome section.hero-project-cards .dark-project-card .researcher .researcher-info {
  width: 185px;
}
#newhome section.hero-project-cards .banner:hover > .hero-project-card::before,
#newhome section.hero-project-cards .new-marky-content:hover > .hero-project-card::before {
  opacity: 1;
  transition-delay: 0.1s;
}
#newhome section.hero-project-cards .hero-project-card {
  width: 320px;
  position: relative;
  border-radius: 12px;
  text-align: left;
}
#newhome section.hero-project-cards .hero-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 200ms ease;
  background: conic-gradient(from 0deg at var(--mouse-x, 50%) var(--mouse-y, 50%), #fFBD8C 0%, #99FDbC 11%, #97f5FE 42%, #9AFCFF 55%, #99FD9C 70%, #FFFD84 87%);
  -webkit-mask: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent 80%) intersect, linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor, xor;
  -webkit-mask: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent 80%), linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent 80%), linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
  -webkit-mask-composite: source-in, xor, xor;
          mask-composite: intersect, exclude;
}
.banner:hover #newhome section.hero-project-cards .hero-project-card::before, .new-marky-content:hover #newhome section.hero-project-cards .hero-project-card::before {
  opacity: 1;
}
#newhome section.hero-project-cards .hero-project-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 189, 140, 0.12), transparent 80%);
  filter: blur(20px);
}
.banner:hover #newhome section.hero-project-cards .hero-project-card::before, .new-marky-content:hover #newhome section.hero-project-cards .hero-project-card::before {
  opacity: 1;
}
.banner:hover #newhome section.hero-project-cards .hero-project-card::after, .new-marky-content:hover #newhome section.hero-project-cards .hero-project-card::after {
  opacity: 0.6;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb {
  position: relative;
  z-index: 2;
  height: 360px;
  width: 320px;
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb:hover .project-content {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.7s;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .project-title h3 {
  font-family: "Copernicus";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0px 16px;
  color: #FFF;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.3px;
  vertical-align: text-bottom;
  margin: 0;
  cursor: pointer;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .project-card-footer {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .project-content {
  display: flex;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s ease;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
  border-radius: 0 0 11px 11px;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .project-content a:hover {
  opacity: 1 !important;
  transition-duration: 0.2s;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .project-content a:hover h3 {
  text-shadow: 0px 0px 3px rgba(23, 23, 23, 0.6);
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .researcher {
  padding: 10px 16px 20px 16px;
  display: flex;
  gap: 10px;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .researcher p, #newhome section.hero-project-cards .hero-project-card .project-thumb .researcher a, #newhome section.hero-project-cards .hero-project-card .project-thumb .researcher span {
  color: #d4dde2;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .researcher img {
  width: 40px;
  height: 40px;
  position: relative;
  top: 1px;
  background-color: #9Ba5aa;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb .researcher-institution {
  font-size: 15px;
  line-height: 19px;
  height: 18px;
  background: red;
  text-overflow: ellipsis;
  width: 80%;
  word-break: break-word;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb video.hero-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 12px;
}
#newhome section.hero-project-cards .hero-project-card .project-thumb video.hero-card-video.loaded {
  opacity: 1;
}
#newhome section.hero-project-cards .hero-gradient {
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #newhome section.hero-project-cards .hero-gradient {
    height: 85%;
  }
}
#newhome section.hero-project-cards .hero-gradient.left {
  left: 0;
  background: linear-gradient(to right, rgb(14, 24, 28), transparent);
}
#newhome section.hero-project-cards .hero-gradient.right {
  right: 0;
  background: linear-gradient(to left, rgb(14, 24, 28), transparent);
}
@media (min-width: 768px) {
  #newhome section.hero-project-cards .hero-gradient.right {
    right: 0;
  }
}
#newhome section.hero-project-cards .hero-carousel-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 24px;
  padding: 0;
  pointer-events: auto;
  z-index: 11;
}
#newhome section.hero-project-cards .hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}
#newhome section.hero-project-cards .hero-carousel-btn:active {
  transform: scale(0.95);
}
@media (max-width: 1024px) {
  #newhome section.hero-project-cards .hero-gradient {
    width: 100px;
  }
  #newhome section.hero-project-cards .hero-carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #newhome section.hero-project-cards .hero-gradient {
    width: 60px;
  }
  #newhome section.hero-project-cards .hero-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
@-webkit-keyframes hero-marquee {
  from {
    transform: translateX(var(--start-offset, 0));
  }
  to {
    transform: translateX(var(--end-offset, -100%));
  }
}
@keyframes hero-marquee {
  from {
    transform: translateX(var(--start-offset, 0));
  }
  to {
    transform: translateX(var(--end-offset, -100%));
  }
}
#newhome section.hero-subfooter {
  display: none;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 768px) {
  #newhome section.hero-subfooter {
    margin: 110px 0 0 0;
    display: block;
  }
}
#newhome section.hero-subfooter h2 {
  color: #4a5658;
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 400;
}
#newhome section.hero-subfooter p {
  font-size: 27px;
}
#newhome section.hero-subfooter p.sublabel {
  color: #FFF;
  font-size: 17px;
}
#newhome section.hero-subfooter .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.hero-subfooter .flex {
    flex-direction: row;
  }
}
#newhome section.hero-subfooter .copy-container {
  min-width: 470px;
  padding-right: 32px;
  text-align: left;
}
#newhome section.hero-subfooter .stats-container {
  text-align: left;
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  width: -webkit-fill-available;
  align-items: center;
}
#newhome section.hero-subfooter .stats-container .stat {
  gap: 12px;
}
#newhome section.hero-subfooter .stats-container .number {
  font-size: 22px;
  color: #b7edd9;
  margin: 0;
  padding: 0;
}
#newhome section.hero-subfooter .stats-container h4 {
  line-height: 24px;
}
#newhome section.hero-subfooter .stats-container p {
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #d4dde2;
}
#newhome section.gradient {
  padding-bottom: 60px;
  margin-top: -130px;
  background: linear-gradient(rgb(234, 244, 255), rgb(255, 255, 255));
  height: 120px;
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.gradient {
    padding-top: 90px;
    padding-bottom: 30px;
  }
}
#newhome section.gradient h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  letter-spacing: -0.1px;
  color: #9Ba5aa;
}
#newhome section.gradient h4 {
  color: #z124A5B;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
#newhome section.colorful-project-card {
  /* Main reef card */
  /* Side cards — all start centered behind the main card, then fly out */
  /* Sidecard 1 */
  /* Sidecard 2 */
  /* Sidecard 3 — This week stats */
}
#newhome section.colorful-project-card .bg {
  min-height: 700px;
  width: 97%;
  padding: 0;
  z-index: 3;
  top: 0;
  margin: 120px auto !important;
  background: linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-2)) padding-box, linear-gradient(to bottom, var(--gradient-color-3), var(--colorful-gradient-border)) border-box;
  border: 2px solid transparent;
  border-radius: 22px 22px 0 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .bg {
    min-height: 400px;
  }
}
#newhome section.colorful-project-card .bg-overlay {
  background: linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-2));
  opacity: 0.8;
  z-index: 2;
  position: absolute;
  width: 100%;
  border-radius: 22px 22px 0 0;
  height: 100%;
  height: -webkit-fill-available;
}
#newhome section.colorful-project-card .bg-content {
  padding: 25px 25px 0 25px;
  z-index: 3;
  position: relative;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .bg-content {
    padding: 25px;
  }
}
#newhome section.colorful-project-card .subheader {
  padding: 80px 0 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .subheader {
    padding: 100px 0 40px 0;
  }
}
#newhome section.colorful-project-card .subheader p {
  color: var(--color-text-body);
  font-weight: 300;
  margin: 0;
  font-size: 22px;
}
#newhome section.colorful-project-card .subheader h2 {
  color: #FFF;
}
#newhome section.colorful-project-card .subheader p {
  color: #b7edd9;
}
#newhome section.colorful-project-card .section-subheader {
  color: #91CAC5;
  text-align: center;
}
#newhome section.colorful-project-card .flex {
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .flex {
    flex-direction: row;
  }
}
#newhome section.colorful-project-card .btn-primary {
  font-weight: 600;
  padding: 7px 14px;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .description {
    align-self: flex-end;
    padding-bottom: 120px;
  }
}
#newhome section.colorful-project-card .description p {
  color: var(--color-text-body);
  font-size: 21px;
}
#newhome section.colorful-project-card .cards-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 420px;
  top: -1px;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .cards-stage {
    top: 63px;
  }
}
#newhome section.colorful-project-card .reef-card {
  position: relative;
  padding: 0px;
  max-width: 90vw;
  background: #fff;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -3px 33px -11px rgba(3, 217, 174, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(80px);
  z-index: 2;
}
@media (min-width: 768px) {
  #newhome section.colorful-project-card .reef-card {
    width: 470px;
    top: 2px;
  }
}
#newhome section.colorful-project-card .reef-card-body {
  padding: 28px 28px 20px;
  text-align: left;
}
#newhome section.colorful-project-card .reef-card-body h3 {
  font-family: "Copernicus", Times;
  font-size: 18px;
  line-height: 24px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 3px;
}
#newhome section.colorful-project-card .reef-card-body .author {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
#newhome section.colorful-project-card .reef-card-body .location {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}
#newhome section.colorful-project-card .reef-card-body .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
#newhome section.colorful-project-card .reef-card-img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 7px 7px 0 0;
  top: 22px;
  position: relative;
}
#newhome section.colorful-project-card .side-card {
  position: absolute;
  border-radius: 14px;
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden; /* prevent flash before JS positions them */
  z-index: 1; /* behind reef-card (z-index: 2) so they emerge from behind */
}
#newhome section.colorful-project-card .sidecard-1 {
  left: 0px;
  bottom: 100px;
  background: var(--background-color-1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  width: 180px;
  text-align: center;
}
#newhome section.colorful-project-card .sidecard-1 .avatar-wrap {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
#newhome section.colorful-project-card .sidecard-1 .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
#newhome section.colorful-project-card .sidecard-1 .star {
  color: #FFCB5B;
  top: -6px;
  right: -10px;
  transform: scale(0) rotate(-30deg);
}
#newhome section.colorful-project-card .sidecard-1 .seedling {
  color: #189D63;
  top: 3px;
  right: 45px;
  transform: scale(0) rotate(-20deg);
}
#newhome section.colorful-project-card .sidecard-1 i.fa {
  position: absolute;
  font-size: 22px;
  opacity: 0;
}
#newhome section.colorful-project-card .sidecard-1 p {
  font-size: 15px;
  font-weight: 600;
  color: #e0f0e8;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.colorful-project-card .sidecard-2 {
  right: -20px;
  top: 30px;
  background: var(--background-color-1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  width: 200px;
}
#newhome section.colorful-project-card .sidecard-2 .card-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
  opacity: 0.8;
  margin: 8px 0 20px 0;
  font-weight: 600;
}
#newhome section.colorful-project-card .grant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(20px);
}
#newhome section.colorful-project-card .grant-item:last-child {
  margin-bottom: 0;
}
#newhome section.colorful-project-card .grant-name {
  font-size: 12px;
  font-weight: 600;
  color: #e0f0e8;
}
#newhome section.colorful-project-card .grant-meta {
  font-size: 10px;
  letter-spacing: 1.1px;
  color: rgba(200, 220, 210, 0.5);
  margin-top: 2px;
  position: relative;
  left: -10px;
}
#newhome section.colorful-project-card .scooch {
  left: -6px;
}
#newhome section.colorful-project-card .grant-bookmark {
  width: 22px;
  height: 22px;
  background: rgba(3, 217, 174, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03d9ae;
  font-size: 12px;
  flex-shrink: 0;
}
#newhome section.colorful-project-card .sidecard-3 {
  right: -20px;
  bottom: 20px;
  background: var(--background-color-1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  width: 210px;
  text-align: center;
}
#newhome section.colorful-project-card .sidecard-3 .card-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 600;
}
#newhome section.colorful-project-card .avatars-row {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
#newhome section.colorful-project-card .avatars-row .mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--background-color-1);
  margin-left: -6px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1 !important;
}
#newhome section.colorful-project-card .avatars-row .mini-avatar:first-child {
  margin-left: 0;
}
#newhome section.colorful-project-card .sidecard-3 .backers-text {
  font-size: 16px;
  font-weight: 700;
  color: #e0f0e8;
  margin-bottom: 6px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.colorful-project-card .sidecard-3 .stats-row {
  font-size: 11px;
  color: rgba(200, 220, 210, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
}
#newhome section.explainers {
  overflow: hidden;
}
#newhome section.explainers h3, #newhome section.explainers h4, #newhome section.explainers p {
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.explainers h3, #newhome section.explainers h4, #newhome section.explainers p {
    text-align: left;
  }
}
#newhome section.explainers h4.section-header {
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.explainers h4.section-header {
    text-align: left;
  }
}
#newhome section.explainers h4.section-header.text-center {
  text-align: center;
}
#newhome section.explainers .flex-row {
  display: flex;
}
@media (min-width: 768px) {
  #newhome section.explainers .flex-row {
    max-width: 1200px;
  }
}
@media (min-width: 768px) {
  #newhome section.explainers .full-container {
    margin: 90px 0 0 0;
  }
}
#newhome section.explainers #card-1 {
  padding: 2vw;
  overflow: visible;
  margin: 80px 0;
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-1 {
    display: flex;
    flex-direction: row;
    max-width: 980px;
    margin: 50px auto;
    min-height: 500px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  #newhome section.explainers #card-1 .explainer-container {
    flex: 0 0 50%;
    position: relative;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  #newhome section.explainers #card-1 .image-container {
    width: clamp(480px, 43vw, 820px);
    position: relative;
    transform: translateX(8vw);
  }
}
#newhome section.explainers #card-1 .image-container img {
  width: 94vw;
  border-radius: 6px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-1 .image-container img {
    min-height: 500px;
    max-height: 540px;
    -o-object-fit: cover;
       object-fit: cover;
    width: -webkit-fill-available;
    box-shadow: 0 0 4px -3px #000;
    border-radius: 10px;
    -o-object-position: right;
       object-position: right;
  }
}
#newhome section.explainers #card-2 {
  display: flex;
  flex-direction: column-reverse;
  overflow: visible;
  margin: 80px 0;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-2 {
    width: clamp(480px, 100vw, 1500px);
    flex-direction: row;
    max-width: 100vw;
    margin: 40px auto;
    min-height: 600px;
    flex-wrap: nowrap;
  }
}
#newhome section.explainers #card-2 .image-collage {
  flex: 0 0 auto;
  min-width: 500px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-2 .image-collage {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
#newhome section.explainers #card-2 .image-collage .row-1, #newhome section.explainers #card-2 .image-collage .row-2, #newhome section.explainers #card-2 .image-collage .row-3 {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-end;
  position: relative;
}
#newhome section.explainers #card-2 .image-collage .row-1 {
  width: clamp(510px, 45vw, 760px);
  left: -12px;
}
#newhome section.explainers #card-2 .image-collage .row-2 {
  width: clamp(480px, 35vw, 680px);
  left: -32px;
}
#newhome section.explainers #card-2 .image-collage .row-3 {
  width: clamp(540px, 42vw, 730px);
  left: -12px;
  align-items: flex-start;
}
#newhome section.explainers #card-2 .image-collage img {
  height: 160px;
  min-height: 200px;
  width: 50%;
  flex: 1 1 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#newhome section.explainers #card-2 .image-collage img.collage-image-1 {
  max-width: 210px;
  min-height: 130px;
}
#newhome section.explainers #card-2 .image-collage img.collage-image-2 {
  min-width: 190px;
  height: clamp(230px, 10vh, 330px);
}
#newhome section.explainers #card-2 .image-collage img.collage-image-3 {
  max-width: 200px;
  min-height: 130px;
  transform: scaleX(-1);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#newhome section.explainers #card-2 .image-collage img.collage-image-4 {
  max-width: 370px;
  min-height: 130px;
}
#newhome section.explainers #card-2 .image-collage img.collage-image-5 {
  max-width: 280px;
  min-height: 130px;
}
#newhome section.explainers #card-2 .image-collage img.collage-image-6 {
  width: clamp(100px, 40%, 300px);
  height: clamp(130px, 13vh, 180px);
}
@media (min-width: 768px) {
  #newhome section.explainers #card-2 .image-collage img {
    height: clamp(130px, 10vw, 160px);
  }
}
#newhome section.explainers #card-2 .explainer-container {
  flex: 1 1 auto;
  padding: 2vw;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-2 .explainer-container {
    flex: 1 1 50%;
    padding: 60px;
    max-width: 480px;
  }
}
@media (min-width: 2000px) {
  #newhome section.explainers #card-2 .image-collage img {
    height: 170px;
    max-width: 600px;
  }
}
#newhome section.explainers #card-3 {
  overflow: visible;
  margin: 80px 0;
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 {
    display: flex;
    flex-direction: row;
    max-width: 980px;
    margin: 0 auto;
    margin-top: 150px;
    min-height: 370px;
    padding: 0 2vw;
  }
}
#newhome section.explainers #card-3 .explainer-container {
  padding: 20px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .explainer-container {
    padding: 0;
    flex: 0 0 50%;
    position: relative;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .azolla-cards-container {
    height: 387px;
  }
}
#newhome section.explainers #card-3 .thumbnail-container {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .thumbnail-container {
    position: relative;
    left: 50px;
    width: 800px;
    margin-top: 0px;
  }
}
#newhome section.explainers #card-3 .thumbnail-container #azolla-project {
  width: 49vw;
  left: -12px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .thumbnail-container #azolla-project {
    width: 250px;
  }
}
#newhome section.explainers #card-3 .thumbnail-container #azolla-paper {
  height: 150px;
  width: 57vw;
  position: relative;
  z-index: 0;
  left: 178px;
  top: -190px;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .thumbnail-container #azolla-paper {
    width: 302px;
    left: 238px;
    height: 401px;
  }
}
#newhome section.explainers #card-3 .thumbnail-container .mini {
  color: #10B777;
  font-size: 14.5px;
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.explainers #card-3 .thumbnail-container .mini {
    margin: 2px -40px 0 0;
    text-align: right;
    font-size: 12.5px;
  }
}
#newhome section.explainers #card-3 .thumbnail-container .mini a {
  text-decoration: none;
}
@media (min-width: 1400px) {
  #newhome section.explainers #card-1 img {
    position: relative; /* leave absolute positioning */
    left: 52px;
    transform: none;
  }
}
#newhome section.explainers h3 {
  color: var(--color-text-body);
  font-weight: normal;
  font-size: 27px;
  margin: 18px 0 20px 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.explainers h4 {
  color: var(--color-text-label);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.explainers p {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-body);
  font-size: 22px;
}
#newhome section.explainers p a {
  color: #10B777;
  text-decoration: underline;
}
#newhome section.howitworks {
  margin: 120px 0 40px 0;
}
#newhome section.howitworks .section-subheader {
  color: var(--color-text-label);
}
#newhome section.howitworks .text-center {
  text-align: center;
}
#newhome section.howitworks h2 {
  width: 88vw;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #newhome section.howitworks h2 {
    width: clamp(290px, 70%, 780px);
  }
}
#newhome section.howitworks .flex-row {
  flex-direction: column;
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  #newhome section.howitworks .flex-row {
    flex-direction: row;
    padding: 0 14px;
  }
}
#newhome section.howitworks .card {
  height: 200px;
  margin: 0 30px;
  background: var(--howitworks-card-bg);
  border: 1px solid var(--howitworks-card-stroke);
  flex: 1 1 0;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #newhome section.howitworks .card {
    height: 280px;
    margin: 0;
  }
}
#newhome section.howitworks .card h4 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 15px;
  text-align: center;
  color: #1C7E62;
  text-align: left;
  font-size: 15px;
  margin: 0;
}
@media (min-width: 768px) {
  #newhome section.howitworks .card h4 {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-align: left;
  }
}
#newhome section.howitworks .card .title {
  color: var(--howitworks-card-title);
  font-size: 22px;
  line-height: 29px;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  #newhome section.howitworks .card .title {
    min-height: 90px;
  }
}
#newhome section.howitworks .card .description {
  color: var(--color-text-body);
  font-size: 17px;
}
#newhome section.howitworks .two {
  flex: 2 1 0;
}
#newhome section.howitworks p.muted {
  color: var(--color-text-muted);
}
#newhome section.howitworks .btn-primary {
  padding: 7px 14px;
  margin: 18px 0;
  font-size: 14.5px;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  #newhome section.howitworks .btn-primary {
    margin: 0 0 0 18px;
  }
}
#newhome section.features {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 90px 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--features-card-bg));
}
#newhome section.features .text-center {
  text-align: center;
}
#newhome section.features p.muted {
  color: #9Ba5aa;
}
#newhome section.features h2 {
  width: 88vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #newhome section.features h2 {
    width: clamp(290px, 70%, 780px);
  }
}
#newhome section.features .btn-outline {
  color: #1a2024;
  border-color: #D4D9DB;
}
#newhome section.features .col-md-12 {
  margin: 50px 0 0 0;
}
#newhome section.features .flex {
  gap: 25px;
  justify-content: flex-start;
  flex-flow: row wrap;
  margin: 30px 0;
}
@media (min-width: 768px) {
  #newhome section.features .flex {
    flex-flow: row nowrap;
  }
}
#newhome section.features .feature-card {
  width: 100%;
  height: 120px;
  background-color: var(--features-card-bg);
  border: 1px solid var(--features-card-stroke);
  border-radius: 7px;
  padding: 12px;
}
@media (min-width: 768px) {
  #newhome section.features .feature-card {
    width: 300px;
  }
}
#newhome section.features .feature-card.larger {
  height: 120px;
}
@media (min-width: 768px) {
  #newhome section.features .feature-card.larger {
    height: 340px;
  }
}
#newhome section.features .feature-card.larger .img {
  display: none;
}
@media (min-width: 768px) {
  #newhome section.features .feature-card.larger .img {
    display: block;
  }
}
#newhome section.features .feature-card .strong {
  font-weight: 600;
  margin: 0;
  color: var(--features-card-strong);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.features .feature-card p {
  color: var(--color-text-body);
  padding: 10px;
  margin: 0;
}
#newhome section.features .last-card {
  width: 100%;
  padding: 0 12px;
  min-height: 140px;
}
@media (min-width: 768px) {
  #newhome section.features .last-card {
    width: 300px;
  }
}
#newhome section.features .last-card p {
  color: var(--color-text-muted);
}
#newhome section.features .last-card .btn {
  font-weight: 600;
}
#newhome section.features .img-1 {
  background: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/screenbg1.webp");
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  width: -webkit-fill-available;
}
@media (min-width: 768px) {
  #newhome section.features .img-1 {
    height: 215px;
    width: 283px;
    border-radius: 10px;
  }
}
#newhome section.features .img-2 {
  background: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/screenbg2a.webp");
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  width: -webkit-fill-available;
}
@media (min-width: 768px) {
  #newhome section.features .img-2 {
    height: 215px;
    width: 283px;
    border-radius: 10px;
  }
}
#newhome section.features .img-3 {
  background: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/screenbg3.webp");
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  width: -webkit-fill-available;
}
@media (min-width: 768px) {
  #newhome section.features .img-3 {
    height: 215px;
    width: 283px;
    border-radius: 10px;
  }
}
#newhome section.experiment-grants {
  height: 100%;
  height: -webkit-fill-available;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to bottom, var(--features-card-bg), var(--testimonials-bg));
}
@media (min-width: 768px) {
  #newhome section.experiment-grants {
    min-height: auto;
    height: 100%;
  }
}
#newhome section.experiment-grants .gutter {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .gutter {
    width: 96vw;
  }
}
#newhome section.experiment-grants .cloud-overlay {
  background: linear-gradient(180deg, rgb(0, 93, 175) 0%, rgb(13, 167, 201) 63%, rgb(32, 54, 58) 100%);
  opacity: 0.84;
  width: 100%;
  z-index: 2;
  position: absolute;
  min-height: 2050px;
  box-shadow: 0 2px 3px 0 var(--color-bg);
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .cloud-overlay {
    height: 100%;
    height: -webkit-fill-available;
    min-height: auto;
    border-radius: 14px;
  }
}
#newhome section.experiment-grants .cloud-overlay-2 {
  background: linear-gradient(to bottom, #1545A2, #0016c1);
  opacity: 0.3;
  width: 100%;
  z-index: 2;
  position: absolute;
  min-height: 2050px;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .cloud-overlay-2 {
    height: 100%;
    height: -webkit-fill-available;
    min-height: auto;
    border-radius: 14px;
  }
}
#newhome section.experiment-grants .cloud {
  background-image: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/cloud4.webp");
  background-size: cover;
  width: 100%;
  position: absolute;
  min-height: 2050px;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .cloud {
    height: 100%;
    height: -webkit-fill-available;
    min-height: auto;
    border-radius: 14px;
  }
}
#newhome section.experiment-grants .experiment-grants-content {
  height: 1500px;
  padding-top: 30px;
  z-index: 3;
  position: relative;
  background-size: cover;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content {
    padding-left: min(50px, 6%);
    padding-bottom: min(39px, 4%);
    padding-top: 80px;
    height: 100%;
    height: -webkit-fill-available;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grants-content-header {
  text-align: center;
  width: auto;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grants-content-header {
    width: 700px;
    margin-bottom: 30px;
    text-align: left;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grants-content-header p {
  color: #D3E1DB;
  text-align: center;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 21px;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grants-content-header p {
    text-align: left;
  }
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grants-content-header p {
    font-size: 22px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grants-content-header h2 {
  color: #FFF;
  text-align: center;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grants-content-header h2 {
    text-align: left;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grants-content-header h4 {
  color: #FFF;
  opacity: 0.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 20px 0;
}
#newhome section.experiment-grants .experiment-grants-content .carousel-row {
  gap: 27px;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .carousel-row {
    gap: 30px;
    margin: 50px auto;
  }
}
#newhome section.experiment-grants .experiment-grants-content .carousel-row:hover {
  cursor: pointer;
}
#newhome section.experiment-grants .experiment-grants-content .carousel-row:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#newhome section.experiment-grants .experiment-grants-content .reverse-gradient {
  margin-top: -520px;
  height: 520px;
  width: 40px;
  background: linear-gradient(to left, rgba(47, 96, 167, 0), rgba(25, 75, 148, 0.3), rgba(25, 75, 148, 0.9));
  position: absolute;
  z-index: 2323;
  left: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .reverse-gradient {
    margin-top: -400px;
    height: 350px;
    width: 63px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .gradient {
  margin-top: -520px;
  height: 520px;
  width: 40px;
  background: linear-gradient(to right, rgba(47, 96, 167, 0), rgba(25, 75, 148, 0.3), rgba(25, 75, 148, 0.9));
  position: absolute;
  z-index: 2323;
  right: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .gradient {
    margin-top: -400px;
    height: 350px;
    width: 63px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .carousel-btn {
  top: 45%;
  position: absolute;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  box-shadow: 0 0 4px -18px #093144;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  z-index: 2325;
  background: rgba(19, 74, 99, 0.3);
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .carousel-btn {
    top: 58%;
  }
}
#newhome section.experiment-grants .experiment-grants-content .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}
#newhome section.experiment-grants .experiment-grants-content .carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
#newhome section.experiment-grants .experiment-grants-content .carousel-btn.prev {
  left: 18px;
}
#newhome section.experiment-grants .experiment-grants-content .carousel-btn.next {
  right: 18px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-gutter {
  background: rgba(255, 255, 255, 0.13);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
#newhome section.experiment-grants .experiment-grants-content .grant-card {
  display: flex;
  border-radius: 8px;
  background: #EBEBEB;
  overflow: hidden;
  height: 520px;
  width: 91vw;
  flex-direction: column;
  box-shadow: 0 0 16px -12px #152231;
  cursor: default;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card:nth-of-type(5) {
  margin-left: 25px;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card:nth-of-type(5) {
    margin-left: 0;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card:hover {
  transition-duration: 0.3s;
  box-shadow: 0px 2px 8px rgba(33, 33, 33, 0.2);
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card {
    height: 350px;
    width: 760px;
    flex-direction: row;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner {
  height: 200px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner img {
  height: 200px;
  width: -webkit-fill-available;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner img {
    height: 100%;
    height: -webkit-fill-available;
    width: 330px;
  }
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner {
    height: 100%;
    height: -webkit-fill-available;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats-overlay {
  background: linear-gradient(to bottom, transparent, #031B43);
  position: relative;
  width: 100%;
  height: 110px;
  top: -110px;
  z-index: 3;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats-overlay {
    top: -100px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats {
  position: relative;
  z-index: 4;
  top: -200px;
  left: 28px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats .stat-holder p {
  color: #FFF;
  margin: 0;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats .stat-holder .stat {
  font-size: 24px;
  letter-spacing: 1.2px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-banner .grant-stats .stat-holder .label {
  opacity: 0.7;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info {
  display: flex;
  flex-direction: column;
  color: #4a5658;
  padding: 38px 36px;
  gap: 10px;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info {
    gap: 28px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-logo img {
  max-height: 70px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 0;
  border-left: 2px solid #83D4A2;
  padding-left: 20px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-stats .stat-holder {
  display: flex;
  flex-direction: column;
  gap: 2px;
  top: -1px;
  position: relative;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-stats p.stat {
  color: #4a5658;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-stats p.label {
  color: #4a5658;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-description {
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-description {
    gap: 0px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-description p {
  color: #4a5658;
  font-size: 16px;
  margin: 0;
  padding-bottom: 4px;
  line-height: 23px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info .grant-description strong {
  font-size: 17px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a {
  color: #0A5075;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a .arrow {
  display: inline-block;
  margin-right: 8px;
  height: 20px;
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #00507A;
  background: #C5D1D4;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a .arrow i {
  color: #00507A;
  font-size: 12px;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a:hover {
  color: #052A3E;
  opacity: 1;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a:hover .arrow {
  transition-duration: 0.3s;
  opacity: 1;
  background: #0E1D21;
  border-color: #0E1D21;
}
#newhome section.experiment-grants .experiment-grants-content .grant-card .grant-info a:hover .arrow i {
  color: #FFF;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .mini-desc {
    margin-top: 70px;
  }
}
#newhome section.experiment-grants .experiment-grants-content .mini-desc .flex {
  gap: 20px;
  flex-direction: row;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .mini-desc .flex {
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
}
#newhome section.experiment-grants .experiment-grants-content .mini-desc svg {
  transform: scale(2);
  top: 10px;
  position: relative;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .mini-desc svg {
    top: 0;
    transform: scale(1);
  }
}
#newhome section.experiment-grants .experiment-grants-content .mini-desc .text {
  flex-direction: column;
  display: flex;
}
@media (min-width: 768px) {
  #newhome section.experiment-grants .experiment-grants-content .mini-desc .text {
    flex-direction: column;
  }
}
#newhome section.experiment-grants .experiment-grants-content .mini-desc p.mini-desc-header {
  color: #FFF;
  margin: 10px 0;
}
#newhome section.experiment-grants .experiment-grants-content .mini-desc p {
  margin: 0;
  color: #d4dde2;
}
#newhome section.experiment-grants .align-center {
  text-align: center;
  color: #FFF;
}
#newhome section.experiment-grants .carousel-breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
}
#newhome section.experiment-grants .breadcrumb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}
#newhome section.experiment-grants .breadcrumb-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}
#newhome section.experiment-grants .breadcrumb-dot.active {
  background: rgba(255, 255, 255, 0.8);
  width: 12px;
  height: 12px;
}
#newhome section.experiment-grants .breadcrumb-dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
#newhome section.experiment-grants .btn-round-white {
  background: #FFF;
  border-radius: 21px;
  color: #115EB6;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.experiment-grants .btn-round-white:hover {
  box-shadow: 0 0px 15px -3px #214D9A;
  opacity: 1;
  transition-duration: 0.3s;
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
#newhome section.testimonials {
  background-color: var(--testimonials-bg);
  padding-top: 70px;
  margin-bottom: 0px;
  /* Carousel-specific wrapper styles */
  /* Carousel Controls */
  /* Responsive */
}
#newhome section.testimonials i.fa-heart {
  text-align: center;
  font-size: 13px;
  display: flow;
  color: #DB5854;
}
#newhome section.testimonials h2, #newhome section.testimonials h4 {
  text-align: center;
}
#newhome section.testimonials .fullbg {
  background: var(--testimonials-bg-2);
  margin-top: 70px;
  padding-top: 14px;
  overflow: hidden;
}
#newhome section.testimonials #testimonials {
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 0 12px 6px 12px;
}
@media (min-width: 768px) {
  #newhome section.testimonials #testimonials {
    padding: 2rem 0;
  }
}
#newhome section.testimonials .testimonial-wrapper {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  margin-top: 30px;
}
#newhome section.testimonials .testimonial-card {
  flex: 0 0 calc(26% - 10px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  padding: 24px 32px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--testimonial-card-stroke);
  background: var(--testimonial-card-bg);
}
@media (min-width: 768px) {
  #newhome section.testimonials .testimonial-card {
    min-width: calc(26% - 10px);
  }
}
#newhome section.testimonials .textimonial-body {
  color: var(--color-text-body);
  padding: 10px 2px;
  flex: 1;
}
#newhome section.testimonials .textimonial-body p {
  font-size: 17px;
  line-height: 24px;
  margin: 0;
}
#newhome section.testimonials .textimonial-user {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 11px;
}
#newhome section.testimonials .textimonial-user .textimonial-user-avatar {
  flex-shrink: 0;
  height: 42px;
  margin-top: 9px;
}
#newhome section.testimonials .textimonial-user .textimonial-user-avatar img {
  height: 43px;
  width: 43px;
  z-index: 4;
  position: relative;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#newhome section.testimonials .textimonial-user .textimonial-user-name {
  font-size: 16px;
  font-weight: 500;
  margin-top: 7px;
  color: var(--color-text-body);
}
#newhome section.testimonials .testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
#newhome section.testimonials .testimonial-btn {
  background: var(--testimonial-card-bg);
  width: 34px;
  height: 34px;
  border: 2px solid var(--testimonial-card-stroke);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--testimonial-button-color);
  font-size: 18px;
  padding: 0;
}
#newhome section.testimonials .testimonial-btn:hover:not(:disabled) {
  background: var(--testimonial-card-bg);
  border-color: var(--testimonial-card-stroke);
  transform: scale(1.08);
}
#newhome section.testimonials .testimonial-btn:active:not(:disabled) {
  transform: scale(0.95);
}
#newhome section.testimonials .testimonial-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 1024px) {
  #newhome section.testimonials .testimonial-card {
    flex: 0 0 calc(50% - 7px);
    min-width: calc(50% - 7px);
  }
}
@media (max-width: 768px) {
  #newhome section.testimonials .testimonial-card {
    flex: 0 0 100%;
    min-width: 50%;
  }
  #newhome section.testimonials .testimonial-wrapper {
    gap: 15px;
  }
  #newhome section.testimonials .testimonial-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  #newhome section.testimonials .testimonial-breadcrumbs {
    gap: 8px;
  }
  #newhome section.testimonials .testimonial-dot {
    width: 8px;
    height: 8px;
  }
  #newhome section.testimonials .testimonial-dot.active {
    width: 10px;
    height: 10px;
  }
}
#newhome section.testimonials .grant-testimonials {
  margin-top: 40px;
}
#newhome section.testimonials .grant-testimonials .gap {
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 768px) {
  #newhome section.testimonials .grant-testimonials .gap {
    flex-direction: row;
  }
}
#newhome section.testimonials .grant-testimonials .grant-testimonial {
  width: 79%;
  margin: 0 auto;
  flex-grow: 1;
  border-radius: 11px;
  height: 100%;
  display: block;
  border: 1px solid var(--testimonial-card-stroke);
  background: var(--testimonial-card-bg);
  padding: 24px 32px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  #newhome section.testimonials .grant-testimonials .grant-testimonial {
    width: 46%;
  }
}
#newhome section.testimonials .grant-testimonials .grant-testimonial img.logo {
  width: 170px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
#newhome section.testimonials .grant-testimonials .grant-testimonial p {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text-body);
}
#newhome section.testimonials .grant-testimonials .dan {
  display: flex;
  margin-top: 28px;
  flex-direction: row;
}
#newhome section.testimonials .grant-testimonials .dan .avatar img {
  height: 42px;
  width: 42px;
  margin-right: 12px;
}
#newhome section.testimonials .grant-testimonials .dan .name p {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 21px;
  margin: 0;
  padding: 0;
}
#newhome section.mission {
  height: 560px;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0;
}
#newhome section.mission .banner-image {
  background-image: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/mission.webp");
  background-size: cover;
  background-position: center;
  height: 560px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
#newhome section.mission .banner-overlay {
  width: 100%;
  position: absolute;
  height: 100%;
  position: absolute;
  z-index: 3;
  --hdr-gradient: linear-gradient(
    to top in oklab,
    oklch(42% 0.09 37/ 16%) 0%,
    oklch(80% 0.30 76/ 30%) 67%
  );
  --sdr-gradient: linear-gradient(to top, #00f49f00 47%, #003431 98%);
  background: var(--hdr-gradient);
}
#newhome section.mission .mission-content {
  z-index: 4;
}
#newhome section.mission h2 {
  font-family: "DentonMedium";
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.8px;
  color: var(--color-text-header);
  font-size: 44px;
  letter-spacing: 0.4px;
}
#newhome section.mission h4, #newhome section.mission h2, #newhome section.mission p {
  margin: 30px 0;
  text-align: left;
  color: #FFF;
}
#newhome section.mission p {
  font-size: 22px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#newhome section.mission p a {
  color: #FFF;
  text-decoration: underline;
}
#newhome section.categories {
  padding: 0 20px;
  height: 300px;
}
@media (min-width: 768px) {
  #newhome section.categories {
    padding: 0;
  }
}
#newhome section.categories .container {
  padding-bottom: 60px;
  border-bottom: 1px solid #FFF;
}
#newhome section.categories .inline-flex {
  width: 20vw;
  display: inline-flex;
}
@media (min-width: 768px) {
  #newhome section.categories .inline-flex {
    width: 16%;
  }
}
#newhome section.categories h4 {
  color: var(--color-text-muted);
}
#newhome section.categories a {
  color: var(--color-text-muted);
  font-size: 14px;
}
#newhome h2.section-header {
  font-family: "DentonRegular";
  font-size: 44px;
  letter-spacing: 0.8px;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-header);
}
#newhome h4.section-subheader {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 15px;
  text-align: center;
  color: #1C7E62;
}
@media (min-width: 768px) {
  #newhome h4.section-subheader {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-align: left;
  }
}
#newhome .btn-primary {
  background-color: #10B777;
  color: #FFF;
}
#newhome .btn-primary:hover {
  background-color: #0dc981;
}

.new-marky-content {
  --background: transparent;
  --background-card-content: transparent;
  --glitter: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/noise-base.png");
  --glitter2: url("https://d1sg0ksu7mr16v.cloudfront.net/admin_uploads/home/noise-top.png");
  --ratio-x: .5;
  --ratio-y: .75;
  --light-size: 300px;
}
.new-marky-content .banner-card {
  z-index: 212;
  border-radius: 8px;
  opacity: 0.86;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
}
.new-marky-content .banner-card .home-rounded-card {
  width: 240px !important;
  height: 138px !important;
}
.new-marky-content .col {
  display: grid;
  grid-template-columns: repeat(3, -webkit-min-content);
  grid-template-columns: repeat(3, min-content);
  gap: 10px;
}
.new-marky-content:hover > .col > .col-row > .card:before {
  opacity: 1;
  transition-delay: 0.1s;
}
.new-marky-content:hover > .col > .col-row > .card:after {
  opacity: 0.925;
  transition-delay: 0s;
}
.new-marky-content .card {
  position: relative;
  background-color: rgb(33, 33, 33);
  border-radius: 10px;
  height: 140px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  image-rendering: pixelate;
}
.new-marky-content .card:before,
.new-marky-content .card:after {
  transition: opacity 500ms ease;
  image-rendering: pixelate;
}
.new-marky-content .card:after {
  --bgoffsetx: calc( 3px * var(--ratio-x));
  --bgoffsety: calc( 3px * var(--ratio-y));
  --pointerx: calc( 100% * var(--ratio-x));
  --pointery: calc( 100% * var(--ratio-y));
  background-color: var(--background-card-content);
  background-image: radial-gradient(var(--light-size) circle at var(--pointerx) var(--pointery), rgba(0, 0, 0, 0.75), black), radial-gradient(var(--light-size) circle at var(--pointerx) var(--pointery), rgba(37, 37, 37, 0.8), rgb(16, 16, 16) calc(var(--light-size) * 1)), var(--glitter2), var(--glitter2);
  background-position: center, center, center, calc(var(--bgoffsetx) * 1) calc(var(--bgoffsety) * 1);
  background-size: 300px 300px;
  background-blend-mode: normal, color-burn, color-dodge;
  filter: brightness(1.4) contrast(0.725);
  opacity: 0;
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  height: calc(100% - 2.8px);
  width: calc(100% - 2.8px);
  transition-delay: 0.1s;
  z-index: 20;
}
.new-marky-content .card:before {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  border-radius: inherit;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}
.new-marky-content .card:before {
  content: "";
  background-image: conic-gradient(from 0deg at calc(0% + var(--mouse-x)) calc(0% + var(--mouse-y)), #00C76F 0%, #02ACC5 10%, #02B6A9 55%, #08C540 65%, #0DBA3B 80%, #11B473 100%), radial-gradient(calc(var(--light-size) * 1.5) circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.5) 50%), radial-gradient(calc(var(--light-size) * 1.5) circle at var(--mouse-x) var(--mouse-y), transparent, rgb(33, 22, 44) 60%, var(--background) 120%);
  background-blend-mode: hue, color-dodge;
  transition-delay: 0s;
  z-index: 1;
}
.new-marky-content .card-content {
  position: relative;
  z-index: 3;
  color: white;
}

@media (max-width: 1200px) {
  section.experiment-grants .carousel-btn.prev {
    left: 10px;
  }
  section.experiment-grants .carousel-btn.next {
    right: 10px;
  }
}
@media (max-width: 768px) {
  section.experiment-grants .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  section.experiment-grants .carousel-btn.prev {
    left: 5px;
  }
  section.experiment-grants .carousel-btn.next {
    right: 5px;
  }
}
