/* ********   END MOBILE MENU   ********** */

/* ********   MOBILE MENU   ********** */
.container {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 40%;
	left: 0;
	margin: 0 auto;
	font-family: "Roboto", sans-serif;
}

.container p {
	font-size: 20px;
}

.container a {
	display: inline-block;
	position: relative;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
	overflow: hidden;
}

.container a:after {
	content: "";
	position: absolute;
	background: #fff;
	height: 2px;
	width: 0%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	bottom: 0;
	-webkit-transition: .35s ease;
	transition: .35s ease;
}

.container a:hover:after, .container a:focus:after, .container a:active:after {
	width: 100%;
}

.button_container {
	position: fixed;
	top: 2.8%;
	right: 1.7%;
	height: 26px;
	height: 38px;
	width: 25px;
	width: 37px;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.button_container:hover {
	opacity: .7;
}

.button_container.active .top {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #fff;
}

.button_container.active .middle {
	opacity: 0;
	background: #fff;
}

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

.button_container span {
	background: #fff;
	border: none;
	height: 3px;
	width: 100%;
	position: absolute;
	top: 20px;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(51, 51, 51, 75%);
	-moz-box-shadow: 1px 1px 2px 0px rgba(51, 51, 51, 75%);
	box-shadow: 1px 1px 2px 0px rgba(51, 51, 51, 75%);
}

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

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

.menuoverlay {
	position: fixed;
	background: #333;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
}

.menuoverlay.open {
	opacity: .98;
	visibility: visible;
	height: 100%;
}

.menuoverlay.open li {
	-webkit-animation: fadeInBottom .5s ease forwards;
	animation: fadeInBottom .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
}

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

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

.menuoverlay.open li:nth-of-type(4) {
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}

.menuoverlay nav {
	position: relative;
	height: 100%;
	font-weight: 300;
	text-align: center;
}

.menuoverlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	position: relative;
	height: 100%;
}

.menuoverlay ul li {
	display: block;
	position: relative;
	opacity: 0;
	width: auto;
	text-align: center;
}

.menuoverlay ul li ul {
	padding-bottom: 0;
	opacity: .5;
	-webkit-transition: .3s;
	transition: .3s;
	margin-top: 3px;
}

.menuoverlay ul li:hover ul {
	padding-bottom: 0;
	opacity: 1;
	-webkit-transition: .3s;
	transition: .3s;
}

.menuoverlay ul li a {
	/*display: inline-block;*/
	font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
	font-weight: 300 !important;
	position: relative;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	font-size: 21px;
	text-transform: uppercase;
	letter-spacing: 3px;
	-webkit-transition: .3s;
	transition: .3s;
	opacity: .7;
	text-align: center;
	padding: 0 0 18px 0;
}

.menuoverlay ul li:hover a {
	opacity: 1;
	-webkit-transition: .3s;
	transition: .3s;
	color: #b99d75;
}

.menuoverlay ul li ul li a {
	/*display: inline-block;*/
	position: relative;
	color: #eee;
	text-decoration: none;
	overflow: hidden;
	font-size: 20px;
	text-transform: none !important;
	margin: 0 10px;
	letter-spacing: normal !important;
	padding: 2px;
	text-align: center;
	line-height: 1.5;
	word-spacing: -3px;
}

.menuoverlay ul li a:hover:after, .menuoverlay ul li a:focus:after, .menuoverlay ul li a:active:after {
	width: 100%;
}

.menuoverlay ul li a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 2px;
	background: #ccc;
	-webkit-transition: .2s;
	transition: .2s;
	margin-top: 4px;
}

.menuoverlay ul li.social-media a:after {
	height: 0px;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	
	100% {
		opacity: 1;
		left: 0;
	}
}

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

@-webkit-keyframes fadeInBottom {
	0% {
		opacity: 0;
		bottom: 20%;
	}
	
	100% {
		opacity: 1;
		bottom: 0;
	}
}

@keyframes fadeInBottom {
	0% {
		opacity: 0;
		bottom: 20%;
	}
	
	100% {
		opacity: 1;
		bottom: 0;
	}
}
