* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}
.big-img {
  width: 100%;
  display: block;
}

.small-img {
  display: none;
  width: 100%;
}

.add-relative {
  position: relative;
}

.full-img {
  width: 100%;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.4rem;
}

.basic-text {
  font-size: 1.1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 5rem auto;
  gap: 2rem;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .mv {
    grid-row: 3/4;
  }
}
