/* header */
    /* header Top */
        .headerTop{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            background-color: var(--blue);
            border-bottom: 2px solid var(--yellow);
            color: var(--white);
        }

        .boxReseauSocial, .contactezNous, .aidePolitique{
            display: flex;
            align-items: center;
            column-gap: 8px;
        }

        .boxReseauSocial span{
            color: var(--white);
        }

        .headerTop i{
            font-size: 20px;
            color: var(--yellow);
            transform: translateY(2px);
        }

        .boxReseauSocial i:hover{
            color: var(--white);
            transform: translateY(-2px);
        }

        .headerTop .bx-phone{
            transform: translateY(1px);
        }

        .headerTop a{
            color: var(--white);
        }
        
        .headerTop a:hover{
            color: var(--yellow);
        }

        .aidePolitique a:first-child{
            margin-right: 8px;
        }

        .aidePolitique i{
            margin-right: 4px;
        }

        .aidePolitique a:hover{
            color: var(--yellow);
        }
    /* header Top */

    /* header bottom */
        .headerBottom{
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 16px;
            padding: 16px 32px;
        }

        /* logo */
            .boxLogo{
                width: 150px; height: auto;
                img{
                    width: 100%; height: 100%;
                    object-fit: contain;
                }
            }
        /* logo */

        /* right content header bottom */
            .rightHeaderBottom{
                display: flex;
                align-items: center;
                gap: 20px;
            }

            /* search */
                .boxSearch, .boxSearchResult{
                    position: relative;
                }

                .boxSearch input, .boxSearchResult input{
                    background: #00000010;
                    border: none;
                    padding: 8px 16px;
                    border-radius: 25px;
                    width: 280px;
                }

                .boxSearch input:focus, .boxSearchResult input:focus{
                    outline: none;
                    border: 1px solid var(--yellow);
                }

                .boxSearch button, .boxSearchResult button{
                    position: absolute;
                    right: 14px; top: 50%;
                    transform: translateY(-50%);
                    background: none;
                    border: none;
                    i{
                        font-size: 20px;
                        color: var(--gray);
                    }
                }

                .boxSearchResult{
                    display: none;
                    input{
                        width: 100%;
                    }
                }

                .container_result{
                    position: absolute;
                    top: 100%; left: 50%;
                    transform: translateX(-50%);
                    width: 100%;
                    background-color: var(--white);
                    z-index: 100;
                    box-shadow: 0 2px 6px var(--light-black);
                    margin-top: 5px;
                    padding: 16px;
                    border-radius: 16px;
                    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
                    p{
                        width: 100%; height: max-content;
                        max-height: 35dvh;
                        overflow-y: auto;
                        padding-right: 5px;
                    }
                }

                .container_result.active{
                    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
                }
            /* search */

            /* box icon header */
                .box_icon_header{
                    display: none;
                }
            /* box icon header */
        /* right content header bottom */
    /* header bottom */
/* header */

/* header */
    /* header top */
        @media screen and (max-width: 900px) {
            .boxReseauSocial{
                display: none;
            }
        }
        
        @media screen and (max-width: 650px) {
            .headerTop{
                justify-content: center;
            }

            .aidePolitique{
                display: none;
            }
        }
    /* header top */

    /* header bottom */
        @media screen and (max-width: 1100px) {
            .headerBottom{
                justify-content: space-between;
            }

            .boxSearch input, .boxSearch button, .boxConnection{
                display: none;
            }

            .box_icon_header{
                display: flex;
                gap: 12px;
            }

            .icon_header{
                width: 35px; height: 35px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 5px;
                i{
                    color: var(--white);
                    font-size: 20px;
                }
            }

            .icon_header:hover{
                transform: translateY(-3px);
            }

            .icon_header:nth-child(odd){
                background-color: var(--blue);
            }
            
            .icon_header:nth-child(even){
                background-color: var(--yellow);
            }

            /* container result */
                .container_result{
                    position: fixed;
                    top: 0; left: 0;
                    transform: translateX(0);
                    width: max-content; height: 100dvh;
                    max-width: 250px;
                    background-color: var(--blue);
                    border-right: 3px solid var(--yellow);
                    z-index: 1000;
                    box-shadow: 0 0 0 var(--light-black);
                    margin-top: 0;
                    padding: 16px;
                    border-radius: 0;
                    p{
                        height: max-content;
                        max-height: calc(100dvh - 90px);
                    }
                }

                .result_search{
                    background: var(--white);
                    padding: 8px;
                    border-radius: 8px;
                }

                .boxSearchResult, .boxSearchResult input, .boxSearchResult button{
                    display: flex;
                }

                .boxSearchResult{
                    margin-bottom: 8px;
                }

                .boxSearchResult input{
                    background-color: var(--white);
                }
            /* container result */
        }

        @media screen and (max-width: 480px) {
            .headerBottom{
                padding: 8px 16px;
            }

            .boxLogo{
                width: 110px;
            }
        }
    /* header bottom */
/* header */