/* Hero and background image */
.hero {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgba(var(--navy-blue), 0.6), rgba(var(--medium-blue), 0.6)), url('/media/nledu/content-assets/images/applynow/apply-online.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero .hero__content {
  text-align: center;
  margin: 4rem 0;
  margin-top: 10px;
}

.hero .hero__content h1 {
  color: rgb(var(--electric-yellow));
  font-size: 7rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px #0008;
}

.hero .hero__content .related__links {
  width: 400px;
  height: auto;
  margin: 0 auto;
}

.hero .hero__content .related__links a {
  display: block;
  width: 100%;
  color: rgb(var(--navy-blue));
  font-size: 1.4rem;
  text-decoration: none;
  background-color: rgb(var(--electric-yellow));
  margin-bottom: 1rem;
  padding: 1rem;
  font-weight: 600;
  margin-top: 0;
  box-shadow: inset 0 -2px 4px 2px #0002;
}

.hero .hero__content .related__links a:hover {
  background-color: yellow;
}

@media only screen and (max-width: 480px) {

  .hero .hero__content .related__links {
    width: 95%;
  }
}