.hero-section {
	  background-size: cover;
	  background-color: #12809b;
	  height: 60vh;
	  text-align: center;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
	
.hero-section-text {
color: #FFF;
text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
max-width: 60vw;
}

.hero-section-text span {
  display: inline-block;
  }

.hero-section h1 {
  font-family: acumin-pro-wide, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.hero-section h1 strong {
  font-weight: 800;
}

.hero-section h1 .underline:after {
  content: '';
  display: block;
  background: #F76620;
  height: 5px;
  width:100%;
  transition: width 500ms;
  transition-delay: 2.5s;
  }

.hero-section p {
  line-height: 1.6;
  font-size: 1.25rem;
  font-weight: 700;
}

.home-hero-button-wrap {
  margin-top:2.5rem;
}

a.home-hero-button-hollow {
  background: transparent;
  border:3px solid #FFF;
  border-radius: .25rem;
  color: #fff;
  font-size: 1.125rem;
  font-family: acumin-pro, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top:2.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: .75rem;
  padding-top: .75rem;
  text-transform:uppercase;
  transition: box-shadow .5s;
  transition: all .5s;
}

.home-hero-button-hollow:hover {
  background-color: #ffffff !important;
  color: #D14200;
  
  }

  @media only screen and (max-width: 990px) {
	  .hero-section-text {
	max-width: 80vw;
	}
	
	  .hero-section p {
		  display:none;
	  }
	  
}
  
  
  @media only screen and (max-width: 600px) {
	  .hero-section-text {
	max-width: 90vw;
	}
	.hero-section h1 {
		  font-size: 2.375rem;
	  }
	  .hero-section p {
		  display:none;
	  }
	  a.home-hero-button-hollow {
	  font-size: 1rem;
	}
}