/* Hide the link that should open and close the navigation on small screens */
.navigation .icon {
  display: none;
}
/* When the screen is less than 825 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media (max-width: 825px) {
  .navigation a {display: none;}
  .navigation a.icon {
    float: right;
    display: block;
	vertical-align: middle;
  }
}
.pushback {
	z-index: -1 !important
}

/* The "responsive" class is added to the navigation with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media (max-width: 825px) {
	.navigation.responsive {
		position: absolute;
		background-color: #1c1f25;
		right:0;
	}
  .navigation.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navigation.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}