* {
  margin: 0;
  padding: 0;
}
.nav-main {
  margin-top: -10px;
  width: var(--navWidthD);
  height: 100vh;
  position: fixed;
  background-color: var(--backing);
  align-items: center;
}

.nav-container {
  background-color: inherit;
  display: inline;
}

.nav-links {
  background-color: inherit;
  text-align: center;
  border-radius: 16px;
  margin-top: 50px;
  z-index: 10;
}

.nav-links li:hover{
  color: var(--primary);
  background-color: white;
}

.nav-links a {
  text-decoration: none;
}
.nav-links ul {
  list-style: none;
  border-radius: 14px;
}
.nav-links li {
  padding: 0px 20px 0px;
  color: var(--secondary);
  font-size: var(--subHeadingFontSize);
  text-align: center;
  line-height: 50px;
}
.nav-links img {
  display: none;
}

.nav-logo {
  margin-top: -40px;
  background-position: top;
  background-repeat: no-repeat;
  background-image: var(--logo);
  height: 200px;
  width: 200px;
}
.nav-logo p {
  font-size: 25px;
}

/* Mobile Resolution 1023px */
@media only screen and (max-width: 63.9375rem) {
  .nav-main {
    width: var(--navWidthM);
  }
  .nav-logo {
    background-size: cover;
    height: 100px;
    width: 100px;
  }
  .nav-logo p {
    font-size: 15px;
  }
  .nav-links li {
    display: none;
    font-size: 1Fpx;
  }
  .nav-links img {
    width: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    filter: var(--secondaryFilter);
  }
  .page-current img {
    width: 50px;
  }
}
