* {
  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;
}

img {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 90%;
  margin: 5rem auto;
  align-items: center;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .mv1 {
    grid-row: 1/2;
  }

  .mv2 {
    grid-row: 5/6;
  }

  .mv3 {
    grid-row: 9/10;
  }

  .grid-text {
    width: 100%;
  }

  .section-grid {
    gap: 2rem;
  }
}
