#sp-top-bar {
	font-size: 14px;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
	display: inline-block;
	padding: 0 12px;
	line-height: 90px;
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #000;
	margin: 0;
}
#sp-header {
	background: #fdfbe6;
	box-shadow: 0 3px 3px rgba(0,0,0,0.05);
	height: 90px;
	left: 0;
	position: relative;
	top: 0;
	width: 100%;
	z-index: 99999;
	border-bottom: solid 1px #8f3122;
}
.sp-megamenu-parent > li.active > a, .sp-megamenu-parent > li:hover > a {
	color: #8f3122;
}
.sp-megamenu-parent > li > a:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 30px;
	left: 0;
	background-color: #8f3122;
	transform-origin: bottom right;
	transition: transform 0.40s ease-out;
}
.sp-megamenu-parent > li > a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.offcanvas-menu {
	width: 320px;
	height: 100%;
	background-color: rgb(114, 39, 27);
	color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	transform: translateX(320px);
	visibility: hidden;
	overflow: inherit;
	transition: 0.5s;
	z-index: 10000;
}