.backstretch-container { 
  position: relative;  
  overflow: hidden; 
  margin: 0;
  padding: 0;
  margin: auto;
  width: 100%;
  height: 100%; 
  object-position: center;
  overflow: hidden;
  z-index: -1;
}

.backstretch-item   {
  position: fixed; 
  top: 0; 
  left: 0; 
}

.backstretch-item img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

.backstretch-item figcaption {
  color: #f2f2f2;
  font-size: .75rem;
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  text-align: center;
}

.home .layout { 
  padding: 0 1rem;
  overflow: visible;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* BREAKING POINTS 45 65 */

/* narrow */
@media screen and (max-width: 45rem) { 
  .home .layout { padding: 0; }
  .home header.header { width: 100%; }
  .home nav { padding: 0; }
  .backstretch-item { top: 3.5rem; }
}
/* end narrow */

/* inbetween */
@media screen and (min-width: 45rem) { 
  .home .layout { width: fit-content; }
}
/* end inbetween */

/* wide */
@media screen and (min-width: 65rem) {
  .home .layout { width: 33.33533%; 
  /* .home nav { padding: 0 1rem; } */
  .backstretch-item { top: 0; }
}
/* end wide */



