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

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-ql-links {
 grid-row: 2;
  grid-column: 3;
  display: flex;
  align-items: center;
  column-gap: min(2.33vw,28px);
  padding-left: clamp(0px, calc(var(--en-website-width) + 10px - 100vw), 10px);
  margin: 2px 32px 0 0;
  justify-content: center;
  position: relative;
  height: 60px;
}
header.enh1 div.enh1-ql-links::before {
  background: #454545;
  content: "";
  position: absolute;
  width: 2px;
  height: clamp(35px,5vw,60px);
  right: -33px;
}
header.enh1 div.enh1-ql-links > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  flex-direction: column;
  align-items: center;
font-size: clamp(15px,1.5vw,18px);
  line-height: clamp(17px,1.66vw,20px);
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-family: "ff-good-web-pro-condensed",sans-serif;
  letter-spacing: 0px;
}
header.enh1 div.enh1-ql-links > a::before {
 content: "";
  position: absolute;
  background: #e5c071;
  width: 0;
  height: 0px;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
header.enh1 div.enh1-ql-links > a:is(:hover, :focus)::before {
  opacity: 1;
  height: 6px;
  width: 100%;
}
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: 2;
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr auto auto;
    height: var(--top-bar-height-available);
    /*overflow: hidden;*/
    align-self: center;
}

header.enh1 div.enh1-search-translate {
    /*! grid-row: 1; */
    /*! grid-column: 2; */
    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;
}

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-row: 1;
    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: min(0.5454vw, 6px);
}

header.enh1 div.enh1-social > a > img {
    width: 100%;
}

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);
    margin: 12px 0px 0px -8px;
}

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;
filter:drop-shadow(0 0 5px rgba(0,0,0,0.2));
}

header.enh1 div.enh1-middle {
 grid-row: 2;
  grid-column: 2;
  display: flex;
  background: var(--center-bar-background);
  align-items: center;
  justify-content: flex-start;
}

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: var(--website-name-font-weight);
  color: var(--website-name-color);
  line-height: var(--website-name-line-height);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
header.enh1 div.enh1-website-name-motto .enh1-website-name span{
font-size:clamp(28px,3vw,36px);
}
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 */
.sr-txt {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0;
  margin: -1px !important;
  overflow: hidden;
  background: transparent !important;
  clip: rect(0 0 0 0);
  border: 0;
}

.mob_link{
  display: none !important;
}
.menu-opener {
cursor: pointer;
display: flex;
align-items: center;
position: relative;
top: 0;
z-index: 99;
grid-row: 2;
grid-column: 5;
width: 60px;
height: 60px;
background: #fff;
justify-content: center;
}
.menu-opener > span {
font-weight: 500;
padding: 0px 0px 0 14px;
transition: all .5s ease;
margin: 0px 0px 0 0px;
font-size: 19px;
letter-spacing: 0.7px;
line-height: 35px;
text-transform: uppercase;
color: #ffffff;
font-family: "ProximaNova-Regular";
text-align: right;
position: relative;
top: 3px;
background: #00000001;
}
.menu-opener:is(:hover, :focus) {
  background: #532380;
}

.menu-opener.active > span {
 color: #facd01;
}
.menu-opener-inner {
background: #532380;
height: 4px;
width: 30px;
float: left;
position: relative;
top: 0;
border-radius: 2px;
}

.menu-opener, .menu-opener:hover, .menu-opener.active, .menu-opener-inner, .menu-opener-inner::before, .menu-opener-inner::after {
  -webkit-transition: 250ms all;
  transition: 250ms all;
  z-index: 9999;
}

.menu-opener.active .menu-opener-inner {
background: transparent;
  right: 1px;
  top: 0px;
}
.menu-opener.active .menu-opener-inner::before {
-webkit-transform: translateY(0.3rem) rotate(-44deg);
  -ms-transform: translateY(0.3rem) rotate(-44deg);
  transform: translateY(0.3rem) rotate(-44deg);
  top: -5px;
  right: 0px;
  background: #532380;
  width: 30px;
}
.menu-opener-inner::after, .menu-opener-inner::before {
background: #532380;
content: '';
display: block;
height: 4px !important;
width: 30px;
position: relative;
right: 0;
border-radius: 2px;
}
.menu-opener-inner::after {
  -webkit-transform: translateY(0.25rem);
  -ms-transform: translateY(0.25rem);
  transform: translateY(0.25rem);
  bottom: -1px;
  width: 30px;
  right: 0;
}
.menu-opener-inner::before {
  -webkit-transform: translateY(-0.75rem);
  -ms-transform: translateY(-0.75rem);
  transform: translateY(-0.75rem);
  top: 3px;
}
.menu-opener.active .menu-opener-inner::after {
-webkit-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
  -ms-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
  transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
  bottom: -3px;
  right: auto;
  background: #532380;
  width: 30px;
}
.menu-opener:is(:hover, :focus) .menu-opener-inner,
.menu-opener:is(:hover, :focus) .menu-opener-inner::before,
.menu-opener:is(:hover, :focus) .menu-opener-inner::after{
  background: #fff;
}
.menu-opener.active .menu-opener-inner{
  background: transparent;
}
/* TOP NAVIGATION CONTAINER */
nav.en-nav {
    width: 100%;
    background: transparent;
    z-index: 99;
}

/* TOP NAVIGATION - MENU LIST */
nav.en-nav > ul {
background: rgba(83, 35, 128, 0.9);
color: transparent;
height: 64px;
position: absolute;
top: 0;
right: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 0;
height: 0;
z-index: -1;
overflow: hidden;
}
nav.en-nav#menu.active > ul {
-webkit-transition: 150ms height;
transition: 150ms width;
}
nav.en-nav#menu.active > ul {
width: 100%;
    height: auto;
    z-index: 999;
    top: 90px;
    display: grid;
    grid-template-columns: repeat(auto-fit, clamp(190px,20.16vw,242px));
    grid-template-rows: auto;
    padding: min(3.83vw,46px) min(4.16vw,50px) min(3.5vw,42px);
    gap: clamp(10px,3.33vw,40px);
    justify-content: flex-start;
    margin: 0 auto;
    grid-column: 1/4;
}
/* TOP NAVIGATION - LIST ITEMS (this selector should usually not be needed.) */

/* TOP NAVIGATION - LINKS */
nav.en-nav > ul > li > a {
transition: all .5s ease;
margin-bottom: 9px;
padding: 5px 0 14.5px 1px;

}


/* HOVER ON TOP NAVIGATION LINKS ONLY */
nav.en-nav > ul > li > a:hover {
    color: #fff;
}

/* SUBMENUS */
nav.en-nav > ul > li ul {
position: relative !important;
display: block !important;
}

/* SUBMENU LEVEL 1 ONLY */
nav.en-nav > ul > li > ul {

}

/* 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 {
height: auto;
font-variant: normal;
position: relative;
text-align: left;
text-decoration: none;
text-transform: capitalize;
box-sizing: border-box;
transition: all .5s ease;
  }
#nav_items_0 > li > ul > li > a:hover:before,
#nav_items_0 > li > ul > li > a:focus:before{
width: 19px;
    height: 13px;
    background: url(/pics/nav-arrow.png)no-repeat left center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
header.enh1 > nav.en-nav > ul > li ul > li > ul a:hover,
header.enh1 > nav.en-nav > ul > li ul > li > ul a:focus{
  padding-left: 50px !important;
}
header.enh1 > nav.en-nav > ul > li ul > li > ul a:hover:before,
header.enh1 > nav.en-nav > ul > li ul > li > ul a:focus:before{
width: 19px;
    height: 13px;
    background: url(/pics/nav-arrow.png)no-repeat left center;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
/* HOVER ON LINKS IN SUBMENUS */
nav.en-nav > ul > li ul a:hover, nav.en-nav > ul > li ul a:focus {
padding-left: 27px;
}

/* 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;
}

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

    header.enh1 > nav.en-nav {
        z-index: 2;
    }


    header.enh1 > nav.en-nav > ul > li > a {
display: flex;
    align-items: center;
    height: 100%;
    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);
    background: var(--topnav-background);
    text-transform: uppercase;
    }
    header.enh1 > nav.en-nav > ul > li > a:hover {
        color: var(--topnav-hover-color);
        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;
    }
    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;
    }
    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: 1;
    }
    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-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-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-2 div.enh1-social a > img:hover {
        transition: all .5s ease;
        transform: rotate(365deg);
    }
    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-4-2 > div.enh1-top-bar-bg {
        border-bottom: 1px solid var(--top-bar-border-color);
    }

    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: 0px 0 0 9px;
    }

    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: center;
    }

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

    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-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 button.en-mobnav-button {
        border: none;
        border-radius: 50%;
        font-size: 40px;
        font-family: Verdana;
        /*margin-right: 0.3em;*/
        padding: 0 0.28em 0.1em 0.28em;
        background: var(--mobnav-button-background);
        color: var(--mobnav-button-color);
    }

    header.enh1 button.en-mobnav-button:hover {
        background: var(--mobnav-button-color);
        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(--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;
        /*color: var(--mobnav-header-color);*/
        #overflow: hidden;
        gap: 0;
        #opacity: 0.5;
        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 min(0.9114vw, 7px);
        width: var(--logo-width);
        margin: 0;
    }
    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;
    }
    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(--topnav-font-family);
        font-size: 20px;
        color: var(--menu-color);
        background: var(--menu-background);
        font-weight: 500;
    }
    header.enh1 nav.en-nav > ul > li > a:hover {
        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: var(--menu-font-size);
        color: var(--menu-color);
        background: var(--menu-background);
    }
    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 {
        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 1fr;
        grid-template-rows: 1fr 40px;
        overflow: visible;
        background: var(--top-bar-background);
        height: 92px;
    }

    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.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-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;
    }
  
}
#wrapper header{
  background: #274c77;
}
header.enh1.enh1-1-7 div.enh1-top-bar {
    grid-column: 3;
    grid-template-columns: 1fr;
  }
   /* Translate And Search */
   header.enh1 div.enh1-search-translate {
    padding: 0px 0px 0 0px;
    column-gap: min(2.5vw,30px);
    position: relative;
    /*! grid-row: 1; */
    /*! grid-column: 1; */
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    margin: -10px 0 0;
  }
  header.enh1 div.enh1-search-translate img {
    width: auto;
  }
  #en-public-header-translate {
    color: #fff;
    text-transform: uppercase;
    align-items: center;
    display: inline-flex;
    font-size: clamp(12px,1.11vw, 14px);
    letter-spacing: 0.1px;
    position: relative;
    font-weight: 400;
    margin: 0;
    background: transparent;
    font-family: 'REM', sans-serif;
  }
  header.enh1 div.enh1-search-translate #en-public-header-translate::after{
    display: none !important;
}
  header.enh1 div.enh1-search-translate #en-public-header-translate img {
    margin: 0;
  }

  header.enh1 div.enh1-search-translate div.enh1-search{
    margin: 0;
  }
/* Search Default Code */
.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: 'REM', sans-serif !important;
    font-size: 16px !important;
    padding: 10px 10px !important;
    height: 45px !important;
    font-weight: 500;
    color: #000000;
  }
  .en-popup-close-img {
    width: 34px;
    height: 34px;
    background-color: #274c77;
    border-radius: 50% 50%;
  }
/* LOGO */
  header.enh1 div.enh1-logo-cont a {
    display: flex;
    margin: 0;
    left: 0px;
    position: relative;
  }
  header.enh1.enh1logo-4-3 div.enh1-logo-cont img {
    box-shadow: none;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px;
    border: none;
  }



@media only screen and (min-width: 769px) {
  header.enh1.enh1topnav-5-2 nav.en-nav > ul > li > a {
  align-items: center;
    padding: 0;
    letter-spacing: 0.2px;
    position: relative;
    font-weight: 500;
    width: fit-content;
  }
 
  header.enh1.enh1-1-7 div.enh1-logo-cont{
    align-self: flex-start;
  }
  header.enh1.enh1topnav-4-3 nav.en-nav > ul > li:hover > a{
    border: 0px !important;
    padding-bottom: 0px;
    
    color: #ffffff;
  }

  #wrapper   header.enh1.enh1topnav-4-3 nav.en-nav > ul > li:hover > a{
    background: #a3cef1;
    color: #000;
    box-shadow: 0px 3px 0px 0px rgb(255, 255, 255);
  }
  header.enh1.enh1topnav-2-3 nav.en-nav ul{
    grid-row: 2/4;
    justify-content: space-between;
    gap: 0px;
    box-sizing: border-box;
    margin: 0px;
  }
  header.enh1.enh1dm-1-2 nav.en-nav ul > li:hover > ul {
    z-index: 99;
    box-sizing: border-box;
    margin: 9px 0px 0px 0px;
  }
  nav.en-nav > ul > li > ul > li ul{
    margin: 0px !important;
    top: 0px !important;
    left: 0!important;
  }

  nav.en-nav ul li{
    height: fit-content;
    /* z-index: 9; */
  }

  header.enh1 > nav.en-nav > ul > li ul a {
padding: min(0.5vw, 6px) 0 min(0.5vw, 6px) 0;
    min-width: clamp(230px,22.5vw,270px);
    max-width: clamp(230px,22.5vw,270px);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    transition: 0.3s all ease-in-out;
  }

  #nav_items_0 > li > ul > li > a:hover, #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.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: #ffffff !important;
    background: transparent;
    padding: min(0.5vw, 6px) 0 min(0.5vw, 6px) 30px;
  }
  header.enh1.enh1bbar-2-2 > div.enh1-bottom-bar-bg {
    border-bottom: none;
  }
header.enh1 > nav.en-nav > ul > li ul > li > ul a {
  padding-left: 30px;
}
}

@media only screen and (max-width: 1260px) {
  header.enh1.enh1-1-7 > nav.en-nav, header.enh1.enh1-1-8 > nav.en-nav {
    grid-template-columns: auto 1fr;
    padding: 0px 10px;
    box-sizing: border-box;
  }
  nav.en-nav#menu.active > ul{
    justify-content: center;
  }
}



/* STYLING OF THE TOPNAV AND DROPDOWN MENUS FOR THE MEDIUM VERSION */

@media only screen and (max-width: 768px) {

    header.enh1:not(.enh1mh-2-2){
      position: relative !important;
      z-index: unset !important;
    }
    header.enh1 button.en-mobnav-button {
      border: none;
    border-radius: 0;
    width: clamp(35px,7.81vw,60px);
    height: clamp(35px,7.81vw,60px);
    padding: 10px;
    box-sizing: border-box;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
        }
        header.enh1 button.en-mobnav-button img {
          width: clamp(20px,3.90vw,30px);
    object-fit: contain;
    height: clamp(20px,3.125vw,24px);
        }
      
        header.enh1 button.en-mobnav-button:is(:hover, :focus) {
          background: #532380;;
        }
        header.enh1.enh1-1-7 > nav.en-nav, header.enh1.enh1-1-8 > nav.en-nav{
          padding: 0px;
        }
        header.enh1 > div.en-mobile-header {
          gap: min(1.3020vw,10px);
        }

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

        header.enh1.enh1mh-1-2 div.enh1-middle {
          grid-column: 2/3 !important;
          padding: 0px 5px 0px 0px !important;
          box-sizing: border-box;
          justify-content: space-between !important;
          flex-direction: row !important;
        }
        header.enh1.enh1mh-1-2 div.enh1-logo-cont {
          display: block;
          grid-row: 1;
          grid-column: 1/2;
        }


        header.enh1 nav.en-nav {
          column-gap: min(1.3020vw,10px);
        }  
        header.enh1.enh1mh-1-2 nav.en-nav {
          grid-template-columns: auto 1fr;
          grid-template-rows: var(--header-height) 1fr auto auto;
          z-index: 9 !important;
        }

        header.enh1.enh1mh-1-2 nav.en-nav > ul {
          grid-column: 1/3;
        }
 
        header.enh1.enh1topnav-2-3 nav.en-nav ul {
          padding: 0px 0px 0px 0px;
        }
        header.enh1.enh1mh-1-2 div.enh1-top-bar {
            grid-column: 1/3;
            grid-row: 4;
            column-gap: 15px;
            grid-template-columns: 1fr;
            grid-template-rows:auto;
            height: 80px;
        }
        header.enh1 div.enh1-search-translate {
            padding: 5px 0px 5px 0px;
            align-items: center;
            justify-content: center;
            grid-column: 1/3;
            grid-row: 1;
            border: none !important;
        }
        #en-public-header-translate{
            font-size: clamp(12px,1.8229vw,14px);
        }
       
    .en-header-popup-wrapper{
      width: 85% !important;
      max-width: 85% !important;
    }


    header.enh1 nav.en-nav > ul > li > a {
      color: #fff;
    background: #000;
    }
    #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 {
      transition: all 0.3s ease-in-out;
    }
    

    header.enh1 > div.en-mobile-header a {
      text-decoration: none;
      margin: 0px;
      line-height: 1;
      display: block;
    }
    div.en-mobnav-bg{
      position: relative !important;
    }

    header.enh1 div.enh1-search-translate div.enh1-search > span {
      display: block;
    }
header.enh1 button.en-mobnav-button img.menu-icon-hover {
  display: none;
}
header.enh1 button.en-mobnav-button:hover img.menu-icon-hover,
header.enh1 button.en-mobnav-button:focus img.menu-icon-hover{
  display: block;
}
header.enh1 button.en-mobnav-button:is(:hover, :focus) img.menu-icon {
  display: none;
}
header.enh1 div.enh1-ql-links::before {
    right: -22px;
}
      header.enh1 div.enh1-logo-cont a{
          margin: 0px !important;
      }
}








