/*--- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
margin-left: 0px!important;
margin-right: 0px!important;
}

/*--- Fixed Video Background iOS/Mobile Style--*/
.video-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background-position: center;
}
#video {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  z-index: -1000;
}

/* home video overlay gradient or png uncomment */
#video:after {
  /* overlay png
  content: "";
  background-image: url(../../img/overlays/02.png);
  background-size: 3px 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;*/
    
  /* gradient */
  /*content: '';
  opacity: 0.75;
  background: #4096ee; 
  background: -moz-linear-gradient(top, #4096ee 0%, #39ced6 100%); 
  background: -webkit-linear-gradient(top, #4096ee 0%,#39ced6 100%); 
  background: linear-gradient(to bottom, #4096ee 0%,#39ced6 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#39ced6',GradientType=0 ); 
  position:fixed;
  left:0;
  top:0;
  right:0;
  bottom: 0;*/

}

video { 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background: url('') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}


