/* скрываем чекбокс */
#menu__toggle {
  opacity: 0;
}
/* стилизуем кнопку */
.menu__btn {
  display: flex; /* используем flex для центрирования содержимого */
  align-items: center;  /* центрируем содержимое кнопки */
/*
  position: fixed;
  top: 25px;
*/
	  position: absolute;
  top: 0;
  right: 30px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
/* добавляем "гамбургер" */
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
	
	/* контейнер меню */
.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 74px;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
  background-color: #333;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
}
/* элементы меню */
.menu__item {
     display: block;
    padding: 12px 24px;
    color: #fff; 
    font-size: 13px;
    letter-spacing: 1px; 
    text-decoration: none !important;
}
.menu__item:hover {
  background-color: #000;
}
	
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.dotnone {
	list-style-type: none !important;
}

@media (min-width: 240px) and (max-width: 991px) {
.menu__box {
	top: 82px;
	}
	
@media (min-width: 240px) and (max-width: 767px) {	
	.container {
		margin-top:40px !important;
	}
	
}

/* menu */
	
	.px-lg-9 {
		font-size:18px !important;
	}