header#masthead {
    padding: 18px 0;
    background-color: #fff;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  header#masthead .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header#masthead.sticky {
    background-color: #F2F6F8;
    z-index: 999;
    top: 0;
    position: sticky;
}
.main-navigation ul {
  gap: 32px;
}
#primary-menu .menu-item a,
.sticky .menu-item a {
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
  color: var(--Black);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}
#primary-menu .menu-item a:hover,
.sticky .menu-item a:hover,
#primary-menu .menu-item.current-menu-item a,
.sticky .menu-item.current-menu-item a {
  color: var(--Accent);
  border-bottom: 1px solid var(--Accent);
}

select#lang_choice_1 {
    border: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    text-transform: uppercase;
    color: #6B6B6B;
}