/* Navbar */

nav,
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.normal_nav {
  padding: 1.88rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 1.875rem */
  text-transform: uppercase;
}

.nav_links {
  display: flex;
  align-items: center;
  width: 9.19rem;
  justify-content: space-between;
}

.nav_links.normal {
  width: 14.5rem;
}

.nav_links a {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 1.125rem */
  text-transform: uppercase;
}

.link_nav.works,
.link_nav.about {
  width: 46px;
}

.link_nav.contact {
  width: 59px;
}

@media (max-width: 660px) {
   .logo {
    font-size: 1rem;
  }

  .normal_nav {
    padding: 1.88rem 1rem 0rem;
  }

  .nav_links.normal {
    width: 11.5rem;
  }

  .nav_links a {
    font-weight: 600;
  }
}