.nav.js-nav{
  width: 100%;
}

.nav__list.list{
  width: 100%;
  justify-content: space-between;
}



.header__top-inner,
.header__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header a {
  text-decoration: none;
  color: inherit;
}

.header .app-button {
  padding: 10px 34px;
  font-weight: 400;
}

a.header__email {
  text-decoration: underline;
}

.header__phone {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}

.header__bottom {
  margin-top: 15px;
}

.header__bottom-inner {
  flex-wrap: wrap;
  row-gap: 30px;
}

.header__search {
  max-width: 360px;
  width: 100%;
}

.header__menu-opener {
  display: none;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1280px) {
  .header__menu-opener {
    display: flex;
    background-color: #fff;
    border: none;
    font-size: 25px;
    color: var(--company-color);
  }

  .header__email,
  .header__address,
  .header__phone {
    display: none;
  }

  .header .app-button {
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .header__menu-opener.js-nav-opener{
    padding: 0;
  }
  .header .app-button{
    font-size: 14px;
  }

  .header__logo{
    display: flex;
  }

  .header__logo img{
    width: 100px;
    height: auto;
  }
}
