:root {
  --gm-header-bg: #1a1a1a;
  --gm-header-bg-deep: #111111;
  --gm-header-text: #ffffff;
  --gm-header-text-soft: rgba(255, 255, 255, .82);
  --gm-header-border: rgba(255, 255, 255, .72);
  --gm-header-border-soft: rgba(255, 255, 255, .2);
  --gm-header-font: "tilda-semibold", "Tilda Sans", Arial, sans-serif;
}

.gm-header,
.gm-header * {
  box-sizing: border-box;
}

.gm-header {
  z-index: 99990;
  overflow: visible;
  color: var(--gm-header-text);
  background: var(--gm-header-bg);
  letter-spacing: 0;
}

.gm-header img,
.gm-header svg {
  display: block;
}

.gm-header a,
.gm-header button {
  -webkit-tap-highlight-color: transparent;
}

.gm-header .header__top,
.gm-header .header__bottom {
  background: var(--gm-header-bg);
}

.gm-header .header__top {
  border-bottom-color: var(--gm-header-border-soft);
}

.gm-header .header__bottom {
  padding: 18px 0 16px;
  transition: transform .4s ease, background-color .4s ease;
}

.gm-header .header__bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gm-header .header__logo,
.gm-header__logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.gm-header .header__logo img,
.gm-header__logo-img {
  width: clamp(220px, 19vw, 274px);
  height: auto;
  max-height: 71px;
  object-fit: contain;
}

.gm-header__contacts {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.7vw, 28px);
  min-width: 0;
  font-family: var(--gm-header-font);
}

.gm-header__phone {
  flex: 0 0 auto;
  color: var(--gm-header-text) !important;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
}

.gm-header__social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, .8vw, 12px);
  min-width: 0;
}

.gm-header .gm-social-menu a.gm-contact,
.gm-header .header__contacts .gm-social-menu a.gm-contact,
.gm-header .header__bottom .gm-social-menu a.gm-contact {
  width: clamp(52px, 4.4vw, 62px);
  min-width: clamp(52px, 4.4vw, 62px);
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: var(--gm-header-text) !important;
  text-decoration: none;
  text-transform: none;
  outline: none;
}

.gm-contact__circle {
  width: clamp(38px, 3.2vw, 44px);
  height: clamp(38px, 3.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gm-header-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.gm-contact__icon {
  width: 54%;
  height: 54%;
  object-fit: contain;
}

.gm-contact--max .gm-contact__icon {
  width: 50%;
  height: 50%;
}

.gm-contact__label {
  display: block;
  max-width: 100%;
  color: var(--gm-header-text-soft);
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.gm-header .gm-social-menu a.gm-contact:hover,
.gm-header .gm-social-menu a.gm-contact:focus-visible {
  background: transparent !important;
  color: var(--gm-header-text) !important;
}

.gm-contact:hover .gm-contact__circle,
.gm-contact:focus-visible .gm-contact__circle {
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

.gm-contact:hover .gm-contact__label,
.gm-contact:focus-visible .gm-contact__label {
  color: #fff;
}

.gm-contact:active .gm-contact__circle {
  transform: translateY(0);
}

.gm-header__callback,
.gm-header .btn.white.min.gm-header__callback {
  flex: 0 0 auto;
  min-width: clamp(150px, 12vw, 178px);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gm-header-border) !important;
  border-radius: 0;
  background: transparent !important;
  color: #fff !important;
  font-family: var(--gm-header-font);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.gm-header__callback:hover,
.gm-header__callback:focus-visible,
.gm-header .btn.white.min.gm-header__callback:hover,
.gm-header .btn.white.min.gm-header__callback:focus-visible {
  border-color: #fff !important;
  background: rgba(255, 255, 255, .06) !important;
  color: #fff !important;
}

.gm-header__callback:active {
  transform: translateY(1px);
}

.gm-header__menu {
  display: none;
}

.gm-header a:focus-visible,
.gm-header button:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 1360px) {
  .gm-header .header__bottom-wrap {
    gap: 20px;
  }

  .gm-header__contacts {
    gap: 18px;
  }

  .gm-header .header__logo img,
  .gm-header__logo-img {
    width: 240px;
  }

  .gm-header__callback,
  .gm-header .btn.white.min.gm-header__callback {
    min-width: 156px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 1180px) {
  .gm-header__contacts {
    gap: 14px;
  }

  .gm-header .header__logo img,
  .gm-header__logo-img {
    width: 220px;
  }

  .gm-header__phone {
    font-size: 16px;
  }

  .gm-header .gm-social-menu a.gm-contact {
    width: 50px;
    min-width: 50px;
  }

  .gm-contact__circle {
    width: 38px;
    height: 38px;
  }

  .gm-contact__label {
    font-size: 10px;
  }

  .gm-header__callback,
  .gm-header .btn.white.min.gm-header__callback {
    min-width: 142px;
    min-height: 42px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .gm-header {
    overflow: visible;
  }

  .gm-header .header__bottom {
    padding: 8px 0 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(18, 18, 18, .96);
  }

  .gm-header .header__bottom .container {
    width: 100%;
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .gm-header .header__bottom-wrap {
    display: block;
    width: 100%;
  }

  .gm-header .header__logo {
    display: none !important;
  }

  .gm-header__contacts {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto clamp(34px, 9vw, 38px);
    grid-template-areas: "social phone menu";
    align-items: center;
    justify-content: stretch;
    gap: 6px;
    width: 100%;
    min-height: 66px;
    font-family: var(--gm-header-font);
  }

  .gm-header__social {
    grid-area: social;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(3px, 1.1vw, 6px);
    min-width: 0;
  }

  .gm-header .gm-social-menu a.gm-contact,
  .gm-header .header__contacts .gm-social-menu a.gm-contact,
  .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: clamp(36px, 9.5vw, 42px);
    min-width: clamp(36px, 9.5vw, 42px);
    min-height: 52px;
    gap: 4px;
  }

  .gm-contact__circle {
    width: clamp(30px, 8vw, 34px);
    height: clamp(30px, 8vw, 34px);
    border-width: 1.4px;
  }

  .gm-contact__label {
    font-size: clamp(7.2px, 1.9vw, 8.2px);
    line-height: 1;
    overflow: visible;
  }

  .gm-header__phone {
    grid-area: phone;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: clamp(10.5px, 2.9vw, 12px);
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
  }

  .gm-header__callback,
  .gm-header .btn.white.min.gm-header__callback {
    display: none !important;
  }

  .gm-header__menu,
  .gm-header .bar-menu.gm-header__menu {
    grid-area: menu;
    width: clamp(34px, 9vw, 38px);
    min-width: clamp(34px, 9vw, 38px);
    height: clamp(34px, 9vw, 38px);
    margin: 0;
    padding: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gm-header-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, .02);
    color: #fff;
    cursor: pointer;
    user-select: none;
    appearance: none;
  }

  .gm-header__menu::before,
  .gm-header__menu::after {
    content: none !important;
  }

  .gm-header__menu img {
    width: 56%;
    height: 56%;
    pointer-events: none;
    transition: transform .18s ease;
  }

  .gm-header__menu:hover,
  .gm-header__menu:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
  }

  .gm-header__menu.active img {
    transform: rotate(90deg);
  }

  .gm-header .header__top {
    z-index: -1;
  }

  .gm-header .header__top.open,
  .gm-header .header__top.active {
    z-index: 99980;
  }
}

@media (max-width: 390px) {
  .gm-header .header__bottom .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .gm-header__contacts {
    gap: 5px;
  }

  .gm-header__social {
    gap: 3px;
  }

  .gm-header .gm-social-menu a.gm-contact,
  .gm-header .header__contacts .gm-social-menu a.gm-contact,
  .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: 36px;
    min-width: 36px;
  }

  .gm-contact__label {
    font-size: 7.2px;
  }
}

@media (max-width: 360px) {
  .gm-header .header__bottom .container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .gm-header__contacts {
    grid-template-columns: minmax(0, 1fr) auto 36px;
    gap: 4px;
  }

  .gm-header .gm-social-menu a.gm-contact,
  .gm-header .header__contacts .gm-social-menu a.gm-contact,
  .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: 36px;
    min-width: 36px;
  }

  .gm-contact__circle {
    width: 30px;
    height: 30px;
  }

  .gm-contact__label {
    font-size: 7.2px;
  }

  .gm-header__phone {
    font-size: 10.5px;
  }

  .gm-header__menu,
  .gm-header .bar-menu.gm-header__menu {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  body:has(.gm-home) .gm-header .header__bottom {
    padding: 8px 0 7px !important;
    background: rgba(18, 18, 18, .96) !important;
  }

  body:has(.gm-home) .gm-header .header__bottom .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body:has(.gm-home) .gm-header .header__bottom-wrap {
    display: block !important;
    width: 100% !important;
    gap: 0 !important;
  }

  body:has(.gm-home) .gm-header .header__logo {
    display: none !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts {
    display: grid !important;
    grid-template-columns: auto minmax(96px, 1fr) clamp(76px, 20vw, 96px) !important;
    grid-template-areas: "social phone menu" !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 6px !important;
    width: 100% !important;
    min-height: 66px !important;
    margin: 0 !important;
  }

  body:has(.gm-home) .gm-header .header__contacts .gm-header-social.gm-header__social {
    grid-area: social !important;
    flex: 0 0 auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(3px, 1.1vw, 6px) !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
  }

  body:has(.gm-home) .gm-header .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__contacts .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: clamp(36px, 9.5vw, 42px) !important;
    min-width: clamp(36px, 9.5vw, 42px) !important;
    min-height: 52px !important;
    display: inline-flex !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__circle {
    width: clamp(30px, 8vw, 34px) !important;
    height: clamp(30px, 8vw, 34px) !important;
    border: 1.4px solid var(--gm-header-border) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .02) !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__icon {
    width: 54% !important;
    height: 54% !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__label {
    display: block !important;
    color: var(--gm-header-text-soft) !important;
    font-size: clamp(7.2px, 1.9vw, 8.2px) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  body:has(.gm-home) .gm-header .header__phone.gm-header__phone {
    grid-area: phone !important;
    flex: 1 1 auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(10.5px, 2.9vw, 12px) !important;
    line-height: 1.08 !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }

  body:has(.gm-home) .gm-header .header__contacts > .gm-header__callback {
    display: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu {
    grid-area: menu !important;
    flex: 0 0 auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 3 !important;
    width: clamp(76px, 20vw, 96px) !important;
    min-width: clamp(76px, 20vw, 96px) !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid var(--gm-header-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .02) !important;
    color: #fff !important;
    position: static !important;
    transform: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu img {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 390px) {
  body:has(.gm-home) .gm-header .header__bottom .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts {
    gap: 5px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts .gm-header-social.gm-header__social {
    gap: 3px !important;
  }

  body:has(.gm-home) .gm-header .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__contacts .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: 36px !important;
    min-width: 36px !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__label {
    font-size: 7.2px !important;
  }
}

@media (max-width: 360px) {
  body:has(.gm-home) .gm-header .header__bottom .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts {
    gap: 4px !important;
  }

  body:has(.gm-home) .gm-header .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__contacts .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: 36px !important;
    min-width: 36px !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__circle {
    width: 30px !important;
    height: 30px !important;
  }

  body:has(.gm-home) .gm-header .gm-contact__label {
    font-size: 7.2px !important;
  }

  body:has(.gm-home) .gm-header .header__phone.gm-header__phone {
    font-size: 10.5px !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu {
    width: 76px !important;
    min-width: 76px !important;
    height: 36px !important;
  }
}

body:has(.gm-home) .gm-header .header__logo.gm-header__logo-link {
  overflow: visible !important;
  padding-top: 4px !important;
  padding-bottom: 1px !important;
}

body:has(.gm-home) .gm-header .header__logo img.gm-header__logo-img {
  max-height: none !important;
  overflow: visible !important;
  transform: translateY(1px);
}

body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.gm-header__callback,
body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.white.min.gm-header__callback {
  display: inline-flex !important;
}

body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
  display: none !important;
}

@media (max-width: 767.98px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.gm-header__callback,
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.white.min.gm-header__callback {
    display: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu,
  body:has(.gm-home) .gm-header .header__contacts .bar-menu.gm-header__menu,
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    width: clamp(76px, 20vw, 96px) !important;
    min-width: clamp(76px, 20vw, 96px) !important;
    max-width: 96px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    flex: 0 0 clamp(76px, 20vw, 96px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-width: 1.5px !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu::before {
    content: "Меню" !important;
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    font-family: var(--gm-header-font) !important;
    font-size: clamp(13px, 3.5vw, 15px) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    transform: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu::after {
    content: none !important;
    display: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span,
  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span::before,
  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span::after {
    display: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu img {
    display: block !important;
    width: 19px !important;
    height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 767.98px) {
  .gm-header .header__contacts.gm-header__contacts {
    display: grid !important;
    grid-template-columns: minmax(0, max-content) minmax(86px, 1fr) 96px !important;
    grid-template-areas: "social phone menu" !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .btn.gm-header__callback,
  .gm-header .header__contacts.gm-header__contacts > .btn.white.min.gm-header__callback {
    display: none !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    grid-area: menu !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    flex: 0 0 96px !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    border: 1.5px solid var(--gm-header-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .02) !important;
    color: #fff !important;
    font-family: var(--gm-header-font) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    position: static !important;
    transform: none !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::after {
    content: none !important;
    display: none !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label {
    display: block !important;
    color: #fff !important;
    font-family: var(--gm-header-font) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 390px) {
  .gm-header .header__contacts.gm-header__contacts {
    grid-template-columns: minmax(0, max-content) minmax(78px, 1fr) 88px !important;
    gap: 5px !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    flex-basis: 88px !important;
    gap: 5px !important;
    padding: 0 8px !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label {
    font-size: 14px !important;
  }

  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img {
    width: 19px !important;
    height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
  }
}

@media (max-width: 1024px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.gm-header__callback,
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .btn.white.min.gm-header__callback,
  .gm-header .header__contacts.gm-header__contacts > .btn.gm-header__callback,
  .gm-header .header__contacts.gm-header__contacts > .btn.white.min.gm-header__callback {
    display: none !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 136px !important;
    min-width: 136px !important;
    max-width: 136px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    flex: 0 0 136px !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 1.5px solid var(--gm-header-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .02) !important;
    color: #fff !important;
    font-family: var(--gm-header-font) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    position: static !important;
    transform: none !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before,
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::after,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::after {
    content: none !important;
    display: none !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label {
    display: block !important;
    color: #fff !important;
    font-family: var(--gm-header-font) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img {
    display: block !important;
    width: 30px !important;
    height: 24px !important;
    max-width: 30px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 767.98px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts,
  .gm-header .header__contacts.gm-header__contacts {
    grid-template-columns: minmax(0, max-content) minmax(82px, 1fr) 124px !important;
    gap: 5px !important;
  }

  body:has(.gm-home) .gm-header .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__contacts .gm-social-menu a.gm-contact,
  body:has(.gm-home) .gm-header .header__bottom .gm-social-menu a.gm-contact,
  .gm-header .gm-social-menu a.gm-contact,
  .gm-header .header__contacts .gm-social-menu a.gm-contact,
  .gm-header .header__bottom .gm-social-menu a.gm-contact {
    width: 34px !important;
    min-width: 34px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    flex-basis: 124px !important;
    gap: 9px !important;
    padding: 0 15px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label {
    font-size: 17px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img {
    width: 28px !important;
    height: 23px !important;
    max-width: 28px !important;
    max-height: 23px !important;
  }
}

@media (max-width: 390px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts,
  .gm-header .header__contacts.gm-header__contacts {
    grid-template-columns: minmax(0, max-content) minmax(76px, 1fr) 118px !important;
    gap: 4px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    width: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex-basis: 118px !important;
    gap: 8px !important;
    padding: 0 13px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu .gm-header__menu-label {
    font-size: 16px !important;
  }

  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu img {
    width: 26px !important;
    height: 21px !important;
    max-width: 26px !important;
    max-height: 21px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gm-header *,
  .gm-header *::before,
  .gm-header *::after {
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 136px !important;
    min-width: 136px !important;
    max-width: 136px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    padding: 0 18px !important;
    border: 1.5px solid var(--gm-header-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .02) !important;
    overflow: hidden !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu::before,
  .gm-header .bar-menu.gm-header__menu::before {
    content: "Меню" !important;
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
    font-family: var(--gm-header-font) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu::after,
  .gm-header .bar-menu.gm-header__menu::after,
  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span,
  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span::before,
  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu span::after,
  .gm-header .bar-menu.gm-header__menu span,
  .gm-header .bar-menu.gm-header__menu span::before,
  .gm-header .bar-menu.gm-header__menu span::after {
    content: none !important;
    display: none !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu img,
  .gm-header .bar-menu.gm-header__menu img {
    display: block !important;
    position: static !important;
    width: 30px !important;
    height: 24px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    max-height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 767.98px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu {
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 15px !important;
    gap: 9px !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu::before,
  .gm-header .bar-menu.gm-header__menu::before {
    font-size: 17px !important;
  }

  body:has(.gm-home) .gm-header .bar-menu.gm-header__menu img,
  .gm-header .bar-menu.gm-header__menu img {
    width: 28px !important;
    height: 23px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    max-height: 23px !important;
  }
}

@media (max-width: 1024px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before {
    content: "Меню" !important;
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    font-family: var(--gm-header-font) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    transform: none !important;
  }
}

@media (max-width: 767.98px) {
  body:has(.gm-home) .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before,
  .gm-header .header__contacts.gm-header__contacts > .bar-menu.gm-header__menu::before {
    font-size: 17px !important;
  }
}
