#menu-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 1019;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background-color: var(--color-default);
  transition: background-color 0.3s ease;
}
#menu-icon .line {
  background-color: #ffffff;
  height: 1px;
  width: 18px;
  position: absolute;
  top: calc(50% - 5px);
  border-radius: 2px;
  left: 6px;
  transition: color 0.3s ease, opacity 0s, transform 0.3s ease;
}
#menu-icon .line.second {
  top: calc(50% - 0px);
}
#menu-icon .line.third {
  top: calc(50% + 5px);
}
#menu-icon.is-active {
  background-color: #ffffff;
}
#menu-icon.is-active .line {
  top: 50%;
  transform: rotate(45deg);
  background-color: var(--color-default);
}
#menu-icon.is-active .line.third {
  transform: rotate(-45deg);
}
#menu-icon.is-active .line.second {
  opacity: 0;
}
#navigation {
  position: fixed;
  left: 100%;
  top: 0;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
  z-index: 999;
  background-color: var(--color-default);
}
#navigation .table {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}
#navigation .table .table-cell {
  min-height: 100%;
  width: 100%;
  padding: 100px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#navigation .table .table-cell > .menu {
  margin-bottom: 100px;
}
#navigation .table .table-cell > .menu ul.menu {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#navigation .table .table-cell > .menu ul.menu li {
  list-style: none !important;
  float: left;
  margin: 0;
  padding: 0;
  display: block;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0s, transform 0s;
}
#navigation .table .table-cell > .menu ul.menu li a {
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  display: block;
  line-height: var(--line-height-h2);
  background: none;
}
#navigation .table .table-cell > .menu ul.menu li a.is-active {
  color: var(--color-secondary);
  text-decoration: underline;
}
html.menu-open #header > .section #navigation {
  transform: translateX(-100%);
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li:nth-of-type(2) {
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li:nth-of-type(3) {
  transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li:nth-of-type(4) {
  transition: opacity 0.3s ease 0.6s, transform 0.3s ease 0.6s;
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li:nth-of-type(5) {
  transition: opacity 0.3s ease 0.7s, transform 0.3s ease 0.7s;
}
html.menu-open #header > .section #navigation .table .table-cell > .menu li:nth-of-type(6) {
  transition: opacity 0.3s ease 0.8s, transform 0.3s ease 0.8s;
}
/* >= 768px */
/* >= 1024px */
@media screen and (min-width: 1024px) {
  #navigation .table .table-cell {
    padding: var(--space-xxl) var(--section-x);
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-md);
  }
  #navigation .table .table-cell > .menu {
    align-self: center;
    margin-bottom: 0;
  }
  #navigation .table .table-cell > .menu ul.menu li a {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
  }
}
/* >= 1248px */
/* >= 1440px */
@media screen and (min-width: 1440px) {
  #navigation .table .table-cell {
    grid-template-columns: 1fr 1fr;
  }
}
/* >= 1600px */
/* >= 1920px */
@media (hover: hover) {
  #navigation .table .table-cell > .menu ul li a:hover {
    color: var(--color-secondary);
  }
}
/*# sourceMappingURL=u_navigation.css.map */