header.enh1 {
  position: relative;
  --top-bar-height-available: var(--top-bar-height);
}
header nav.en-nav {
  animation-duration: 0.45s;
  animation-fill-mode: both;
  animation-timing-function: unset;
}
header.enh1 > div.enh1-top-bar-bg {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--top-bar-height);
  background: var(--top-bar-background);
}

header.enh1 > div.enh1-center-bar-bg {
  box-sizing: border-box;
  position: absolute;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  height: calc(
    var(--height) - var(--top-bar-height) - var(--bottom-bar-height)
  );
  background: var(--center-bar-background);
}
header.enh1 > div.enh1-bottom-bar-bg {
  box-sizing: border-box;
  position: absolute;
  top: calc(var(--height) - var(--bottom-bar-height));
  left: 0;
  width: 100%;
  height: var(--bottom-bar-height);
  background: var(--bottom-bar-background);
}

header.enh1 > div.en-mobile-header {
  display: none;
}

header.enh1 > nav.en-nav {
  width: min(100%, var(--en-website-width));
  margin: 0 auto;
  font-synthesis: none;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: var(--top-bar-height) 1fr var(--bottom-bar-height);
  height: var(--height);
  column-gap: var(--column-gap);
}

header.enh1 div.enh1-top-bar {
  grid-row: 1;
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr auto auto;
  height: var(--top-bar-height-available);
  align-self: start;
}
header.enh1 div.enh1-marquee {
  grid-row: 1;
  grid-column: 1;
  background: var(--marquee-background);
  position: relative;
  max-width: 74.5%;
  margin: 0;
  left: 125px;
  max-height: 45px;
  box-sizing: border-box;
}
header.enh1 div.enh1-marquee p {
  font-size: var(--marquee-font-size);
  font-family: var(--marquee-font-family);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0;
  color: #000;
}
header.enh1 div.enh1-search-translate {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  column-gap: 10px;
  margin: 0;
  max-height: 45px;
}
#en-public-header-translate {
  margin: 5px 7px 0 0;
  background: none;
}
header.enh1 div.enh1-search-translate div.enh1-search {
  position: relative;
  display: flex;
  margin: 0 19px 0 0;
  background: none;
}
header.enh1 div.enh1-search-translate div.enh1-search:hover {
  cursor: pointer;
}

#en-public-header-translate img {
  position: relative;
  margin: 0;
}
header.enh1 div.enh1-logo-cont {
  grid-row: 2;
  grid-column: 1;
  align-self: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header.enh1 div.enh1-logo-cont a {
  display: flex;
  position: relative;
  z-index: 1;
}

header.enh1 div.enh1-logo-cont img {
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
  flex-grow: 0;
}

header.enh1 div.enh1-middle {
  position: relative;
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  height: 145px;
}

header.enh1 div.enh1-website-name-motto {
  display: flex;
  flex-direction: column;
  font-family: var(--website-name-font-family);
  font-size: var(--website-name-font-size);
  font-weight: 800;
  color: var(--website-name-color);
  margin: 4px 0 0;
  letter-spacing: 0.1px;
  position: relative;
  left: -48px;
  justify-content: flex-start;
  line-height: 42px;
  top: 0;
}
.enh1-website-name span {
  font-size: clamp(20px, 2.7vw, 25.52px);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6px;
  position: relative;
  left: 3px;
  top: 6px;
}
@-moz-document url-prefix() {
  header.enh1 div.enh1-website-name-motto {
    margin: 26px 0 0;
  }
  .enh1-website-name span {
    top: -1px;
  }
}

.enh1-website-name {
  display: flex;
  flex-direction: column;
}
header.enh1 div.enh1-website-motto {
  color: var(--website-motto-color);
  font-family: var(--website-motto-font-family);
  font-size: var(--website-motto-font-size);
  padding: 0.5em 0;
  text-align: right;
  text-shadow: none;
}

header.enh1 > nav.en-nav > ul {
  grid-row: 2;
  grid-column: 1 / 3;
}
#fb {
  background: #0165e1;
  position: relative;
  max-height: 46px;
  margin: 0;
  transition: 0.4s all ease;
}
#fb:hover,
#fb:focus {
  background: black;
}

@media only screen and (min-width: 992px) {
  header.enh1 > nav.en-nav {
    z-index: unset;
  }
  header.enh1 > nav.en-nav > ul > li > a {
    height: 100%;
    padding: 0 5px 0;
    font-family: var(--topnav-font-family);
    font-size: var(--topnav-font-size);
    color: var(--topnav-color);
    font-weight: 600;
    letter-spacing: 0;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s all ease;
  }
  @-moz-document url-prefix() {
    header.enh1 > nav.en-nav > ul > li > a {
      padding: 5px 5px 0;
    }
  }

  header.enh1 > nav.en-nav > ul > li {
    height: 100%;
  }
  header.enh1 > nav.en-nav > ul > li.nav_item_last {
    margin: 0 -6px 0 0;
  }
  nav.en-nav > ul > li ul a::before {
    content: "";
    position: absolute;
    background: #d4b038;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transform-origin: bottom;
    transition: transform 0.3s;
    transform: scaleY(0);
  }
  nav.en-nav > ul > li:last-child ul,
  nav.en-nav > ul > li:nth-last-child(2) ul {
    right: 0;
  }
  nav.en-nav > ul > li ul a:hover::before,
  nav.en-nav > ul > li ul a:hover::before,
  #en-has-submenu > li > ul > li > a:hover::before,
  #en-has-submenu > li > ul > li > a:hover::before,
  #en-has-submenu > li > ul > li:hover > a::before,
  .top-level ul > li.en-has-submenu:hover > a::before,
  .top-level ul > li.en-has-submenu > ul > li:hover > a::before,
  .nav_items_0 > li.en-has-submenu:hover > a::before,
  .nav_items_0 ul > li.en-has-submenu > ul > li:hover > a::before {
    transform: scaleY(1);
    transform-origin: top;
  }
  header.enh1 > nav.en-nav > ul > li ul a:hover,
  .top-level ul > li.en-has-submenu:hover > a,
  .top-level ul > li.en-has-submenu > ul > li:hover > a,
  .nav_items_0 ul > li.en-has-submenu:hover > a,
  .nav_items_0 ul > li.en-has-submenu > ul > li:hover > a {
    color: var(--menu-hover-color);
  }
  header.enh1 > nav.en-nav > ul > li ul a {
    font-family: var(--menu-font-family);
    font-size: var(--menu-font-size);
    line-height: 25px;
    color: var(--menu-color);
    padding: 8.5px 20.5px 6.5px;
    min-width: 220px;
    max-width: 220px;
    z-index: 1;
    position: relative;
    font-weight: 500;
    letter-spacing: 0;
    transition: 0.25s all ease;
  }
  header.enh1 > nav.en-nav > ul > li ul li.en-has-submenu > a:after {
    content: "\2794";
    display: inline-block;
    margin-left: min(1.0909vw, 12px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1099px) {
  nav.en-nav > ul > li > ul > li > ul > li > ul {
    left: initial;
    right: 100%;
  }
}

header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
  max-width: calc(100% - 2px);
  max-height: calc(100% - 2px);
}

@media only screen and (min-width: 992px) {
  header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
    max-width: clamp(200px, 23.48vw, 290px);
    max-height: 220px;
  }
  header.enh1 div.enh1-logo-cont a {
    margin: -115px 0 0 -59px;
    left: 0;
  }
}

/* OPTIONS THAT EFFECT ONLY LARGE AND MEDIUM SCREEN SIZES */

@media only screen and (min-width: 992px) {
  header.enh1.enh1logo-1-2 div.enh1-logo-cont {
    align-self: end;
  }
  header.enh1.enh1logo-1-3 div.enh1-logo-cont {
    align-self: start;
  }
  header.enh1.enh1logo-5-2 div.enh1-logo-cont {
    background: var(--center-bar-background);
  }
  header.enh1.enh1-1-2 .enh1-top-bar,
  header.enh1.enh1-1-4 .enh1-top-bar {
    grid-column: 2;
  }
  header.enh1.enh1-1-2 div.enh1-logo-cont {
    grid-row: 1 / 4;
  }
  header.enh1.enh1-1-3 div.enh1-logo-cont {
    grid-row: 2 / 4;
  }
  header.enh1.enh1-1-3 > nav.en-nav > ul,
  header.enh1.enh1-1-4 > nav.en-nav > ul {
    grid-column: 2;
  }
  header.enh1.enh1-1-4 div.enh1-logo-cont {
    grid-row: 1 / 4;
  }
  header.enh1.enh1-1-5 > nav.en-nav,
  header.enh1.enh1-1-6 > nav.en-nav {
    grid-template-columns: auto auto 1fr;
  }
  header.enh1.enh1-1-5 > nav.en-nav > ul,
  header.enh1.enh1-1-6 > nav.en-nav > ul {
    grid-column: 3;
  }
  header.enh1.enh1-1-5 div.enh1-top-bar {
    grid-column: 2 / 4;
  }
  header.enh1.enh1-1-5 div.enh1-logo-cont {
    grid-row: 1 / 4;
  }
  header.enh1.enh1-1-5 div.enh1-middle {
    grid-row: 2 / 4;
    grid-column: 2;
  }
  header.enh1.enh1-1-6 div.enh1-top-bar {
    grid-column: 1 / 4;
  }
  header.enh1.enh1-1-6 div.enh1-logo-cont {
    grid-row: 2 / 4;
  }
  header.enh1.enh1-1-6 div.enh1-middle {
    grid-row: 2 / 4;
    grid-column: 2;
  }
  header.enh1.enh1-1-7 > nav.en-nav,
  header.enh1.enh1-1-8 > nav.en-nav {
    grid-template-columns: auto 1fr;
  }
  header.enh1.enh1-1-7 > nav.en-nav > ul,
  header.enh1.enh1-1-8 > nav.en-nav > ul {
    grid-column: 2;
  }
  header.enh1.enh1-1-7 div.enh1-top-bar {
    grid-column: 2;
  }
  header.enh1.enh1-1-7 div.enh1-logo-cont {
    grid-row: 1 / 4;
  }
  header.enh1.enh1-1-7 div.enh1-middle,
  header.enh1.enh1-1-8 div.enh1-middle {
    flex-direction: row-reverse;
  }
  header.enh1.enh1-1-7 div.enh1-website-name,
  header.enh1.enh1-1-8 div.enh1-website-name-motto {
    display: none;
  }
  header.enh1.enh1-1-8 div.enh1-top-bar {
    grid-column: 1 / 3;
  }
  header.enh1.enh1-1-8 div.enh1-logo-cont {
    grid-row: 2 / 4;
  }
  header.enh1.enh1-1-9 > nav.en-nav {
    grid-template-columns: auto 1fr;
  }
  header.enh1.enh1-1-9 > nav.en-nav > ul {
    grid-column: 2;
    margin-left: 30px;
  }
  header.enh1.enh1-1-9 div.enh1-top-bar {
    grid-column: 1 / 3;
  }

  header.enh1.enh1-1-9 div.enh1-logo-cont,
  header.enh1.enh1-1-10 div.enh1-logo-cont {
    display: none;
  }
  header.enh1.enh1-1-9 div.enh1-middle {
    grid-row: 2 / 4;
    grid-column: 1;
    align-self: end;
    padding-left: clamp(0px, calc(1110px - 100vw), 10px);
  }
  header.enh1.enh1-1-10 > nav.en-nav {
    grid-template-columns: 1fr;
  }
  header.enh1.enh1-1-10 > nav.en-nav > ul {
    grid-column: 1;
  }
  header.enh1.enh1-1-10 div.enh1-top-bar {
    grid-column: 1;
  }
  header.enh1.enh1-1-10 div.enh1-middle {
    grid-column: 1;
    justify-content: center;
  }
  header.enh1.enh1tbar-1-2 div.enh1-social {
    grid-column: 2;
    padding: 0 18px;
  }
  header.enh1.enh1tbar-1-2 div.enh1-search-translate {
    grid-column: 3;
    padding: 0 clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px) 0
      0;
  }
  header.enh1.enh1tbar-1-3 div.enh1-top-bar {
    grid-template-columns: auto 1fr auto;
  }
  header.enh1.enh1tbar-1-3 div.enh1-social {
    grid-column: 1;
    padding: 0 18px 0
      clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px);
  }
  header.enh1.enh1tbar-1-3 div.enh1-marquee {
    grid-column: 2;
  }
  header.enh1.enh1tbar-1-3 div.enh1-search-translate {
    grid-column: 3;
    padding: 0 clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px) 0
      18px;
  }
  header.enh1.enh1tbar-1-4 div.enh1-search-translate {
    grid-column: 1;
    padding: 0 18px 0
      clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px);
  }
  header.enh1.enh1tbar-1-4 div.enh1-social {
    grid-column: 3;
    padding: 0 clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px) 0
      18px;
  }

  header.enh1.enh1tbar-2-3 div.enh1-social a > img:hover {
    transition: all 0.4s ease;
    transform: translateY(-4px);
  }
  header.enh1.enh1tbar-2-4 div.enh1-social a > img:hover {
    transition: all 0.3s ease;
    transform: rotate(55deg);
  }
  header.enh1.enh1tbar-3-2 div.enh1-marquee:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      var(--marquee-background) 0%,
      transparent 5%,
      transparent 95%,
      var(--marquee-background) 100%
    );
  }

  header.enh1.enh1tbar-4-3 > div.enh1-top-bar-bg {
    border-bottom-style: dotted;
  }

  header.enh1.enh1tbar-4-4 > div.enh1-top-bar-bg {
    border-bottom: 2px solid var(--top-bar-border-color);
  }

  header.enh1.enh1tbar-4-4 div.enh1-top-bar {
    --top-bar-height-available: calc(var(--top-bar-height) - 2px);
  }

  header.enh1.enh1bbar-1-2 > div.enh1-bottom-bar-bg {
    border-top: 1px solid var(--bottom-bar-border-color);
  }

  header.enh1.enh1bbar-1-2 > nav.en-nav > ul {
    margin-top: 1px;
  }

  header.enh1.enh1bbar-1-3 > div.enh1-bottom-bar-bg {
    border-top-style: dotted;
  }

  header.enh1.enh1bbar-2-2 > div.enh1-bottom-bar-bg {
    border-bottom: 1px solid var(--bottom-bar-border-color);
  }

  header.enh1.enh1bbar-2-2 > nav.en-nav > ul,
  header.enh1.enh1bbar-2-2.enh1logo-1-2 > nav.en-nav > div.enh1-logo-cont,
  header.enh1.enh1bbar-2-2 > nav.en-nav > div.enh1-middle {
    margin-bottom: 1px;
  }

  header.enh1.enh1bbar-2-3 > div.enh1-bottom-bar-bg {
    border-bottom-style: dotted;
  }

  header.enh1.enh1mid-1-2 div.enh1-website-name-motto {
    align-self: end;
  }

  header.enh1.enh1mid-1-3 div.enh1-website-name-motto {
    align-self: start;
  }

  header.enh1.enh1mid-2-2 div.enh1-middle {
    justify-content: center;
  }

  header.enh1.enh1mid-2-3 div.enh1-middle {
    justify-content: flex-end;
  }
  header.enh1.enh1topnav-2-2 nav.en-nav ul {
    max-width: 61%;
    margin: 0 0 0 auto;
    width: 100%;
    align-items: center;
    gap: 0;
  }
  header.enh1.enh1topnav-2-3 nav.en-nav ul {
    justify-content: flex-end;
  }

  header.enh1.enh1topnav-3-2 nav.en-nav > ul {
    column-gap: min(0.5454vw, 6px);
  }

  header.enh1.enh1topnav-3-3 nav.en-nav > ul {
    column-gap: min(1.0909vw, 12px);
  }

  header.enh1.enh1topnav-3-4 nav.en-nav > ul {
    column-gap: min(1.6363vw, 18px);
  }

  header.enh1.enh1topnav-4-2 nav.en-nav > ul > li:hover > a {
    background: var(--topnav-hover-background);
    color: var(--topnav-hover-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid var(--topnav-color3);
  }

  header.enh1.enh1topnav-4-3 nav.en-nav > ul > li:is(:hover, :focus) > a {
    color: var(--topnav-hover-color);
    background: #6c6d71;
  }

  header.enh1 > nav.en-nav > ul > li > a::before {
    content: "";
    position: absolute;
    background: url(/pics/navitem_icon.png) no-repeat right top;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0;
    margin: 0;
  }

  header.enh1 > nav.en-nav > ul > li:is(:hover, :focus) > a::before {
    opacity: 1;
    animation: fadeInUp 0.35s forwards ease;
  }

  header.enh1.enh1topnav-5-2 nav.en-nav > ul > li > a {
    text-transform: uppercase;
  }

  header.enh1.enh1topnav-5-3 nav.en-nav > ul > li > a {
    text-transform: lowercase;
  }

  header.enh1.enh1dm-1-2 nav.en-nav ul > li > ul {
    opacity: 0;
    display: none;
    visibility: hidden;
    padding: 10px 0;
    margin: 0;
    max-width: 220px;
    background: var(--menu-background);
    z-index: 9;
    width: 220px;
  }
  nav.en-nav ul li > ul li ul {
    border-top: 0 !important;
  }
  header.enh1.enh1dm-1-2 nav.en-nav ul > li:hover > ul {
    display: block;
    visibility: visible;
    opacity: 1;
    animation: fadeInUp 0.15s forwards ease;
  }

  header.enh1.enh1dm-2-2 nav.en-nav ul > li > ul {
    text-transform: uppercase;
  }

  header.enh1.enh1dm-2-3 nav.en-nav ul > li > ul {
    text-transform: lowercase;
  }
}

/* STYLING FOR MOBILE */
@media only screen and (max-width: 991px) {
  div.enh1-top-bar-bg,
  div.enh1-center-bar-bg,
  div.enh1-bottom-bar-bg {
    display: none;
  }
  header.enh1 button.en-mobnav-button {
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
    box-sizing: border-box;
    background: #fbc30e;
  }
  header.enh1 button.en-mobnav-button img {
    width: 30px;
    object-fit: contain;
  }

  header.enh1 button.en-mobnav-button:hover {
    background: #fff;
  }

  header.enh1 > div.en-mobile-header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: var(--header-height);
    background: var(--header-background);
    overflow: hidden;
  }

  header.enh1 > div.en-mobile-header a {
    text-decoration: none;
  }

  header.enh1 nav.en-nav {
    position: fixed;
    height: 100%;
    grid-template-columns: auto 1fr;
    grid-template-rows: var(--header-height) 1fr auto;
    overflow: hidden;
    gap: 0;
    opacity: 1;
    background: var(--header-background);
  }
  div.en-mobnav-bg {
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
  }
  header.enh1 div.enh1-logo-cont {
    grid-row: 1;
    grid-column: 1;
    background: var(--header-background);
    padding: 0 0 0 5px;
  }
  header.enh1 div.enh1-middle {
    grid-row: 1;
    grid-column: 2;
    justify-content: space-between;
    font-size: clamp(20px, 3.90625vw, 30px);
    background: var(--header-background);
    padding: 0 6px 0 0;
    height: auto;
  }
  header.enh1.enh1 div.enh1-website-name-motto {
    color: var(--website-name-color);
    line-height: clamp(30px, 4.8vw, 68px);
    text-shadow: none;
    visibility: var(--website-name-visibility);
    padding: 0 10px 0 0;
    left: -10px;
    top: 10px;
  }
  .enh1-website-name span {
    font-size: clamp(16px, 2.5vw, 25.52px);
    line-height: clamp(34px, 4.5vw, 50px);
  }
  header.enh1 nav.en-nav > ul > li.en-has-submenu > a::after {
    content: "";
    position: absolute;
    background: none;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #fff;
    right: 20px;
    top: 18px;
    margin: 4px 0 0;
  }
  header.enh1 nav.en-nav > ul > li.en-has-submenu > a:hover::after,
  header.enh1 nav.en-nav > ul > li.en-has-submenu > a:focus::after {
    border-top: 8px solid #000;
  }

  header.enh1 div.enh1-website-name-motto a {
    color: var(--website-name-color) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  header.enh1 div.enh1-website-motto {
    color: inherit;
  }
  header.enh1 nav.en-nav > ul {
    grid-row: 2;
    grid-column: 1 / 3;
    background-color: #fff;
  }
  header.enh1 nav.en-nav ul li {
    border-top: 1px solid #e8ecf5;
    position: relative;
  }
  header.enh1 nav.en-nav ul li.top-level {
    border: 0;
  }
  header.enh1 nav.en-nav > ul > li:last-child {
    border-bottom: 1px solid #cccccc;
  }
  header.enh1 nav.en-nav > ul > li > a {
    font-family: "alfabet";
    font-size: var(--menu-font-size);
    color: #fff;
    background: var(--menu-background);
    font-weight: 600;
    padding: 16px 40px 16px 15px;
    letter-spacing: 0;
  }
  header.enh1 nav.en-nav > ul > li > a:is(:hover, :focus) {
    color: var(--menu-hover-color);
    background: var(--menu-hover-background);
  }
  header.enh1 nav.en-nav > ul > li > ul a {
    font-family: var(--menu-font-family);
    font-size: clamp(17px, 2.5vw, 23px);
    color: #000;
    background: #fff;
    padding: 16px 40px 16px 15px;
    font-weight: normal;
    letter-spacing: 0.2px;
  }
  header.enh1 div.enh1-logo-cont a {
    margin: 0;
  }
  header.enh1 div.enh1-website-name-motto {
    margin: 0;
  }
  header.enh1 nav.en-nav > ul > li > ul a:is(:hover, :focus) {
    color: var(--menu-hover-color);
    background: var(--menu-hover-background);
  }
  header.enh1 nav.en-nav > ul > li ul > li.en-has-submenu > a {
    color: var(--menu-color);
  }
  header.enh1 nav.en-nav > ul > li ul > li.en-has-submenu > a:hover {
    color: var(--menu-hover-color);
    background: var(--menu-hover-background);
  }
  header.enh1 nav.en-nav > ul > li ul > li.en-mobile-submenu-opened > a {
    color: var(--menu-color);
    background: var(--menu-background);
  }
  /* SUBMENU INDICATOR ON THE LEFT */
  header.enh1 nav.en-nav > ul > li ul li.en-has-submenu > a:before {
    margin-right: 7px;
    background: var(--menu-color);
  }
  /* HOVER ON SUBMENU INDICATOR ON THE LEFT */
  header.enh1 nav.en-nav > ul > li ul li.en-has-submenu > a:hover:before {
    background: var(--menu-hover-color);
  }
  /* TRANSFORMATION ON THE SUBMENU INDICATOR ON THE LEFT WHEN SUBMENU IS OPEN */
  header.enh1 nav.en-nav > ul > li > ul li.en-mobile-submenu-opened > a:before {
    transform: rotate(90deg);
  }
  /* SUBMENU INDICATOR ON THE RIGHT. DISABLED BY DEFAULT. */
  header.enh1 nav.en-nav > ul > li ul li.en-has-submenu > a:after {
    margin-left: 12px;
    background: var(--menu-color);
  }
  /* HOVER ON SUBMENU INDICATOR ON THE RIGHT */
  header.enh1 nav.en-nav > ul > li ul li.en-has-submenu > a:hover:after {
    background: var(--menu-hover-color);
  }
  /* TRANSFORMATION ON THE SUBMENU INDICATOR ON THE RIGHT WHEN SUBMENU IS OPEN */
  header.enh1 nav.en-nav > ul > li > ul li.en-mobile-submenu-opened > a:after {
    transform: rotate(90deg);
  }

  header.enh1.enh1mm-2-2 nav.en-nav > ul > li ul li.en-has-submenu > a:before,
  header.enh1.enh1mm-2-3 nav.en-nav > ul > li ul li.en-has-submenu > a:before,
  header.enh1.enh1mm-2-4 nav.en-nav > ul > li ul li.en-has-submenu > a:before {
    display: none;
  }

  header.enh1.enh1mm-2-2 nav.en-nav > ul > li ul li.en-has-submenu > a:after {
    display: inline-block;
  }

  header.enh1.enh1mm-2-3 nav.en-nav > ul > li ul li.en-has-submenu > a:after {
    display: inline-block;
    float: right;
    margin-top: 0.25em;
  }
  header.enh1 div.enh1-top-bar {
    grid-row: 3;
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    background: var(--top-bar-background);
    height: 145px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px -3.5px 10px;
    z-index: 2;
    padding: 0;
    place-items: center;
  }
  header.enh1 div.enh1-marquee {
    grid-row: 2;
    grid-column: 1 / 3;
  }
  header.enh1 div.enh1-marquee::after {
    content: "";
    position: absolute;
    background: linear-gradient(
      to right,
      #d4b038 0%,
      transparent 10%,
      transparent 90%,
      #d4b038 100%
    );
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  header.enh1 div.enh1-marquee {
    margin: 0 auto;
    left: 0;
    top: 3px;
    border: 0;
    max-width: 90%;
  }
  header.enh1 div.enh1-marquee p {
    font-size: 17px;
  }
  header.enh1 div.enh1-search-translate {
    grid-row: 1;
    grid-column: 1;
    column-gap: 20%;
    padding: 0;
    font-size: 14px;
  }

  header.enh1 div.enh1-search-translate div.enh1-search > span {
    display: none;
  }

  /* Temporary solution until translate is improved. */
  header.enh1 div.enh1-search-translate #en-public-header-translate:after {
    display: none;
  }
  header.enh1 div.enh1-search-translate {
    margin: 0;
    justify-content: center;
    column-gap: 15px;
    height: 46px;
  }

  /* OPTIONS THAT EFFECT ONLY SMALL SCREEN SIZES (MOBILE) */

  header.enh1.enh1mh-1-2 > div.en-mobile-header {
    grid-template-columns: 1fr;
  }

  header.enh1.enh1mh-1-2 nav.en-nav {
    grid-template-columns: 1fr;
  }

  header.enh1.enh1mh-1-2 div.enh1-logo-cont {
    display: none;
  }

  header.enh1.enh1mh-1-2 div.enh1-middle {
    grid-column: 1;
  }

  header.enh1.enh1mh-1-2 nav.en-nav > ul {
    grid-column: 1;
  }

  header.enh1.enh1mh-1-2 div.enh1-top-bar {
    grid-column: 1;
  }

  header.enh1.enh1mh-1-3 div.en-mobile-header div.enh1-middle {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 0;
  }

  header.enh1.enh1mh-1-3 nav.en-nav.en-mobnav-show {
    left: auto;
    right: 100%;
    animation-name: en_mobnav_appear_from_left_anim;
  }

  header.enh1.enh1mh-1-3 nav.en-nav.en-mobnav-hide {
    left: auto;
    right: 100%;
    animation-name: en_mobnav_disappear_to_left_anim;
  }

  header.enh1.enh1but-1-2 button.en-mobnav-button {
    font-size: 45px;
  }

  header.enh1.enh1but-1-3 button.en-mobnav-button {
    font-size: 50px;
  }

  header.enh1.enh1but-2-2 button.en-mobnav-button {
    border-radius: 10%;
  }

  header.enh1.enh1but-2-3 button.en-mobnav-button:hover {
    background: var(--mobnav-button-background);
    color: var(--mobnav-button-color);
  }

  header.enh1.enh1mh-3-2 div.enh1-website-motto {
    display: none;
  }

  header.enh1.enh1mm-1-2 div.enh1-social,
  header.enh1.enh1mm-1-4 div.enh1-social {
    grid-column: 1;
  }
  header.enh1.enh1mm-1-2 div.enh1-search-translate,
  header.enh1.enh1mm-1-4 div.enh1-search-translate {
    grid-column: 2;
  }
  header.enh1.enh1mm-1-3 div.enh1-top-bar,
  header.enh1.enh1mm-1-4 div.enh1-top-bar {
    grid-template-rows: 40px 1fr;
  }

  header.enh1.enh1mm-1-3 div.enh1-social,
  header.enh1.enh1mm-1-4 div.enh1-social {
    grid-row: 2;
  }
  header.enh1.enh1mm-1-3 div.enh1-search-translate,
  header.enh1.enh1mm-1-4 div.enh1-search-translate {
    grid-row: 2;
  }
  header.enh1.enh1mm-1-3 div.enh1-marquee,
  header.enh1.enh1mm-1-4 div.enh1-marquee {
    grid-row: 1;
  }
  header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
    max-width: inherit !important;
    max-height: inherit !important;
    width: clamp(115px, 18vw, 290px);
  }
}

/* serach filed */
.en-header-popup-body {
  padding-top: 0 !important;
}
.en-popup-close-img {
  width: 25px !important;
  height: 25px !important;
  background-color: #000 !important;
}
.en-public-header-popup-close {
  right: -14px !important;
  top: -15px !important;
}
#search-field {
  max-width: 500px;
  border: 1px solid #c0c1c3;
  height: 25px;
  font-size: 16px !important;
  padding: 0 10px;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  min-height: 45px;
  padding-top: 0;
}
.en-header-popup-wrapper {
  height: 38px !important;
  max-width: 500px !important;
}

@media only screen and (max-width: 600px) {
  .en-header-popup-wrapper {
    max-width: 80% !important;
  }
}

/* marquee */
.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup {
  background-color: #d4b038;
  border-color: #d4b038;
}
.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup-icon {
  border-bottom-color: #d4b038;
}
.en-marquee-module .en-marquee-tooltip-buttons button[aria-pressed="true"] {
  background-color: #000 !important;
  color: #fff !important;
}
.en-marquee-module .en-marquee-popup .en-marquee-popup-text,
.en-marquee-module .en-marquee-tooltip-buttons button {
  line-height: 26px;
  color: #050505;
  font-family: var(--marquee-font-family);
  font-weight: 400;
}
.en-marquee-module .en-marquee-popup .en-marquee-popup-text {
  font-size: min(5.2vw, 18px);
  letter-spacing: 1px;
}
.en-marquee-module .en-marquee-tooltip-buttons button {
  background: #fff;
  color: #000;
}
.en-marquee-module .en-marquee-tooltip-buttons button:hover {
  background: #000;
  color: #fff;
}
.en-marquee-module
  .en-marquee-popup-wrapper
  .en-marquee-popup
  .en-marquee-tooltip-buttons {
  gap: 10px;
}
.en-marquee-module .en-marquee-popup-wrapper {
  max-width: 100%;
}

header.enh1 div.enh1-website-name-motto a:visited,
header.enh1 div.enh1-website-name-motto a {
  color: #000;
}

.nav_icon {
  color: #fff;
}

#header-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 5px;
  top: 7.5px;
  z-index: 2;
}
#header-social a {
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: relative;
  transition: 0.3s all ease;
}
#header-social a:is(:hover, :focus) {
  z-index: 13;
}
#header-social a::before {
  content: "";
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  opacity: 0;
  border: 2px solid #050505;
  border-radius: 50px;
  transition: 0.4s ease;
  box-sizing: border-box;
}
#header-social a:is(:hover, :focus):before {
  opacity: 1;
}
header #backto {
  position: absolute;
  left: 173px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #191c2f;
  font-weight: 700;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
  padding: 0 0 0 21px;
  letter-spacing: 0.05px;
  background: #d4b038;
}
header #backto::before {
  content: "";
  position: absolute;
  background: url(/pics/backto_icon.png) no-repeat left center;
  width: 12px;
  height: 10px;
  left: 0;
  top: 5px;
  transition: 0.4s ease;
}
header #backto:is(:hover, :focus)::before {
   transform: rotate(180deg);
}
header #backto:is(:hover, :focus) {
  color: #050505;
  text-decoration: underline;
}
header.enh1 > nav.en-nav > ul > li > a.hom {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1300px) {
  header.enh1 div.enh1-logo-cont a {
    margin: -115px 0 0 -40px;
  }
  header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
    max-width: clamp(200px, 19.48vw, 290px);
  }
  header.enh1 div.enh1-marquee {
    left: 110px;
  }
  header.enh1 div.enh1-website-name-motto {
    margin: 20px 0 0;
  }
  .enh1-website-name span {
    font-size: clamp(17px, 1.9vw, 25.52px);
  }
  header.enh1.enh1topnav-2-2 nav.en-nav ul {
    max-width: 65%;
  }
  header.enh1 > nav.en-nav > ul > li > a {
    padding: 5px 3px 0;
  }
  header#enheader2 {
    --website-name-font-size: clamp(45px, 4.8vw, 68px) !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1250px) {
  header.enh1 > nav.en-nav {
    width: auto;
    padding: 0 10px;
  }
  header.enh1 div.enh1-logo-cont a {
    margin: -115px 0 0 -18px;
  }
}

@media only screen and (max-width: 991px) {
  #header-social {
    top: 0;
  }
  #en-public-header-translate {
    margin: 0 7px 0 0;
  }
  header #backto {
    position: relative;
    left: 0;
    top: auto;
    bottom: 0;
    grid-row: 3;
  }
  .en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup {
    background-color: #050505;
    border-color: #050505;
  }
  .en-marquee-module .en-marquee-tooltip-buttons button {
    color: #000 !important;
  }
  .en-marquee-module.popup-top
    .en-marquee-popup-wrapper
    .en-marquee-popup-icon {
    border-top-color: #050505;
    border-bottom-color: transparent;
  }
  .en-marquee-module .en-marquee-popup .en-marquee-popup-text,
  .en-marquee-module .en-marquee-tooltip-buttons button {
    color: #fff;
  }
  .en-marquee-module .en-marquee-tooltip-buttons button[aria-pressed="true"] {
    background-color: #fbc30e !important;
    color: #000 !important;
  }
  .en-marquee-module .en-marquee-tooltip-buttons button:hover {
    background: #fbc30e;
    background-color: rgb(251, 195, 14);
    color: #000;
  }
}

@media only screen and (max-width: 355px) {
  header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
    width: clamp(85px, 18vw, 290px);
  }
  header#enheader2.enh1 {
    --website-name-font-size: clamp(42px, 6.8vw, 68px) !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1099px) {
  header #backto {
    left: 20px;
  }
  header.enh1 div.enh1-marquee {
    left: 0;
    max-width: 94%;
  }
  header.enh1.enh1logo-2-2 div.enh1-logo-cont img {
    max-width: 190px;
  }
  header.enh1 div.enh1-logo-cont a {
    margin: -100px 0 0 -18px;
  }
  header.enh1 div.enh1-website-name-motto {
    line-height: clamp(30px, 4.5vw, 42px);
  }
  .enh1-website-name span {
    line-height: clamp(25px, 4.2vw, 30px);
  }
  header#enheader2 {
    --menu-font-size: min(1.7vw, 18px) !important;
    --topnav-font-size: min(1.65vw, 18px) !important;
  }
}

@media only screen and (min-width: 992px) {
header.enh1 div.enh1-logo-cont a {
 
  z-index: 3;
}
header.enh1 div.enh1-search-translate div.enh1-search, #en-public-header-translate {
  z-index: 2;
}
}
header#enheader2::after {
  content: "";
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 991px) {
header#enheader2::after {

  z-index: -1;
}

}




