/* BACKGROUND IMG */
#section-background-image {
  height: 700px;
  background-color: rgba(255,255,255,0);
  position: relative;
}

#background-image-home{
  position:relative;
  z-index:10;
  max-width: 100%;
}

.container-parallax {
  position: absolute;
  left:0;
  height: 900px;
  width: 100%;
  margin:0;
  padding: 0;
  display: flex;
  z-index: -10;
}

.container-parallax picture {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.container-parallax picture img,
.container-parallax picture source {
  position: absolute;
  object-fit: cover;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

@media (max-width: 980px) {
    
  #section-background-image,
  .container-parallax {
      height: 70vh;
  }
}