body {
  height: 100vh;
}

header {
  position: relative;
  background-color: black;
  height: 100vh;
  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%);
  /* transform: scale(.7) translateX(-70%) translateY(-70%); */
}

/* @media screen and (min-width: 1300px) {
  header video {
    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: black;
  opacity: 0.5;
  z-index: 1;
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  /* header {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  } */

  header video {
    display: none;
  }
}

#action-list {
  padding: 0;
  list-style: none;
  margin-bottom: 5rem;
}

#action-list li {
  display: inline;
  text-decoration: none;
}

#action-list li a {
  text-decoration: none;
}

#action-list li:nth-child(2) {
  margin-left: 50px;
}

#address {
  background-color: #fff;
  height: 90px;
  border-radius: 20px;
  margin-bottom: -50px;
  width: 300px;
}

#address label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 600px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  header video.mobile {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
  }
}