header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    height: 70px;
    min-height: 70px;
    margin-top: 0;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.504);
    z-index: 999;
    border-bottom: 1px solid #57ADDE;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
}
.logo {
    width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
    top: 0;
    }
.navbar_accueil{
    position: relative;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    align-items: end;
}
.deroulant_burger{
    position: absolute;
    top: 70px;
    left: 150px;
    width: 300px;
    overflow: hidden;
    height: 0px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: height 0.5s ease;
}
.partiegauchenav {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.partiegauchenav .logo_accueil{
    display: flex;
    justify-content: center;
    align-items: center;
}
.partiegauchenav .logo_accueil:hover{
    cursor: pointer;
}
.burger{
    min-width: 50px;
    height: 50px;
    display: none;
    background-image: url('../../Media/Images/burger.png');
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease-in-out;
}
.burger:hover{
    cursor: pointer;
    transform: scale(1.05);
}
.navbar_accueil .navCadre{
    padding: 0 20px;
    width: auto;
    height: 60%;
    display: flex;
    align-items: center;
}

.partiegauchenav .navCadre.active, .deroulant_burger .navCadre.active{
    border-bottom: 1px solid #1342E9;
    color: white;
}
.partiegauchenav .navCadre:hover{
    cursor: pointer;
    border-bottom: 1px solid #1342E9;
    color: white;
}
.navbar_accueil .navCadre .sous_menu{
    text-decoration: none;
    color: black;
    width: 100%;
    font-family: "Rethink";
    font-size: 18px;
    display: flex;
    text-align: center;
    justify-content: center;
}
.deroulant_burger .navCadre{
    border-bottom: 1px solid black;
}
.partiegauchenav .navCadre.active .sous_menu, .deroulant_burger .navCadre.active .sous_menu{
    background-image: linear-gradient(to right,#57ADDE, #1342E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.partiegauchenav .navCadre:hover .sous_menu, .deroulant_burger .navCadre:hover .sous_menu{
    background-image: linear-gradient(to right,#57ADDE, #1342E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    cursor: pointer;
}
.partiedroitenav{
    background: white;
    width: 100%;
    display: flex;
    justify-content: end;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.navbar_accueil .partiedroitenav .navCadre .sous_menu{
    font-size: 16px;
}
.navbar_accueil .partiedroitenav .navCadre:hover{
    cursor: pointer;
}
#menuinscription .sous_menu{
    height: 100%;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    justify-content: center;
    color: #57ADDE;
    background-color: white;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}
.navbar_accueil .partiedroitenav .navCadre .lia.btninscription:hover{
    transform: scale(1.03);
    cursor: pointer;
}

@media (max-width: 1100px) {
    .partiegauchenav .navCadre{
        display: none;
    }
    .burger{
        display: flex;
    }
    .deroulant_burger{
        display: flex;
    }
}
@media (max-width: 1100px) and (min-height: 1300px){
    header{
        min-height: 140px;
    }
    .logo{
        width: 250px;
    }
    .partiedroitenav{
        width: 60%;
    }
    .partiegauchenav{
        width: 40%;
    }
    .navbar_accueil .partiedroitenav .navCadre a{
        font-size: 28px;
    }
    .burger{
        display: flex;
        width: 70px;
        height: 70px;
    }
    .deroulant_burger{
        display: flex;
        width: 500px;
        height: 750px;
        top: 140px;
        left: 50%;
        transform: translate(-50%);
    }
    .deroulant_burger .navCadre .sous_menu{
        font-size: 40px;
    }
    .navbar_accueil .partiedroitenav .navCadre .sous_menu{
        font-size: 25px;
    }
}