.fullscreen-bg {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0px;
  overflow: hidden;
  z-index: -9;
}

.fullscreen-bg__video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display:block;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

@media (max-width: 767px) {
  .fullscreen-bg {
    background: url('../video/bg.jpg') center center / cover no-repeat;
  }

  .fullscreen-bg__video {
    display: block;
  }
}

#overlaypixel {
		  background: url("../video/pixel.png") repeat scroll left top;
		  height: 100%;
		  left: 0;
		  position: absolute;
		  top: 0;
		  width: 100%;
		  z-index: 2;
		}
		
#overlayblack{
		  background: rgba(0,0,0,.3	) repeat scroll left top;
		  height: 100%;
		  left: 0;
		  position: absolute;
		  top: 0;
		  width: 100%;
		  z-index: 2;
		}
		