a {
  text-decoration: none;
}

.mobile-menu-toggle .hamburger {
  position: relative;
  width: 40px;
  height: 31px;
  cursor: pointer;
}
.mobile-menu-toggle .hamburger__line {
  background-color: #fff;
  height: 5px;
  width: 100%;
  display: block;
  border-radius: 100px;
}
.mobile-menu-toggle .hamburger__line.middle {
  margin: 8px 0 8px auto;
}

.mobile-menu-toggle .hamburger:hover .hamburger__line.middle,
.mobile-menu-toggle .hamburger:hover .hamburger__line.bottom {
  width: 100%;
}
.mobile-menu__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.9);
  display: none;
  z-index: 990;
}
.mobile-menu.is-open .mobile-menu__bg {
  display: block;
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  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: 20px 15px;
  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 50px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: auto;
  margin-left: auto;
  background-color: #5c6362;
}
.mobile-menu__nav,
.mobile-menu__nav ul {
  padding: 0;
  margin: 0;
}
.mobile-menu__nav li {
  list-style: none;
  position: relative;
  margin: 0;
}
.mobile-menu__nav .menu-primary-navigation-container > ul > li:first-child {
  border-top: 1px solid #fff;
}
.mobile-menu__nav .menu-primary-navigation-container > ul > li {
  border-bottom: 1px solid #fff;
}
.mobile-menu__nav li > a {
  color: #fff;
  padding: 12px 15px;
  display: block;
  font-size: 18px;
}
.mobile-menu__nav .arrow {
  position: absolute;
  right: 0;
  top: 0;
  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{
  background-color: #fff;
  color: #5c6362;
} */
.mobile-menu__nav li.current_page_item > a {
  color: #5c6362 !important;
  background-color: #fff !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 li.current-menu-item > a,
.mobile-menu__nav li.current-menu-ancestor > a {
  color: #5c6362;
  background-color: #fff;
}

.mobile-menu__nav li.current-menu-item .arrow::before,
.mobile-menu__nav li.current-menu-ancestor .arrow::before {
  background-color: #5c6362;
}
.mobile-menu__nav li.current-menu-item .arrow::after,
.mobile-menu__nav li.current-menu-ancestor .arrow::after {
  background-color: #5c6362;
}
 
.mobile-menu__nav li.current_page_item .arrow::before,
.mobile-menu__nav li.current_page_item .arrow::after{
  background-color: #5c6362;
}
.mobile-menu__nav li.current-menu-item > .sub-menu .__mPS2id,
.mobile-menu__nav li.current-menu-ancestor > .sub-menu .__mPS2id {
  color: var(--white) !important;
  background-color: var(--secondry);
}
.mobile-menu__nav li.current-menu-item > .sub-menu .mPS2id-clicked,
.mobile-menu__nav li.current-menu-ancestor > .sub-menu .mPS2id-clicked,
.mobile-menu__nav li.current-menu-ancestor > .sub-menu .mPS2id-highlight-last{
  color: var(--secondry) !important;
  background-color: var(--white);
}
.mobile-header-logo{
  max-width: 200px;
}