.block-menu {
    z-index: 5;
    width: 100%;
    z-index: 15;
    box-sizing: border-box;
}

.block-menu-inner {
    position: relative;
    padding: 1.4rem;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
    box-sizing: border-box;
    max-width: calc(1500px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right));
    margin: 0 auto;
}

.menu-logo svg {
    width: 100%;
}

.menu-logo {
    width: 60%;
    max-width: 180px;
    position: absolute;
}


nav.main-navigation ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

nav.main-navigation ul li {
    list-style: none;
}

nav.main-navigation ul li a {
    text-decoration: none;
	transition: .6s;
}


nav.main-navigation ul li a:hover {
    text-decoration: underline;
}

nav.main-navigation a.current:before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 3px solid var(--wp--preset--color--accent-1);
    border-top: 3px solid var(--wp--preset--color--accent-1);
    display: inline-block;
    transform: rotate(45deg);
}

nav.main-navigation a {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}




.bold-nav-full {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0;
}


.bold-nav-full__bar {
    z-index: 1;
    justify-content: flex-end;
    width: 100%;
    padding: 0.75rem var(--wp--style--root--padding-right);
    display: flex;
    position: absolute;
    box-sizing: border-box;
}

/* --------------------------------- Hamburger --------------------------------- */

.bold-nav-full__hamburger {
  pointer-events: auto;
    color: var(--wp--preset--color--accent-1);
    cursor: pointer;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 100px;
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar {
  background-color: currentColor;
  width: 2em;
  height: .125em;
  position: absolute;
  transform: translate(0, 0)  rotate(0.001deg);
  transition: transform 0.5s cubic-bezier(.7, 0, .3, 1);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, -.45em) scale(1, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, .45em) scale(1, 1) rotate(0.001deg);
}

/* Hamburger - Hover */
.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, -.45em) scale(.5, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
   transform: translate(0, .45em) scale(.5, 1) rotate(0.001deg);
}

/* Hamburger (Navigation Open) */
[data-navigation-status="active"]  .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, 0) rotate(45deg) scale(1, 1);
}

[data-navigation-status="active"] .bold-nav-full__hamburger-bar:nth-child(2) {
  transform: translate(-150%, 0) rotate(0.001deg) scale(1, 1);
}

[data-navigation-status="active"]  .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg) scale(1, 1);
}

/*  Hamburger - Hover (Navigation Open)  */
/* [data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, 0) rotate(45deg) scale(.7, 1);
}

[data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate
} */

/* --------------------------------- Tile --------------------------------- */

.bold-nav-full__tile {
  pointer-events: auto;
  background-color: var(--wp--preset--color--accent-4);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transition: clip-path 1s cubic-bezier(.9, 0, .1, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Tile (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__tile {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bold-nav-full__ul {
  flex-flow: column;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
    gap: 1rem;
}

.bold-nav-full__li {
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bold-nav-full__link {
  color:  var(--wp--preset--color--contrast);
  padding-left: .075em;
  padding-right: .075em;
  font-size: calc(2.75vw + 2.75vh);
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  transform: translateY(100%) rotate(5deg);
  transition: transform 0.75s cubic-bezier(.7, 0, .3, 1);
}

li.bold-nav-full__li.bold-nav-full__li--active a:before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 4px solid var(--wp--preset--color--accent-1);
    border-top: 4px solid var(--wp--preset--color--accent-1);
    display: inline-block;
    transform: rotate(45deg);
}

li.bold-nav-full__li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
}



.bold-nav-full__li:nth-child(1) .bold-nav-full__link {transition-delay: 0.2s;}
.bold-nav-full__li:nth-child(2) .bold-nav-full__link {transition-delay: 0.15s;}
.bold-nav-full__li:nth-child(3) .bold-nav-full__link {transition-delay: 0.1s;}
.bold-nav-full__li:nth-child(4) .bold-nav-full__link {transition-delay: 0.05s;}
.bold-nav-full__li:nth-child(5) .bold-nav-full__link {transition-delay: 0s;}

/* Tile - Links (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__link {
  transform: translateY(0%) rotate(0.001deg);
  transition-delay: 0.3s;
}

[data-navigation-status="active"] .bold-nav-full__li:nth-child(1) .bold-nav-full__link {transition-delay: 0.3s;}
[data-navigation-status="active"] .bold-nav-full__li:nth-child(2) .bold-nav-full__link {transition-delay: 0.35s;}
[data-navigation-status="active"] .bold-nav-full__li:nth-child(3) .bold-nav-full__link {transition-delay: 0.4s;}
[data-navigation-status="active"] .bold-nav-full__li:nth-child(4) .bold-nav-full__link {transition-delay: 0.45s;}
[data-navigation-status="active"] .bold-nav-full__li:nth-child(5) .bold-nav-full__link {transition-delay: 0.5s;}

.bold-nav-full__link-text {
  text-shadow: 0 1.1em 0;
  display: block;
  position: relative;
}

/* Tile - Links (Hover) */
.bold-nav-full__li {
  transition: opacity 0.5s cubic-bezier(.7, 0, .3, 1);
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li {
  opacity: 0.15;
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li:hover {
  opacity: 1;
}

/* Tile - Links (Hover) */
/* .bold-nav-full__link .bold-nav-full__link-text {
  transition: transform 0.5s cubic-bezier(.7, 0, .3, 1);
  transform: translateY(0%) rotate(0.001deg);
}

.bold-nav-full__link:hover .bold-nav-full__link-text {
  transform: translateY(-100%) rotate(0.001deg);
} */

/* Bottom */

.bold-nav__bottom {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2.25em 2.5em;
    display: flex;
}
.bold-nav__bottom li {
    list-style: none;
}

.bold-nav__bottom li a {
    text-decoration: none;
}








.bold-nav-full {
    display: none;
}




@media (max-width: 900px) {
	
.bold-nav-full {
    display: block;
}

nav.main-navigation {
    display: none;
}

}