h4.grid-banner {
  font-family: Libre Franklin;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
  background-color: var(--Contrast-Green);
  margin: 0;
  justify-content: center;
  padding: 40px 0;
  display: flex;
  color: var(--White, #fff);
}

.prize-list {
  padding: 0;
}

.prize-includes {
  display: flex;
  padding: 30px 0 100px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background: var(--Contrast-Green, #003a29);
}
.prize-includes h1 {
  color: var(--Go-Green, #00e677);
  text-align: center;
  font-family: Libre Franklin;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}
.prize-includes ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  width: 65vw;
  gap: 30px;
  justify-items: center;
  justify-content: center;
}
.prize-includes ul li {
  height: 0;
  transform: translateY(150px);
}
.prize-includes ul li.already-visible {
  height: unset;
  transform: translateY(0);
  animation: none;
}
.prize-includes ul li.slide-in {
  height: unset;
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
@keyframes come-in {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .prize-includes ul {
    width: 80vw;
    gap: 30px;
  }
}

/*# sourceMappingURL=vvipPrize.css.map */
