.infolio-img-scale{
  position: relative;
  span{
    display: inline-block;
  }
  [data-overlay-dark]:before {
    background: #1d1d1d;
  }
  .image{
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .caption{
    position: relative;
    z-index: 7;
  }

  .image > .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .vid {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    i{
      color: #fff;
      font-size: 50px;
    }
    svg{
      fill: white;
      width: 50px;
      height: 50px;
    }
  }
}