h1, h1.prod-list__title {
  font-family: 'Dancing Script', cursive;
}
.bloc1 .wiziblocks__item__maxWidth {
    background-color: #08c95c;
    padding: 10px;
}
.filter {
    background: #08c95c;
    border-radius: 40px;
}
@media (min-width: 720px) {
    .wizi-wrapper--textOnImg.wizi-wrapper--small {
        min-height: 20vw;
    }
}
@media (min-width: 1024px) {
    .header__logo__a .picture--left {
        width: 330px !important;
        height: 107.6px !important;
    }
}
@media (min-width: 1024px) {
    .wizi-wrapper--textOnImg.wizi-wrapper--small>.wizi-txt,
    .wizi-wrapper--textOnImg.wizi-wrapper--medium>.wizi-txt,
    .wizi-wrapper--textOnImg.wizi-wrapper--large>.wizi-txt {
        padding-right: 700px !important;
    }
}

i.far.fa-question-circle {
    display: none;
}
/* BLOC2 */
.bloc2 .wizi-img__content {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background-color: #f4f1f1 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}

.bloc2 .wizi-img__content:hover {
    transform: scale(1.05) !important;
}

.bloc2 .wizi-img__content picture {
    flex-shrink: 0 !important;
}

.bloc2 .wizi-img__item {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    transition: opacity 0.3s ease !important;
}

.bloc2 .wizi-img__content__wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-left: 15px !important;
}

.bloc2 .wizi-img__content__wrapper__icon {
    font-size: 24px !important;
    color: #e95656 !important;
}

.bloc2 .wizi-img__content__wrapper__text p {
    font-size: 18px !important;
    color: #08c95c !important;
    margin: 0 !important;
    font-weight: bold !important;
}

@media (max-width: 768px) {
    .bloc2 .wizi-img__content {
        flex-direction: column !important;
        align-items: center !important;
    }

    .bloc2 .wizi-img__content__wrapper {
        padding-left: 0 !important;
        text-align: center !important;
    }

    .bloc2 .wizi-img__content__wrapper__icon {
        margin-bottom: 10px !important;
    }
}
.bloc2 .wizi-img__content__wrapper__text {
    display: none;
}
/* FIN BLOC2 */

.wizi-imgtxt {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; /* Centre le contenu verticalement */
    background-color: #f4f1f1 !important; /* Couleur de fond neutre */
    padding: 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.wizi-imgtxt__left {
    flex: 1 !important; /* Prend une partie égale avec le texte */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; /* Centre l'image verticalement */
    padding: 10px !important;
}

.wizi-imgtxt__left--small img {
    max-width: 100% !important; /* L'image s'adapte à son conteneur */
    height: auto !important; /* Maintient le ratio d'aspect */
    border-radius: 8px !important; /* Arrondit les coins de l'image */
}

.wizi-imgtxt__right {
    flex: 1 !important; /* Prend une partie égale avec l'image */
    background-color: #ffffff !important; /* Fond blanc pour le texte */
    padding: 20px !important;
    border-radius: 8px !important;
    margin-left: 20px !important; /* Espacement entre l'image et le texte */
    border-left: 4px solid #08c95c !important; /* Bordure verte à gauche du texte */
}

.wizi-imgtxt__wrap {
    text-align: left !important;
}

.wizi-imgtxt__wrap h2 {
    font-size: 24px !important;
    color: black !important; /* Titre en vert */
    margin-bottom: 15px !important;
    font-weight: bold !important;
}

.wizi-imgtxt__wrap p {
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.wizi-imgtxt__wrap b {
    color: black !important; /* Mots en gras en vert */
}

@media (max-width: 768px) {
    .wizi-imgtxt {
        flex-direction: column !important; /* Empile les éléments verticalement sur mobile */
    }

    .wizi-imgtxt__left,
    .wizi-imgtxt__right {
        max-width: 100% !important; /* Assure que chaque section occupe la pleine largeur */
        margin-left: 0 !important; /* Réinitialise la marge sur mobile */
    }

    .wizi-imgtxt__wrap h2 {
        font-size: 20px !important;
    }

    .wizi-imgtxt__wrap p {
        font-size: 14px !important;
    }
}

/* TEST */
.nav__itemlvl1::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #08C95C !important; /* La couleur de la barre verte */
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

/* Survol de l'élément - la barre s'étend sur toute la largeur */
.nav__itemlvl1:hover::after {
    width: 100%;
}

/* Optionnel : changer la couleur du texte lors du survol */
.nav__itemlvl1:hover {
    color: #000 !important; /* Changer la couleur du texte si nécessaire */
}
@media (min-width: 720px) {
    .wizi-imgtxt__wrap {
        padding: 0;
    }
}