.header {
  height: 120px;
  display: flex;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background-color: rgb(187, 177, 84);
  border-bottom: 1px solid black;
}

.left-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-company-name {
  font-family: Roboto, Arial;
  font-size: 48px;
  padding-left: 24px;
  padding-top: 40px;
  color: black;
  font-weight: 500;
}

.middle-section {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 520px;
}

.header-search-bar {
  height: 40px;
  background-color: rgb(211, 211, 211);
  color: black;
  border: 1px solid rgb(167, 167, 167);
  border-radius: 20px;
  font-family: Roboto, Arial;
  font-size: 18px;;
  box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.15);
  flex: 1;
}

.header-search-bar::placeholder {
  font-family: Roboto, Arial;
  font-size: 18px;
}

.contact-info {
  text-decoration: none;
  color: black;
  font-family: Roboto, Arial;
  font-size: 24px;
  padding-top: 18px;
  padding-left: 36px;
  font-weight: 500;
}

.right-section {
  display: flex;
  width: 600px;
  background-color: rgb(187, 177, 84);
  align-items: center;
  justify-content: end;
  flex-shrink: 0;
}

.menu-button {
  border: none;
  width: 52px;
  height: 40px;
  display: flex;
  margin-right: 68px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: rgb(187, 177, 84);
}

.menu-logo {
  height: 64px;
}

.company-logo {
  height: 96px;
}

.logo-container {
  display:flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 96px;
  margin-left: 36px;
  cursor: pointer;
  background-color: rgb(187, 177, 84);
}

.logo-container a {
  display: block;
  width: 100%;
  height: 100%;
}


