* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.full-img {
  width: 100%;
}

.primary-heading {
  font-size: 2rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.section-hero {
  width: 90%;
  margin: 5rem auto;
}

.section-hero h2 {
  text-align: center;
}

.add-bold {
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
}

.hero-cell {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.grid-text {
  width: 80%;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .grid-text {
    grid-row: 2/3;
  }
}
