.oh-advanced-menu {
  position: relative;
  z-index: 999;
}

/* =========================
   Desktop Menu
========================= */
.oh-desktop-menu {
  display: block;
}

.oh-desktop-menu-list,
.oh-desktop-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh-desktop-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.oh-desktop-menu-list li {
  position: relative;
  margin: 0;
  padding: 0;
}

.oh-desktop-menu-list > li > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.2s ease;
  white-space: nowrap;
}

.oh-desktop-menu-list > li > a:hover,
.oh-desktop-menu-list > li.current-menu-item > a,
.oh-desktop-menu-list > li.current-menu-ancestor > a {
  color: #e52629;
}

.oh-desktop-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #11171b;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
  z-index: 9999;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.oh-desktop-menu-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.oh-desktop-menu-list .sub-menu li {
  width: 100%;
}

.oh-desktop-menu-list .sub-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
  color: #cfcfcf;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.2s ease;
}

.oh-desktop-menu-list .sub-menu a:hover,
.oh-desktop-menu-list .sub-menu li.current-menu-item > a {
  color: #e52629;
  background: rgba(255, 255, 255, 0.04);
}

.oh-desktop-menu-list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}

/* =========================
   Mobile Toggle
========================= */
.oh-menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.oh-menu-toggle span {
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: 0.25s ease;
}

/* =========================
   Mobile Panel
========================= */
.oh-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  z-index: 99998;
  transition: 0.25s ease;
}

.oh-mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 86%;
  max-width: 420px;
  height: 100vh;
  background: #101416;
  z-index: 99999;
  transform: translateX(105%);
  transition: transform 0.32s ease;
  padding: 22px 22px 30px;
  overflow-y: auto;
  box-shadow: -20px 0 55px rgba(0, 0, 0, 0.35);
}

.oh-advanced-menu.is-open .oh-mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.oh-advanced-menu.is-open .oh-mobile-menu-panel {
  transform: translateX(0);
}

.oh-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.oh-menu-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.oh-menu-logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
}

.oh-menu-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* =========================
   Mobile Menu Items
========================= */
.oh-mobile-menu-list,
.oh-mobile-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh-mobile-menu-list li {
  margin: 0;
  padding: 0;
}

.oh-mobile-menu-list .oh-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.oh-mobile-menu-list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  color: #b7b7b7;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.2s ease;
  width: 100%;
}

.oh-mobile-menu-list a:hover,
.oh-mobile-menu-list li.is-open > .oh-menu-row > a,
.oh-mobile-menu-list li.current-menu-item > .oh-menu-row > a,
.oh-mobile-menu-list li.current-menu-ancestor > .oh-menu-row > a {
  color: #e52629;
}

.oh-mobile-menu-list li.current-menu-item > .oh-menu-row,
.oh-mobile-menu-list li.current-menu-ancestor > .oh-menu-row {
  border-left: 3px solid #e52629;
  padding-left: 12px;
}

.oh-submenu-toggle {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #b7b7b7;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.oh-submenu-toggle:before {
  content: "›";
  display: block;
  transform: rotate(0);
  transition: 0.2s ease;
}

.oh-mobile-menu-list li.is-open > .oh-menu-row .oh-submenu-toggle:before {
  transform: rotate(90deg);
  color: currentColor;
}

.oh-submenu-toggle:hover,
.oh-mobile-menu-list li.is-open > .oh-menu-row > .oh-submenu-toggle {
  color: #e52629;
}

.oh-mobile-menu-list .sub-menu {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin: 8px 0 12px;
  padding: 6px 0;
  overflow: hidden;
}

.oh-mobile-menu-list li.is-open > .sub-menu {
  display: block;
  animation: ohSubmenuFade 0.22s ease;
}

.oh-mobile-menu-list .sub-menu .oh-menu-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.oh-mobile-menu-list .sub-menu a {
  min-height: 42px;
  padding: 0 16px;
  font-size: 19px;
  color: #cfcfcf;
}

.oh-mobile-menu-list .sub-menu a:hover,
.oh-mobile-menu-list .sub-menu li.is-open > .oh-menu-row > a,
.oh-mobile-menu-list .sub-menu li.current-menu-item > .oh-menu-row > a,
.oh-mobile-menu-list .sub-menu li.current-menu-ancestor > .oh-menu-row > a {
  color: #e52629;
}

.oh-mobile-menu-list .sub-menu .sub-menu {
  margin: 4px 12px 8px;
  background: rgba(0, 0, 0, 0.25);
}

body.oh-menu-lock {
  overflow: hidden;
}

.oh-menu-empty {
  color: #fff;
  background: #111;
  padding: 12px 16px;
  font-size: 14px;
}

/* =========================
   Breakpoints
========================= */
@media (max-width: 1024px) {
  .oh-breakpoint-1024 .oh-desktop-menu {
    display: none;
  }

  .oh-breakpoint-1024 .oh-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .oh-breakpoint-767 .oh-desktop-menu {
    display: none;
  }

  .oh-breakpoint-767 .oh-menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1025px) {
  .oh-breakpoint-1024 .oh-mobile-menu-overlay,
  .oh-breakpoint-1024 .oh-mobile-menu-panel {
    display: none;
  }
}

@media (min-width: 768px) {
  .oh-breakpoint-767 .oh-mobile-menu-overlay,
  .oh-breakpoint-767 .oh-mobile-menu-panel {
    display: none;
  }
}

@keyframes ohSubmenuFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Desktop submenu arrow indicator */
.oh-desktop-menu-list > li.menu-item-has-children > a::after{
	content:"";
	width:7px;
	height:7px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:rotate(45deg);
	margin-left:10px;
	margin-top:-4px;
	display:inline-block;
	transition:transform .2s ease;
}

.oh-desktop-menu-list > li.menu-item-has-children:hover > a::after{
	transform:rotate(225deg);
	margin-top:3px;
}

.oh-desktop-menu-list .sub-menu li.menu-item-has-children > a::after{
	content:"";
	width:7px;
	height:7px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:rotate(-45deg);
	margin-left:auto;
	display:inline-block;
}