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

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

.billboard content {
  display: inline-block;
  padding: 2rem;
  background: ;
}

.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;
  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 bold 45px/1.2em 'Lora';
  text-transform: none;
  letter-spacing: ;
  text-shadow: 2px 2px 1.5px rgb(0 0 0 / 50%);;
}

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

.billboard a {
  color: #14105a;
}

.billboard .button {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0;
  border: ;
  background: #3a56a0;
  color: #ffffff;
  font: normal normal 20px/1em 'Roboto';
  letter-spacing: ;
  text-transform: uppercase;
  text-shadow: ;
}

.billboard .button:hover {
  border: ;
  background: #14105a;
  color: #ffffff;
}

@media (min-width: 1440px) {
  .box {
    max-width: 1080px;
  }

  .billboard h1 {
    font-size: 65px;
  }
}

/****************************************
* 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;
  }
}