.hero-heritage-dance-foundation {
  background-image: url("../img/halloffame-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-heritage-dance-foundation::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-heritage-dance-foundation>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1em;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-heritage-dance-foundation>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.heritage-dance-foundation-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin-inline: auto;
  margin-block: 3rem;
}

.heritage-dance-foundation-text>p {
  text-align: center;
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0px;
}

.heritage-dance-foundation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.latest-winner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.heritage-dance-foundation-winner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.heritage-dance-foundation-winner-text>h3 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.heritage-dance-foundation-winner-text>h4 {
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.heritage-dance-foundation-winners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.heritage-dance-foundation-winners .heritage-dance-foundation-winner {
  display: flex;
  align-items: center;
  width: 20%;
  height: auto;
  flex-direction: column;
  align-self: stretch;
}

.heritage-dance-foundation-winner {
  gap: 0.75rem;
}

@media (width <=768px) {
  .heritage-dance-foundation-winners .heritage-dance-foundation-winner {
    width: 100%;
  }

  .latest-winner {
    width: 100%;
  }

  img {
    width: 100%;
  }
}


.heritage-dance-foundation-winner>.img-wrapper {
  inset: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


.heritage-dance-foundation-winner>.img-wrapper>img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.heritage-dance-foundation-winner>.img-wrapper>img.placeholder {
  object-fit: contain;
  width: 80%;
  height: 80%;
}

.heritage-dance-foundation-winner>.img-wrapper>video {
  width: 100%;
}

@media (min-width: 768px) {
  .heritage-dance-foundation-winner>.img-wrapper {
    aspect-ratio: 1 / 1;
  }
}
