header.enh1 {
    position: relative;
    --top-bar-height-available: var(--top-bar-height);
    background: #fff;
}

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-top-bar-bg::before {
  content: "";
  position: absolute;
  background: url(/pics/wave-bg.png)repeat-x center bottom;
  width: 100%;
  height: 11px;
  bottom: -10px;
  z-index: 1;
}
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-btns {
  display: flex;
  gap: 7px;
}
header.enh1 .apply-btn {
  position: relative;
  padding: clamp(6px,0.79vw,10px) clamp(10px,1.587vw,20px) clamp(3px,0.47vw,6px) clamp(10px,1.51vw,19px);
  font-size: clamp(13px,1.41vw,17px);
  letter-spacing: 0;
  line-height: clamp(14px,1.41vw,17px);
  color: #000 !important;
  font-weight: 700;
  font-family: var(--website-font);
  text-align: center;
  margin: 0px 0 0 0;
  box-sizing: border-box;
  width: clamp(105px,10.95vw,138px);
  background: var(--website-color3);
  height: clamp(27px,3.01vw,38px);
  text-transform: uppercase;
  z-index: 1;
  transition: 0.3s all ease-in-out;
}
header.enh1 .apply-btn:is(:hover,:focus){
  color: #fff!important;
  background: var(--website-color1);
  padding: clamp(6px,0.79vw,10px) clamp(15px,1.98vw,25px) clamp(3px,0.47vw,6px) 0;
}
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 .apply-btn:last-child:is(:hover, :focus) {
  padding: clamp(7px,0.87vw,11px) clamp(15px,1.98vw,25px) clamp(3px,0.47vw,6px) 0;
}
header.enh1 .apply-btn:last-child {
  padding: clamp(7px,0.87vw,11px) clamp(10px,1.587vw,20px) clamp(3px,0.47vw,6px) clamp(10px,1.51vw,19px);
}
header.enh1 .apply-btn::before {
  content: "";
  position: absolute;
  background: url(/pics/apply-hover.png)no-repeat right center;
  width: clamp(20px,2.46vw,31px);
  height: clamp(23px,2.698vw,34px);
  right: 0px;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s all ease-in-out;
  background-size: clamp(20px,2.46vw,31px) clamp(23px,2.698vw,34px);
}
header.enh1 .apply-btn:is(:hover, :focus)::before {
  opacity: 1;
  right: 8px;
}
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 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);
    /*overflow: hidden;*/
    align-self: start;
}

header.enh1 div.enh1-marquee {
    grid-row: 1;
  grid-column: 1;
  background: transparent;
  position: relative;
  max-width: 100%;
  margin: 0px 0 0 10px;
  left: 0;
  max-height: clamp(30px,3.33vw,40px);
  box-sizing: border-box;
  z-index: 5;
}

header.enh1 div.enh1-marquee p {
  font-size: var(--marquee-font-size);
  font-family: var(--marquee-font-family);
  font-weight: 300; !important;
  margin: 0px 0 0;
  letter-spacing: 0px;
  color: var(--marquee-color);
  text-transform: none;
}

header.enh1 div.enh1-search-translate {
    grid-row: 1;
    grid-column: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 18px;
    position: relative;
    column-gap: 30px;
    font-family: var(--search-translate-font-family);
    font-size: var(--search-translate-font-size);
    color: var(--search-translate-color);
}

header.enh1 div.enh1-search-translate img {
    width: calc(var(--top-bar-height-available) - min(1.0909vw, 12px));
}

header.enh1 div.enh1-search-translate div.enh1-search {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: clamp(10px,1vw,12px);
letter-spacing: 2.4px;
line-height: clamp(11px,1.08vw,13px);
text-transform: uppercase;
color: #262626;
font-weight: unset;
font-family: "Roboto",sans-serif;
  gap: clamp(3px,1vw,12px);
}

header.enh1 div.enh1-search-translate div.enh1-search:hover {
    cursor: pointer;
}

header.enh1 div.enh1-search-translate #en-public-header-translate img {
    margin-right: 7px;
}

header.enh1 div.enh1-search-translate #en-public-header-translate:after {
    content: 'Translate';
    text-transform: none;
    font-family: var(--search-translate-font-family);
    font-size: var(--search-translate-font-size);
    color: var(--search-translate-color);
}

header.enh1 div.enh1-social {
    grid-column: 3;
    display: flex;
    align-items: center;
    column-gap: min(1.6363vw, 18px);
    padding-right: clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px);
}

header.enh1 div.enh1-social > a {
    position: relative;
    display: flex;
    justify-content: center;
    width: var(--top-bar-height-available);
    height: var(--top-bar-height-available);
    padding: 0;
    align-items: center;
}

header.enh1 div.enh1-social > a > img {
    width: 100%;
}
header.enh1 div.enh1-social > a:first-child img{
    /*! margin: 0px 0 0; */
}
header.enh1 div.enh1-social > a:is(:hover,:focus) > img {
    transform: scale(1.1);
}
header.enh1 div.enh1-logo-cont {
    grid-row: 2;
    grid-column: 1;
    align-self: center;
    /*background: red;*/
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: clamp(0px, calc(1110px - 100vw), 10px);
    width: var(--logo-width);
}

header.enh1 div.enh1-logo-cont a {
    display: flex;
}

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 {
  grid-row: 2;
  grid-column: 2/4;
  display: flex;
  background: var(--center-bar-background);
  align-items: center;
  max-width: 99%;
}

header.enh1 div.enh1-website-name-motto {
    display: flex;
    flex-direction: column;
    font-size: min(5.4545vw, 60px);
    font-family: var(--website-name-font-family);
    font-size: var(--website-name-font-size);
    font-weight: var(--website-name-font-weight);
    color: var(--website-name-color);
    line-height: var(--website-name-line-height);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}
header.enh1 div.enh1-website-name-motto span {
 /*! color: #e6bf00; */
 font-size: clamp(18px,3.49vw,44px);
 line-height: clamp(17px,3.33vw,42px);
 letter-spacing: clamp(1px,0.26vw,3.3px);
 margin: 0 0 0 4px;
}
header.enh1 div.enh1-website-name-motto > div.enh1-website-name br {
    /*! display: var(--website-name-line-break-display); */
}

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: 3;
    grid-column: 1 / 3;
}

@media only screen and (min-width: 769px) {

    header.enh1 > nav.en-nav {
        z-index: unset;
    }
.enh1-social {
  float: left;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
}

    header.enh1 > nav.en-nav > ul > li > a {
        display: flex;
        align-items: center;
        height: auto;
        padding: 0 min(1.27vw, 14px) 0 min(0.9090vw, 10px);
        font-family: var(--topnav-font-family);
        font-size: var(--topnav-font-size);
        color: var(--topnav-color);
        font-weight: 500;
        text-transform: uppercase;
    }
    header.enh1 > nav.en-nav > ul > li > a:hover {
        background: var(--topnav-hover-background);
    }
    header.enh1 > nav.en-nav > ul > li ul a {
        font-family: var(--menu-font-family);
        font-size: var(--menu-font-size);
        color: var(--menu-color);
        background: var(--menu-background);
        padding: min(0.9090vw, 10px) clamp(10px, calc(60px - 20%), 45px) min(0.9090vw, 10px) min(0.9090vw, 10px);
        min-width: 230px;
        max-width: 330px;
    }
    header.enh1 > nav.en-nav > ul > li ul a:hover {
        color: var(--menu-hover-color);
        background: var(--menu-hover-background);
    }
    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: 769px) and (max-width: 1100px) {
    /* OPEN THE THIRD LEVEL SUBMENU ON THE LEFT INSTEAD OF ON THE RIGHT SINCE SPACE IS TIGHT. IT'S RECOMMENDED. */
    nav.en-nav > ul > li > ul > li > ul > li > ul {
        left: initial;
        right: 100%;
    }
}


/* OPTIONS THAT EFFECT ALL SCREEN SIZES */

header.enh1.enh1mid-3-2 div.enh1-website-motto {
    text-align: center;
}

header.enh1.enh1mid-3-3 div.enh1-website-motto {
    text-align: left;
}

header.enh1.enh1mid-3-4 div.enh1-website-name-motto {
    flex-direction: column-reverse;
}

header.enh1.enh1mid-3-7 div.enh1-website-motto {
    display: none;
}

header.enh1.enh1mid-4-2 div.enh1-website-name-motto {
    text-shadow: 2px 2px 2px var(--website-name-shadow-color);
}

header.enh1.enh1mid-4-3 div.enh1-website-name-motto {
    text-shadow: 3px 3px 3px var(--website-name-shadow-color);
}

header.enh1.enh1mid-4-4 div.enh1-website-name-motto {
    text-shadow: 4px 4px 3px var(--website-name-shadow-color);
}

header.enh1.enh1mid-4-5 div.enh1-website-name-motto {
    text-shadow: 0px 0px 8px var(--website-name-shadow-color);
}

header.enh1.enh1mid-4-6 div.enh1-website-name-motto {
    text-shadow: 0px 0px 12px var(--website-name-shadow-color);
}

header.enh1.enh1mid-4-7 div.enh1-website-name-motto {
    text-shadow: 0px 0px 16px var(--website-name-shadow-color);
}

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

header.enh1.enh1logo-2-3 div.enh1-logo-cont img {
    max-width: calc(100% - 4px);
    max-height: calc(100% - 4px);
    border: 2px solid var(--logo-border-color);
}

header.enh1.enh1logo-3-2 div.enh1-logo-cont img {
    border-radius: 50%;
}

header.enh1.enh1logo-4-2 div.enh1-logo-cont img {
    box-shadow: 0 0 10px var(--logo-shadow-color);
}

header.enh1.enh1logo-4-3 div.enh1-logo-cont img {
    box-shadow: 0 0 15px var(--logo-shadow-color);
}

header.enh1.enh1logo-4-4 div.enh1-logo-cont img {
    box-shadow: 0px 10px 6px -6px var(--logo-shadow-color);
}

header.enh1.enh1logo-4-5 div.enh1-logo-cont img {
    box-shadow: 0px -10px 6px -6px var(--logo-shadow-color);
}


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

@media only screen and (min-width: 769px) {
    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/4;
    }
    header.enh1.enh1-1-2 div.enh1-logo-cont {
        grid-row: 1 / 3;
    }
    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/4;
    }
    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 .4s ease;
        transform: translateY(-4px);
    }
    header.enh1.enh1tbar-2-4 div.enh1-social a > img:hover {
        transition: all .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-2 > div.enh1-top-bar-bg {
        border-bottom: none;
    }

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

    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 {
        justify-content: space-between;
    }

    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);
        /*background: red;*/
        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:hover > a {
        transition: border-width 0.2s ease-in, padding-bottom 0.3s ease-in;
        border: 0;
        border-bottom: 5px solid var(--topnav-color3);
    }

    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 {
        transition: opacity 0.4s ease-out;
        opacity: 0;
        display: block;
        visibility: hidden;
    }

    header.enh1.enh1dm-1-2 nav.en-nav ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
    }

    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: 768px) and (min-height: 600px){
    header.enh1:not(.enh1mh-2-2) {
        position: sticky;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2147483647;
    }
}

@media only screen and (max-width: 768px) {
    div.enh1-top-bar-bg,
    div.enh1-center-bar-bg,
    div.enh1-bottom-bar-bg {
        display: none;
    }
  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: auto;
    margin: 7px 0 0;
  }
  header.enh1 nav.en-nav > ul > li.en-has-submenu > a:is(:hover,:focus)::after{
    border-top: 8px solid #000;
  }
    header.enh1 button.en-mobnav-button {
   border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    right: 0px;
    position: relative;
    border: 2px solid var(--website-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    }

    header.enh1 button.en-mobnav-button:hover {
       background: var(--center-bar-background);
    color: var(--mobnav-button-background);
    }

    header.enh1 > div.en-mobile-header {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: var(--header-height);
        background: var(--website-color);
        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;
        /*color: var(--mobnav-header-color);*/
        overflow: hidden;
        gap: 0;
        opacity: 0.5;
        background: url(/pics/header-bg.jpg)repeat-x center top #ddecf3;
    }
    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 min(0.9114vw, 7px);
        width: var(--logo-width);

    }
    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 11px 0 14px;
         max-width: 100%;
    }
    header.enh1.enh1 div.enh1-website-name-motto {
        color: var(--website-name-color);
        line-height: var(--website-name-line-height);
        text-shadow: none;
        visibility: var(--website-name-visibility);
    }
    header.enh1 div.enh1-website-name-motto a {
        color: var(--website-name-color);
       
    }

    header.enh1 div.enh1-website-motto {
        color: inherit;
    }
    header.enh1 nav.en-nav > ul {
        grid-row: 2;
        grid-column: 1 / 3;
        background-color: var(--menu-background);
    }
    header.enh1 nav.en-nav ul li {
        border-top: 1px solid #cccccc;
    }
    header.enh1 nav.en-nav > ul > li:last-child {
        border-bottom: 1px solid #cccccc;
    }
    header.enh1 nav.en-nav > ul > li > a {
        font-family: var(--menu-font-family);
    font-size: var(--menu-font-size);
    color: var(--menu-color);
    background: var(--menu-background);
    text-transform: uppercase;
    position: relative;
        font-weight: 500;
    }
    header.enh1 nav.en-nav > ul > li > a:hover {
        color: #000;
background: var(--menu-hover-background);
    }
    header.enh1 nav.en-nav > ul > li > ul a {
        font-family: var(--menu-font-family);
        font-size: var(--menu-font-size);
        color: #000;
background: #fff;
        font-weight: 500;
    }
    header.enh1 nav.en-nav > ul > li > ul a:hover {
        color: var(--menu-hover-color);
        background: var(--menu-hover-background);
    }
    
    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;
    }
    /* 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 1fr;
        grid-template-rows: 1fr;
        overflow: visible;
        background: var(--top-bar-background);
        height: auto;
    }
    header.enh1 div.enh1-marquee {
        grid-row: 2;
        grid-column: 1 / 3;
        /*height: 180px;*/
        /*background: var(--en-website-color-1);*/
    }
    header.enh1 div.enh1-marquee:after {
        background: none;
    }
    header.enh1 div.enh1-search-translate {
        grid-row: 1;
        grid-column: 1;
        border-top: 1px solid #dddddd;
        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 img {
        width: 24px;
    }

    header.enh1 div.enh1-social {
        grid-row: 1;
        grid-column: 2;
        column-gap: 20%;
        justify-content: center;
        /*! border-top: 1px solid #dddddd; */
        padding: 0;
    }
    header.enh1 div.enh1-social > a {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    /* 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;
    }
}
#en-public-header-translate {
font-size: clamp(10px,1.11vw,14px);
letter-spacing: 1px;
line-height: clamp(10px,1.11vw,14px);
text-transform: uppercase;
color: #192b7d;
font-weight: 500;
font-family: var(--website-font);
  gap: 4px;
margin: 0;
}
/* Header Logo */
header.enh1.enh1logo-4-3 div.enh1-logo-cont img {
    box-shadow: none;
    border-radius: 0px;
    max-width: 100%;
    max-height: 100%;
    border: none;
  }
  header.enh1 div.enh1-logo-cont a {
    display: flex;
    margin: 0px 0px 0px 0px;
  }
  header.enh1.enh1logo-4-3 div.enh1-logo-cont img {
    box-shadow: none;
    border-radius: 0px;
    max-width: 100%;
    max-height: 100%;
    border: none;
    z-index: 3;
  }
  /* Top Bar */
  header.enh1 div.enh1-top-bar{
    grid-template-columns: 1fr auto;
  }
/* Marquee */
header.enh1 div.enh1-marquee{
align-self: center;
width: calc(100% - 0px);
margin: 0 0px 0 -18px;
height: clamp(35px,3.492vw, 44px);
z-index: 999 !important;
  }
.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup-icon {
    border-bottom-color: var(--website-color3) !important;
  }
  .en-marquee-module.popup-top .en-marquee-popup-wrapper .en-marquee-popup-icon {
    border-top-color: var(--website-color3) !important;
    border-bottom-color: transparent !important;
  }
  .en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup {
    border: none !important;
    background-color:var(--website-color3) !important;
  }
  .en-marquee-module .en-marquee-popup .en-marquee-popup-text {
   color: #000 !important;
font-family: var(--marquee-font-family);
font-size: clamp(15px,1.41vw,17px);
letter-spacing: 0px;
font-weight: 500;

  }
  .en-marquee-module .en-marquee-tooltip-buttons button[aria-pressed="true"] {
   background-color: var(--website-color2);
color: #fff;
  }
  .en-marquee-module .en-marquee-tooltip-buttons button {
    font-family: var(--marquee-font-family);
  background: #fff;
  padding: 6px 20px 6px;
  letter-spacing: 0px;
  font-size: clamp(15px,1.41vw,17px);
  }
  .en-marquee-module .en-marquee-popup-wrapper{
    max-width: 100% !important;
  }
  
  
.enh1-search img {
  position: relative;
  right: 0;
  top: -1px;
}
  .en-marquee-module .en-marquee-module-content-wrapper{
    display: flex !important;
    align-items: center;
  }
  

  /* Search and Translate */
  header.enh1 div.enh1-search-translate {
   column-gap: 34px;
padding: 0 0px 0px 0px;
justify-content: center;
align-items:    center !important;
   margin: clamp(2px,0.317vw,4px) 2px 0 0;
  }
  header.enh1 div.enh1-search-translate {
column-gap: clamp(5px,1.33vw,16px);
  padding: 0;
  justify-content: flex-end;
  align-items: flex-end;
  }
  header.enh1 div.enh1-search-translate #en-public-header-translate img {
 margin-right: 0;
width: auto;
 top: 0px;
  }

  header.enh1 div.enh1-search-translate img {
    width: auto;
    top: 0px;
    position: relative;
  }
header.enh1 div.enh1-search-translate #en-public-header-translate:after{
    display: none;
}
/* 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: 45px !important;
  max-width: 500px !important;
margin: auto;
}

@media only screen and (max-width: 600px) {
  .en-header-popup-wrapper {
    max-width: 80% !important;
  }
}
/* Social Icons */
header.enh1 div.enh1-social {
    width: auto;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0px 0px 1px 0px !important;
    box-sizing: border-box;
  }

  header.enh1 div.enh1-social > a{
    width: auto;
    height: auto;
    position: relative;
    z-index: 1;
  }
  header.enh1 div.enh1-social > a.twitter{
      left:1px;
  }
  
  header.enh1 div.enh1-social {
    grid-row: 2;
    grid-column: 4;
    display: flex;
    align-items: flex-start;
    column-gap: clamp(5px,1.19vw,15px);
    margin-right: -1px;
  }

/* Header Middle */
header.enh1 div.enh1-middle{
    padding: 18px 4px 0px 0px;
    box-sizing: border-box;
}
header.enh1 div.enh1-website-name-motto{
   display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
   margin: 0px 0 0;
}  

.en-header-popup-wrapper{
  height: 45px !important;
}
.en-header-popup-body {
  padding-top: 0px !important;
}
.en-header-popup-wrapper form input[type*="text"] {
  font-family: 'Inter', sans-serif;
  font-size: 16px !important;
  padding: 10px 10px !important;
  height: 45px !important;
}
@media only screen and (min-width: 769px){
    header.enh1.enh1-1-4 div.enh1-logo-cont {
        grid-row: 1 / 4;
        grid-column: 1/2;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        margin: 30px 0 0 -1px;
      }
nav.en-nav > ul > li > a::after, nav.en-nav > ul > li > a::after, nav.en-nav > ul > li > a::after, nav.en-nav > ul > li > a::after {
      content: '';
    position: absolute;
    background: url(/pics/nav-hover.png)no-repeat center bottom;
    width: clamp(16px,2.38vw,30px);
    height: clamp(12px,2.06vw,26px);
    left: 0px;
    right: 0;
    margin: 0 auto;
    bottom: -18px;
    transition: all 0.3s ease 0s;
    z-index: 4;
    opacity: 0;
      background-size: clamp(16px,2.38vw,30px) clamp(12px,2.06vw,26px);
      }
      nav.en-nav > ul > li:hover > a::after, nav.en-nav > ul > li.over > a::after, nav.en-nav > ul > li:focus > a::after, nav.en-nav > ul > li.over > a:focus::after {
        
   opacity: 1;
   bottom: -11px;
    
      }
      
   header.enh1.enh1dm-1-2 nav.en-nav ul > li > ul li::before {
  content: unset;
}
 header.enh1.enh1dm-1-2 nav.en-nav ul > li > ul li::after {
  content: unset;
}
      header.enh1 > nav.en-nav > ul > li > a{
padding: 0 clamp(2px,1vw,14.8px);
letter-spacing:0;
margin: 0;
      }
      header.enh1.enh1topnav-4-3 nav.en-nav > ul > li:hover > a {
        transition: border-width 0.2s ease-in, padding-bottom 0.3s ease-in;
        border: 0;
        border-bottom: none;
        text-shadow: 0 0 1px #000, 0px 0px 1px #0000;
      }
      header.enh1.enh1topnav-2-2 nav.en-nav ul {
       justify-content: space-between;
z-index: 3;
       margin: 0 0 0 -121px;
       gap: 0;
      }

      header.enh1.enh1dm-1-2 nav.en-nav ul > li:hover > ul{
          background:   var(--website-color1);
          padding: 13px 0px 13px 0px;
          margin: min(0.95vw,12px) 0 0 0;
          filter: drop-shadow(0px 30px 25px rgba(0,0,0,0.2));
      }
      header.enh1 > nav.en-nav > ul > li ul a{
       background: var(--menu-background);
padding: min(0.83vw, 9.5px) clamp(10px, calc(60px - 20%), 45px) min(0.83vw, 11.5px) min(1.91vw, 23px);
min-width: 260px;
max-width: 260px;
font-size: var(--menu-font-size);
letter-spacing: 0;
line-height: min(1.58vw,19px);
       font-weight: 500;
      }
      #nav_items_0 > li > ul > li > a:hover, #nav_items_0 > li > ul > li:hover > a, #nav_items_0 > li > ul > li.over > a, #nav_items_0 > li > ul > li:hover > ul > a:hover, #nav_items_0 > li > ul > li.over > ul > a:hover, #nav_items_0 > li > ul > li > ul > li:hover > a, #nav_items_0 > li > ul > li > ul > li.over > a, #nav_items_0 > li > ul > li > ul > li:hover > ul > a:hover, #nav_items_0 > li > ul > li > ul > li.over > ul > a:hover, #nav_items_0 > li > ul > li > ul > li > ul > li:hover > a, #nav_items_0 > li > ul > li > ul > li > ul > li.over > a, #nav_items_0 > li > ul > li > ul > li > ul > li:hover > ul > a:hover, #nav_items_0 > li > ul > li > ul > li > ul > li.over > ul > a:hover, #nav_items_0 > li > ul > li > a:focus, #nav_items_0 > li > ul > li:focus > a, #nav_items_0 > li > ul > li:focus > ul > a:focus, #nav_items_0 > li > ul > li.over > ul > a:focus, #nav_items_0 > li > ul > li > ul > li:focus > a, #nav_items_0 > li > ul > li > ul > li:focus > ul > a:focus, #nav_items_0 > li > ul > li > ul > li.over > ul > a:focus, #nav_items_0 > li > ul > li > ul > li > ul > li:focus > a, #nav_items_0 > li > ul > li > ul > li > ul > li:focus > ul > a:focus, #nav_items_0 > li > ul > li > ul > li > ul > li.over > ul > a:focus {
        color: var(--menu-hover-color) !important;
        background: var(--menu-hover-background) !important;
      }
}
@media only screen and (max-width: 1300px) {
header.enh1.enh1-1-4 div.enh1-logo-cont{
    margin: 0;
}

  header.enh1 div.enh1-logo-cont a{
    margin: 0px 0px 0px 0px;
  }
  
  header.enh1 div.enh1-middle {
    /*! padding: 0px 5px 0px clamp(15px,2.33vw,28px); */
    /*! box-sizing: border-box; */
  }

  header.enh1 div.enh1-search-translate{
    margin-right: 10px;
  }
  header.enh1 > nav.en-nav > ul > li ul a{
    min-width: clamp(180px,19.20vw,242px);
    max-width: clamp(180px,19.20vw,242px);
  }
   nav.en-nav > ul > li:nth-last-child(3) ul li ul, nav.en-nav > ul > li:nth-last-child(4) ul li ul {
    right: 100%;
    left: unset;
  }
nav.en-nav > ul > li:nth-last-child(2) ul {
  right: 0;
  left: unset;
}
  header.enh1 div.enh1-social{
    /*! margin-right: 33px; */
    
  }
}
@media only screen and (max-width: 1080px) {
header.enh1.enh1topnav-2-2 nav.en-nav ul{
    justify-content: flex-end;
}
}
/* STYLING FOR MOBILE */
@media only screen and (max-width: 768px) {
    header.enh1 > div.en-mobile-header{
      column-gap: clamp(5px,1.3020vw,10px);
    }
    header.enh1.enh1topnav-2-2 nav.en-nav ul{
        margin: 0;
    }
    header.enh1 div.enh1-middle{
      padding: 0px 5px 0px 0px;
      align-items: center;
    }
    header.enh1 div.enh1-social{
    justify-content: flex-start;
    /*! margin: 0 0 0 54px; */
    align-items: center;
    grid-row: 1;
    grid-column: 2/4;
  }
    header.enh1.enh1 div.enh1-website-name-motto{
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin: 0;
      padding: 0  10px 0 0;
    }
    header.enh1 button.en-mobnav-button img {
  width: 25px;
  object-fit: contain;
}
    .enh1-website-name {
  /*! font-size: clamp(15px, 4.5vw, 32px) !important; */
/*! line-height: clamp(15px, 4.5vw, 32px) !important; */
}
.enh1-website-name span {
  font-size: clamp(18px,5.20vw,40px);
}
    .enh1-website-motto{
      font-size: clamp(10px,2.2135vw,17px) !important;
    }
    header.enh1 nav.en-nav{
      opacity: 1 !important;
      column-gap: clamp(5px,1.3020vw,10px);
    }
    header.enh1 nav.en-nav > ul > li > a{
     padding: 6px 40px 6px 15px;
    }
    header.enh1 nav.en-nav > ul > li > ul a{
      min-width: 100%;
    max-width: 100%;
    padding-top: 7px;
      padding-bottom: 6px;
    }
    header.enh1 div.enh1-top-bar {
      grid-template-columns: 1fr 1fr;
      justify-content: center;
    }
    header.enh1 div.enh1-marquee{
      display: block;
      grid-row: 2;
      grid-column: 1/4;
      align-self: center;
      width: 100%;
      margin: 0 auto;
      max-width: 95%;
    }
    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 10%, transparent 90%, var(--marquee-background) 100%);
  }
    header.enh1 div.enh1-search-translate{
      grid-row: 1;
     grid-column: 1/3;
      margin-right: 0px;
      column-gap: clamp(7px,0.83vw,10px);
      justify-content: center;
      border: none !important;
      margin: 0;
      padding: 10px 15px;
      flex-wrap: wrap;
      row-gap: 5px;
    }

}
@media only screen and (max-width: 343px) {
  .enh1-website-motto br{
    display: none;
  }
}


header.enh1 div.enh1-search-translate a.social:is(:hover, :focus) img {
    transform: scale(1.1);
    transition: 0.3s all ease-in-out;
}









