html{
height: 7vh;
}
body {
    align-items: center;
    display: flex;
    height: 6vh;
	margin-left: 0;
	margin-right: 0;
    justify-content: center;
    width: 100%;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(calc(-250px * 7));
   }
}
.slider {
    background: rgb(0, 0, 0);
    height: 60px;
    margin: 0;
	padding: 0;
    overflow: hidden;
    position: relative;
    width: fit-content;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 100%);
    content: "";
    height: 60px;
    position: absolute;
    width: fit-content;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
}
.slider .slide {
    height: 60px;
    width: fit-content;
}

img{
    max-height:40px;
    height:auto;
    width:auto;
	position: relative;
	margin-left: 20px;
	margin-right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
