.nav-open {
	display: none;
}

.nav-overlay {
	display: none;
} 

@media (max-width: 991px) { 

	/*******************************************
	:--- Mobile Navigation - Push Down ---:
	*******************************************/

	html, body {
		height: 100%;
	}

	body.opened {

	}

	body.opened .site-header {
		padding-bottom: 0;
	}

	.nav-open {
		cursor: pointer;
		display: block;
		position: absolute;
		right: 15px;
		top: calc(50% - 30px);
		z-index: 1000;
		padding: 20px;
	}

	.nav-open.opened {
		z-index: 10000;
        top: 15px;
        right: 35px;
	}

	.nav-open.opened span:nth-child(1) {
		position: absolute;
		right: 0;
		top: 10px;
		transform: rotate(45deg);
	}

	.nav-open.opened span:nth-child(2) {
		position: absolute;
		right: 0;
		top: 10px;
		transform: rotate(-45deg);
	}

	.nav-open.opened span:nth-child(3) {
		display: none;
	}

	.nav-open span {
		background: #fff;
		content: " ";
		display: block;
		height: 2px;
		margin: 0 0 5px;
		width: 28px;
	}

	.nav-overlay {
		display: none;
	}

	.nav-overlay.opened {
		display: block;
		opacity: 1;
	}

	.nav-container {
		max-width: 100%;
		width: 100%
	}

	.nav-column {
		padding-left: 0;
		padding-right: 0;
	}

	.site-nav-wrap {
		/* background: #eee; */
		max-height: 0;
		overflow: hidden;
		transition: max-height .4s ease-out; /* Remove if push transition in isn't required */
		width: 100%; 
		z-index: 9000;
	}

	.site-nav-wrap.opened {
		display: block;
		height: auto;
		margin: 0;
		max-height: 1000px;
	}

	/* Nav items */

	nav.site-nav {

	}

	nav.site-nav ul {

	}

	nav.site-nav ul .menu-item {
		border-bottom: 1px solid #ccc;
		float: none;
		padding-right: 0;
	}

	nav.site-nav ul .menu-item a {
		display: block;
		padding: 14px 28px 14px 0;
		color: #fff;
		font-family: var(--open-sans);
		font-size: .9rem;
		font-weight: 600;
		width: 100%;
		text-align: left;
	}

	nav.site-nav ul .menu-item a:hover,
	nav.site-nav ul .menu-item a:focus,
	nav.site-nav ul .menu-item a:active {
		color: var(--primary-old-gold);
		border-bottom: 1px solid transparent;
	}

	nav.site-nav ul.sub-menu .menu-item a {
		padding: 7px 14px 7px 7px;
	}

	nav.site-nav ul>.menu-item span {
		cursor: pointer;
		display: block;
		padding: 8px 20px;
		position: absolute;
		right: 0;
		text-align: center;
		top: 0;
		color: #fff;
	}

	nav.site-nav ul>.menu-item span.closed:after {
		content: '\f067';
		font-family: 'Font Awesome 5 Pro';
		font-size: 1em;
		text-align: center;
	}

	nav.site-nav ul>.menu-item span.opened:after {
		content: '\f068';
		font-family: 'Font Awesome 5 Pro';
		font-size: 1em;
		text-align: center;
	}

	nav.site-nav ul.sub-menu {
		position: absolute;
		width: auto;
	}

	nav.site-nav ul.sub-menu.sub-menu-open {
		display: block;
		left: auto;
		position: relative;
		padding: 0;
	}

	nav.site-nav ul.sub-menu .menu-item {
		border-bottom: 0;
	}
	
}