
body.page-team #middle.teams {
  padding-top: 30px;
}

.team-member-name {
  margin-top: 1rem;
}

#allteams {
  width: 94%;
  float: none !important;
  margin: 0 auto;
}

.flexItem {
  width: 30%;
  /* 30% for 3 across, 24% for 4, etc = leave some % space for flex to pad margins */
  margin-bottom: 1.5em;
}

.allteams {
  display: block;
  background: #000;
  position: relative;
  -webkit-transition: all .5s;  /* Safari */
  transition: all .3s;
}

.allteams:hover {
  background: #fff;
}

.allteams img {
  opacity: .9;
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.flexItem p {
  text-align: left;
  font-size: 1.1rem;
}


@media (max-width:549px) {
  .allteams p {
    font-size: 2.5em;
  }
}

.allteams:hover p {
  color: #000;
}

.flexContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.flexFill {
  display: block;
  width: 30%;
  /* must be same as regular flex item */
  height: 0;
}

#leftContentContainer {
  margin-right: 1em;
}

.imgwrap {
  float: right;
  padding: 0 0 1em 1em;
  box-sizing: border-box;
  max-width: min(50%, 400px);
}