@keyframes smoooth {
	0% {
		padding: 2rem 0 4rem;
	}
	100% {
		padding: 0;
	}
}



.team__rowlist {
  display: flex;
  justify-content: space-around;
  animation-duration: 1.5s;
  animation-name: smoooth;

  @media screen and (max-width: 700px) {
    flex-direction: column;
    margin: 1rem 0!important;
    padding: 1rem 0!important;
    border-bottom: 1px solid #aaa;
  }

}
.team__person {
  flex: 1;
  text-align: center;
  margin: 1rem 0!important;
}
.team__name {
  margin: 0!important;
}
.team__group {
  line-height: 1.15;
  margin-bottom: .2em;
  font-size: 1rem;
  font-weight: bold;
  color: var(--orange);

}
.team__position {
  font-size: 1rem;
  line-height: 1.3;
}
.team__image {
  display: block;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 20rem;
}
