header {
    width: 100%;
    top: 0;
    position: fixed;
    height: 90px;
    transition: .5s;
    z-index: 9999;
    background: #fff;
    color: #000;
}

header ul {
    list-style: none;
}

header img {
    height: 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-container nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-container div {
    display: flex;
    align-items: center;
}

.header-container a {
    text-decoration: none;
    text-transform: capitalize;
    margin-left: 20px;
    color: #000;
    position: relative;
}

.header-container nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition:
        .3s;
    border-radius:
        40px;
}

.header-container nav a:hover::after {
    width: 100%;
}

.header-scrolled {
    background: #fff;
    color: #000 !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}

.lang a::after{
    display: none;
}
.header-scrolled ul li a {
    color: #000 !important;
}

.header-scrolled .burger-wrapper span {
    background-color: #000;
}

.burger-content-active {
    right: 0 !important;
}

.contact {
    color: #000000;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    width: max-content;
    border: 1px solid #000;
    padding: 10px 30px;
}

.header-scrolled .contact {
    color: #000;
    border: 1px solid #000;
}

.burger-wrapper {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transform: translatey(-50%);
    display: none;
    z-index: 9999;
}

.burger-wrapper span {
    width: 25px;
    height: 2px;
    display: block;
    background: #000000;
}

.burger-content {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: -100%;
    background: #fff;
    z-index: 999;
    padding: 30px;
    transition: .3s;
    z-index: 9998;
}

.burger-content nav {
    margin-top: 5rem;
}

.burger-content ul li {
    display: flex;
    flex-direction: column;
}

.burger-content a {
    display: flex !important;
    text-decoration: none;
    font-size: 1rem;
    color: var(--text-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--b-marine);
    justify-content: space-between;
    color: #000;
}


.lang {
    display: inline !important;
    position: relative;
    cursor: pointer;
}

.lang img {
    filter: invert(0) !important;
    height: 12px;
    width: 20px;
    margin-right: 10px;
}

.an-container {
    position: absolute;
    right: 0;
    top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 100%;
}

.an-container a {
    text-decoration: none;
    width: 100%;
}

/* Affichage lorsqu'on clique */
.an-container.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
}


.burger-content .lang a {

    color: #000 !important;
}

.burger-content .lang .an-container {

    position: initial;
}

@media (max-width: 1024px) {
    header {
        height: 70px !important;
    }

    header li a {
        display: none;
        margin: 0;

    }

    .header-container a {
        margin: 0 !important;
    }

    .contact {
        display: none !important;
    }

    .burger-wrapper {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .burger-content {
        display: none;
    }
}

.header-menu span{
    background: #000 !important;
    background-color: #000 !important;

}