.header {
  padding: 8px;
  width: 100%;
  background-color: #192345;
}

.header-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header nav {
  padding: 1rem 0;
}

.header .logo {
  width: 250px;
  height: 64px;
}

.header .logo img {
  width: 100%;
  height: 100%;
  background: transparent;
}

.header .login {
  color: #fff;
}

.header .page-links {
  padding-right: 170px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  column-gap: 24px;
}

.header .page-links a {
  color: #fff !important;
}

.white {
  color: #fff !important;
}

.burger-menu {
  display: none;
}

@media (max-width: 640px) {
  .header .page-links {
    display: none;
  }

  .header .login {
    display: none;
  }

  .burger-menu {
    display: block;
  }
}