.section-credit {
  padding: 10rem 0;
}
.credit__textbox {
  padding-top: 6.5rem;
}
.credit__textbox > p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3rem;
  color: rgba(0, 0, 0, 0.9);
  margin-top: 2.4rem;
}
.main-btn button {
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  background: #01934a;
  padding: 1rem;
  border: none;
  border-radius: 10px;
}
.main-pictures {
  position: relative;
  width: 50%;
}

section.who-we-are {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  align-items: center;
}
.section-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.section-top .main-title {
  text-align: center;
}
.wwa__header {
  text-align: center;
  margin-bottom: 10rem;
}
.wwa__desc {
  font-size: 1.6rem;
  line-height: 3rem;
  color: rgba(0, 0, 0, 0.9);
  margin: 2.4rem 0;
  align-items: center;
  /* width: 78%; */
  text-align: center;
}
.wwa__summary {
  font-size: 1.5rem;
  line-height: 3rem;
  /* margin-top: 2.6rem; */
  color: rgba(0, 0, 0, 0.9);
}
.section-bottom {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  align-items: center;
  margin-bottom: 10rem;
}
.section-bottom .picture {
  width: 100%;
}
.section-bottom .picture img {
  width: 100%;
}
.section-bottom .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.text .vision {
  border-bottom: 2px solid #00000045;
  padding: 0 0 2rem;
}
.text .vision,
.text .mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.vision .title,
.mission .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #003569;
}
.vision .desc,
.mission .desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.9);
}
.section__meet-team {
  padding: 10rem 0;
}
.meet-team__header {
  text-align: center;
  margin-bottom: 10rem;
}
.main-title {
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
  line-height: 0;
}
.meet-team p {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 2rem;
  text-align: center;
}
.teams {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 5rem;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 1rem; */
}
.team__member-img {
  margin-bottom: 1.2rem;
  height: 14rem;
  width: 14rem;
}
.team .team-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #d9d9d9;
}
.team .team-name {
  font-weight: 600;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.9);

  margin-bottom: 1.2rem;
}
.team .team-desc {
  font-weight: 400;
  font-size: 1.8rem;

  color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1104px) {
  .section-credit {
    padding-top: 4rem;
    padding-bottom: 5.7rem;
  }
  .wwa__header {
    margin-bottom: 5rem;
  }
  .section-bottom {
    margin-bottom: 0;
  }
  .credit__textbox {
    padding-top: 0;
  }
  .section__meet-team {
    padding: 5.7rem 0;
  }
  .main-pictures {
    width: 100%;
  }
  .section-bottom .picture {
    text-align: center;
  }
  .main-pictures > img,
  .section-bottom .picture img {
    width: 80%;
    margin: 0 auto;
  }
  .section-bottom {
    flex-direction: column;
  }

  .teams {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .teams {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .team .team-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .team__member-img {
    width: 100%;
    height: 15rem;
  }
}
@media screen and (max-width: 576px) {
  .team__member-img {
    height: 12rem;
  }
  .main-pictures > img,
  .section-bottom .picture img {
    width: 100%;
  }
  .team .team-name {
    font-size: 1.6rem;
  }
  .team .team-desc {
    font-size: 1.4rem;
  }
}
