.hero {
  padding-top: 10rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}

.hero-content {
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-icons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.icon {
  width: 48px;
  height: 48px;
}

.icon-arrow {
  width: 30px;
  height: 30px;
  position: relative;
  bottom: -20px;
}

.hero .highlight {
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero .highlight.accent {
  background: var(--accent);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.hero .lead {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 50px;
  font-weight: normal;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {

}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {

}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
  .hero-content {
    padding: 0 15rem;
    width: 100%;
    margin: 0 auto;
  }

  .hero h1 {
    line-height: .5;
  }
}
