@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    margin-top: -20px;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

.logos-slide img {
    height: 40px;
    margin: 10px;
    padding: 10px;
    width: 120px;
    border-radius: 10px;
    background-color: var(--light);
    box-shadow: 0px 0px 2px var(--box-shadow);
}

.logos-slide img:hover {
    transform: scale(1.04);
    transition: 0.5s ease;
}


/*Profile pictures Slider Css*/

.profiles {
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    margin-top: -20px;
}

.profiles:before,
.profiles:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.profiles-slide {
    display: inline-block;
    animation: 50s slide infinite linear;
    background-color: var(--body-alt);
}

.profiles-slide img {
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    width: 60px;
    mix-blend-mode: multiply;
}