.bbs-headshot-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bbs-headshot-container .bbs-hover-headshot .headshot-inner .headshot-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  transition: .3s ease;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bbs-headshot-container .bbs-hover-headshot:hover .headshot-inner .headshot-image {
  transform: scale(1.03);
}
.bbs-headshot-container .bbs-hover-headshot .headshot-inner .headshot-overlay {
      position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.9) 100%);
    background-blend-mode: multiply;
    z-index: 1;
    transition: background 0.5s linear 0s;
}
.bbs-headshot-container .bbs-hover-headshot:hover .headshot-inner .headshot-overlay {
      background: rgba(0, 0, 0, 0.7);
    mix-blend-mode: multiply;
}

.bbs-headshot-container .bbs-hover-headshot .headshot-inner .headshot-description {
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.bbs-headshot-container .bbs-hover-headshot .headshot-inner .headshot-description p {
  color: #fff;
}

@media(max-width: 767px) {
  .bbs-headshot-container .bbs-hover-headshot .headshot-inner .headshot-image {
    background-position: center;
  }
  
}
