.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media (max-width: 990px) {
  .header__wrap {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.header nav ul a {
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  width: 100%;
  box-sizing: border-box;
  display: block;
  height: auto;
  max-width: 120px;
}
.header__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 990px) {
  .header__btn {
    grid-gap: 10px;
  }
}
.header__btn button, .header__btn a {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  line-height: normal;
  display: flex;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  width: 140px;
  box-sizing: border-box;
  border: 1px solid transparent;
}
@media (max-width: 990px) {
  .header__btn button, .header__btn a {
    max-width: 125px;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 25px;
  }
}

/*# sourceMappingURL=header.css.map */
