/* VIDEO TEST */
.parallax-section { 
    height: min-content;
    overflow: hidden;
}

.parallax-background 
{
  visibility: hidden;
}

.parallax-background[visible]
{
  visibility: visible;
}

.parallax-section video,
.parallax-section img
{
  position: fixed;
  object-fit: cover;
  top: 0;
  min-height: 100vh;
  min-width: 100vw;
  left: calc(100vw*-0.5);
}

@media (min-width: 640px) {
  .parallax-section video,
  .parallax-section img
  {
    top: 0;
    width: 125vw;
    left: -25vw;
  }
}

.parallax-section .tint { 
    position: fixed;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -998;
    box-shadow: inset 0 0 0 2000px rgba(38, 25, 0, 0.839);
}
.parallax-section video, 
.parallax-section img 
{ 
    z-index: -999;
}