/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    ORGANISME : HEADER
    Style de l'en-tête
*/



/* Quand on voit le header mais on pas encore au top */
/* .organism_header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
} */
 .page-template-page-home .organism_header,
 .blog .organism_header {
    position: absolute;
    width: 100%;
    z-index: 99;
}
@media(max-width: 991px) {
    /* body.blog .organism_header, */
    body.single-post .organism_header {
        position: absolute;
        width: 100%;
        z-index: 99;
    }
}
@media (min-width: 992px) {
        .organism_header {
            background-color: var(--c-primary);
        }

    }

    /* Au chargement et quand on remonte au top */
    .organism_header.reset-fixed {
        position: static;
    }

    /* Quand on scroll */
    .organism_header.fixed {
        position: fixed;
        transform: translateY(-100%);
        transition: transform .4s;
    }

        /* Au scroll vers le haut */
        .organism_header.fixed:not(.scrolling) {
            transform: translateY(0);
        }

        /* Au scroll vers le bas pour éviter le sursaut */
        .organism_header.fixed.scrolling.reset-fixed {
            transition: transform 0s;
        }

/* -------------
    Mon compte
------------- */
.btn-compte {
    display: flex;
    align-items: center;
}
.btn-compte a {
    color: var(--white);
    font-family: var(--ff-secondary);
}
.btn-compte a:hover {
    color:var(--c-tertiary)
}
.btn-compte::before {
    content: "\e900";
    font-family: 'icomoon';
    display: inline-block;
    font-size: 31px;
    color: var(--c-tertiary);
    margin-right: 9px;
}
@media(max-width :991px) {
    .btn-compte a {
        font-size: 2rem;
    }
    .btn-compte::before {
        font-size: 43px;
    }
    .molecule_nav-mobile .btn-compte {
        display: none;
    }
}
@media(min-width :992px) and (max-width: 1199px) {
    .btn-compte {
       margin-left: 25px;
    }
}
