.bios {
  text-align: center;
}
.bios .grid {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
.bios p {
  margin: 0;
}
.bios a {
  display: block;
  padding: 20px;
}
.bios a h4 {
  color: #22252E;
}
.bios a:hover {
  background-color: #2275AC;
  color: #fff;
}
.bios a:hover h4 {
  color: #fff;
}

.hero.consultants + .bio-listing {
  margin-top: -60px;
  padding: 0;
}

.bio-listing ul, .bio-listing li {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}
.bio-listing ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
}
.bio-listing ul li {
  width: 100%;
  padding: 0 13.5px 27px;
}
@media (min-width: 460px) {
  .bio-listing ul li {
    max-width: 50%;
  }
}
@media (min-width: 767px) {
  .bio-listing ul li {
    max-width: 33%;
  }
}
@media (min-width: 1024px) {
  .bio-listing ul li {
    max-width: 20%;
  }
}
.bio-listing ul li.break {
  max-width: 33%;
  width: 100%;
  padding: 0 13.5px 27px;
}
@media (max-width: 766px) {
  .bio-listing ul li.break {
    display: none;
  }
}
@media (min-width: 1024px) {
  .bio-listing ul li.break {
    max-width: 40%;
  }
}
.bio-listing ul li.break span {
  background-size: cover;
}
.bio-listing ul li.break img {
  visibility: hidden;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.bio-listing ul li.break span {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  height: 100%;
}
.bio-listing a {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.bio-listing a .photo {
  opacity: 1;
  transition: ease-in-out all 0.25s;
  position: relative;
}
.bio-listing a .photo:before {
  position: absolute;
  content: "";
  opacity: 0;
  background-color: #2275AC;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.bio-listing a .photo:after {
  position: absolute;
  content: "+";
  opacity: 0;
  width: 100%;
  top: 50%;
  left: 0;
  color: #fff;
  font-size: 6.25rem;
  font-weight: 300;
  text-align: center;
  line-height: 100%;
  z-index: 2;
  transform: translateY(-50%);
}
.bio-listing a .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 247/315;
  max-width: 100%;
  display: block;
  margin: 0;
  position: relative;
  z-index: 0;
}
.bio-listing a .content {
  background: linear-gradient(180deg, #C9E0E4, #99BEC4);
  color: #4C4F51;
  padding: 10px 20px 30px;
  flex: 1;
  transition: 0.25s ease-in-out all;
}
.bio-listing a .content h2 {
  font-size: 1.875rem;
  line-height: 2.3125rem;
}
.bio-listing a .content h2.force-br {
  display: table-caption;
}
.bio-listing a .content p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.bio-listing a:hover .photo:before {
  opacity: 0.75;
  transition: 0.25s ease-in-out all;
}
.bio-listing a:hover .photo:after {
  opacity: 1;
  transition: 0.25s ease-in-out all;
}
.bio-listing a:hover .content {
  background: linear-gradient(180deg, #2275AC, #1F225A);
  color: #fff;
}