/*
* <ul class="flex-container flex-start">
*   <li class="flex-item">1233456</li>
*   <li class="flex-item">2</li>
*   <li class="flex-item">2</li>
* </ul>
*/
/*
* basic brake points
*/
/*
* browser hacks
*/
body {
  background-color: black;
}
main.product {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  color: white;
  flex-grow: 1;
  padding-left: 1em;
  padding-right: 1em;
  justify-content: center;
  align-items: center;
}
main.product .bg-video {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.15;
}
main.product .bg-video video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
main.product section {
  -ms-box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
}
main.product section h1 {
  font-size: 4vw;
  font-weight: 400;
}
main.product section .tagline {
  color: #7b7b7b;
  padding-bottom: 1em;
}
main.product section .learn-more {
  text-align: center;
  width: calc(100% - 1em);
  color: white;
  border: 1px solid white;
  padding: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: center;
}
@media (min-width: 900px) {
  main.product section .learn-more {
    max-width: 40vw;
  }
}
main.product section .learn-more:hover {
  color: #ef4030;
}
main.product section img {
  width: 80%;
  margin-top: 1em;
  margin-bottom: 1em;
  align-self: center;
}
@media (min-width: 900px) {
  main.product section img {
    max-width: 50vw;
  }
}
@media (min-width: 1800px) {
  main.product section img {
    max-width: 30vw;
  }
}
main.product section .specs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 0.15em solid transparent;
  border-bottom: 0.15em solid transparent;
  border-image: linear-gradient(to right, rgba(44, 44, 44, 0) 0%, rgba(44, 44, 44, 0.65) 40%, rgba(44, 44, 44, 0.65) 60%, rgba(44, 44, 44, 0) 100%);
  border-image-slice: 1;
  list-style: disc;
}
@media (min-width: 1200px) {
  main.product section .specs {
    max-width: 60%;
    align-self: center;
    margin: auto;
  }
}
main.product section .specs li {
  margin-left: 2em;
  font-size: 1em;
  color: #ef4030;
}
main.product section .specs li span {
  display: block;
  font-size: 1em;
  color: #7b7b7b;
  vertical-align: middle;
}
