.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-left: 0;
}

.menu-trigger__lines {
  width: 100%;
  cursor: pointer;
}

.menu-trigger__lines i {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-default);
  position: relative;
  transform-origin: 50% 50%;
  transition: transform 0.3s; 
}

.menu-trigger__lines i:nth-child(2) {
  margin-top: 3px;
  margin-bottom: 3px;
}

.menu-trigger.active .menu-trigger__lines i:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active .menu-trigger__lines i:nth-child(1) {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.menu-trigger.active .menu-trigger__lines i:nth-child(3) {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}

/* menu trigger END */

/* mobile-menu START */

.mobile-menu {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 98;
  display: none;
}

.mobile-menu__wrapper-inner {
  width: 100%;
  max-height: calc(100vh - 15rem);
  overflow-y: auto;
}

.mobile-menu__content {
  padding-bottom: 3rem;
  padding-left: 1rem;
}

.mobile-menu__links li,
.mobile-menu__links li a {
  display: block;
  font-size: 1.7rem;
}

.mobile-menu__links li ul {
  display: none;
  padding-bottom: 10px;
}


.mobile-menu__links > li > a {
  box-sizing: border-box;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.23;
}

.mobile-menu__links li li a {
  padding: 5px 0;
  font-size: 1.4rem;
  font-weight: normal;
}

.mobile-menu__links li.menu-item-has-children a {
  display: flex;
  align-items: center;
}

.mobile-menu__links li.menu-item-has-children a.active {
  color: var(--color-blue);
}

.mobile-menu__links li.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: currentColor transparent transparent transparent;
  margin-left: 5px;
}

.mobile-menu__links li.menu-item-has-children.active > a::after {
  transform: rotate(225deg);
}

.mobile-menu-links::after {
  content: "";
  display: block;
  clear: both;
}

.mobile-menu-links .half {
  box-sizing: border-box;
  width: 49%;
  float: left;
}

.mobile-menu-links .half.menu-phone {
  float: right;
  padding-top: 12px;
}

.mobile-menu-links .half.menu-phone a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.86px;
  text-align: left;
  color: #fdc300;
}

.mobile-menu__bottom {
  display: flex;
  align-items: center;
  padding: 20px 15px 10px;
  line-height: 1;
}

.mobile-menu__links_adv {
  padding-top: 3rem;
}

.mobile-menu__copyright {
  margin-top: auto;
}
