/* MAIN SETTINGS */
:root {
    --en-topnav-color-1: #f0f0f0;
    --en-topnav-color-2: #444444;
}

/* TOP NAVIGATION CONTAINER */
nav.en-nav {
    width: 900px;
    margin: -5px 0 0 0;
    float: right;
    position: absolute;
    right: 8px;
}

/* TOP NAVIGATION - LIST ITEMS (this selector should usually not be needed.) */
nav.en-nav > ul > li {
    border-bottom: 44px solid transparent;
}

nav.en-nav ul{
    justify-content: end !important; 
}

/* TOP NAVIGATION - LINKS */
nav.en-nav > ul > li a {
    padding: 20px 20.17px;
    font-family: 'SplineSans-Medium' !important;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.98px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 20px;
    line-height: 2rem;
    background-color: rgba(0, 0, 0, 0.01);
}

#nav_items_0 > li > a::after,
#nav_items_0 > li.over > a::after,
#nav_items_0 > li.hover > a::after
{
    content: "";
    position: absolute;
    background: url(/pics/dropdown_icon.png) no-repeat;
    width: 42px;
    height: 21px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -21px;
    opacity: 0;
}

#nav_items_0 > li:hover > a::after,
#nav_items_0 > li.over > a::after,
#nav_items_0 > li:focus > a::after {
    opacity: 1;
}


/* HOVER ON TOP NAVIGATION LINKS ONLY */
#nav_items_0 li:hover a,
#nav_items_0 li.over a,
#nav_items_0 li:focus a {
    background: #c41230;
}

/* SUBMENUS */
nav.en-nav > ul > li ul {
    border: none;
    background: url(/pics/dropdown_bg.png) repeat;
    padding: 0px;
    border-radius: 0px;
}

/* SUBMENU LEVEL 1 ONLY */
nav.en-nav > ul > li > ul {
    padding-top: 6px;
}

nav.en-nav > ul li.nav_item_last:hover > ul {
    right: 0;
}

/* SUBMENUS - LIST ITEMS  (this selector should usually not be needed.) */
nav.en-nav > ul > li ul li {
}

/* SUBMENUS - LINKS */
nav.en-nav > ul > li ul a {
    min-width: 240px;
    max-width: 240px;
    line-height: 22px;
    text-align: left;
    text-decoration: none;
    padding: 9px 18px;
    height: auto;
    font-size: 17px;
    letter-spacing: 0;
    white-space: normal;
    text-shadow: none;
    font-variant: normal;
    font-weight: 500;
    font-family: 'Inter', sans-serif !important;
    position: relative;
    font-size: 1.7rem;
    line-height: 2.2rem;
    color: #fff !important;
    text-transform: none;
}

/* HOVER ON LINKS IN SUBMENUS */
nav.en-nav > ul > li ul a:hover, nav.en-nav > ul > li ul a:focus {
    color: #fff;
    background: #007161;
}

/* LIST ITEMS THAT OPEN SUBMENUS */
nav.en-nav > ul > li ul li.en-has-submenu > a:after {
    content: '\2794';
    display: inline-block;
    margin-left: 12px;
}


/* STYLING OF THE TOPNAV AND DROPDOWN MENUS FOR THE MEDIUM VERSION */
@media only screen and (max-width: 1100px) {

    /* NAVIGATION - TOP LEVEL ITEMS */
    nav.en-nav > ul > li > a {
        padding: 0.81vw;
        font-size: 1.6363vw;
    }

    /* NAVIGATION - LOWER LEVEL ITEMS */
    nav.en-nav > ul > li ul a {
        font-size: 1.3636vw;
    }

    /* POSITIONING AND STYLING OF DROP DOWN MENUS */
    nav.en-nav > ul > li > ul {
        padding-top: 0.5454vw;
    }

}

@media only screen and (max-width: 1199px) {
nav.en-nav{width: 75%;}
}



