.staff-bios-wrapper {
  border: 1px solid #fedf99;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  margin-left: 20px;
  vertical-align: top;
  width: 350px;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(32, 32, 32, 0.6);
  color: #fff;
  font-size: 13pt;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: left;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.staff-bios-wrapper:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img__description {
  transition: .2s;
  transform: translateY(1em);
}

.staff-bios-wrapper:hover .img__description {
  transform: translateY(0);
}

#staff-bios {
  text-align: center;
}

#staff-bios-body {
  margin: 0 auto;
  width: 1110px;
}

#staff-bios-body .content-staff-body {
  margin-left: 15px;
}

#staff-bios-title {
  text-align: center;
  margin-bottom: 50px;
  margin-left: 20px;}

#staff-bios .staff-name {
  background-color: #fff;
  border: 1px solid #fedf99;
}
#staff-bios .staff-position {
  display: block;
  font-size: 10px;
  color: #29428D;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 15px;
  padding-bottom: 7px;
}

#staff-bios .staff-title {
  display: block;
  font-size: 20px;
  font-family: 'Merriweather', serif;
  padding: 7px 15px;
}

