/* Pagename */
.about-section .container,
.work-section .container,
.goals-section .container {
  padding: 0;
}
.page-heading {
  color: var(--accent);
  margin-bottom: 32px;
}
.special-body-text {
  display: block;
  color: var(--accent);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}
.about_img {
  width: 450px;
  float: right;
  margin: 0 0 24px 24px;
}

/* Work Steps */
.work-steps {
  margin-top: 40px;
}
.work-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.step-heading {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.step-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-weight: 500;
  margin-right: 12px;
  color: white;
  border-radius: 2px 8px;
  background-color: var(--accent);
}
.step-desc {
  width: 400px;
}
.work-img {
  position: relative;
  top: -48px;
  right: 300px;
  width: 250px;
}
.mapping-img {
  right: 180px;
  width: 260px;
  top: 0px;
}

/* Our Goals */
.goals-img {
  float: right;
  width: 480px;
  margin-left: 32px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1200px) {
  /* Pagename */
  .about_img {
    width: 420px;
  }

  /* Work Steps */
  .work-img {
    top: -40px;
    right: 120px;
  }
  .mapping-img {
    top: -10px;
    right: 40px;
  }

  /* Our Goals */
  .goals-img {
    width: 440px;
    margin-left: 32px;
  }
}
@media screen and (max-width: 992px) {
  .page-heading {
    font-size: 36px;
    margin-bottom: 28px;
  }
  /* Pagename */
  .about_img {
    width: 360px;
  }

  /* Work Steps */
  .work-img {
    top: -40px;
    right: 0px;
  }
  .mapping-img {
    top: -4px;
    right: 4px;
  }

  /* Our Goals */
  .goals-img {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  /* Pagename */
  .page-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* About */
  .about-section {
    margin-top: 36px;
  }
  .about_img {
    width: 280px;
  }

  /* Work Steps */
  .work-step {
    flex-direction: column;
    align-items: flex-start;
  }
  .work-img {
    width: 200px;
    margin-top: 24px;
    top: 0px;
    left: 0px;
  }
  .mapping-img {
    width: 240px;
    margin-top: 24px;
    top: 0px;
    right: 0px;
  }

  /* Our Goals */
  .goals-img {
    width: 240px;
  }
}
@media screen and (max-width: 576px) {
  /* Pagename */
  .page-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  /* About */
  .about-section {
    margin-top: 36px;
  }
  .about_img {
    display: block;
    float: none;
    margin: 0 0 32px 0;
  }

  /* Work Steps */
  .work-step {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-heading {
    align-items: flex-start;
  }
  .step-desc {
    width: auto;
  }

  /* Our Goals */
  .goals-img {
    display: block;
    float: none;
    margin: 0 0 32px 0;
    width: 240px;
  }
}
