a {
  text-decoration: none;
}

body.overflow-hidden {
  overflow: hidden;
}

/* .site-header {
  background-color: gray;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
} */


/* .header-main-menu {
  height: 70vh;
  overflow-y: scroll;
  scrollbar-width: none;
} */

.mobile-menu-toggle .hamburger {
  position: relative;
  width: 40px;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle .hamburger__line {
  background-color: var(--white);
  height: 7px;
  border-radius: 5px;
  width: 100%;
  display: block;
}

.mobile-menu__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  display: none;
  z-index: 990;
}

.mobile-menu.is-open .mobile-menu__bg {
  display: block;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 400px;
  width: 100%;
  background-color: var(--secondary-color);
  height: 100vh;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s ease;
  z-index: 991;
}

.mobile-menu.is-open {
  transform: translate3d(0, 0, 0);
}

.mobile-menu__top {
  padding: 30px 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  width: 25px;
  height: 2px;
  background-color: #fff;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.mobile-menu__panel {
  padding: 0 0 100px;
  position: relative;
  height: 100vh;
  scrollbar-width: none;
  overflow: auto;
  margin-left: auto;
  background-color: var(--secondry);
}

.mobile-menu__nav,
.mobile-menu__nav ul {
  padding: 0;
}

.mobile-menu__nav li {
  list-style: none;
  position: relative;
}
.mobile-menu__nav>li:first-child{
  border-top: 1px solid #fff;
}

.mobile-menu__nav>li {
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}

.mobile-menu__nav li>a {
  color: var(--white);
  padding: 15px;
  display: block;
  font-size: 16px;
}

.mobile-menu__nav .arrow {
  position: absolute;
  right: 0;
  top: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-menu__nav .arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background-color: #fff;
  margin: -1px 0 0 -10px
}

.mobile-menu__nav .arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background-color: #fff;
  margin: -1px 0 0 -10px;
  transform: rotate(90deg)
}

.mobile-menu__nav li .arrow.is-open:after {
  transform: rotate(0deg);
}

.mobile-menu__nav li.current_page_item>a {
  background-color: #fff;
  color: var(--secondry) !important;
}

.mobile-menu__nav li a.mPS2id-clicked {
  background-color: #fff;
  color: var(--secondry);
}

.mobile-menu__nav li.menu-item-has-children a {
  padding-right: 45px;
}

.mobile-menu__nav .sub-menu {
  padding: 0 0 0 10px;
  display: none;
  margin: 0;
}

.mobile-menu__nav .sub-menu li a {
  color: #ffffff;
  padding: 10px 15px;
  display: block;
}


.mobile-menu__nav .sub-menu .current-menu-item>a {
  background-color: var(--white);
  color: #0048e8;
}
.mobile-menu__nav li.current-menu-ancestor > a{
    background-color: var(--white);
    color: #0048e8;
}
.mobile-menu__nav li.current-menu-ancestor .arrow::before,
.mobile-menu__nav li.current-menu-ancestor .arrow::after{
  background-color: #0048e8 !important;
}
.mobile-menu__nav li.current-menu-ancestor .arrow::before,
.mobile-menu__nav li.current-menu-ancestor .arrow::before {
  background-color: var(--white);
}


.mobile-menu__nav li.current_page_item .arrow::before,
.mobile-menu__nav li.current_page_item .arrow::after {
  background-color: var(--secondary-color);
}

.mobile-header-logo {
  max-width: 200px;
}

.mobile-menu__nav>li>a:hover {
  background: #fff;
  color: #0048e8;
}


.mobile-menu__nav>li>a:hover ~.arrow:before,
.mobile-menu__nav>li>a:hover ~ .arrow::after {
  background: #0048e8;
}

ul.sub-menu .menu-item {
  transition: all 0.3s ease;
}

ul.sub-menu .menu-item a:hover {
  background: var(--primary-color);
  color: var(--white);
}
