/* About Us page */
.about-us-page-container {
  /* background-color: aqua; */
  padding: 100px;
  font-family: var(--DmSans);
}

.about-us-page-heading {
  /* background-color: yellow; */
}

.about-us-page-heading span {
  display: flex;
  gap: 10px;
  font-weight: 600;
  align-items: center;
  color: var(--primary-color);
}

.about-us-page-heading h2 {
  color: #252525;
  width: 70%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 10px 0;
}

.about-us-page-container p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Do more together than you can alone. Start helping now! */
.do-more-together-container {
  display: flex;
  /* display: none; */
  gap: 100px;
  justify-content: center;
  padding: 50px 100px;
  font-family: var(--DmSans);
  /* background-color: rebeccapurple; */
  width: 100%;
}

.do-more-content-wrapper {
  width: 500px;
  /* background-color: tomato; */
}

.do-more-content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #252525;

  margin-bottom: 50px;
}

.do-more-img-wrapper {
  width: 70%;
  margin-left: auto;
}

.do-more-img-wrapper img {
  width: 100%;
  height: auto;
}

.together-sustainable-container {
  width: 500px;
}

.sustainable-image-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

.sustainable-image-wrapper img {
  width: 100%;
  height: 100%;
}

.together-sustainable-container p {
  font-size: 0.9rem;
  color: #252525;
}

@media (max-width: 968px) {
  .about-us-page-container {
    padding: 50px 20px;
  }

  .about-us-page-heading h2 {
    width: 100%;
    font-size: 2rem;
  }

  .about-us-page-container p {
    text-align: justify;
  }

  .do-more-together-container {
    flex-direction: column;
    display: block;
    padding: 20px;
  }

  .do-more-content-wrapper {
    width: 100%;
  }

  .do-more-content-wrapper h2 {
    font-size: 2rem;
    width: 70%;
  }

  .together-sustainable-container {
    width: 100%;
    transform: translateY(-100px);
  }

  .sustainable-image-wrapper {
    width: 70%;
    margin-bottom: 20px;
  }
}
