header {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  z-index: 9999;
  background: var(--header_bg_color, #ffffff);
}
header.active, .other_header {
  position: fixed;
  -webkit-box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
  box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
  -webkit-animation: slideDown 0.3s linear;
  animation: slideDown 0.3s linear;
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-10rem);
  }
  to {
    transform: none;
  }
}
@-moz-keyframes slideDown {
  from {
    transform: translateY(-10rem);
  }
  to {
    transform: none;
  }
}
@-ms-keyframes slideDown {
  from {
    transform: translateY(-10rem);
  }
  to {
    transform: none;
  }
}
@-o-keyframes slideDown {
  from {
    transform: translateY(-10rem);
  }
  to {
    transform: none;
  }
}
@keyframe slideDown {
  from {
    transform: translateY(-10rem);
  }
  to {
    transform: none;
  }
}
.logo a {
  display: flex;
  align-items: center;
}
.logo a img{
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.menu ul,
.menu li{
  padding: 0;
  margin: 0;
}
.menu li:after {
  content: none;
}
.menu > li {
  position: relative;
  margin-left: 3.9rem;
  padding: 0rem;
  line-height: initial;
  font-size: initial;
}
.menu > li:first-child {
  margin-left: 0rem;
}
.menu > li > a {
  display: block;
  font-size: 1.6rem;
  color: var(--header_font_color, #000);
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.9rem;
  letter-spacing: 0.032rem;
}
.menu > li > a:after {
  position: absolute;
  content: "";
  left: 0rem;
  width: 100%;
  height: 0.4rem;
}
.header_btn {
  margin-left: 3.9rem;
}
.header_btn + .header_btn{
  margin-left: 1.6rem;
}
.header_btn .btn{
  margin-bottom: 0;
}
header .btn-black, header .btn-black-small {
  background-color: var(--header_active_color, black);
  border-color: var(--header_active_color, black);
}
header .btn-black:hover, header .btn-black-small:hover {
  color: var(--header_active_color, black);
}
.toggleMenu {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.toggleMenu span {
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  background: var(--header_font_color, #000);
  margin: 0.3rem 0rem;
}
.closeMenu{
  height: 5rem;
  width: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  color: var(--header_font_color);
  font-size: 1.8rem;
  display: none;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.closeMenu #closeMenu{
  width: 3rem;
  height: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: none;
  background: transparent;
}
.closeMenu #closeMenu:after,
.closeMenu #closeMenu:before{
  position: absolute;
  content: "";
  height: 2.1rem;
  width: 0.2rem;
  background: var(--header_font_color);
}
.closeMenu #closeMenu:after{
  transform: rotate(45deg);
}
.closeMenu #closeMenu:before{
  transform: rotate(-45deg);
}
.submenu {
  position: absolute;
  min-width: 26rem;
  background: var(--header_active_color, #000);
  border-radius: 0rem 0rem 0.5rem 0.5rem;
  top: 4.6rem;
  left: 0rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: transform 0.3s linear;
  -moz-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
}
.submenu:after {
  position: absolute;
  content: "";
  top: -2.9rem;
  left: 0rem;
  height: 2.9rem;
  width: 100%;
  background: transparent;
}
.submenu:before {
  position: absolute;
  content: "";
  height: 0.6rem;
  width: 5.2rem;
  left: 0rem;
  top: -0.6rem;
  background: var(--header_active_color, #000);
}
li.haschild:hover > .submenu,
li.hasmenu:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0rem);
  -moz-transform: translateY(0rem);
  transform: translateY(0rem);
}
.menu-back{
  display: none;
}
.submenu li {
  margin-left: 0rem;
}
.submenu a {
  display: flex;
  align-items: center;
  letter-spacing: 0.032rem;
  font-family: var(--font-family);
  font-weight: 600;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 1rem 2rem;
}
.submenu a:after {
  content: none;
}
.submenu li:last-child a {
  border-radius: 0rem 0rem 0.5rem 0.5rem;
}
.submenu a:hover, .submenu li.active a {
  background: #434343;
}
.sub-submenu{
  position: absolute;
  top: 0;
  left: calc(100% + 0.2rem);
  min-width: 26rem;
  background: var(--header_active_color, #000);
  border-radius: 0.5rem;
  display: none;
}
.sub-submenu:before{
  position: absolute;
  content: "";
  left: -0.2rem;
  top: 0;
  width: 0.2rem;
  height: 100%;
}
.header-0 .hasmenu:hover > .sub-submenu,
.header-0 .has-subchild:hover > .sub-submenu,
.header-1 .hasmenu:hover > .sub-submenu,
.header-1 .has-subchild:hover > .sub-submenu{
  display: block;
}
.openMenu {
  display: none;
}
.dropdown-lang {
  margin-left: 1.5rem;
  position: relative;
  transform: translateY(-0.2rem);
  display: inline-block;
}
.dropdown-lang img {
  max-width: 2rem;
  max-height: 2rem;
  transform: translateY(-0.1rem);
}
.btn-language {
  display: block;
  min-width: 4.7rem;
  height: 4.7rem;
  padding: 0rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 4.7rem;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.1rem solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-align: center;
  cursor: pointer;
}
.dropdown-lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #fff;
  border: 0.1rem solid #ced4da;
  width: 100%;
  line-height: 3rem;
  border-radius: 0.25rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
}
.dropdown-lang-menu.active {
  display: block;
}
.dropdown-lang-item {
  display: inline-block;
  width: 100%;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
}
.dropdown-lang-item:hover {
  cursor: pointer;
}
.dropdown-lang.open .dropdown-lang-menu {
  display: inline-block;
  min-width: auto;
  transition: all 0.5s ease-out;
  top: 3.3rem;
}
.openmenu{
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-left: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.openmenu:after {
  position: absolute;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 0.2rem solid var(--header_font_color);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
.wcag-list{
  display: flex;
  align-items: center;
  height: 2rem;
  padding: 0 !important;
}
.header-bottom .wcag-list{
  display: none;
}
.wcag-list-font {
  display: flex;
  align-items: flex-end;
}
.wcag-list button {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 0 0.3rem;
  color: var(--header_font_color, #000);
  font-weight: 500;
  width: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
}
.wcag-list button.wcag-font-size-1{
  font-size: 1.3rem;
  height: 0.8rem;
}
.wcag-list button.wcag-font-size-2{
  height: 1.1rem;
  font-size: 1.5rem;
}
.wcag-list button.wcag-font-size-3{
  max-height: 1.3rem;
  font-size: 1.7rem;
}
.wcag-list button.wcag-contrast-mode{
  align-items: center;
  justify-content: center;
  margin-left: 1.2rem;
  height: 2rem;
}
.wcag-list button.wcag-contrast-mode:after{
  position: absolute;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--header_font_color, #000);
}
.wcag-list button.wcag-contrast-mode:before{
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 0.6rem;
  background: var(--header_font_color, #000);
  border-radius: 7rem 7rem 0 0;
  z-index: 1;
  transform: rotate(90deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -0.1rem;
  -webkit-filter: invert(1);
  filter: invert(1);
}
.header-mobile header{
  position: fixed;
}
.header-mobile .header-menu {
  position: fixed;
  top: 0rem;
  right: -100%;
  width: 100%;
  background: var(--header_bg_color, #fff);
  z-index: 10;
  height: 100vh;
  height: 100dvh;
  padding-top: 5rem;
  overflow: hidden;
  overflow-y: auto;
  display: block;
  box-shadow: 0rem 0.2rem 0.3rem rgb(0 0 0 / 10%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-mobile .header-menu.active {
  right: 0rem;
}
.header-mobile .menu {
  display: block;
}
.header-mobile .openmenu{
  display: flex;
}
.header-mobile .menu > li {
  margin-left: 0rem;
}
.header-mobile .menu > li > a {
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.header-mobile .menu > li > a:after {
  height: 0.2rem;
}
.header-mobile .closeMenu {
  display: flex;
}
.header-mobile .header_btn {
  margin-left: 0rem;
  padding: 1.5rem;
}
.header-mobile .header_btn + .header_btn {
  margin-left: 0;
  padding-top: 0;
}
.header-mobile .header_btn .btn {
  width: 100%;
}
.header-mobile .toggleMenu {
  display: flex;
}
.header-mobile .openMenu {
  display: flex;
  position: absolute;
  right: 0rem;
  top: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-mobile .submenu,
.header-mobile .sub-submenu{
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border-radius: 0rem;
  top: 0rem;
  left: auto;
  right: -100%;
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 2;
  background: var(--header_bg_color);
  -webkit-transform: translateY(0rem);
  -moz-transform: translateY(0rem);
  transform: translateY(0rem);
  -webkit-transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-mobile .sub-submenu{
  z-index: 2;
}
.header-mobile .submenu.open,
.header-mobile .sub-submenu.open{
  right: 0;
}
.header-mobile .menu-back{
  display: flex;
  height: 5rem;
  width: 100%;
  cursor: pointer;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  background-color: var(--header_bg_color);
  padding: 0 1.5rem 0 3.5rem;
  font-size: 1.8rem;
  color: var(--header_font_color);
  align-items: center;
  position: relative;
}
.header-mobile .menu-back:after{
  position: absolute;
  content: "";
  width: 1rem;
  top: 1.9rem;
  left: 1.5rem;
  height: 1rem;
  border: 0.2rem solid var(--header_font_color);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-135deg);
}
.header-mobile .menu-back img{
  display: none;
}
.header-mobile .submenu:before, 
.header-mobile .submenu:after {
  content: none;
}
.header-mobile .submenu-body {
  height: calc(100vh - 5rem);
  height: calc(100dvh - 5rem);
  overflow: hidden;
  overflow-y: auto;
}
.header-mobile .submenu.show-sub-menu .submenu-body{
  overflow: initial;
}
.header-mobile .submenu a {
  font-size: 1.5rem;
  line-height: 1.9rem;
  padding: 1.5rem 1.5rem;
  color: var(--header_font_color,#000);
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.header-mobile .menu > li.hasmenu > a,
.header-mobile .has-subchild > a{
  padding-right: 6rem;
}
.header-mobile .dropdown-lang {
  transform: initial;
}
.header-mobile .btn-language {
  min-width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0;
}

body.submenu-show:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.header-mobile body.open {
  overflow: hidden;
}
.header-mobile body.submenu-show:after {
  background: rgba(0, 0, 0, 0.64);
}

.header-0 .menu-view-all-mobile,
.header-1 .menu-view-all-mobile,
.header-2 .menu-view-all-mobile {
  display: none;
}
.header-mobile .header-bottom .wcag-list {
  display: flex;
  margin-left: auto;
  margin-right: 1.5rem;
  justify-content: center;
}