.header {
  padding: 10px 0;
}

.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerButtons {
  display: flex;
  align-items: center;
  gap: 24px;

}

.headerButton {
  border-radius: 12px;
  border: 1px solid #151617;
  padding: 12px 24px;
  color: #151617;
  background: transparent;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px
}

@media (max-width: 956px) {
  .headerInner {
    flex-direction: column;
    gap: 10px;
    justify-content: center;

  }

  .headerButton {
    padding: 5px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 8px;
  }

  .headerButtons {
    gap: 4px;
  }

  .header {
    padding: 20px 0;
  }
}