header {
    width: 100%;
    height: 10%;
    background-color: #06264b39;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    z-index: 11;
}


#logo {
    width: 100px;
	padding: 0.4rem;
    aspect-ratio: default;
}

.nom {
    color: rgb(203, 193, 193);
    font-size: 45px;
    font-weight: 900;
    font-family: "Tangerine";
}

#check {
    display: none;
}

.icons {
    right: 7%;
    font-size: 2.8rem; 
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: none;
    position: absolute;
    margin-right: 1rem;
}


.navbar {
    width: 80%;
    max-width: 100%;
    height: 70px;
}

.navbar > ul {
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
	align-items: center;
	padding-inline-start: 0;
	margin-block: 0;
	height: 100%;
    font-size: 15px;
    font-weight: 500;
    margin-left: 3rem;
}

.navbar > ul > li:hover {
    color: #6464bf;
    cursor: pointer;
}

.navbar > ul > li > a > label{
    color: #6464bf;
    display: none;
    
}

.list_nav {
    text-decoration: none;
    color:rgb(254, 254, 254);
    font-family: "Raleway";
    font-weight: 700;
}

.list_nav:hover {
    color: #6464bf;
}

.languages{
    display: flex;
    margin-left: 3rem;
}

.languages a{
    text-decoration: none;
    color: rgb(254, 254, 254);
    font-family: "Raleway";
    font-weight: 700; 
    font-size: 12px;
    align-self: center;
}

.languages a:hover{
    color: #6464bf;    
}

@media (max-width: 1000px) {
    .icons {
        display: inline-flex;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    #check:checked~.list_nav {
        display: none;
    } 
    
    .navbar > ul {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 100%;
        width: 100%;
        left: 0;
        background-color: #06264be4;
        height: 0;
        text-align: center;
        justify-content: space-evenly;
        backdrop-filter: blur(20px);
        overflow: hidden;
        margin: auto;
    }

    #check:checked~.navbar > ul {
        height: 19rem;
    }

    .navbar:target >.list_nav {
        display: none;
    }
}