.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: var(--header-bar-height);
    padding: 0 var(--wp--style--root--padding-right) 0 var(--wp--style--root--padding-left);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    transition: box-shadow .3s ease-in-out;
}
body.home.top:not(.menu-opened) .header{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
    .header::before{
        content: "";
        width: 100%;
        height: 100%;
        background: var(--wp--preset--color--theme-blanc);
        position: absolute;
        left: 0;
        top: 0;
        transition: opacity .3s ease-in-out;
    }
    body.home.top:not(.menu-opened) .header::before{
        opacity: 0.6;
    }
    .header_narrow{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
        width: 100%;
        height: 100%;
        max-width: 1480px;
        position: relative;
        z-index: 2;
    }
        .header_left{
            display: flex;
            flex-direction: row;
            align-items: center;
        }
            .header_logo{
            }
                .header_logo img{
                    display: block;
                    width: auto;
                    height: 76px;
                }
        .header_right{
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 30px;
        }
            .header_links{
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 45px;
            }
                .header_link{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    padding: 10px 0;
                    position: relative;
                }
                    .header_link-label{
                        color: var(--wp--preset--color--theme-noir);
						font-family: var(--wp--preset--font-family--barlow-semi-condensed);
                        font-size: 18px;
                        font-weight: 500;
                        text-transform: uppercase;
                        position: relative;
                        transition: text-shadow .2s ease-in-out;
                    }
                    .header_link:hover .header_link-label{
                        text-shadow: 0 0 1px var(--wp--preset--color--theme-noir);
                    }
                        .header_link-label::before{
                            content: "";
                            width: 100%;
                            height: 2px;
                            background: var(--wp--preset--color--theme-rouge);
                            opacity: 0;
                            position: absolute;
                            bottom: -10px;
                            left: 0;
                            transition: opacity .2s ease-in-out;
                        }
                        .header_link:hover .header_link-label::before{
                            opacity: 1;
                        }
                        .header_link:not(:last-child) .header_link-label::after{
                            content: "◊";
                            color: var(--wp--preset--color--theme-rouge);
                            font-size: 18px;
                            font-weight: 500;
                            position: absolute;
                            right: -27px;
                            top: 0;
                        }
            .header_locales{
                position: relative;
            }
                .header_locales-current{
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 10px;
                    padding: 5px;
                    cursor: pointer;
                    transition: all .2s ease-in-out;
                }
                .header_locales.active .header_locales-current{
                    background: var(--wp--preset--color--theme-blanc);
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
                }
                    .header_locales-current-flag{
                    }
                        .header_locales-current-flag img{
                            display: block;
                            width: auto;
                            height: 16px;
                        }
                    .header_locales-current-icon{
                        margin-top: 1px;
                        font-size: 10px;
                    }
                .header_locales-select{
                    display: none;
                    width: 100%;
                    padding: 5px;
                    background: var(--wp--preset--color--theme-blanc);
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
                    position: absolute;
                    left: 0;
                    top: calc(100% + 5px);
                }
                    .header_locales-select-options{
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 5px;
                        width: 100%;
                    }
                        .header_locales-select-option{
                            width: 100%;
                        }
                            .header_locales-select-option-flag{
                            }
                                .header_locales-select-option-flag img{
                                    display: block;
                                    width: auto;
                                    height: 16px;
                                }
            .header_burger{
                display: none;
                width: 36px;
                height: 26px;
                position: relative;
                cursor: pointer;
            }
                .header_burger span{
                    width: 100%;
                    height: 4px;
                    border-radius: 2px;
                    background: var(--wp--preset--color--theme-noir);
                    position: absolute;
                    left: 0;
                    transition: all .2s ease-in-out;
                }
                .header_burger span:nth-child(1){
                    top: 0;
                }
                .header_burger span:nth-child(2){
                    top: calc(50% - 2px);
                }
                .header_burger span:nth-child(3){
                    bottom: 0;
                }
                body.menu-opened .header_burger span:nth-child(1){
                    top: calc(50% - 2px);
                    transform: rotate(45deg);
                }
                body.menu-opened .header_burger span:nth-child(2){
                    opacity: 0;
                }
                body.menu-opened .header_burger span:nth-child(3){
                    bottom: calc(50% - 2px);
                    transform: rotate(-45deg);
                }

@media (max-width: 1400px) {

    .header_logo img{
        height: 52px;
    }
    .header_link-label{
        font-size: 16px;
    }
    .header_link:not(:last-child) .header_link-label::after{
        font-size: 16px;
    }

}

@media (max-width: 1280px) {

    .header_links{
        display: none;
    }
    .header_burger{
        display: block;
    }

}

@media (max-width: 1024px) {

    .header_logo img{
        height: 36px;
    }
    .header_right {
        gap: 20px;
    }
    .header_narrow{
        gap: 30px;
    }

}

/* --------------------------------------------------------------------------------------------- */

.menu{
    height: var(--menu-height);
    width: 100%;
    margin-top: var(--menu-offset-top);
    position: fixed;
    right: 0;
    bottom: 100%;
    z-index: 9;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
body.menu-opened .menu{
    bottom: 0;
    opacity: 1;
}
    .menu_overlay{
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
    .menu_panel{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 430px;
        height: 100%;
        padding-top: var(--menu-padding-top);
        background: var(--wp--preset--color--theme-blanc);
        position: absolute;
        top: 0;
        right: -500px;
        z-index: 2;
        transition: right .3s ease-in-out;
    }
    body.menu-opened .menu_panel{
        right: 0;
    }
        .menu_panel-scrollpane{
            width: 100%;
            height: 100%;
            overflow: auto;
        }
            .menu_panel-content{
                display: flex;
                flex-direction: row;
                width: 100%;
                padding: 30px;
            }
                .menu_panel-content > *{
                    padding-top: 20px;
                    padding-bottom: 20px;
                }
                .menu_panel-content > *:not(:last-child){
                    padding-right: 30px;
                    margin-right: 30px;
                    border-right: 1px solid rgba(0, 0, 0, 0.1);
                }
                .menu_panel-main{
                    flex-grow: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                }
                    .menu_main-links{
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                    }
                        .menu_main-link{
                            width: 100%;
                            color: var(--wp--preset--color--theme-noir);
                            font-family: var(--wp--preset--font-family--barlow-semi-condensed);
                            font-size: 22px;
                            font-weight: 500;
                            text-transform: uppercase;
                            text-align: right;
                            transition: all .2s ease-in-out;
                        }
                        .menu_main-link.active{
                            color: var(--wp--preset--color--theme-rouge);
                        }
                    .menu_secondary-links{
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                    }
                        .menu_secondary-link{
                            width: 100%;
                            color: var(--wp--preset--color--theme-noir);
                            font-family: var(--wp--preset--font-family--barlow-semi-condensed);
                            font-size: 18px;
                            font-weight: 500;
                            text-transform: uppercase;
                            text-align: right;
                            transition: all .2s ease-in-out;
                        }
                        .menu_secondary-link.active{
                            color: var(--wp--preset--color--theme-rouge);
                        }
                .menu_panel-sidebar{
                    flex-shrink: 0;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 40px;
                }
                    .menu_networks{
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                        padding: 0 5px;
                    }
                        .menu_network{
                            padding: 3px;
                        }
                            .menu_network-icon{
                                display: block;
                                color: var(--wp--preset--color--theme-bleu);
                                font-size: 24px;
                                transition: color .2s ease-in-out;
                            }
                            .menu_network:hover .menu_network-icon{
                                color: var(--wp--preset--color--theme-bleu-clair);
                            }

@media (min-width: 1281px) {

    .menu{
        display: none !important;
    }

}

/* --------------------------------------------------------------------------------------------- */

.mobilebar{
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    background: var(--wp--preset--color--theme-blanc);
    position: fixed;
    left: 0;
    bottom: 0;
}
    .mobilebar_buttons{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
        .mobilebar_button{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            line-height: 20px;
            padding: 4px 10px;
            border: 1px solid var(--wp--preset--color--theme-bleu);
            transition: background .2s ease-in-out;
        }
        .mobilebar_button:hover{
            background: var(--wp--preset--color--theme-bleu);
        }
            .mobilebar_button-label{
                letter-spacing: 2px;
                color: var(--wp--preset--color--theme-bleu);
                font-size: 18px;
                font-weight: 500;
                text-transform: uppercase;
                transition: color .2s ease-in-out;
            }
            .mobilebar_button:hover .mobilebar_button-label{
                color: var(--wp--preset--color--theme-blanc);
            }

@media (max-width: 1024px) {

    body{
        padding-bottom: 60px;
    }
    .mobilebar{
        display: flex;
    }

}