/* Logo SVG Carousel Elementor Pro */
.lscep-carousel {
    --lscep-visible: 5;
    --lscep-fade-color: #000000;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lscep-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation-name: lscep-scroll-left;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 28s;
    will-change: transform;
}

.lscep-direction-right .lscep-track {
    animation-name: lscep-scroll-right;
}

.lscep-pause-hover:hover .lscep-track {
    animation-play-state: paused;
}

.lscep-logo {
    flex: 0 0 calc(100vw / var(--lscep-visible));
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: calc(100vw / var(--lscep-visible));
    box-sizing: border-box;
    text-decoration: none;
}

.lscep-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

.lscep-mode-white .lscep-logo img {
    filter: brightness(0) invert(1);
}

.lscep-mode-black .lscep-logo img {
    filter: brightness(0);
}

.lscep-mode-grayscale .lscep-logo img {
    filter: grayscale(1);
}

.lscep-hover-scale .lscep-logo:hover img {
    transform: scale(1.06);
}

.lscep-hover-opacity .lscep-logo:hover img {
    opacity: .65 !important;
}

.lscep-has-fade::before,
.lscep-has-fade::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.lscep-has-fade::before {
    left: 0;
    background: linear-gradient(90deg, var(--lscep-fade-color), transparent);
}

.lscep-has-fade::after {
    right: 0;
    background: linear-gradient(270deg, var(--lscep-fade-color), transparent);
}

@keyframes lscep-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes lscep-scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .lscep-carousel {
        --lscep-visible: 3;
    }
}

@media (max-width: 767px) {
    .lscep-carousel {
        --lscep-visible: 2;
    }
}

@media (max-width: 480px) {
    .lscep-carousel {
        --lscep-visible: 1.4;
    }
}
