.page-header {
  height: 122px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--inline-padding);
  background-color: white;
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 20px rgba(35, 21, 87, 0.2);
  z-index: 10;
}

.page-header a {
  cursor: pointer;
  transition: opacity ease-in-out var(--transition-duration);
}

.page-header a:hover {
  opacity: 0.8;
}

.page-header img {
  height: 64px;
  width: auto;
}

.page-header nav {
  height: 100%;
}

.page-header nav ul {
  display: flex;
  height: 100%;
}

.page-header nav li {
  display: flex;
  align-items: center;
  padding-inline: 50px;
  font-weight: 500;
}

.page-header nav li:last-child {
  padding-right: 0;
}

.page-header .active {
  font-weight: 800;
  border-bottom: 4px solid var(--exotic-prurple);
}

.page-header a {
  text-decoration: none;
  color: var(--text-primary);
}

.login-link {
  background-color: var(--text-primary);
  color: var(--text-secondary) !important;
  width: 128px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  padding: 0;
  transition: opacity ease-in-out var(--transition-duration);
  outline-color: var(--exotic-prurple);
}

.login-link:hover {
  opacity: 0.8;
}

.mobileMenuButton {
  display: none;
}

@media screen and (max-width: 1200px) {
  .page-header {
    height: 105px;
  }

  .mobileMenuButton {
    display: inline-block;
    background-color: transparent;
    border: none;
    width: 48px;
  }

  .mobileMenuButton img {
    width: 100%;
    height: auto;
  }

  .page-header nav {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
  }

  .page-header nav.active {
    display: block;
  }

  .page-header nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .page-header nav li {
    padding: 16px 0;
  }
}