@media (max-width: 800px), (hover: none) {
  .menu__burger__wrapper {
    padding: 5px;
  }

  .menu__burger__container {
    width: 35px;
    height: 30px;
    position: relative;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .menu__burger {
    display: block;
    height: 3px;
    width: 30px;
    background: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .menu__burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    bottom: 8px;
    transition:
      transform 0.4s,
      bottom 0.4s;
  }

  .menu__burger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    top: 8px;
    transition: transform 0.4s;
  }

  .js-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    transition: all 0.45s ease-in-out;
  }

  .js-menu__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 1111;
    overflow: hidden;
    background: white;
    transform: translate(-100%);
    transition: all 0.5s ease-in-out;
  }

  .menu.active {
    transform: translate(0%);
    transition: all 0.5s ease-in-out;
  }

  .menu__mobile__header__container {
    position: sticky;
  }

  .menu__mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 1200;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--color-white);
  }

  .menu__mobile__back {
    border: none;

    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
  }

  .menu.active .menu__mobile__back {
    display: block;
  }

  .menu__mobile__title {
    font-size: 1rem;
    font-weight: 500;
    z-index: 1200;

    text-transform: capitalize;
  }

  .menu__mobile__close {
    border: none;
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu__ul {
    position: absolute;
    height: 100vh;
    background: white;
    width: 100%;
    display: flex;
    top: 0px;

    flex-direction: column;
    align-items: flex-start;
    padding: 0 50px;
    visibility: hidden;
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 1109;
  }

  .menu__ul.level1 {
    visibility: visible;
    top: 51px;
  }

  .menu__ul__li {
    font-size: 1rem;
    padding: 5px 5px;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;

    a {
      font-size: 1rem;
      padding: 5px 5px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      color: black;
      text-decoration: none;
    }

    a.expand-btn::after {
      content: "";
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%230E0E0E' viewBox='0 0 32 32'%3E%3Cpath d='M30.485 7.244L16 21.729 1.515 7.244 0 8.757l16 16 16-16z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: 10px 10px;
      background-position: 50%;
      padding: 10px 20px;
      transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
      display: inline-block;
      transform: rotate(-90deg);
    }
  }

  .dropdown-menu {
    z-index: 1109;
  }

  ul.dropdown-menu > li {
    display: block;
    line-height: 1;
    margin: 0;

    > a {
      display: block;
      line-height: 3.125rem;
      height: 3.125rem;
      padding: 0 1rem 0 1rem;
    }
  }

  .nav-links li {
    margin: 0;
    padding: 13px 16px;
  }

  .burger-dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .burger-dropdown > a::after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%230E0E0E' viewBox='0 0 32 32'%3E%3Cpath d='M30.485 7.244L16 21.729 1.515 7.244 0 8.757l16 16 16-16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 50%;
    padding: 20px;
    transform: rotate(-90deg);
    float: right;
  }
}

/* // ############################################################
// ############################################################
// ####################     LARGE SCREEN     ##################
// ############################################################
// ############################################################
// ############################################################ */

@media (min-width: 800px) and (hover: hover) {
  .menu,
  .menu__mobile__header__container {
    all: unset;
  }

  .menu {
    display: block;
    position: static;
    height: auto;
  }

  .menu__ul {
    all: unset;
    list-style: none;
  }

  .menu__ul__li {
    all: unset;
  }

  .menu__ul a {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
  }

  .menu .menu__mobile__header__container {
    display: none;
  }
  .menu__burger {
    display: none;
  }

  .menu__ul.level1 {
    display: flex;
    position: static;
    flex-direction: row;
    height: initial;
    justify-content: center;
  }

  .menu__ul__li.level1 {
    padding: 5px 15px;
    height: 40px;
  }

  .menu__ul__li.level2 {
    width: 100%;
    max-height: 40px;
  }

  .menu__ul__li.level2 a,
  .menu__ul__li.level3 a {
    font-size: 1rem;
    padding: 5px 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu__ul__li.level1 {
    position: relative;
  }

  .menu__ul.level2 {
    position: absolute;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 0px;

    background: #fff;
    border: 1px solid #c4c4c4;
    border-top: none;
    box-shadow: inset 0 1px 0 #c4c4c4;
    left: 0;
    list-style: none;
    top: 47px;
    width: 280px;
    z-index: 1009;

    transition: 0.4s ease 0.25s;
  }

  .menu__ul.level3 {
    position: absolute;
    display: grid;
    visibility: hidden;
    opacity: 0;
    top: 0px;

    flex-direction: column;
    justify-content: space-evenly;
    background: #fff;
    border: 1px solid #c4c4c4;
    border-top: none;
    box-shadow: inset 0 1px 0 #c4c4c4;
    left: 278px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;

    z-index: 1189;

    grid-template-rows: repeat(13, min-content);
    grid-auto-flow: column;
    transition: 0.4s ease 0.25s;
  }
  .menu__ul.level3 li {
    width: 0;
    transition: 0.4s ease 0.25s;
  }

  .menu__ul__li:hover.level1 .menu__ul.level2 {
    display: flex;
    max-height: 600px;

    opacity: 1;
    visibility: visible;
    transition: 0.4s ease 0.25s;
  }

  .menu__ul__li:hover.level1 .menu__ul.level2.item3 {
    height: 100px;
  }

  .menu__ul__li:hover.level2 .menu__ul.level3 {
    opacity: 1;
    visibility: visible;

    transition: 0.4s ease 0.25s;
  }

  .menu__ul__li.level2 > a,
  .menu__ul__li.level3 > a {
    border-left: var(--primary) transparent 4px;
    margin-left: 5px;
    padding: 7px;
  }

  .menu__ul__li:hover.level2 > a {
    border-left: var(--primary) solid 4px;
  }

  .menu__ul__li:hover.level2 .menu__ul__li.level3 {
    width: 280px;

    transition: 0.4s ease 0.25s;
  }

  .menu__ul__li.level1 a.expand-btn::after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%230E0E0E' viewBox='0 0 32 32'%3E%3Cpath d='M30.485 7.244L16 21.729 1.515 7.244 0 8.757l16 16 16-16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: 50%;
    padding: 10px 20px;
    transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
    display: inline-block;
  }

  .menu__ul__li:hover.level1 a.expand-btn::after {
    transform: rotate(-180deg);
  }

  .menu__ul__li:hover.level1 .menu__ul__li.level2 a.expand-btn::after {
    transform: rotate(-90deg);

    display: inline-block;
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .menu__parent-js {
    display: none;
  }
}

@media (min-width: 1200px) and (hover: hover) {
  .menu__ul a {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
  }
}
