nav-wrapper{
    box-shadow: 0px;
}


/* body {
    background-color: #555;
  }
   */
  .navbar-fixed {
    
  }
  
  /*** T H E - M A G I C - O F - O B J E C T - F I T ***/
  /*****************************************************/
  .video-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: inherit;
  }

  
  video {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  
  /*** A E S T H E T I C S ***/
  /***************************/
  * {
    box-sizing: border-box;
  }
  
 .hero-info{
   color:white;
 }
  
  .video-container:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  h1 {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1;
    font-size: 5vw;
  }
  @media (max-width: 400px) {
    h1 {
      font-size: 22px;
    }
  }
  @media (min-width: 1200px) {
    h1 {
      font-size: 75px;
    }
  }
  
  .callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    height: 100%;
    text-align: left;
    position: relative;
    z-index: 10;
  }
  
  .support {
    position: fixed;
    bottom: 120px;
    right: 0px;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
    text-align: right;
    position: relative;
    z-index: 10;
  }

  @media only screen and (max-width: 600px){
    video {
      -o-object-fit: cover;
         object-fit: cover;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
  }