/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1773208782
Updated: 2026-03-11 13:59:42

*/

.fr-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    --marquee-duration: 35s;
    --marquee-gap: clamp(24px, 4vw, 72px);
    --marquee-img-height: 60px;
}

.fr-logo-marquee__viewport {
    overflow: hidden;
    width: 100%;
}

.fr-logo-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: fr-logo-marquee-scroll var(--marquee-duration) linear infinite;
    will-change: transform;
}

.fr-logo-marquee[data-direction="right"] .fr-logo-marquee__track {
    animation-name: fr-logo-marquee-scroll-reverse;
}

.fr-logo-marquee__group {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    flex-shrink: 0;
    padding-right: var(--marquee-gap);
}

.fr-logo-marquee__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fr-logo-marquee__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fr-logo-marquee__item img {
    display: block;
    height: var(--marquee-img-height);
    width: auto;
    max-width: none;
    object-fit: contain;
}

.fr-logo-marquee.is-pause-on-hover:hover .fr-logo-marquee__track {
    animation-play-state: paused;
}

@keyframes fr-logo-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fr-logo-marquee-scroll-reverse {
    from {
        transform: translate3d(-50%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.fr-logo-marquee::before,
.fr-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.fr-logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--marquee-fade-color, #fff), transparent);
}

.fr-logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--marquee-fade-color, #fff), transparent);
}

@media (max-width: 767px) {
    .fr-logo-marquee {
        --marquee-img-height: 42px;
        --marquee-gap: 28px;
    }

    .fr-logo-marquee::before,
    .fr-logo-marquee::after {
        width: 30px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fr-logo-marquee__track {
        animation: none;
        transform: translate3d(0, 0, 0);
    }
}