.header {
  background: #3f6600;
  padding: 11px 0;
  position: relative;
  z-index: 5;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.header__burger span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.header__burger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__wrap {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: 10px;
}
.header__select {
  margin-left: 32px;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
}
.logo__text {
  font-weight: 900;
  font-size: 35px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  white-space: nowrap;
}
.logo__text:before {
  position: absolute;
  height: 26px;
  width: 1px;
  background-color: #a0d911;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
}
.logo__subtext {
  font-weight: 500;
  font-size: 19px;
  line-height: 140%;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #a0d911;
  white-space: nowrap;
}

.nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__item {
  position: relative;
}
.nav__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
}
.nav__link:hover {
  color: #a0d911;
  position: relative;
}
.nav__link:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background-color: #a0d911;
}
.nav__link--active {
  color: #a0d911;
  position: relative;
}
.nav__link--active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background-color: #a0d911;
}
.nav__link--dropdown {
  position: relative;
  padding-right: 20px;
}
.nav__link--dropdown::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("../images/arrow-down.svg") no-repeat center;
  transition: transform 0.3s;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #2B2B2B;
  border-radius: 4px;
  padding: 12px 0;
  margin-top: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: #2B2B2B;
  transform: rotate(45deg);
}
.nav__dropdown-item:not(:last-child) {
  margin-bottom: 4px;
}
.nav__dropdown-link {
  display: block;
  padding: 8px 20px;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}
.nav__dropdown-link:hover {
  color: #95C11F;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item:hover .nav__link--dropdown::after {
  transform: translateY(-50%) rotate(180deg);
}

.button {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #000;
  transition: all 0.3s;
  border-radius: 50px;
  padding: 12px 24px;
  white-space: nowrap;
}
.button:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) !important;
  background: #a0d911 !important;
}
.button:active {
  box-shadow: none !important;
  background: #5b8c00 !important;
}
.button--primary {
  background: #a0d911;
  color: #000;
}

.lang-select {
  position: relative;
}
.lang-select__current {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #fff;
  padding: 0 20px 0 5px;
  position: relative;
}
.lang-select__current::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("../images/arrow-down.svg") no-repeat center;
  transition: transform 0.3s;
}
.lang-select__list {
  position: absolute;
  top: 100%;
  right: 0;
  background: #3f6600;
  border-radius: 4px;
  padding: 8px 0;
  margin-top: 5px;
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.lang-select:hover .lang-select__list {
  opacity: 1;
  visibility: visible;
}
.lang-select:hover .lang-select__current::after {
  transform: translateY(-50%) rotate(180deg);
}
.lang-select__link {
  display: block;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}
.lang-select__link:hover {
  color: #a0d911;
}
.lang-select__link--active {
  color: #a0d911;
}