@import url(variables.css);
@import url(animations.css);

header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: auto;
    min-height: 0;
    color: var(--lcap-jaune);
    z-index: 1;
}

#header {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--home-border-subtle);
    width: 100vw;
    min-height: 3.5rem;
    height: auto;
    overflow: visible;
    padding: 0.75rem 5%;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header {
    display: flex !important;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2.25rem !important;
    width: auto !important;
    height: auto !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

#header > i {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

#header > i > a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    position: static;
    opacity: 1;
    animation: none;
    z-index: 1;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    color: var(--lcap-blanc);
}

#header > i > a > img {
    width: 2.75rem;
    height: auto;
    filter: none;
}

.header-brand {
    display: inline-block !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    font-style: normal !important;
    letter-spacing: 0.01em;
    color: var(--lcap-blanc) !important;
    white-space: nowrap;
}

.header-sep {
    display: inline-block !important;
    width: 1px !important;
    height: 1.25em !important;
    background: rgba(255, 255, 255, 0.45) !important;
    margin: 0 0.35rem;
    flex-shrink: 0;
    align-self: center;
}

a>img,
menu>img,
icone>img {
    width: 3em;
    height: auto;
}

#header a,
.header a {
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--lcap-blanc);
    transition: var(--ease);
    white-space: nowrap;
}

#header a:hover,
.header a:hover {
    color: var(--lcap-jaune);
}

.header>a {
    transition: var(--ease);
}

.header>a:hover {
    transform: none;
    text-shadow: none;
}

@media screen and (max-width: 700px) {
    #header {
        padding: 0.65rem 4%;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .header {
        gap: 1.1rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .header-brand {
        font-size: 0.95rem;
    }
}
