.imgBackground {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.imgBackground::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--yellow);
  z-index: 1;
  mix-blend-mode: hard-light;
}
  .imgBackground > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.imgBackground__desc {
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}
