.aboutPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.aboutPage > img {
  padding: 20px;
  /* margin: 40px 0 -20px 0; */
}

.aboutPage > h1 {
  padding: 0 10%;
  margin: -20px 0 60px 0;
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  line-height: 40px;
}

.aboutSection {
  /* margin-top: 30px; */
  width: 85vw;
  padding: 0 10%;
  font-size: 17px;
}

.aboutSection > h2 {
  margin: 10px 0;
}

.aboutSection > p {
  text-align: justify;
  font-size: 18px;
}

.team {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.teamPic {
  height: 260px;
  width: 260px;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.4s all;
  filter: grayscale(0%);
  cursor: pointer;
}

/* .teamPic:hover {
  transform: scale(1.05);
} */

.teamCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 768px) {
  .aboutSection{
    padding: 0 10px;
  }

  .aboutPage > h1 {
    padding: 0 10%;
    margin: 10px 0 30px 0;
    text-align: center;
    font-size: 40px;
    font-weight: 100;
    line-height: 40px;
  }
}
