/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 1080px) {
  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 5px;
    font-size: 21px;
    line-height: 1;
  }

  .featurette-heading {
    font-size:24px;
  }
}

@media (min-width: 992px) {
  .featurette-heading {
    margin-top: 5px;
  }
}

header {
  position: relative;
  background-color: black;
  height: 48vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

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 {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: orange;
  opacity: 0.0;
  z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
  header {
      position: relative;
  	  height: 48vh;
  	  min-height: 25rem;
      width: 100%;
      overflow: hidden;
      background: url('.../assets/img/FacesFifthAvenueHeader5.jpg');
      background-repeat: no-repeat;
  	  background-position: center;
      -webkit-background-size: auto;
      -moz-background-size: auto;
      -o-background-size: auto;
      background-size: auto;
  }
  header video {
    display: none;
  }
}
