.peoplegrid {
  width:100%;
  background-color: #fff;
}
.peoplegrid {
  font-size: 0 !important;
  line-height:0 !important;
}

.peoplegrid li {
    display:inline-block;
    padding:0;
    font-size: 1rem !important;
    line-height:1rem !important;
}

.peoplegrid li>div {
    position:relative;
    padding-bottom:100%;
}

.peoplegrid li article {
    width:100%;
    background-size:301% 301%;
    background-position: 50% 50%;
    background-repeat:no-repeat;
    background-position: 50% 50%;

    height:100%;
    position:absolute;
    overflow:hidden;

    display:flex;
    align-items: flex-end;
}

.peoplegrid li article hgroup {
    width:100%;
    padding: 20px;
    background: linear-gradient( 180deg, rgba(0,0,0,0), rgba(0,0,0,0.4));
    text-align: center;
    text-shadow: 0px 0px 3px rgba(0,0,0,1);
    font-family: Arial;
}

.peoplegrid li article hgroup h3{
    font-size:1rem;
    color:white;
    padding: 0;
}

.peoplegrid li article hgroup h4{
    font-size:0.75rem;
    color:white;
    padding: 0;
}

/*04-01-2018*/
/*

.container {
  position: relative;
  width: 100%;
}
.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity:0.8;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.container:hover .overlay {
  height: 100%;
}

.text {
  white-space: nowrap; 
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
*/