/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/
Description:  Hello Elementor Child Theme
Author:       Commsquare
Author URI:   https://commsquare.gr
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* =============================================
   Τα custom CSS σου πηγαίνουν εδώ
   ============================================= */


/* Πριν */
.fu-tk-items {
    display: flex;
    gap: 40px;
    animation: fu-tk 35s linear infinite;
    width: max-content;
}

/* Μετά */
.fu-tk-items {
    display: flex;
    gap: 40px;
    animation: fu-tk 35s linear infinite;
    animation-delay: 3s;       /* περιμένει 3 δευτερόλεπτα */
    animation-fill-mode: both; /* κρατάει την αρχική θέση κατά το delay */
    width: max-content;
}

.fu-tk-scroll:hover .fu-tk-items {
    animation-play-state: paused;
}