header {
  position: relative;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
  border: 0px solid #000000;
  clip-path: polygon(50% 0%, 100% 0, 100% 85%, 51% 90%, 0% 85%, 0 0);
  background: url('/img/header_beach.jpg') no-repeat scroll;  
  background-position: top;    
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
    
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container-fluid {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.1;    
  z-index: 1;
  background-color:rgba(0, 0, 0, 0);


}


@media (pointer: coarse) and (hover: none) {
  header {
    background: url('/img/header_beach.jpg') black no-repeat scroll;
    background-size: cover;
    background-position: top;
    }
  header video {
    display: none;
  }
}