* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.full-img {
  width: 100%;
}

.primary-heading {
  font-size: 2.3rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 1.6rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

.section-right,
.section-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #f4f4f4;
  width: 80%;
  margin-top: 5vw;
  padding: 10vw;
  align-items: center;
}

.section-left {
  margin-right: 5%;
  margin-left: auto;
}

.section-right {
  margin-left: 5%;
  margin-right: auto;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-right img {
  transform: scale(1.5) translate(20%, 0);
}

.section-left img {
  transform: scale(1.5) translate(-20%, 0);
}

@media (max-width: 768px) {
  .section-left,
  .section-right {
    width: 80%;
    margin: 5vw auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-right img,
  .section-left img {
    transform: scale(1) translate(0, 0);
  }

  .section-left img,
  .section-right img {
    grid-row: 1/2;
  }
}
