*,
*::before,
*::after {
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;           /* высота меню */
  background: black;
  z-index: 1000;
  overflow: hidden;
  /* border: solid 2px yellow; */
}

.content {
  padding-top: 85px;      /* ТА ЖЕ высота */
}

.navbar {
  display: flex;
  height: 100%;
  max-width: 100%;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  /* border: solid 2px yellow; */
}

.losgeht {
  background-color: black;
  border: 2px solid #d6be72;
  color: #d6be72;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.losgeht:hover {
  background: #d6be72;
  color: black;
  transition: background-color 0.3s, color 0.3s;
}

.logo {
  font-family: 'NunitoSans', sans-serif;
  font-size: 30px;
  color: #d6be72;
  text-decoration: none;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.sublogo {
  font-size: 12px;
  color: #d6be72;
  text-decoration: none;
  letter-spacing: 0.95em;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.menu-item a {
  font-size: 20px;
  text-decoration: none;
  color: #d6be72;
  display: flex;
  text-align: center;
}

.drop {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-right: 20px;
  position: relative;
  align-content: center;
  vertical-align: middle;
  /* border: solid 2px yellow; */
}

.logo-place {
  margin-left: 20px;
  margin-right: 50px;
  /* border: solid 2px yellow; */
}

.menu-item {
  width: auto;
  justify-items: center;
  display: flex;
  gap: 40px;
  /* border: solid 2px yellow; */
}

.menu-item a:hover {
  text-decoration: underline;
}

.burger {
  display: none;
}

.left-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  /* border: solid 2px yellow; */
}

.nav-cta {
  margin-right: auto;
  margin-left: 20px;
  text-align: right;
  /* border: solid 2px yellow; */
}

.lang-switch {
  display: none;
  text-align: center;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
  /* border: solid 2px yellow; */
}

.lang-switch button {
  padding: 6px 14px;
  border: 2px solid #d6be72;
  background: transparent;
  color: #d6be72;
  border-radius: 12px;
  font-family: 'NunitoSans', sans-serif;
  cursor: pointer;
  transition: 0.2s;
  opacity: 0.7;
}

.lang-switch button.active {
  opacity: 1;
  background: #d6be72;
  color: black;
  font-weight: 600;
}

.lang-switch button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.lang-switch2 {
  display: block;
  /* border: solid 2px yellow; */
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}

.lang-btn {
  padding: 6px 14px;
  border: 2px solid #d6be72;
  background: #d6be72;
  color: black;
  border-radius: 12px;
  font-family: 'NunitoSans', sans-serif;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}

.lang-btn button:hover {
  opacity: 1;
  transform: translateY(-2px);
}