#hamburger {
	display: block;
	position: fixed;
	z-index: 110;
	top: 10px;
	right: 20px;
	width: 25px;
	height: 25px;
	padding: 10px;
}

#hamburger div {
	width: 100%;
	height: 100%;
	box-sizing: border-box;	
	position: relative;
	display: table;
}

#hamburger span {
	display: block;
	position: absolute;
	right: 0;
	height: 3px;
	background: white;
	width: 100%
}
#hamburger span:first-of-type {top: 6px}
#hamburger span:last-of-type {
	bottom: 6px;
	width: 66%
}
#hamburger.gold-hamburger span {background-color: #B79946}

#hamburger.clicked span:first-of-type {
	top: 11px !important;
	transform: rotate(45deg);
}

#hamburger.clicked span:last-of-type {
	bottom: 11px !important;
	transform: rotate(-45deg);
	width: 100% !important;
}

#menu {
	position: fixed;
	z-index: 100;
	width: 0%;
	height: 100%;
	top: 0;
	right: 0;
}

#menu > figure, #menu > div {
	width: 50%;
	height: 100%;
	position: relative;
	float: left;
}

#menu > figure {
	background-image: url(../img/menu-bg.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

#menu > figure img {
	position: relative;
	display: block;
	max-width: 80%;	
	display: none;
}

#menu > div {
	background: #1D1D1D;
	display: flex;
	align-items: center;
}

#menu-cont {
	display: none;
	position: relative;
}

#menu-cont ul {
	list-style: none;
	padding-left: 50px;
	text-align: left;
}

#menu-cont li {
	position: relative;
	padding: 8px 0 8px 100px;
}

#menu-cont a {
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;	
}

#menu-cont li > span {
	display: block;
	width: 80px;
	height: 3px;	
	position: absolute;
	top: 18px;
	left: 0;
}

#menu-cont li > span span {
	display: block;
	width: 0;
	height: 100%;
	background: #B79946;
	position: absolute;
	top: 0;
	right: 0;
}
#menu-cont li.current_page_item > span span {width: 100% !important}

#footer-menu {
	margin-top: 40px;
	margin-bottom: 30px;
}

#footer-menu ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#footer-menu li {
	padding: 5px 20px 0px;
	position: relative;
}

#footer-menu a {
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.social-menu a {
	display: inline-block;
	margin: 0 3px;
	width: 22px;
	height: 22px;
	background-size: 100%;
}
.social-fb {background-image: url(../img/social-fb.png)}
.social-li {background-image: url(../img/social-li.png)}
.social-ig {background-image: url(../img/social-ig.png)}
.social-gl {background-image: url(../img/social-gl.png)}

.social-menu a {background-position: top center}
.social-menu.gold-social a {background-position: bottom center}

#top-social-menu {
	position: absolute;
	z-index: 20;
	top: 30px;
	left: 30px;
}

#menu-social-menu {
	position: fixed;
	top: 30px !important;
	left: 30px;
	opacity: 0;
	z-index: 110;
}

#sidebar-nav {
	position: fixed;
	z-index: 90;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 52px;	
}

#sidebar-nav a {
	display: block;
	width: 26px;
	height: 26px;
	margin: 5px 0;
	border-radius: 50%;
	background: rgba(155,155,155,0);
}

#sidebar-nav a.active {background: rgba(155,155,155,0.3) !important}

#sidebar-nav a span {
	display: block;
	width: 10px;
	height: 10px;
	background: #C5C5C5;
	position: relative;
	top: 8px;
	left: 8px;
	border-radius: 50%;
}


/* GRID: 1280px */
@media all and (max-width: 1280px) {
	
#menu-cont li {padding: 8px 0 8px 80px}	
	
#menu-cont li > span {width: 60px}

#top-social-menu, #menu-social-menu {
    top: 20px;
    left: 20px;
}
	
}


/* GRID: 1024px */
@media all and (max-width: 1024px) {
	
#hamburger {
	top: 5px;
	right: 10px;
}	
	
#top-social-menu, #menu-social-menu {
    top: 15px !important;
    left: 10px;
}	

.social-menu a {
	margin: 0 2px;
	width: 18px;
	height: 18px;
}

#footer-menu {margin-bottom: 20px}

#sidebar-nav {
	width: 35px;	
}

#sidebar-nav a {
	width: 22px;
	height: 22px;
	margin: 3px 0;
}

#sidebar-nav a span {
	width: 8px;
	height: 8px;
	top: 7px;
	left: 7px;
}
	
}


/* GRID: 750px */
@media all and (max-width: 750px) {
	
#hamburger {
	top: 0px;
	right: 0;
	width: 21px;
	padding: 10px 15px;
}

#hamburger.gold-hamburger {background: white}	

#hamburger span:last-of-type {width: 66% !important}
	
#top-social-menu, #menu-social-menu {
    top: 10px;
    left: 5px;
}	

#menu > figure {display: none}

#menu > div {
	width: 100%;
	justify-content: center;
}

#menu-cont ul {padding-left: 0}

#menu-cont li {padding: 8px 0 8px 60px}

#menu-cont a {font-size: 16px}

#menu-cont li > span {
    width: 50px;
	height: 2px;
}

#menu-cont li > span span {width: 0 !important}

#footer-logo {margin-bottom: 30px}

#footer-menu {display: none}

#footer-menu li {
	padding: 0 15px 0;
	margin-top: 0;
}

#footer-menu a {
	font-size: 16px;
	color: white !important;
}

#sidebar-nav {width: 30px}

#sidebar-nav a {
	width: 20px;
	height: 20px;
	margin: 2px 0;
	background: rgba(155,155,155,0) !important;
}

#sidebar-nav a span {
	width: 8px;
	height: 8px;
	top: 6px;
	left: 6px;
}

.social-menu a {opacity: 1 !important}
	
}


/* GRID: 500px */
@media all and (max-width: 500px) {	

#menu-cont li {padding: 8px 0 8px 50px}

#menu-cont li > span {width: 40px}

#sidebar-nav {display: none}
	
}