#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  background-color: var(--background);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
#menu #menu-top {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  cursor: pointer;
}
#menu #menu-top #menu-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}
#menu #menu-top #menu-subtitle {
  margin-top: -10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
#menu #menu-top #menu-subtitle p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--titre);
  letter-spacing: 2px;
  text-wrap: nowrap;
  margin: 0;
  padding: 0 5px;
}
#menu #menu-top #menu-subtitle .trait {
  height: 2px;
  width: 100%;
  background-color: var(--titre);
}
#menu #menu-bottom {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu #menu-bottom .menu-item {
  color: var(--titre);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 15px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s ease;
}
#menu #menu-bottom .menu-item:hover {
  color: var(--titre);
}
#menu #menu-bottom .select {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  color: var(--titre);
}
#menu #menu-bottom .menu-separator {
  width: 2px;
  height: 15px;
  background-color: var(--titre);
  margin: 0 10px;
}
#menu #menu-bottom #translation {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}
.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
  z-index: 1000;
  margin: 0;
  position: fixed;
  background-color: var(--background);
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}
.navbar .nav-container li {
  list-style: none;
}
.navbar .nav-container a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.7rem;
}
.navbar .nav-container a:hover {
  font-weight: bolder;
  color: var(--titre);
}
.navbar .nav-container .select {
  font-weight: bolder;
  color: var(--titre);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.navbar .nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.navbar .nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navbar .nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}
.navbar .nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
.navbar .nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
.navbar .nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
.navbar .nav-container .menu-items {
  background-color: var(--background);
  height: 100vh;
  width: 100%;
  transform: translateX(-150%) translateY(0);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  position: fixed;
  top: 0;
  justify-content: center;
}
.navbar .nav-container .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.navbar .nav-container #translationPhone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  position: absolute;
  top: 17px;
  right: 17px;
}
.navbar .nav-container .logo {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
}
.navbar .nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0) translateY(0);
  left: 0;
}
.navbar .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
.navbar .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
.navbar .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
.navbar .nav-container input[type="checkbox"]:checked ~ .logo {
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: none;
  }
  nav {
    display: block;
  }
}
@media (min-width: 769px) {
  nav {
    display: none;
  }
  #menu {
    display: flex;
  }
}
