ul#people {
  width: 80%;
  float: left;
  position: relative;
  margin: 0px 0px 0px 10%;
  padding: 0px 0px 0px 0px;
  display: block;
}
ul#people li {
  width: calc(16.66% - 50px);
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 40px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  cursor: pointer;
  z-index: 1001;
}
ul#people li .headshot {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  text-align: center;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  overflow: hidden !important;
  /* child transitions were overflowing parent container */
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
ul#people li .headshot .letter {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  display: flex;
  opacity: 0.0;
  justify-content: center;
  /* align horizontal */
  align-items: center;
  /* align vertical */
}
ul#people li .headshot .letter p {
  font-size: 160px;
  margin-top: -5px;
  line-height: normal;
  font-weight: 100;
  color: #56585a;
  text-align: center;
}
ul#people li .headshot img {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  /* when moving around from js the square image would show for a second */
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  transition: all 200ms ease-in-out;
  z-index: 0;
}
ul#people li p {
  width: 100%;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  text-align: center;
  clear: both;
}
ul#people li p.name {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
ul#people li p.title {
  font-size: 16px;
  line-height: 18px;
  color: #999999;
  margin-bottom: 10px;
}
ul#people li p.bio {
  font-size: 18px;
  line-height: 24px;
  display: none;
  padding-bottom: 20px;
  border-bottom: 2px solid #ecdc25;
}
ul#people li:hover:not(.current) .headshot {
  background: #ecdc25;
}
ul#people li:hover:not(.current) .headshot .letter {
  opacity: 1.0;
}
ul#people li:hover:not(.current) .headshot img {
  width: 102%;
  height: auto;
  margin: -1%;
  /* transition: all 300ms ease;*/
  opacity: 0.20;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
ul#people li.current {
  height: auto !important;
}
ul#people li.current .headshot {
  /* -webkit-box-shadow: 0px 0px 40px 0px rgba(236,220,37,1);
				-moz-box-shadow: 0px 0px 40px 0px rgba(236,220,37,1);
				box-shadow: 0px 0px 40px 0px rgba(236,220,37,1);	 */
  border: 0px solid #ecdc25;
}
ul#people li.current .headshot img {
  width: 120%;
  height: auto;
  margin: -10%;
}
ul#people li.current p.bio {
  display: block;
}
@media screen and (max-width: 1800px) {
  ul#people li {
    width: calc(20% - 48px);
  }
}
@media screen and (max-width: 1500px) {
  ul#people li {
    width: calc(25% - 45px);
  }
}
@media screen and (max-width: 1200px) {
  ul#people li {
    width: calc(33.3% - 40px);
  }
}
@media screen and (max-width: 760px) {
  ul#people li {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 580px) {
  ul#people {
    width: 60%;
    margin-left: 20%;
  }
  ul#people li {
    width: calc(100%);
  }
}
