.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--background);
  padding-bottom: 10px;
}

.header__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__phone {
  display: flex;
  align-items: center;
}

.header__address {
  display: flex;
  align-items: center;
}

.header__burger {
  display: none;
}

.header__bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 42px;
}

.header__content .btn {
  width: 263px;
}

.mobile-menu {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu a {
  color: var(--text-main);
  font-size: 18px;
}

@media (max-width: 1280px) {
  .header__menu {
    display: none;
  }

  .header {
    padding: 10px 0;
  }

  .header__phone {
    font-size: 0;
    gap: 0;
    color: transparent;
    filter: brightness(150%);
  }

  .header__bottom .btn {
    display: none;
  }

  .header__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }

  .header__top {
    justify-content: flex-end;
    gap: 20px;
    
  }

  .header__address {
    display: none;
  }

  .header__burger {
    display: block;
    cursor: pointer;
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    display: none;
    width: 100%;
    max-width: 600px;
    right: 0;
    top: 0;
    height: auto;
    max-height: 100dvh;
    position: absolute;
    background-color: var(--background);
    padding: 10px 0;
  }

  .mobile-menu.open {
    display: flex;
    z-index: 12;
  }

  .mobile-menu__header {
    display: flex;
    justify-content: flex-end;
  }

  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu__list {
    color: var(--text-main);
    font-size: 16px;
    margin-bottom: 20px;
  }

  .mobile-menu .btn {
    margin-bottom: 20px;
  }

  .mobile-menu__title {
    margin-bottom: 20px;
  }

  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu__address {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .mobile-menu__address svg {
    flex-shrink: 0;
  }
}