* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.add-relative {
  position: relative;
}

.add-bold {
  font-weight: 700;
}

.full-img {
  width: 100%;
  margin-bottom: -5px;
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-size: 2.2rem;
  font-weight: 700;
}

.secondart-heading {
  font-size: 1.8rem;
  font-weight: 700;
}

.tertiary-heading {
  font-size: 1.4rem;
  font-weight: 700;
}

.basic-text {
  font-size: 1.2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-text {
    padding: 3rem 0;
  }

  .move-one {
    grid-area: 1 / 1 / 2 / 2;
  }

  .move-two {
    grid-area: 5 / 1 / 6 / 2;
  }
}
