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

.billboard {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-size: cover;
  background-position: center;
  height: 500px;
}

.billboard .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .3);
  height: 100%;
  width: 100%;
}

.billboard .box {
  margin: 0;
  background: ;
  width: 100%;
  max-width: 1400px;
  padding: 2rem;
}

.billboard h1 {
  color: #ffffff;
  font: normal 900 60px/1em 'Raleway';
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: ;
}

.billboard p {
  color: #ffffff;
  font-size: 31px;
}

.billboard a {
  color: #83C442;
}

.billboard a:hover {
  color: #83C442;
  text-decoration: underline;
}

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

.billboard .button:focus,
.billboard .button:hover {
  border: ;
  background: #ffffff;
  color: #83C442;
  text-decoration: none;
}

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

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

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

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

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