header {
  height: 100px;
  background-color: #CED7D1;
  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: 100px;
}

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

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

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

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

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