header {
  height: 160px;
  background-color: #C5CAC6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.header-logomark-wrapper {
  position: relative;
  height: 160px;
}

.header-logomark-wrapper img {
  height: 160px;
  width: auto;
}

.header-logomark-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  background: linear-gradient(to left, #C5CAC6, transparent 40px);
}

.header-heading {
  margin-left: 10px;
}

.header-heading h1 {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
}

.header-menu {
  display: flex;
  align-items: center;
}
