/*
HEADER
  
 */
header {
    width: 100%;
    background-color: $blanc;
}
#header {
    position: fixed;
    width: 100%;
    z-index: 10;
    .header_wrapper {
        width: 100%;

        min-height: 110px;
        // background-color: rgba($blanc,0.8);
        display: inline-block;
        img.logo_header {
            display: inline-block;
            max-width: 242px;
        }
        .header_menus {
            width: 70%;
            float:right;
            display: inline-block;
            .top_menu {
                display: block;
                justify-content: space-between;
                align-items: center;
                background-color: #e6e6e6;
                ul {
                    text-align: right;
                    width: 100%;
                    display: table;
                    right: 0;
                    margin-bottom: 0;
                    li {
                        display: table-cell;
                        text-align: center;
                        &:not(:last-child) {
                            // margin-right: 15px;
                        }
                        
                        a {
                            display: block;
                            padding: 10px 20px;
                            opacity: 0.8;
                            color: $noir;
                            font-family: $deffont;
                            font-size: 15px;
                            line-height: 24px;
                            font-weight: 300;
                            // text-transform: uppercase;
                            letter-spacing: 0.72px;
                            transition: all 0.4s ease;
                            /*&::after{
                                content: '';
                                height: 3px;
                                background: transparent;
                                display: block;
                                margin-top: 4px;
                            }
                            &:hover,&.active {
                                opacity: 1;
                                background-image: $goldengradient;
                                -webkit-background-clip: text;
                                color: transparent;
                                &::after{
                                    background-image: $goldengradient;
                                }
                            }*/
                            &:hover {
                                color:$bleu_at_f;
                                font-family: $deffont;
                            }

                        }

                        &.header_contact {
                            a {
                                color:$blanc;
                                background-color: $bleu_at_f;
                                font-family: $deffont;
                                font-size: 16px;
                                font-weight: 400;

                                &:before {
                                    content: "> ";
                                }

                                &:hover {
                                    background-image: $goldengradient;
                                }
                            }


                            i:before {
                                font-size: 25px;
                                margin-right: 7px;
                                margin-left: 0;
                            }
                        }

                    }
                }

            }
            .bottom_menu {
                // margin-top: 24px;
                ul {
                    width: 100%;
                    height:100%;
                    margin: 0;
                    display: table;
                    position: relative;
                    li {
                        display: table-cell;
                        text-align: center;
                        padding: 23px 0;
                        a {
                            color: $gris;
                            font-family: $deffont;
                            font-size: 16px;
                            font-weight: 300;
                            // letter-spacing: 0.96px;
                            &.active,&:hover {
                                color: $bleu_at_f;
                            }
                        }

                        ul.sub_menu {
                            display: none;
                            position: absolute;
                            background-color: $blanc;
                            // left: 0;
                            // right: 0;
                            padding: 0;
                            width: auto;
                            margin-left: auto;
                            text-align: left;
                            z-index: 999;

                            @media(max-width: 1200px) {
                                top: 104px;
                            }

                            li {
                                display: table;
                                width: 100%;
                                height: auto;
                                padding: 10px 0;
                                text-align: left;
                                text-transform: none;
                                background-color: $blanc;
                                margin: 0;
                                line-height: 1em;
                                // border-right: solid 1px $bleu_at_f;
                                // border-bottom: solid 1px $bleu_at_f;
                                // border-left: solid 1px $bleu_at_f;

                                a {
                                    display: block;
                                    font-size: 15px;
                                    padding: 5px 30px 5px 20px;
                                    line-height: 40px;
                                    font-weight: 400;
                                    white-space: nowrap;
                                    transition: all ease 0.6s;

                                    &:before {
                                        display: inline-block;
                                        content: url(../img/ic_next_page_small.png);
                                        width : 16px;
                                        height : 16px;
                                        top:12px;
                                        margin-right: 8px;
                                    }

                                    &:hover {
                                        color: $blanc;
                                        box-shadow: inset 300px 0 0 0 $bleu_at_f;

                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        #right-menu {
            display: none;
        }
    }
    @media(max-width: $break){
        // display: none;
    }

}

.filedariane{
    // margin-left: 33px;
    padding: 16px;
    a {
        color: $noir;
        font-family: $deffont;
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 0.65px;
        opacity: 0.6;
        margin-top: 0;
        margin-bottom: 0;
        &::after {
            display: inline;
            content: ">";margin-left: 5px;
        }
        &:last-child{
            pointer-events: none;
            &:after {
                display: none;
            }
        }
    }
}