header {
    background-color: #000B20;
    padding: 0 20px;
}

header > div {
    display: flex;
    width: auto;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
}

header #logoLink {
    display: flex;
    padding: 25px 0;
}

header img {
    margin-right: 35px;
}

header #menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* header #menu > * {
    margin: 0 15px;
} */

header #menu-content > *:not(.dropdown) {
    margin: 0 10px;
}

header #menu-content > a {
    color: white;
    font-size: 14px;
    /* font-weight: bold; */
    text-decoration: none;
    cursor: pointer;
    text-wrap: nowrap;
    align-self: center;
}

header #menu-content > *:hover {
    color: #dddddd;
}

header #languages {
    background-color: transparent;
    border: none;
    color: white;
    /* font-weight: bold; */
    font-size: 14px;
    cursor: pointer;
}

header #languages:hover {
    color: #dddddd;
}

header #languages option {
    color: black;
}

#responsiveMenu {
    display: none;
    color: white;
    font-size: 28px;
    margin: 0 5px;
    cursor: pointer;
    margin-right: 25px;
}

#responsiveMenu:hover {
    color: #dddddd;
}

#responsiveOverlay  {
    display: none;
}

.visible {
    display: block !important;
}

@media (max-width: 576px) {
    
}

@media (max-width: 768px) {
    
}

@media (max-width: 992px) {
    
    header > div {
        /* padding: 0 15px; */
    }
    header img {
        margin-right: 5px;
    }

    #responsiveMenu {
        display: block;
    }

    #menu-content {
        display: none;
        flex-direction: column;
        position: absolute;
        width: 60%;
        left: 0;
        top: 77px;
        z-index: 110;
        background-color: #000B20;
        margin: 0;
        height: 100%;
    }

    header #menu > * {
        margin: 0;
    }

    #menu-content > * {
        padding: 15px 25px;
        margin: 0 !important;
        border-bottom: 1px solid #F0F0F0;
    }

    header #menu-content > a {
        align-self: auto !important;
    }

    #formChangeLanguage {
        width: 100%;
        text-align: end;
    }
    #responsiveOverlay  {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 77px;
        left: 0;
        z-index: 105;
        background-color: rgba(0,0,0,0.4);
    }
}

@media (max-width: 1200px) {
}

@media (max-width: 1400px) {
}