@keyframes marquee {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}


.marquee {
    width: 100%;
    position: relative;
    top: 20px;
    overflow: hidden;
        height: 200px;
    display: flex;
    align-items: center;
}

.marquee .marquee-content {
    width: max-content;
    animation: 20s linear infinite marquee;
    display: flex;
}

.marquee:hover .marquee-content  {
    animation-play-state: paused
}

.marquee .marquee-content .marquee-item {
    background-color: #fff;
    border-radius: 15px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0 20px;
    padding: 15px 30px;
    transition: transform .4s, filter .4s;
    display: flex;
    box-shadow: 2px 2px 10px #dbdbdb;
}

.marquee .marquee-content .marquee-item:hover {
    filter: none;
    transform: scale(1.4);
}

.marquee .marquee-content .marquee-item img {
    width: 120px;
    height: auto;
}

.marquee .marquee-content:hover .marquee-item {
    filter: blur(4px);
    transform: scale(.9)
}

.marquee .marquee-content .marquee-item:hover {
    filter: none;
    transform: scale(1.4)
    
}