.navdivMob{
  width: 100%;
  height: fit-content;
  display: none;
  /* place-items: center; */
  flex-direction: column;
  /* gap: 25px; */
  font-size: 1.5em;
  background-color: #adadad;
}
.navdivMob a{
  text-shadow: 1px 1px 5px #ffffff;
  transition: all 300ms;
  color: #000000;
}
.navdivMob a:hover{
  /* text-shadow: 0 0 10px #0b41b8; */
  transition: all 300ms;
  transform: scale(1.1);
}
.back{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1d2f579c;
  z-index: 100000000;
  min-height: 40px;
}
.navdivMob a{
  width: 100%;
  padding: 25px 0;
  height: fit-content;
  border-bottom: #495057 1px dotted;
  text-align: center;
}
input[type = "checkbox"]#check {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 40px;
  float: right;
  z-index: 1000000000000000000000000;
  margin: 0;
  top: 0;
  right: 17.5px;
  transform: scale(0.5);
}

.bar span {
  position: absolute;
  width: 45px;
  height: 7px;
  background: #f1faee;
  border-radius: 100px;
  display: inline-block;
  transition: 0.3s ease;
  left: 0;
  box-shadow: 0 0 10px #000000;

}

.bar span.top {
  top: 0;
}

.bar span.middle {
  top: 17px;
}

.bar span.bottom {
  bottom: 0;
}

input[type]:checked ~ span.top {
  transform: rotate(45deg);
  transform-origin: top left;
  width: 48px;
  left: 5px;
}

input[type]:checked ~ span.bottom {
  transform: rotate(-45deg);
  transform-origin: top left;
  width: 48px;
  bottom: -1px;
  /* box-shadow: 0 0 10px #495057; */
}

input[type]:checked ~ span.middle {
  transform: translateX(-20px);
  opacity: 0;
}
