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

/* TOP NAVIGATION - MENU LIST */
nav.en-nav > ul {
  height: 74.8%;
  grid-row: 2;
  grid-column: 3 / 5;
  margin: 17px 0 0 0;
}
/* TOP NAVIGATION - LIST ITEMS (this selector should usually not be needed.) */
nav.en-nav > ul > li {
  text-align: left;
  height: 100%;
}

/* TOP NAVIGATION - LINKS */
nav.en-nav > ul > li > a {
  white-space: nowrap;
  height: 100%;
  display: flex;
  text-align: center;
  padding: 10px 29.2px;
  font-size: 19px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: "Karla", sans-serif !important;
  line-height: 20px;
  letter-spacing: 1px;
  position: relative;
  z-index: 10000;
  align-content: center;
  align-items: center;
  justify-content: center;
}

/* HOVER ON TOP NAVIGATION LINKS ONLY */
nav.en-nav > ul > li > a:hover {
  background: var(--en-topnav-color-2);
  color: var(--en-topnav-color-1);
}

/* SUBMENUS */
nav.en-nav > ul > li ul {
  border: none;
  background: #ffd400;
  padding: 12px 0;
}

/* SUBMENUS - LIST ITEMS  (this selector should usually not be needed.) */

/* SUBMENUS - LINKS */
nav.en-nav > ul > li ul a {
  min-width: 248px;
  max-width: 248px;
  line-height: 22px;
  text-align: left;
  text-decoration: none;
  padding: 11px 15px 11px 30px;
  height: auto;
  font-size: 15px;
  letter-spacing: 0;
  white-space: normal;
  text-shadow: none;
  font-variant: normal;
  font-weight: 700;
  font-family: "Karla", sans-serif !important;
  position: relative;
  color: #222 !important;
  text-transform: none;
  transition: 0.5s all ease-in-out;
}
/* HOVER ON LINKS IN SUBMENUS */
nav.en-nav > ul > li ul a:hover {
  background: var(--en-topnav-color-2);
  color: var(--en-topnav-color-1);
}

/* 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: 1099px) {
  nav.en-nav > ul > li > a {
    font-size: clamp(15px, 1.64vw, 18px);
    padding: 0;
  }
  nav.en-nav > ul > li {
    flex-grow: 1;
  }
  nav.en-nav > ul > li ul a {
    font-size: clamp(17px, 1.73vw, 19px);
    line-height: clamp(19px, 1.73vw, 19px);
  }
  nav.en-nav > ul > li > ul {
    padding-top: 0vw;
  }
  header.en-public-header div.en-public-header-middle {
    margin: 0;
  }
  div.en-public-header-middle .header_motto {
    font-size: clamp(13px, 1.64vw, 18px);
    margin: 0 0 0 20px;
  }
  #social-icons {
    margin: 0 -2px 0 0;
  }
  #social-icons a,
  #social-icons a::before {
    width: clamp(25px, 4.09vw, 45px);
    height: clamp(25px, 4.09vw, 45px);
    background-position: center center;
  }
}

#nav_items_0 > li > a::before {
  content: "";
  position: absolute;
  background: #ffd400;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  z-index: -1;
  transform-origin: bottom;
  transition: transform 0.5s;
  transform: scaleY(0);
}
#nav_items_0 > li:hover > a::before,
#nav_items_0 > li.over > a::before,
#nav_items_0 > li:focus > a::before {
  opacity: 1;
  transform: scaleY(1);
  transform-origin: top;
}
nav.en-nav > ul > li ul a:hover,
nav.en-nav > ul > li ul a:focus {
  color: #fff !important;
}
#nav_items_0 > li:hover > a,
#nav_items_0 > li.over > a,
#nav_items_0 > li:focus > a {
  color: #222 !important;
}
nav.en-nav > ul > li ul a::before {
  content: "";
  position: absolute;
  background: #141414;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transform-origin: bottom;
  transition: transform 0.5s;
  transform: scaleY(0);
}
nav.en-nav > ul > li ul a:hover::before,
nav.en-nav > ul > li ul a:focus::before {
  transform: scaleY(1);
  transform-origin: top;
}
