.hiro.music .image-container:after {
  background: none;
  background-color: white;
  z-index: -1;
}

.hiro.music .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiro.music .hero-links {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  margin-bottom: 64px;
  margin-top: 120px;
}

@media screen and (max-width: 1000px) {
  .hiro.music .image-container .logo {
    transform: scale(0.65); 
    transform-origin: center;
    image-rendering: optimizeQuality;
  }
  .hiro.music .hero-links {
    margin-top: 64px;
  }
  .hiro.music .hero-links h2 {
    font-size: 32px;
  }
}

.music.side-titles {
  margin-top: 24px;
  margin-bottom: 24px;
}
.music.side-titles > h2 {
  grid-column: 1 / 6;
}
.image-main {
  box-sizing: border-box;
  position: relative;
}
.image-main .background {
  background-color: #D5E803;
  transform: rotate(-10deg);
  width: calc(100% - 64px);
  aspect-ratio: 5 / 2;
  position: absolute;
  z-index: -1;
}
.image-main img {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 32px;
  object-fit: cover;
  object-position: center top;
}

@media screen and (max-width: 1000px) {
  .image-main .background {
    aspect-ratio: 2 / 1;
    width: calc(120vw);
    margin-left: -10vw;
  }
  .image-main img {
    aspect-ratio: 2 / 1;
  }
}

.stats-video-container {
  height: 200vw;
  position: relative;
  margin-top: 100px;
}
.stats-video-container .inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 400;
  gap: 56px;
  height: 100vh;
  justify-items: center;
  max-height: 100vh;
}
.stats-video-container .inner .stats {
  max-width: 320px;
  justify-self: start;
  align-self: center;
}
.stats-video-container .inner h2 {
  font-size: 64px;
  margin: 0;
  font-weight: 400;
  transition: font-weight 300ms;
}
.stats-video-container .inner p {
  margin: 0;
  font-size: 24px;
  margin-bottom: 32px;
}

.stats-video-container .videoplayer {
  aspect-ratio: 9 / 16;
  height: 80vh;
  width: auto;
  margin-top: 10vh;
  justify-self: end;
}

.stats-video-container .videoplayer video {
  height: 100%;
  aspect-ratio: 9 / 16;
}

.stats-video-container .inner .active h2 {
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  .stats-video-container {
    height: 200vh;
  }
  .stats-video-container .inner {
    grid-template-columns: 1fr;
  }
  .stats-video-container .inner .stats {
    justify-self: center !important;
  }
  .stats-video-container .inner .stats > div {
    position: fixed;
    bottom: 0px;
    left: 0;
    padding: 22px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 600ms, opacity 600ms;
  }
  .stats-video-container .inner .stats > .active {
    opacity: 1;
    transform: 0;
  }
  .stats-video-container .inner .videoplayer {
    justify-self: center !important;
    max-height: calc(100vh - 250px);
  }
}

.side-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 24px;
  font-weight: 700;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}
.side-image img {
  width: 100%;
}

.grid-header {
  background-color: #D5E803;
  font-size: 36px;
  height: 81px;
}

.grid-header h2 {
  font-size: 36px;
  line-height: 81px;
}

.grid-body {
  margin-bottom: 60px;
}

.grid-row {
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  margin-bottom: -1px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.grid-row > * {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  align-items: center;
  min-height: 81px;
}

.grid-row > * > * {
  height: 100%;
  border-right: solid 1px black;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}

.grid-row > * > *:first-child {
  text-align: left;
  padding-left: 0px;
  justify-content: flex-start;
}
.grid-row > * > *:last-child {
  border-right: none;
}

.grid-row b {
  font-size: 36px;
}


@media screen and (max-width: 1000px) {
  h2 {
    font-size: 24px;
    line-height: 1em;
  }
  .side-image {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1000px) {
  .grid-row b {
    font-size: 16px;
    line-height: 62px;
  }
  .grid-row {
    font-size: 16px;
    min-width: 580px;
  }
  .grid-row > * {
    min-height: 62px;
  }
  .grid-row > * > * {
    padding: 6px;
  }

  .grid-body {
    overflow-x: auto;
    padding-bottom: 12px;
  }
}