/* HOME - Partners scrolling slides */
.sliderPartner {
    background: var(--terciary-color);;
    padding: 40px auto;
    overflow: hidden;
    position: relative;
    cursor: default;
    user-select: none;
    touch-action: none;
}

/* Zoom on instructor cards when the mouse is over */
.slidePartner img {
    transition: transform .2s;
    filter: grayscale(100%);
}
.slidePartner img:hover {
    transform: scale(1.1);
}

.sliderPartner:before {
    left: 0;
    top: 0;
}
.sliderPartner:after,
.sliderPartner:before {   
    content: "";
    width: auto;
    height: auto;
    position: absolute;
    z-index: 2;
}
.sliderPartner:after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.sliderPartner .slide-track-Partner {
    display: flex;
    width: 3500px; /* Twice the width to accommodate duplicate set of slides */
    animation: scroll-l-Partner 30s linear infinite;
}

.sliderPartner .slidePartner {
    height: 100px;
    width: auto;
    display: flex;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    position: relative;
}

.sliderPartner .slidePartner img {
    width: auto;
    height: 72px;
    padding: 1pc;
    margin: 0px;
    display: block;
    max-height: 100%;
    max-width: 100%;
    transition: transform .2s;
}

@keyframes scroll-l-Partner {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(calc(-125px * 7)); /* Halfway through animation */
    }
    100% {
        transform: translateX(calc(-125px * 14)); /* Complete animation */
    }
}