/* portfolio */
.logo-grid .img-wrap {
  position: relative;
  display: inline-block;
}

.logo-grid .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #4A5766;
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 2;
}
.logo-grid .img-wrap img {
  display: block;
  position: relative;
  z-index: 1;
}

/* homepage */
.logo-with-carousel .wrapper .item .img-mask-slide {
  width: 300px;
  height: 100px;
  background-color: #4A5766; /* real color #4A5766 test color red */

  -webkit-mask-image: var(--logo-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: var(--logo-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}