.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 75px;
  background-color: #2e75b8;
  position: fixed;
  top: 0;
  color: white;
  z-index: 100;
  box-sizing: border-box;
}

.header__logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 1rem; /* Reduced gap for smaller screens */
}

.header__logo-text {
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

.header__logo-img {
  width: 55px;
}

.header__logo-img img:hover,
.footer__logo-block-img img:hover {
  filter: brightness(0.75);
}

.header__lang-switch {
  display: flex;
  font-size: 18px;
}

.header__lang-switch-text {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.header__nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 6rem;
  padding-left: 10px;
  padding-right: 10px;
}

.header__nav-menu a {
  font-size: 18px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.header__nav-menu a:hover {
  color: rgb(212, 212, 212);
  transition-duration: 0.2s;
}

@media (max-width: 1000px) {
  .header {
    justify-content: space-evenly;
    gap: 12rem;
  }
  .header__logo-text {
    display: none;
  }
}
