header {
  background-color: var(--white);
  border-bottom: 10px solid var(--secondary-color);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.navbar {
  /* max-width: 90rem; */
  max-width: 110rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  /* padding: 1rem 1rem; */
}

.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.8rem;
  height: 4.38rem;
}

.logo img:first-child {
  height: 100%;
}

.logo img:last-child {
  height: 90%;
}

.logo span {
  width: 0.25rem;
  height: 4.6rem;
  background: var(--secondary-color);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  padding-inline: 1rem;
  font-weight: 800;
  font-size: var(--text-base);
  line-height: var(--text-height-base);
}
