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

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

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

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

.header-heading h1 {
  color: #09293E;
  font-family: "Raleway", sans-serif;
  margin-top: 0.55rem;
  /* margin-left: -15px; */
  font-size: 1.65rem;
}

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