.partner-logo {
    width: 345px;
    height: 70px;
    object-fit: contain;
    max-width: unset;
}

.marquee__container {
    --element-gap: 150px;
    --animation-length: 30s;
}

.marquee__outer {
    position: relative;
    overflow: hidden;
}

.marquee__outer::after,
.marquee__outer::before {
    content: "";
    display: block;
    z-index: 1;
    position: absolute;
    top: 0;
    height: 100%;
    width: 300px;
}

.marquee__outer::before {
    left: 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 9, 74, 0) 100%);
}

.marquee__outer::after {
    right: 0;
    background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 9, 74, 0) 100%);
}

@media screen and (max-width: 750px) {

    .partner-logo {
        width: 205px;
        height: 70px;
    }

    .marquee__container {
        --element-gap: 100px 
    }

    .marquee__outer::after,
    .marquee__outer::before {
        width: 150px;
    }
}
