@media (min-width: 992px) {
	header {
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;
	}

	header:before {
		content: '';
		background-color: rgba(255, 255, 255, 0);
		position: absolute;
		top: 0; right: 0; left: 0;
		height: 0;
		-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0),0 2px 10px 0 rgba(0,0,0,0);
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0),0 2px 10px 0 rgba(0,0,0,0);
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;
	}

	header.shrink {
	    position: fixed;
	    top: 0; right: 0; left: 0;
	    z-index: 11;
	    background-color: rgba(255, 255, 255, 1);
	}

	header.shrink:before {
		height: 80px;
		background-color: rgba(255, 255, 255, 1);
	    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	}

	header.shrink .site-logo {
		max-width: 120px;
	}

	header.shrink #navigation {
		padding: 30px 5px;
	}
}
@media (max-width:991px) {
	#menu {
	  position: fixed;
	  background-color: #222;
	  height: 100%;
	  z-index: 21;
	  width: 280px;
	  color: #bbb;
	  top: 0;
	  -webkit-transition: all 0.3s ease;
	  -moz-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	  opacity: 1;
	  overflow: scroll;
	}

	#menu ul {
	  list-style: none;
	  margin-top: 0;
	  padding: 0
	}

	#menu ul li { border-bottom: 1px solid #2a2a2a; width: 100%;}

	#menu>ul>li>a { border-left: 4px solid #222; }

	#menu ul li a {
	  color: inherit;
	  font-size: 16px;
	  display: block;
	  padding: 8px 0 8px 7px;
	  text-decoration: none;
	  -webkit-transition: all 0.3s ease;
	  -moz-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	  font-weight: 600;
	}

	#menu ul a:hover,
	#menu ul li.active a {
	  background-color: #111;
	  border-left-color: #FFCC33;
	  color: #FFCC33;
	}

	#menu ul a:hover i:first-child { color: #FFCC33; }

	#menu ul li a.active+ul { display: block }

	#menu ul li ul {
	  margin-top: 0;
	  display: none;
	  right: 0;
	}

	#menu ul li ul li { border-bottom: none; }

	#menu ul li ul li a { padding-left: 20px; }

	#menu ul li ul li a:hover { background-color: #1A1A1A; }

	#menu.left { left: -280px; }

	#menu#menu.show { left: 0; }

	#nav-icon {
	  width: 30px;
	  height: 30px;
	  position: fixed;
	  top: 10px; left: 10px;
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	  -webkit-transition: .5s ease-in-out;
	  -moz-transition: .5s ease-in-out;
	  -o-transition: .5s ease-in-out;
	  transition: .5s ease-in-out;
	  cursor: pointer;
	  z-index: 20;
	}

	#nav-icon span {
	  display: block;
	  position: absolute;
	  height: 4px;
	  width: 100%;
	  background: #d3531a;
	  border-radius: 9px;
	  opacity: 1;
	  left: 0;
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	  -webkit-transition: .25s ease-in-out;
	  -moz-transition: .25s ease-in-out;
	  -o-transition: .25s ease-in-out;
	  transition: .25s ease-in-out;
	}

	#nav-icon span:nth-child(1) {
	  top: 0px;
	}

	#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
	  top: 8px;
	}

	#nav-icon span:nth-child(4) {
	  top: 16px;
	}

	#nav-icon.open {
		left: 280px;
	}

	#nav-icon.open span:nth-child(1) {
	  top: 8px;
	  width: 0%;
	  left: 50%;
	}

	#nav-icon.open span:nth-child(2) {
	  -webkit-transform: rotate(45deg);
	  -moz-transform: rotate(45deg);
	  -o-transform: rotate(45deg);
	  transform: rotate(45deg);
	}

	#nav-icon.open span:nth-child(3) {
	  -webkit-transform: rotate(-45deg);
	  -moz-transform: rotate(-45deg);
	  -o-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	}

	#nav-icon.open span:nth-child(4) {
	  top: 8px;
	  width: 0%;
	  left: 50%;
	}
}