.header {
  height: 58px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-section {
  background-color: lightblue;
}

.middle-section {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: right;
}

.contact-button {
  background-color: rgb(255, 0, 0);
  color: white;
  height: 38px;
  width: 128;
  border: none;
  cursor: pointer;
  margin-left: 28px;
  margin-right: 28px;
  border-radius: 7px;

  font-size: 16px;
}

.right-section {
  background-color: lightpink;
}