* {
	margin: 0;
	padding: 0;
	text-decoration: none
}
body {
	font-family: 'lato', sans-serif;
	background-color: #FFFFFF;
}
nav {
	position: relative;
	margin: 0 auto;
	background-color: #FFFFFF;
}
#flexmenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
#main-menu {
	-ms-flex-item-align: end;
	align-self: flex-end;
	width: auto;
	padding-top: 53px;
}
/* keep the drop-downs from being hidden by content wrappers etc */
.sub-menu {
	z-index: 1234;
}
/* General Menu Styling */
#flexmenu li, #flexmenu li a {
	border: 0;
	list-style: none;
	line-height: 1;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: all ease-in-out .3s;
	transition: all ease-in-out .3s;
}
#flexmenu ul li a {
	font-size: 14px;
	letter-spacing: 1px;
	text-decoration: none;
	color: #1C1C1C;
	font-weight: 700;
	padding-top: 17px;
	padding-right: 15px;
	padding-bottom: 22px;
	padding-left: 15px;
}
#flexmenu ul li a:hover {
	color: #00A850;
}
#flexmenu ul li.has-sub > a {
	padding-right: 30px;
}
/* Drop icon */
#flexmenu ul li.has-sub > a:after {
	position: absolute;
	top: 22px;
	right: 12px;
	width: 8px;
	height: 2px;
	display: block;
	content: '';
	background-color: #D21A22;
}
#flexmenu ul ul li.has-sub > a:after {
	position: absolute;
	top: 16px;
	right: 11px;
	width: 8px;
	height: 2px;
	display: block;
	content: '';
	background-color: #A9141C;
}
#flexmenu > ul > li.has-sub > a:before {
	position: absolute;
	top: 19px;
	right: 14px;
	display: block;
	width: 2px;
	height: 8px;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	background-color: #333;
}
#flexmenu > ul > li.has-sub:hover > a:before {
	top: 23px;
	height: 0;
}
#flexmenu ul ul li.has-sub > a:before {
	position: absolute;
	top: 13px;
	right: 14px;
	display: block;
	width: 2px;
	height: 8px;
	content: '';
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background-color: #D31821;
}
#flexmenu ul ul > li.has-sub:hover > a:before {
	top: 17px;
	height: 0;
}
#flexmenu ul ul li.has-sub:hover, #flexmenu ul li.has-sub ul li.has-sub ul li:hover {
	background-color: #D21921;
}
/* Submenu default states, removed by hover gives the animation */
#flexmenu ul ul {
	position: absolute;
	left: -9999px;
}
#flexmenu li:hover > ul {
	left: auto;
}
#flexmenu ul ul li {
	height: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	background-color: #CF1C22;
}
#flexmenu li:hover > ul > li {
	height: 35px;
}
/* tertiary menu */
#flexmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#flexmenu ul ul li a {
	padding: 11px 15px;
	width: 200px;
	font-size: 14px;
	text-decoration: none;
	color: #F3F3F3;
	font-weight: 400;
}
#flexmenu ul ul li a:hover {
	color: #FFFFFF;
	background-color: #6C0007;
}
 @media screen and (max-width: 1400px) {
#main-menu {
	-ms-flex-item-align: end;
	align-self: flex-end;
	width: auto;
	padding-top: 0px;
}
}
 @media screen and (max-width: 768px) {
/* Center the logo and remove the bar */
.logo {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 46px;
	text-align: center;
	display: block;
	clear: both;
	float: left;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
#main-menu {
	-ms-flex-item-align: end;
	align-self: flex-end;
	width: 100%;
	padding-top: 68px;
}
/* Hamburger */
.button {
	width: 60px;
	height: 48px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	z-index: 10000;
	background-color: #000000 !important;
	margin: 0px !important;
	padding: 0px !important;
	border-radius: 0px !important;
}
.button:after {
	position: absolute;
	top: 22px;
	right: 20px;
	display: block;
	height: 4px;
	width: 20px;
	border-top: 2px solid #dddddd;
	border-bottom: 2px solid #dddddd;
	content: '';
}
.button:before {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: absolute;
	top: 16px;
	right: 20px;
	display: block;
	height: 2px;
	width: 20px;
	background: #ddd;
	content: '';
}
/* Turn it into an X when open */
.button.menu-opened {
	background-color: #009145;
}
.button.menu-opened:after {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	top: 23px;
	border: 0;
	height: 2px;
	width: 19px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.button.menu-opened:before {
	top: 23px;
	background: #fff;
	width: 19px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* reset horizontal styles */
#flexmenu ul {
	display: none;
}
#flexmenu ul li, #flexmenu ul li a, #flexmenu ul ul li a {
	display: block;
	border-bottom: none;
}
#flexmenu ul li a {
	padding-top: 17px;
	padding-left: 17px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 15px;
}
#flexmenu ul ul li, #flexmenu li:hover > ul > li {
	height: auto;
}
#flexmenu ul ul li a {
	padding-left: 25px;
}
#flexmenu ul ul li a:hover {
	color: #FFFFFF;
	background-color: transparent;
}
#flexmenu ul ul ul li a {
	padding-left: 35px;
}
#flexmenu ul ul, #flexmenu ul ul ul {
	position: relative;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: left;
}
#flexmenu ul ul ul li.active a {
	border-left: none;
}
#flexmenu > ul > li.has-sub > ul > li.focus > a, #flexmenu > ul ul > li.has-sub > ul > li.focus > a {
	background: #262626;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
/* remove cross when menu item is toggled */
#flexmenu > ul > li.has-sub > a:after, #flexmenu > ul > li.has-sub > a:before, #flexmenu ul ul > li.has-sub > a:after, #flexmenu ul ul > li.has-sub > a:before {
	display: none;
}
/* submenu toggles */
#flexmenu .submenu-button {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 0;
	display: block;
	border-left: 1px solid #444;
	height: 46px;
	width: 46px;
	cursor: pointer;
}
#flexmenu ul ul .submenu-button {
	height: 34px;
	width: 34px;
}
#flexmenu .submenu-button:after {
	position: absolute;
	top: 22px;
	right: 19px;
	width: 8px;
	height: 2px;
	display: block;
	content: '';
	background-color: #333;
}
#flexmenu ul ul .submenu-button:after {
	top: 15px;
	right: 13px;
}
#flexmenu .submenu-button.submenu-opened:after {
	background-color: #D1201A;
}
#flexmenu .submenu-button:before {
	position: absolute;
	top: 19px;
	right: 22px;
	display: block;
	width: 2px;
	height: 8px;
	content: '';
	background-color: #333;
}
#flexmenu ul ul .submenu-button:before {
	top: 12px;
	right: 16px;
}
#flexmenu .submenu-button.submenu-opened:before {
	display: none;
}
}
