.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: transparent;
  padding: 3rem 0;
  background: transparent;
  border-bottom: 0.1rem solid #fff;
  background-color: #000;
  z-index: 10;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: block;
  width: 19.6rem;
  margin-right: 8.8rem;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__nav {
  margin-right: auto;
}

.header__nav .nav__list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  border: 0.1rem solid #fff;
  border-radius: 3rem;
  overflow: hidden;
  background: transparent;
}

.header__nav .nav__list li {
  display: flex;
}

.header__nav .nav__list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "UAFSans";
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
  padding: 0 2rem;
  height: 3.8rem;
  background: transparent;
  border: none;
  line-height: 1.4;
  transition: 0.3s;
  text-transform: uppercase;
}

.header__nav .nav__list a:hover {
  background: #fff;
  color: #000;
  border-radius: 3rem;
}

.header__lang {
  height: 4rem;
}

.header span {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin-top: -0.3rem;
}

.header__lang {
  display: flex;
  width: 13.2rem;
  border: 0.1rem solid #fff;
  justify-content: space-around;
  border-radius: 3rem;
  overflow: hidden;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #fff;
  font-family: "UAFSans";
  font-weight: 450;
  font-size: 1.6rem;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  line-height: 1.4;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn.active {
  background: #fff;
  color: #000;
  border-radius: 3rem;
}

.lang-btn.active,
.lang-btn:hover {
  background: #fff;
  color: #000;
  border-radius: 3rem;
}

@media (min-width: 768px) {
  .header__menu-button {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    width: 100%;
    padding: 3rem 0;
  }
  .header__logo {
    width: 15.4rem;
  }
  .header__nav {
    display: none;
  }
  .header__lang {
    display: none;
  }
  .header__menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
  }
  .header__menu-button svg {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  .header__menu-button.active svg {
    transform: rotate(90deg);
  }
}