nav {
    height: 55px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 0 30px;
    background-color: #00214A;
    border-radius: 0;
}

nav a:hover {
    text-decoration: none;
    color: inherit;
}

nav > * {
    height: 100%;
    flex: 0 0 auto;
}

nav > img {
    width: auto;
    height: 50%;
}

nav > ul {
    height: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav > ul > li {
    height: 100%;
}

nav > ul > li:hover,
nav > ul > li.current-page {
    background-color: #033F76;
}

nav > ul > li > a {
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

nav > ul > li > a:focus {
    color: inherit;
}

nav ul > li > a > span:not(.la) {
    margin-left: 1rem;
}

nav ul > li > a:hover > span:not(.la),
nav ul > li.current-page > a > span:not(.la) {
    font-weight: 600;
}

nav > ul > li > a > span.la-angle-down {
    margin-left: .5rem;
}

nav > ul > li.not-action > a,
nav > ul > li.not-action > a:hover {
    cursor: default;
    background-color: inherit;
    font-size: 1.2em;
}

.user-menu {
    position: relative;
}

.user-menu > a {
    cursor: default;
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 10px 15px;
    list-style: none;
    background-color: white;
    box-shadow: 0 0 15px 1px rgba(69, 65, 78, 0.2);
    border-radius: 20px;
    color: lightgray;
    z-index: 10;
}

.user-menu-dropdown > li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.user-menu-dropdown > li > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 15px;
    color: #424242;
}
.user-menu-dropdown > li > a:hover {
    color: #00214A;
}

.user-menu:hover .user-menu-dropdown {
    display: flex;
}

.arrow-box {
    background: #ffffff;
    border: 1px solid #EAEAEA;
}

.arrow-box:after, .arrow-box:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow-box-left:after, .arrow-box-left:before {
    left: 10%;
}

.arrow-box-right:after, .arrow-box-right:before {
    left: calc(90% - 15px);
}

.arrow-box:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 7px;
    margin-left: -7px;
}

.arrow-box:before {
    border-color: rgba(234, 234, 234, 0);
    border-bottom-color: #EAEAEA;
    border-width: 8px;
    margin-left: -8px;
}

.content .header-content {
    z-index: auto;
}