@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  padding-top: 12px;
  z-index: 200;
}

.navbar {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2;
}


.nav-links {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

/* Navbar links */
.navbar a {
  float: left;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background-color: rgb(228, 236, 228);
  cursor: pointer;
}

/* Current/active navbar link */
.active {
  background-color: rgb(237, 240, 237);
  color: black;
}

a.nav_inactiv {
  color: black;
}

.contact {
  color: black;
  position: absolute;
  right: 0;
}

.c-contact {
  position: absolute;
  right: 0;
  background-color: rgb(237, 240, 237);
  color: black;
}