.whoWeAre {
  padding: 90px 0;
  width: 90%;
  margin: auto
}
.containerWhoWeAre {
  display: flex;
  justify-content: space-between
}
.containerWhoWeAre div {
  width: 45%
}
.whoWeAre div p {
  margin-bottom: 20px
}
.whoWeAre h2 {
  margin-bottom: 30px;
  color: #1D773C;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  text-align: left;
}
.team {
  padding: 90px 0;
  background-color: #F6F6F5
}
.teamCards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  width: 70%;
  max-width: 1000px;
  margin: auto;
}
.card {
  border: 1px solid #000;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  aspect-ratio: 1.5/ 1;
}
.card h3 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  width: fit-content;
}
.line-card{
  margin-bottom: 10px;
  height: 4px;
  width: 40px;
  background: black;
}
.card h4{
  font-size: 20px;
}

@media screen and (max-width: 1300px) {
  .card h4{
    font-size: 15px;
  }
  .card div+p{
    font-size: 14px;
  }
}

@media screen and (max-width: 1100px) {
  .teamCards{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .whoWeAre h2{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    color: black;
    text-align: left;
  }
  .whoWeAre h4{
    color: #1D773C;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .whoWeAre{
    padding: 40px 0;
  }
  .whoWeAre h1{
    font-size: 30px;
    line-height: 30px;
    width: 370px;
    right: calc(50% - 185px);
  }
  .containerWhoWeAre{
    flex-direction: column;
  }
  .containerWhoWeAre div{
    width: 100%;
  }
  .team{
    padding: 40px 0;
  }
  .teamCards{
    grid-template-columns: 1fr;
  }
}