/****************************************
* Billboard
****************************************/

.billboard {
  text-align: center;
  height: 500px;
}

.billboard content {
  display: inline-block;
  padding: 0px;
  background: transparent;
}

.billboard content > p:last-child > .button {
  margin-bottom: 0;
}

.box-container {
  display: flex;
  width: 100%;
}

.box {
  margin: auto;
  width: 70%;
  min-width: 300px;
  max-width: 765px;
}

.billboard .video {
  position: relative;
  display: flex;
  height: 100%;
  padding-bottom: 0;
  overflow: hidden;
}

.billboard .overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.video video {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 105%;
  width: auto;
  transform: translateX(-50%);
  left: 50%;
}

@media (min-width: 600px) {
  .video video {
    height: auto;
    width: 105%;
    margin-top: calc(0px + (-215) * (100vw - 530px) / (1007 - 530));
  }
}

@media (min-width: 1008px) {
  .video video {
    margin-top: calc(0px + (-600) * (100vw - 1008px) / (2500 - 1008));
  }
}

.billboard h1 {
  color: #FFFFFF;
  font: normal 800 60px/1em 'Roboto Slab';
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px #000000;;
}

.billboard p {
  color: #FFFFFF;
  font-size: 16px;
}

.billboard a {
  color: #EE4923;
}

.billboard .button {
  display: inline-block;
  padding: 21px;
  border-radius: none;
  border: ;
  background: #EE4923;
  color: #ffffff;
  font: normal bold 20px/1em 'Roboto';
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: ;
}

.billboard .button:hover {
  border: ;
  background: #008dd4;
  color: #FFFFFF;
}

/****************************************
* Mobile
****************************************/

@media (max-width: 1008px) {
  .billboard {
    height: 300px;
  }

  .billboard h1,
  .billboard h2,
  .billboard h3,
  .billboard h4,
  .billboard h5,
  .billboard h6 {
    font-size: 30px;
  }

  .billboard p {
    font-size: 16px;
  }

  .billboard .button,
  .billboard input[type='submit'] {
    font-size: 16px;
  }
}