.leadership-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.team-member {
  flex-basis:35%;
  margin-bottom: 50px;
  margin-right: 10px;
  margin-left: 10px;
}

.team-member .image-wrapper{
  width: 270px;
  height: 270px;
  overflow: hidden;
  border-radius: 50%;
  background: #f4f4f4;
  margin: 0 auto;
  position: relative;
}


.team-member .image-wrapper:hover .image-hover{
  opacity: .3;
  background: #77a8d2;
  z-index: 2; 
}

.team-member .image-wrapper: hover img{
  filter: grayscale(1);
}

.team-member .image-hover{
  width: 270px;
  height: 270px;
  position: absolute;
  transition: 0.3s;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(31,62,71,.4);
  border-radius: 50%;
}
.team-member .image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-name{
  font-size: 24px; 
  line-height: 30px;
  font-family: Lora, serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4f4f4f;
  margin-bottom: 10px;
  margin-top: 20px;
}
.leader-role{
  font-family: Roboto, sans-serif;
  letter-spacing: 2px; 
  font-weight: 500;
  font-size: 16px;
  color: #081e33;
  text-transform: uppercase;
}
