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;
} */

.mobile-menu-toggle .hamburger {
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-menu-toggle .hamburger__line {
  background-color: var(--primary);
  height: 2px;
  width: 100%;
  display: block;
}
.mobile-menu-toggle .hamburger__line.middle {
  margin: 7px 0 7px auto;
  width: 75%;
  transition: 0.3s all;
}
.mobile-menu-toggle .hamburger__line.bottom {
  margin-left: auto;
  width: 45%;
  transition: 0.6s all;
}
.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,.8);
  display: none;
  z-index: 990;
}
.mobile-menu.is-open .mobile-menu__bg {
  display: block;
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  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: var(--primary);
}
.menu-close::before {
  transform: rotate(45deg);
}
.menu-close::after {
  transform: rotate(-45deg);
}
.mobile-menu__panel {
  padding: 0 0 100px;
  position: relative;
  width: 320px;
  height: 100vh;
  overflow: auto;
  margin-left: auto;
  background-color: var(--white);
}
.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 var(--primary);
}
.mobile-menu__nav > li {
  border-bottom: 1px solid var(--primary);
}
.mobile-menu__nav li > a {
  color: var(--primary);
  padding: 10px 15px;
  display: block;
  font-size: 16px;
}
.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: var(--primary);
    margin: -1px 0 0 -10px
}

.mobile-menu__nav .arrow:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--primary);
    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;
}
.mobile-menu__nav li.current_page_item a {
  color: var(--primary) !important;
}
.mobile-menu__nav li a.mPS2id-clicked {
  background-color: #fff;
  color: var(--primary);
}

.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: var(--primary);
  padding: 10px 15px;
  display: block;
}
.mobile-menu__nav li.current-menu-item>a,
.mobile-menu__nav li.current-menu-ancestor>a {
  color: var(--white) !important;
  background-color: var(--primary);
}

.mobile-menu__nav li.current-menu-item .arrow::before,
.mobile-menu__nav li.current-menu-ancestor .arrow::before {
  background-color: var(--white);
}
.mobile-menu__nav li.current-menu-item .arrow::after,
.mobile-menu__nav li.current-menu-ancestor .arrow::after {
  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(--white);
}

.mobile-menu__nav li.current_page_item > .sub-menu .arrow::before,
.mobile-menu__nav li.current_page_item > .sub-menu .arrow::after{
  background-color: var(--primary);
}

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