/* Desktop! */
@media (min-width: 992px) {
  
  .header {
	position: absolute; /* optional */
   /*    background: rgba(255,255,255,0.5);  optional maybe if no Video Color Overlay*/
  
	}

  
  /* Html Video */
    .bgVideo__Box .frame:first-child {
      	height: 100vh; /* video height: optional, px or vh */
        display: flex;
	    align-items: center; /* vertical postion: flex-start, center, flex-end */
  	}
  
    /* Overlay Element (Html, Text, Box, Image, ...) */
    .bgVideo__Box .frame:last-child {
        /* overlay fits Html Video*/
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;      	
        display: flex;
        flex-direction: column;
        justify-content: center; /* vertical postion: flex-start, center, flex-end */
        align-items: center; /* horizontal postion: flex-start, center, flex-end */
		z-index: 2;
    }
  
    .bgVideo__Textline1, .bgVideo__Textline2 {
		color: #ffffff;
        line-height: 1;
    }
  
	.bgVideo__Textline1 {
  		font-size: 3rem; 
        font-weight: 300;
  	}
  
    .bgVideo__Textline2 {
  		font-size: 2rem;
        font-weight: 300;
    }

  	/* Video Color Overlay (optional) */
  	.bgVideo__Box .frame:first-child:before {
      position: absolute;
      content: ' ';
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      background: rgba(41, 158, 152, 0.7);
      z-index: 1;
	}
  
    .responsive-video {
      box-sizing: border-box;
      height: 58vw;
      left: 50%;
      min-height: calc(100% + 5px);
      min-width: calc(100% + 5px);
      transform: translate(-50%,-50%);
      position: absolute;
      top: 50%;
      width: 177.8vh;
    }
}
.responsive-video {
  width: 100%
}
.bgVideo__Box {
  overflow: hidden;
}

