.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}


.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  min-height: 700px;
  text-align: center;
  padding: 10rem 1rem 6rem 1rem;
  color: var(--color-white);
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 3.5em;
  width: 85%;
  text-align: center;
  color: var(--color-white);
  line-height: 1.1;
}

.hero__highlight {
  color: var(--color-secondary);
}

.hero__description {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  max-width: 600px;
  color: var(--color-text-light);
}

@media screen and (max-width:750px) {
  .hero__title {
    font-size: 2.5em;
    width: 100%;
  }
}