/*
Theme Name: Digilio Reac
Author: Digilio
Description: Your description goes here
Version: 1.0
Template: kadence

This is the child theme for Kadence theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

/* HERO */

.hero-slide{
    transition:opacity 1s ease;
}

/* MARCAS */

@keyframes marquee {

    0%{
        transform:translateX(0);
    }

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

}

.animate-marquee{
    width:max-content;
    animation:marquee 28s linear infinite;
}


.catalogo-track{
    width:max-content;
    animation:catalogo-scroll 30s linear infinite;
}

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



@keyframes catalogo-scroll{

    from{
        transform:translateX(0);
    }

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

}