*,
*::before,
*::after {
  box-sizing: border-box;
}

.header {
  font-family: 'NunitoSans', sans-serif;
  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: grid;
  grid-template-columns: 0.5fr 2fr 0.5fr;
  gap: 30px;
  height: 100%;
  max-width: 100%;
  margin-inline: 30px;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  /* border: solid 2px yellow; */
}

.losgeht {
  border: 2px solid orange;
  background-color: transparent;
  color: orange;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.losgeht:hover {
  background: orange;
  color: white;
  /* transition: background-color 0.3s, color 0.3s; */
}

.logo {
  font-family: 'NunitoSans', sans-serif;
  font-size: 60px;
  color: orange;
  text-decoration: none;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.sublogo {
  font-size: 15px;
  color: orange;
  text-decoration: none;
  letter-spacing: 0.45em;
  line-height: 1;
  /* border: solid 2px yellow; */
}

.menu-item a {
  font-size: 20px;
  text-decoration: none;
  color: orange;
  display: flex;
  text-align: center;
}

.drop {
  display: block;
  width: 100%;
  height: 100%;
  /* position: relative; */
  align-content: center;
  text-align: center;
  /* border: solid 2px yellow; */
}

.logo-place {
  width: 100%;
  height: 100%;
  /* border: solid 2px yellow; */
}

.logo-place a {
  font-weight: 1000;
}

.menu-item {
  width: auto;
  justify-content: space-between;
  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 {
  display: block;
  width: 100%;
  height: 100%;
  align-content: center;
  text-align: right;
  /* border: solid 2px yellow; */
}

