.barre {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 26px 75px;
    gap: 57px;

    position : fixed;
    z-index: 9999;
    height: 30px;
    left: 0px;
    right: 0px;
    top: 0px;

    background: #FFFFFF;
    box-shadow: 4px 6px 6px #00000053;
    border-radius: 0px 0px 50px 50px;

    transition: height 0.5s;

}

.toggle {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.barre a {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-family: 'Merriweather Sans', sans-serif;
    color: black;
    text-decoration: none;

    transition: color 0.4s linear;
    -webkit-user-select: none;
    user-select: none;


}

.barre a:hover {
    color: #9BA0BF;
}

.barre img {
    width: 24px;
    height: 24px;
}



.accueil {
    flex-direction: column !important;
}



@media screen and (max-width: 800px) {
    .barre {
        flex-direction: column;
        align-items: center;

        gap: 0px;
        height: 16px;
        overflow: hidden;
    }

    .barre a {
        flex-direction: row;
        align-items: center;
        gap: 57px;
        justify-content: center;
        display: none;
    }

    .barre a span {
        font-size: x-large;
    }
    .barre a img {
        width: 28px;
        height: 28px;
    }
    .accueil {
        flex-direction: row !important;
    }

    .toggle {
        display: block;
        padding-bottom: 10px;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
    }

    .showMenu a {
        display: flex !important;
        align-items: start;
    }

    .showMenu {
        height: calc(100vh - (26px + 12vh)) !important;
        border-radius: 0px !important;
        padding-bottom: 12vh !important;
    }


    .showMenu .toggle {
        padding-bottom: 0 !important;
    }

  
}