
/* -------------------------- */
/* TOP NAVIGATION CONTAINER */
nav.en-nav {
    width: 100%;
    background: transparent;
}

/* TOP NAVIGATION - MENU LIST */
nav.en-nav > ul {
  height: 100%;
  align-items: center;
  justify-content: space-between;
  grid-area: 2 /2/ 3 / 7;
  width: 100%;
    /* 100% makes the top navigation automatically fit into its container */
}

/* TOP NAVIGATION - LIST ITEMS (this selector should usually not be needed.) */
nav.en-nav > ul > li {
    flex-grow: 1;
    text-align: center;
    height: 100%;
    vertical-align: center;
}

/* TOP NAVIGATION - LINKS */
nav.en-nav > ul > li > a {
  font-size: 19px;
  color: #fff;
  text-transform: none;
  letter-spacing: 1px;
  font-family: 'Gotham-Black';
  font-weight: 500;
  padding: 14px 0 21px;
}

/* HOVER ON TOP NAVIGATION LINKS ONLY */
nav.en-nav > ul > li > a:hover, nav.en-nav > ul > li > a:focus {
  background: #9f3239 !important;
}

nav.en-nav > ul > li > a::after {
  content: "";
  left: 45%;
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: -31px;
  -moz-transition: all ease 0.3s;
  background: url(/pics/nav-hover-icon.png) no-repeat;
  z-index: 99999;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
}

#nav_items_0 > li:hover > a::after, #nav_items_0 > li.over > a::after, #nav_items_0 > li:focus > a::after {

  opacity: 1 !important;

}
/* SUBMENUS */
nav.en-nav > ul > li ul {
    border: none;
    background: transparent;
    padding: 0px;
    border-radius: 0px;                        /* border radius won't work without padding and background color */
}

/* SUBMENU LEVEL 1 ONLY */
nav.en-nav > ul > li > ul {
  padding-top: 31px;
  padding-bottom: 15px;
  z-index: 9;
  background: #9f3239;    /* adjust the distance of the level-1 submenu from the top-nav if necessary) */
}

/* SUBMENUS - LIST ITEMS  (this selector should usually not be needed.) */
nav.en-nav > ul > li ul li {
  background: #9f3239;
}

/* SUBMENUS - LINKS */
nav.en-nav > ul > li ul a {
  min-width: 220px;
  max-width: 220px;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  padding: 11px 18px 11px 25px;
  height: auto;
  font-size: 18px;
  letter-spacing: 0px;
  white-space: normal;
  text-shadow: none;
  font-variant: normal;
  position: relative;
  color: #fff !important;
  text-transform: none;
  font-weight: 500;
  font-family: 'Karla-Regular';
  }

 
/* HOVER ON LINKS IN SUBMENUS */
nav.en-nav > ul > li ul a:hover {
    background: #262222;
    color: #ffffff;
}

/* 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: 1200px) {
    nav.en-nav > ul {
        padding-left: 0px;
        left: -24px;
position: relative;
    }
    /* NAVIGATION - TOP LEVEL ITEMS */
    nav.en-nav > ul > li > a {
      font-size: clamp(13px, 1.33vw, 16px);
  
    }

    /* NAVIGATION - LOWER LEVEL ITEMS */
    nav.en-nav > ul > li ul a {
      font-size: clamp(13px, 1.33vw, 16px);
    }


}




  nav.en-nav > ul > li ul a:hover, nav.en-nav > ul > li ul a:focus {
    background: #000;
  }



  nav.en-nav > ul > li > a:hover::after, nav.en-nav > ul > li > a:focus::after{
      opacity: 0;
  }
  nav.en-nav > ul > li > a:hover::before, nav.en-nav > ul > li > a:focus::before{
    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 !important;
  }

  #nav_items_0 > li:hover > a, #nav_items_0 > li.over > a, #nav_items_0 > li:focus > a{
    background: #9f3239 !important;
  }


