.image-background {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .image-background {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.image-background .background {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 992px) {
  .image-background .background {
    position: absolute;
    display: block;
  }
}
.image-background .content-layer {
  position: relative;
  z-index: 2;
}