.header-link img {
  height: 75px;
  width: 75px;
}

header {
  font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
}

.header-up {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  border: 0;
  padding: 0px 20px;
}

.header-nav_list {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.header-nav_list a {
  color: black;
  text-decoration: none;
  padding: 7px 15px;
  transition: 0.3s;
  font-size: 25px;
}

.header-nav_list a:hover {
  color: #2e3f0b;
}

.header-language_select {
  border: 2px solid #2e3f0b;
  border-radius: 8px;
  cursor: pointer;
  height: 30px;
  font-size: 16px;
  margin-top: 20px;
}

.header-language_select option {
  color: #2e3f0b;
}


