.button_container
{
	position: relative;
	top: 26px;
	right: 2%;
	height: 27px;
	width: 30px;
	cursor: pointer;
	z-index: 100;
	transition: opacity .25s ease;
	float: right;
}

.button_container:hover
{
	opacity: .7;
}

.button_container .top
{
	background: url(../img/svg/menu-top.svg) no-repeat;
	background-size: 105%;
}

.button_container .middle
{
	background: url(../img/svg/menu-middle.svg) no-repeat;
}

.button_container .bottom
{
	background: url(../img/svg/menu-bottom.svg) no-repeat;
	background-size: 100%;
}

.button_container.active .top
{
	transform: translateY(11px) translateX(0) rotate(45deg);
}

.button_container.active .middle
{
	opacity: 0;
}

.button_container.active .bottom
{
	transform: translateY(-11px) translateX(0) rotate(-45deg);
}

.button_container span
{
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .35s ease;
	cursor: pointer;
}

.button_container span:nth-of-type(2)
{
	top: 11px;
}

.button_container span:nth-of-type(3)
{
	top: 22px;
}

.overlay
{
	position: fixed;
	background: var(--black);
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
}

.scroll-stop
{
	overflow: hidden !important;
}

.overlay.open
{
	opacity: 1;
	visibility: visible;
	height: 100vh;
}

.overlay.open li
{
	animation: fadeInRight .5s ease forwards;
	animation-delay: .35s;
}

.overlay.open li:nth-of-type(2)
{
	animation-delay: .4s;
}

.overlay.open li:nth-of-type(3)
{
	animation-delay: .45s;
}

.overlay.open li:nth-of-type(4)
{
	animation-delay: .50s;
}

.overlay nav, .overlay ul li, .overlay ul li a
{
	position: relative;
}

.overlay ul li
{
	display: block;
	opacity: 0;
}

.overlay::before
{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 80px;
	background-color: var(--black);
	z-index: 2;
}

.overlay::after
{
	content: "";
	position: absolute;
	background: url(../img/svg/separator-primary.svg) no-repeat center;
	background-size: cover;
	height: 2px;
	left: 0;
	right: 0;
	top: 80px;
	opacity: .25;
	z-index: 2;
	transform: rotate(180deg);
}

.overlay .footerMenu
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 110px;
	z-index: 1;
	padding-top: 30px;
	background-color: var(--black);
}

.overlay .footerMenu::before
{
	content: "";
	position: absolute;
	background: url(../img/svg/separator-primary.svg) no-repeat center;
	background-size: cover;
	height: 2px;
	left: 0;
	right: 0;
	margin-top: -30px;
	opacity: .25;
}

.overlay .footerMenu ul
{
    margin: 0;
    padding: 0;
    text-align: center;
}

.overlay .footerMenu ul li
{
    display: inline-block;
    padding: 0 15px;
}

.overlay .footerMenu ul li img
{
	width: 20px;
	height: auto;
}

.overlay .footerMenu ul li a.Header-footerNavLink {
    font-family: 'Tungsten';
    text-transform: uppercase;
    font-size: 35px;
}

@keyframes fadeInRight
{
	0%
	{
		opacity: 0;
		left: 20%;
	}

	100%
	{
		opacity: 1;
		left: 0;
	}
}