.marquee {
	--gap: 3rem;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}
.body-container-wrapper .marquee ul > li:before{
	display: none;
}
.body-container-wrapper .marquee ul > li{
	display: grid;
	place-content: center;
	width: 200px;
	height: 100px;
	padding: 16px 32px;
	border-right: 1px solid #dee8f3;
}
.marquee ul.marquee__content {
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	min-width: 100%;
	-webkit-animation: scroll 40s linear infinite;
	animation: scroll 40s linear infinite;
}

.marquee img{
	filter: grayscale(1);
	transition: all .2s ease-in-out;
/* 	height: 48px; */
}
.marquee li:hover img{
	filter: grayscale(0);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}