/* --- BASIC --- */
.nav-list {
    padding-left: 0;
    list-style: none;
}



/* --- INLINE --- */
.nav-list--inline {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.nav-list--inline > li {
    padding-right: 10px;
    padding-left: 10px;
}



/* --- LINES --- */
.nav-list--lines li {
    padding: 1rem 0;
    border-top: 1px solid #A5CCD7;
}
.nav-list--lines li:first-child {
    border-top: 0;
}

/* --- ARROWS --- */
.nav-list--arrows li {
    padding: 1rem 0;
    border-top: 1px solid #CFC8BF;
}
.nav-list--arrows li:first-child {
    border-top: 0;
}
.nav-list--arrows a {
    display: flex;
    font-weight: 700;
}
.nav-list--arrows a::before {
    content: '\e80a';
    font-family: fontello, sans-serif;
    margin-right: 0.5em;
}



/* --- ICONS --- */
.nav-list--icons {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem -0.25rem 0.5rem -0.25rem;
}
.nav-list--icons .nav-list__item {
    margin: 0 0.25rem 1rem 0.25rem;
}



/* --- FILES --- */
.nav-list--files li {
    padding: 1rem 0;
    border-top: 1px solid #CFC8BF;
}
.nav-list--files li:first-child {
    border-top: 0;
}
.nav-list--files a {
    display: flex;
}
.nav-list--files a::before {
    content: '\e804';
    margin: 0.1em 1em 0 0;
    font-family: fontello, sans-serif;
}



/* --- PAGER --- */
.nav-list--pager {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-list--pager li {
    margin-right: 5px;
    margin-left: 5px;
}
.nav-list--pager .icon-right-dir::before,
.nav-list--pager .icon-left-dir::before {
    margin: 0;
}



/* --- SECTION NAV --- */
.menu-section {
    position: relative;
    z-index: 11;
}
.menu-section__inner {
    transition: border .2s, background-color .2s;
}
.menu-section--fixed .menu-section__inner {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
}
.nav-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 60px;
}
.nav-section__menu {
    flex-grow: 1;
}
.nav-section__toggle {
    height: 40px;
    padding: 5px 20px 0;
    border: 1px solid #fff;
    border-radius: 4px;
    background: none;
    transition: background-color .2s, box-shadow .2s;
}
.nav-section__toggle i {
    font-size: .6rem;
}
.nav-section__list {
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    top: 100%;
    right: 10px;
    left: 10px;
    height: 0;
    margin: 0;
    padding: 20px;
    transform: translateY(-20px);
    transition: transform .2s, background-color .2s, border .2s;
}
.nav-section__menu--open .nav-section__list {
    visibility: visible;
    z-index: 10;
    height: auto;
    background: #FFF;
    box-shadow: 0 3px 2px 1px rgba(0,0,0,0.15);
    transform: translateY(0);
}
.menu-section--fixed .nav-section__menu--open .nav-section__list {
    background: #F3F1EF;
}

.nav-section__item {
    border-top: 1px solid rgba(0,0,0,0.15);
}
.nav-section__item:first-child {
    border-top: 0;
}
.nav-section__link {
    display: block;
    padding: 8px 0 4px;
    color: #0D1F4F;
    border-bottom: 4px solid transparent;
    transition: border .1s, color.2s;
}

.nav-section__cta {
    margin-right: 10px;
}
.nav-section__cta:last-child {
    margin-right: 0;
}



/* --- LANGUAGE MENU (FOOTER) --- */
.language__menu {
    position: relative;
}
.language__toggle {
    height: 40px;
    padding: 5px 20px 0;
    border: 1px solid #fff;
    border-radius: 4px;
    background: none;
    transition: background-color .2s, box-shadow .2s;
}
.language__toggle i {
    font-size: .6rem;
}
.language__list {
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    bottom: 95%;
    right: 0;
    left: 0;
    height: 0;
    margin: 0;
    padding: 20px;
    transform: translateY(20px);
    transition: transform .2s, background-color .2s, border .2s;
}
.language__menu--open .language__list {
    visibility: visible;
    z-index: 10;
    height: auto;
    background: #FFF;
    box-shadow: 0 3px 2px 1px rgba(0,0,0,0.15);
    transform: translateY(0);
}
.language__list__hl {
    font-weight: bold;
    color: #153D8A;
    padding: 8px 0 8px;
    border-bottom: 2px solid rgba(0,0,0,0.15);
}
.language__item {
    border-top: 1px solid rgba(0,0,0,0.15);
}
.language__item--global {
    margin-left: 20px;
}
.language__item--global +.language__item:not(.language__item--global) {
    margin-top: 10px;
    border-top: 2px solid rgba(0,0,0,0.15);
}
.language__list__hl + .language__item,
.language__item:first-child {
    border-top: 0;
}
.language__link {
    display: block;
    padding: 8px 0 4px;
    color: #0D1F4F;
    border-bottom: 4px solid transparent;
    transition: border .1s, color.2s;
}
.language__link--active {
    font-weight: bold;
}

.language__menu-manuals {
    text-align: right;
}

.language__menu-manuals .language__toggle {
    border-color: #153D8A;
    color: #153D8A;
}

.language__menu-manuals .language__list {
    bottom: inherit;
    text-align: left;
}

/* --- PILLS -- */
.pill {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    border: 0;
    border-radius: 3px;
    padding: 6px 16px 8px;
    margin: 0 10px 10px 0;
    background: #0055FF;
    color: #fff;
    transition: background .3s, color .3s;
}
.pill:last-child {
    margin-right: 0;
}
.pill--secondary {
    padding: 1px 8px 3px;
    font-size: 12px;
    background: #ebebeb;
    color: #808080;
}
.pill--light {
    color: #808080;
    background: #ebebeb;
}
.pill--dark {
    background: rgba(0, 0, 0, 0.25);
}
.pill:hover {
    background: #0D1F4F;
    color: #fff;
    text-decoration: none;
}
.pill [class^="icon-"] {
    display: inline-block;
    height: 20px;
}
.pill [class^="icon-"]::before {
    margin: 0 0 0 10px;
    font-size: 20px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.25);
    transition: color .3s;
}
.pill--light [class^="icon-"]::before {
    color: rgba(0, 0, 0, 0.25);
}
.pill:hover [class^="icon-"]::before {
    color: #FFF;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

/* --- PHONE (SM) --- */
@media ( min-width: 576px ) {

    /* --- SECTION NAV --- */
    .nav-section__list {
        right: 20px;
        left: 20px;
    }

}



/* --- TABLET (MD) --- */
@media ( min-width: 768px ) {

    /* --- SECTION NAV --- */
    .nav-section {
        height: auto;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }


}



/* --- DESKTOP (LG) --- */
@media ( min-width: 992px ) {

    /* --- SECTION NAV --- */
    .nav-section {
        height: auto;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .nav-section__list {
        display: flex;
        visibility: visible;
        position: static;
        height: auto;
        margin: 0 -10px;
        padding: 0;
        border: 0;
        transform: none;
    }
    .nav-section__item {
        padding: 0 10px;
        border: 0;
    }
    .nav-section__link--active {
        border-bottom: 4px solid #FF0000;
    }
    .nav-section__link {
        color: #fff;
    }
    .nav-section__link:hover {
        color: #fff;
        border-bottom: 4px solid #fff;
    }

    .nav-section__cta {
        margin-right: 20px;
    }
    .nav-section__cta:last-child {
        margin-right: 0;
    }


    /* --- PAGER --- */
    .nav-list--pager li {
        margin-right: 10px;
        margin-left: 10px;
    }



}



/* --- DESKTOP (XL) --- */
@media ( min-width: 1200px ) {



}



/* --- DESKTOP (XXL) --- */
@media ( min-width: 1440px ) {

    /* --- SECTION NAV --- */
    .nav-section__list {
        margin: 0 -20px;
    }
    .nav-section__item {
        padding: 0 20px;
    }

}
