/* body main */
    .main{
        width: 100%;
        padding: 80px 16px 0 120px;
        position: relative;
    }
    
    .content_main{
        padding-top: 16px;
    }
/* body main */

/* entete */
    header{
        position: fixed;
        top: 0; 
        width: calc(100% - 145px);
        z-index: 10000;
    }
    
    .container_header{
        background: var(--white);
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 64px;
        padding: 8px 16px;
        margin: 0 auto;
    }

    .logo_h17{
        width: auto;
        height: 50px;
    }
    
    .logo_h17 img{
        width: 100%; height: 100%;
        object-fit: contain;
    }
    
    .right_entete{
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

    /* lang */
        .lang{
            position: relative;
            cursor: pointer;
        }

        .langSelected{
            display: flex;
            align-items: center;
        }

        .langSelected span{
            width: 30px;
            height: auto;
        }

        .langSelected i{
            transform: translatey(-2px);
        }

        .listLang{
            list-style: none;
            background: var(--white);
            position: absolute;
            top: 100%; left: 0;
            width: max-content;
            z-index: 100;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);   
        }

        .listLang li button{
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            width: 100%;
        }

        .listLang li button:hover{
            background: var(--blue);
            color: var(--white);
            cursor: pointer;
        }

        .lang:hover .listLang{
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    /* lang */
    
    /* search */
        .box_search{
            position: relative;
            display: flex;
            gap: 3px;
        }

        .box_search input{
            max-width: 200px;
            border: var(--border);
            padding: 5px 10px;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            outline: none;
        }

        .box_search input:focus{
            border: 1px solid var(--second);
        }

        .box_search button{
            width: 35px;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            background: var(--blue);
            border: none;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            i{
                font-size: 18px;
                color: var(--white);
            }
        }
        
        .box_search button:hover{
            background: var(--red);
            cursor: pointer;
        }
    /* search */
    
    /* btn menu / search */
        .btn_entete{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 32px; height: 32px;
            color: var(--white);
            border-radius: 5px;
            font-size: 20px;
            display: none;
        }
        
        .btn_search{
            background: var(--blue);
        }
        
        .btn_menu{
            background: var(--red);
        }
    /* btn menu / search */
/* entete */

/* responsive */
    /* entete */
        @media screen and (max-width: 600px){
            .main{
                width: 100%;
                padding: 80px 16px 0 16px;
            }
            
            header{
                width: calc(100% - 32px);
            }
            
            .container_header{
                padding: 8px 0;
            }
            
            .btn_entete{
                display: flex;
            }
            
            /* search */
                .box_search{
                    position: absolute;
                    top: 155%; right: 0;
                    background: var(--black-bg);
                    padding: 8px;
                    border-bottom-left-radius: 8px;
                    border-bottom-right-radius: 8px;
                    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                }
                
                .box_search.active{
                    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                }
            /* search */
        }
    /* entete */ 
/* responsive */