/*
Theme Name:   Pumpup - Hello Elementor Child
Theme URI:    https://pumpup.fr
Description:  Thème enfant de Hello Elementor pour le site Pumpup.
Author:       Pumpup
Author URI:   https://pumpup.fr
Template:     hello-elementor
Version:      1.0.0
Text Domain:  pumpup-hello-elementor-child
*/

/* Ajoutez vos styles personnalisés ci-dessous */

    #my-carousel-k1369, #my-carousel-k1369::before, #my-carousel-k1369::after{
        background:none !important;
    }

/**
 * Classe utilitaire : background-attachment fixed pour un conteneur Elementor.
 * A ajouter dans l'onglet Avancé > Classe(s) CSS du conteneur, avec une image
 * de fond definie dans l'onglet Style > Arriere-plan.
 * background-attachment: fixed est ignore sur iOS Safari : on repasse en
 * scroll normal sur mobile pour eviter tout bug de rendu.
 */
.pumpup-bg-fixed {
    background-attachment: fixed !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .pumpup-bg-fixed {
        background-attachment: scroll;
    }
}

/**
 * Menu fixe transparent : passe en fond noir des que la page est scrollee
 * (classe "is-scrolled" ajoutee en JS, voir assets/js/menu-scroll.js).
 */
.menu-scroll {
    transition: background-color 0.3s ease;
}

.menu-scroll.is-scrolled {
    background-color: var(--pumpup-color-dark) !important;
}