body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.header--tablet {
	position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 66px;
}

.header--tablet .header__contacts--tablet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.header__burger {
  background: none;
  border: none;
  padding: 10px 7px;
}

.header__mobile-nav {
  position: fixed;
  top: 66px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobileMenu {
  list-style: none;
  margin: 0;
  padding: 40px 0px;

  background: white;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0px 8px 12px 0px #0000001A;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header__mobile-nav.open {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  pointer-events: auto;
}

.header__mobile-nav.open body {
	overflow: hidden;
	height: 100vh;
}

.header__mobile-nav.open .mobileMenu {
  max-height: 334px;
}

.mobileMenu__item {
  font-family: Proxima Nova Rg;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 0;
}

.mobileMenu__item:last-child {
	margin-bottom: 0;
}

.mobileMenu__item--active > a {
  font-weight: bold;
}

.header__burger--close {
  position: absolute;
  top: 20px;
  right: 20px;
}
