.video-popup-trigger {
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-size: 0;
}
.video-overlay-wrapper {
  height: 81px;
  position: absolute;
  width: 127px;
  z-index: 1;
  background-color: rgba(123, 121, 106, 0.76);
  transition: all 80ms ease-out 0s;
  mix-blend-mode: normal;
  left: 50%; 
  top: 50%;
  margin-top: -40px;
  margin-left: -63px; 
}
.video-popup-trigger:hover .video-overlay-wrapper {
  left: 0;
  top: 0;
  margin-top: 0;
  margin-left: 0; 
  width: 100%;
  height: 100%;
  transition: all 80ms ease-out 0s;
  background-color: rgba(123, 121, 106, 0.5);
}
.video-play-icon {
  background: url('https://www.healthicity.com/hubfs/video-overlay.png');
  cursor: pointer;
  display: block;
  height: 81px;
  outline: none;
  position: absolute;
  width: 127px;
  z-index: 1;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -63px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}