.mobile-menu-open {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
}
.mobile-menu-open__button {
  width: 30px;
  height: 2px;
  background-color: var(--Head);
}
.mobile-menu-open__button:after {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--Head);
  position: absolute;
  top: 0;
  transition: 0.3s;
}
.mobile-menu-open__button:before {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--Head);
  position: absolute;
  bottom: 0;
  transition: 0.3s;
}
.mobile-menu-open.active .mobile-menu-open__button {
  background-color: transparent;
}
.mobile-menu-open.active .mobile-menu-open__button:after {
  transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
}
.mobile-menu-open.active .mobile-menu-open__button:before {
  transform: rotate(45deg);
  top: 0;
  margin: auto;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--Background-light);
  top: 0;
}
.mobile-menu__wrapper {
  padding-top: 12px;
  padding-bottom: 12px;
}
.mobile-menu.opened, .mobile-menu.active,
.mobile-menu .nav_close.opened {
  left: 0;
  display: flex;
}
.mobile-menu__wrap li {
  list-style-type: none;
}
.mobile-menu__wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  gap: 5px;
  font-weight: 900;
  font-size: clamp(14px, calc(0.375vw + 12.8px), 20px);
  line-height: 140%;
  color: var(--color, var(--Head));
  text-transform: uppercase;
  --color: var(--Main-text);
  text-decoration: none;
}
.mobile-menu__wrap li a .menu-item__icon {
  position: relative;
  width: 60px;
}
.mobile-menu__wrap li a .menu-item__icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.mobile-menu__wrap li a .menu-item__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobile-menu__wrap li.has-childs a span {
  font-weight: 900;
  font-size: clamp(14px, calc(0.375vw + 12.8px), 20px);
  line-height: 140%;
  color: var(--color, var(--Head));
  text-transform: uppercase;
  --color: var(--Main-text);
}
.mobile-menu__wrap li.has-childs svg {
  transform: rotate(-90deg);
  width: 12px;
  height: 12px;
  color: var(--Primary);
}
.mobile-menu__wrap li.back a {
  justify-content: flex-start;
  font-weight: 900;
  font-size: clamp(14px, calc(0.375vw + 12.8px), 20px);
  line-height: 140%;
  color: var(--color, var(--Head));
  text-transform: uppercase;
  color: var(--Primary);
}
.mobile-menu__wrap li.back svg {
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
  color: var(--Primary);
}
.mobile-menu__wrap .sub-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--Background-light);
  top: 0;
}
.mobile-menu__wrap .sub-menu.active {
  left: 0;
  display: flex;
}
.mobile-menu__contact {
  padding: 10px 20px 10px;
}
.mobile-menu__contact > *:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-menu__contact-value {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: var(--Head);
}
.mobile-menu__contact-value * {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: var(--Primary);
}
.mobile-menu__contact-value svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.mobile-menu__contact-value svg path {
  stroke: var(--Primary);
}
.mobile-menu__contact-value img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: max(10 / 19.2 * 1vw, 10px);
}
.mobile-menu__contact-social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--Background-light);
  border: 1px solid var(--Background-dark);
}
.mobile-menu__contact-social-item svg {
  width: 15px;
  height: 15px;
}
.mobile-menu__contact-social-item img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__btn-wrap {
  padding: 10px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu__btn-wrap .btn {
  width: 100%;
}
.mobile-menu__phones {
  list-style: none;
}
.mobile-menu__phones li a {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: var(--Primary);
}
.mobile-menu__phones li:not(:last-child) {
  margin-bottom: 10px;
}

body.opened .header {
  z-index: 101;
}

@media (max-width: 991px) {
  .mobile-menu-open {
    display: flex;
  }
}/*# sourceMappingURL=mobile-menu.css.map */