/* colors */
/* easing bezier */
/* layout vars */
/* IMAGE BACKGROUND BLOCK */
.img-bg-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  z-index: 0;
}
.img-bg-block .bg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 40%;
  z-index: -1;
}
.img-bg-block .bg-container img {
  width: 100%;
}
.img-bg-block img.fg {
  width: 80vw;
  z-index: 1;
}
@media screen and (min-width : 68.75em) {
  .img-bg-block img.fg {
    max-width: 640px;
  }
}
