.header-subscribe {
  display: none;
}
.header-list {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.header-list-2lvl {
  position: absolute;
  left: 0;
  top: 55px;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  min-height: 40%;
  background-color: #FFFFFF;
  z-index: 11;
  display: none;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.header-list-2lvl .container {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  border: none;
}
.header-list-2lvl.active {
  border-bottom: 1px solid rgb(128, 144, 124);
  display: flex;
  justify-content: center;
}
.header-list-2lvl__item {
  width: 25%;
}
.header-list-2lvl__item-title {
  cursor: pointer;
  width: 100%;
}
.header-list-2lvl__item:hover {
  color: rgb(128, 144, 124);
}
.header-list__item {
  padding: 10px 54px 10px 0;
  z-index: 11;
}
.header-list__item.hover .header-list__item-title {
  color: rgb(128, 144, 124);
}
.header-list__item-title {
  cursor: pointer;
  width: 100%;    font-weight: 500;
}
.header-list__item--arrow {
  display: none;
}

@media (min-width: 1920px) {
  .header-list {
    padding: 0;
  }
  .header-list__item {
    padding: 30px 73px 30px 0;
  }
}
@media (max-width: 1290px) {
  .header-subscribe {
    display: block;
  }
  .header-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .header-list-2lvl {
    position: static;
    display: none;
    padding: 10px 0 0 15px;
    height: -moz-min-content;
    height: min-content;
    opacity: 1;
    visibility: visible;
  }
  .header-list-2lvl .container {
    gap: 0;
    padding: 0;
  }
  .header-list-2lvl__item {
    width: 100%;
    margin-bottom: 10px;
  }
  .header-list-2lvl__item:last-child {
    margin-bottom: 0;
  }
  .header-list__item {
    width: 100%;
    border-bottom: 1px solid rgba(122, 122, 122, 0.3);
    padding: 10px 0;
    overflow: hidden;
  }
  .header-list__item .selected {
    color: rgb(165, 201, 156);
    position: relative;
  }
  .header-list__item .selected:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(165, 201, 156);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-list__item--toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header-list__item--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: white;
  }
  .header-list__item--top.is-active {
    position: sticky;
    top: 0;
  }
  .header-list__item--top.is-active .header-list__item--arrow {
    transform: rotate(-180deg);
  }
  .header-list__item--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(-90deg);
    transition: transform 0.3s linear;
    width: 24px;
    height: 24px;
    margin: -8px;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .header-list__item--arrow img {
    width: 10px;
    height: 8px;
  }
}
.header-list__item-title {
  cursor: pointer;
}