body {
  overflow-x: hidden;
}

.page-body ul {
  padding-left: var(--spacing-2);
}

.page-body p {
  padding-bottom: var(--spacing-2);
}

.main-img {
  max-width: 500px;
}

/* For About Us */

.people-intro-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.person-image-container {
  height: 400px;
  /* width: 400px; */
  background-color: #e1e1e1;
  z-index: -10;
}

.person-image-container::before {
  background: url("../../Assets/images/overlap-pattern-black.svg");
  background-size: 200%;
  content: "";
  height: 500px;
  width: 500px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: -1;
  transform: translate(-40%, 30%) rotate(-35deg);
  opacity: 0.2;
}

.person-image-container {
  max-width: 300px;
}

.person-image-container img {
  vertical-align: bottom;
  object-fit: cover;
}

@media screen and (max-width: 910px) {
  .people-intro-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
