.teamMemberCard {
  display: flex;
  align-items: center;
  flex-direction: column;
  /* gap: 20px; */
  padding: 0 150px;
}

.teamMemberCard > .imageContainer {
  /* height: 100vh; horizontal */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0 40px 0;
}

.teamMemberCard > .imageContainer > img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
}

.teamMemberData {
  padding: 20px 200px 60px 200px;
}

.teamMemberData > h1 {
  font-size: 50px;
  font-weight: 300;
  margin: 20px 0;
}

.teamMemberData > .socialIcons > a {
  font-size: 25px;
  margin: 10px 10px 40px 10px;
}

.teamMemberData > .socialIcons > a:first-child {
  margin-left: 0;
}
.teamMemberData > .socialIcons > a:last-child {
  margin-right: 0;
}

.teamMemberData > p {
  font-weight: 100;
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}

#sigla {
  min-height: 800px;
  height: 100%;
  width: 100%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  .teamMemberData {
    padding: 0;
  }

  #sigla {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  #sigla {
    min-height: 300px;
  }

  .teamMemberCard > .imageContainer > img {
    height: 250px;
    width: 250px;
  }

  .teamMemberCard {
    flex-wrap: wrap;
    padding: 0 30px;
  }

  .teamMemberData {
    padding: 20px;
  }

  .teamMemberData > h1 {
    text-align: center;
    font-size: 30px;
    margin: 20px 0 30px 0;
  }

  .teamMemberCard > .imageContainer {
    justify-content: center;
    height: 30vh;
    margin: 60px 0 0 0;
  }

  .teamMemberData > .socialIcons {
    display: flex;
    justify-content: center;
  }
}
