.container {
position: relative;
  padding-bottom: 250px;
  background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.8) 2%,
  rgba(0, 0, 0, 0.8) 50%,
  rgba(0, 0, 0, 0.8) 76%,
  rgba(0, 0, 0, 1) 100%
);
}
.c-reel__text {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  /*mix-blend-mode: exclusion;*/
  color: #ffffff;
  text-align: center;
  font-size: 6.5em;
  line-height: 1;
  z-index: 1;
}
.c-reel__text p {
  font-size: 1.1em !important;
}
.c-reel__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 80px 20px;
}
.c-reel__images > * {
  flex-basis: calc(50% - 20px);
  flex-shrink: 1;
}
.c-reel__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.c-reel__image > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
