.div_men{
  display: block;
}
.menu_mov{
  position: fixed;
  padding-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  /*border-radius: 50%;*/
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 9999;
  margin-bottom: 0;
}
.menu_mov .spn_mov {
  position: relative;
  display: block;
  width: 40%;
  height: 3px;
  background-color: #fff;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu_mov .spn_mov:nth-of-type(1) {
  transform: translate(-5px, -3px);
}
.menu_mov .spn_mov:nth-of-type(2) {
  transform: translateX(5px);
}
.menu_mov .spn_mov:nth-of-type(3) {
  transform: translateY(4px);
}
#menu_mov {
  display: none;
}
#menu_mov:checked ~ .menu_mov {
  transform: rotate(360deg);
  transition: transform 250ms ease;
  padding-top: 0;
  margin-top: 30px;
  margin-left: 6px;
  width: 35px;
  height: 35px;
}
#menu_mov:checked ~ .menu_mov .spn_mov {
  background-color: #fff;
  transition: transform 250ms ease;
  width: 70%;
  height: 5px;
  border-radius: 5px;
  border: solid 0.5px;
}
#menu_mov:checked ~ .menu_mov .spn_mov:nth-of-type(1) {
  transform: translateY(2px) rotate(45deg);
  z-index: 201;
}
#menu_mov:checked ~ .menu_mov .spn_mov:nth-of-type(2) {
  display: none;
}
#menu_mov:checked ~ .menu_mov .spn_mov:nth-of-type(3) {
  transform: translateY(-3px) rotate(-45deg);
}
#menu_mov:checked ~ .nav_mov {
  top: 0px;
  transition: top 500ms ease;
  text-align: center;
}
#menu_mov:checked ~ main {
  transform: translateX(100%);
  transition: transform 500ms ease;
  display: none;
}
.nav_mov { 
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 40px 0 40px;
  background: url(../img/bg_menu.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  transition: top 500ms ease;
	z-index: 999;
}
#main_nav_mov{
  position: absolute;
  list-style: none;
  padding: 0;
  text-align: left;
  top: 20%;
  left: 25%;
}
.despl_logon{
  position: absolute;
  bottom: 10%;
}
.img_desplegable{
  height: 55px;
  width: auto;
}
.txt_ss{
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.6px;
}

@media (min-width: 992px) {
  .div_men {
      display: none;
  }
}