.hero-section {
  display: flex;
  height: 766px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  padding-left: 16px;
  padding-right: 16px;
}

.hero-section-text-container {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-section-title {
  text-align: start;
  font-size: 32px;
  font-weight: 800;
}

.hero-section-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #6b7280;
}

.hero-section-illustration {
  height: 160px;
  align-self: center;
}

.semi-section {
  display: flex;
  height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.semi-section-gray {
  background: #f3f4f6;
}

.semi-section-title {
  text-align: center;
  font-weight: 600;
  color: black;
  font-size: 20px;
  max-width: 500px;
}

.semi-section-image {
	border-radius: 8px;
}

@media (min-width: 26em) {
  .hero-section {
    align-items: center;
  }

  .hero-section-illustration {
    height: 192px;
  }
}

@media (min-width: 48em) {
  .hero-section {
    align-items: center;
    padding-left: 120px;
    padding-right: 120px;
  }

  .hero-section-text-container {
    align-items: center;
  }

  .hero-section-title {
    text-align: center;
    font-size: 48px;
  }

  .hero-section-illustration {
    height: 280px;
  }

  .semi-section {
    padding-left: 120px;
    padding-right: 120px;
  }

  .semi-section-title {
    font-size: 36px;
  }
}

@media (min-width: 64em) {
  .hero-section {
    height: 864px;
    padding-left: 240px;
    padding-right: 240px;
  }

  .hero-section-title {
    font-size: 64px;
  }

  .hero-section-subtitle {
    font-size: 24px;
  }

  .hero-section-illustration {
    height: 400px;
  }

  .semi-section { 
	height: 1000px;
  }

  .semi-section-title {
    font-size: 40px;
  }
}
