header {
  background-color: #17161B;
  background-color: var(--secondary_color);
}
header.sticky {
  position: sticky;
  top: 0;
  z-index: 66;
}
header.open-menu .main-navigation {
  display: block;
}
header .region-header {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  min-height: 110px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  header .region-header {
    min-height: 70px;
  }
}
header .region-header .branding-block {
  display: flex;
  align-items: center;
}
header .region-header .branding-block a {
  color: #ffffff;
  color: var(--text_light_color);
  font-weight: bold;
  font-size: 110%;
  text-decoration: none;
}
header .region-header .branding-block img {
  width: 80px;
}
header .region-header .language-switcher-language-url {
  margin: auto 0 auto auto;
}
header .region-header .language-switcher-language-url > .contextual button {
  top: -25px;
  right: -15px;
}
header .region-header .language-switcher-language-url .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .region-header .language-switcher-language-url .links li {
  padding: 0 10px;
}
header .region-header .language-switcher-language-url .links li:first-child {
  border-right: 1px solid;
  border-color: #ffffff;
  border-color: var(--text_light_color);
}
header .region-header .language-switcher-language-url .links a {
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  color: var(--text_light_color);
}
header .region-header .language-switcher-language-url .links a.is-active {
  color: #f1c40f;
  color: var(--primary_color);
}
header .mobile-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
}
header .mobile-button.show-mobile-button {
  display: flex;
}
header .mobile-button #nav-icon {
  width: 30px;
  height: 26px;
  position: relative;
  transform: rotate(0deg);
  transition: 300ms ease-in-out;
}
header .mobile-button #nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background-color: #ffffff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 250ms ease-in-out;
}
header .mobile-button #nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
header .mobile-button #nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
header .mobile-button #nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
header .mobile-button #nav-icon span:nth-child(odd) {
  left: 1px;
  border-radius: 9px 0 0 9px;
}
header .mobile-button #nav-icon span:nth-child(1), header .mobile-button #nav-icon span:nth-child(2) {
  top: 0px;
}
header .mobile-button #nav-icon span:nth-child(3), header .mobile-button #nav-icon span:nth-child(4) {
  top: 10px;
}
header .mobile-button #nav-icon span:nth-child(5), header .mobile-button #nav-icon span:nth-child(6) {
  top: 20px;
}
header .mobile-button.open #nav-icon span:nth-child(1),
header .mobile-button.open #nav-icon span:nth-child(6) {
  transform: rotate(45deg);
}
header .mobile-button.open #nav-icon span:nth-child(2),
header .mobile-button.open #nav-icon span:nth-child(5) {
  transform: rotate(-45deg);
}
header .mobile-button.open #nav-icon span:nth-child(1) {
  left: 3px;
  top: 5px;
}
header .mobile-button.open #nav-icon span:nth-child(2) {
  left: calc(50% - 3px);
  top: 5px;
}
header .mobile-button.open #nav-icon span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
header .mobile-button.open #nav-icon span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
header .mobile-button.open #nav-icon span:nth-child(5) {
  left: 3px;
  top: 14px;
}
header .mobile-button.open #nav-icon span:nth-child(6) {
  left: calc(50% - 3px);
  top: 14px;
}

.toolbar-horizontal header.sticky {
  top: 78px;
}
