/* Tamño de la hamburguesa y la X en versión mobil */
.menu-toggle.open::before {
		font-size:25px;
	}

.menu-toggle.close:before {
    font-size:20px;
}

/* Efecto aumentar imagen */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.item {
  position: relative;
  
  border: none;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.item img {
  max-width: 100%;
  
  -moz-transition: all 1.0s;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}
.item:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Navegacion de post a post */

.post-navigation {
    display: none;
}