@media only screen and (max-width: 874px) { 

/*--------------------------------------------------------------
## Mobile Navigation
--------------------------------------------------------------*/
#mobile-menu-btn {
	display: block;
}

.menu-toggle {
	background: none;
	border: none;
	box-shadow: none !important;
	text-shadow: none;
	color: #fff;
	font-weight: bold;
}

.burger-lines {
	position: relative;
	display: inline-block;
	height: .8em;
	position: relative;
	top: 1px;
}

.burger-lines div:after {
	border-radius: 5px;	
	content: "";
	display: block;
	height: 2px;
	width: 18px;
	background-color: #fff;
}

.burger-lines div:first-child:after {
	
}

.burger-lines div:nth-child(2):after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.burger-lines div:last-child:after {
	position: absolute;
	bottom: 0;
}

/***** Main Navigation *****/
.main-navigation a {
	line-height: 1;
	padding: 15px 40px 15px 10px;
}

#primary-menu > li {
	text-align: left;
}
	#site-navigation #primary-menu > li {
		/* Additional Parent Selector just to override the nth-child selectors */
		width: 100%;
	}

	#primary-menu .menu-item-has-children a {
		padding-right: 0;
		margin-right: 40px;
	}
} /* Ending Bracket for Media Query */


/* Delete Line 596 */
@media screen and (min-width: 890px) {
	.menu-toggle {
		display: none;
	}
	
	.main-navigation ul {
		display: block;
	}
}
