.header {
  height: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-section {
  width: 150px;
  background-color: lightblue;
}

.middle-section {
  flex: 1;
  background-color: lightpink;
  margin-left: 70px;
  margin-right: 35px;
  max-width: 500px;
}

.right-section {
  width: 200px;
  background-color: lightblue;
}