.flexwrap {
	margin: 15px;
}

#fye-nav li ul li a {
	font-size: 20px;
	display: flex;
	justify-content: left;
	align-items: left;
	/* text-align: left; */
}

.flexrow {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	background-color: #000000;
	border-top: 5px solid #daaf48;
	padding: 40px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.flexcolumn {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	text-align: center;
}
.column-one {
	display: flex;
	flex-basis: 100%;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 20px;
}
.column-two {
	display: flex;
	flex-basis: 100%;
	box-sizing: border-box;
	text-align: center;
}
.centerdiv {
	margin: auto;
}
.centerbutton {
	margin: auto;
}
.centerdiv p {
	color: #e1e1e1;
	font-size: 20px;
	margin: auto;
	line-height: 28px;
	text-align: center;
}
.flexpad {
	padding: 10px;
}

/*Responsive Styles*/

@media (min-width: 640px) {
	.column-one {
		flex-basis: 60%;
		margin-bottom: 0;
	}
	.column-two {
		flex-basis: 40%;
	}
}
.themebanner-text i.fas.fa-home {
	line-height: 98px !important;
}

.themebanner-text {
	font-size: 22px;
	color: #c99a2c;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	/*min-height: 100px;*/
}

.themebanner-container {
	width: auto;
	text-align: center;
	background-color: #3d3935;
	border-top: 5px solid #c99a2c;
}

/*Strip the ul of padding and list styling*/
#fye-nav {
	/*height: 50px;*/
	position: relative;
	z-index: 100;
	/* width: 1200px; */
	margin-left: auto;
	margin-right: auto;
}

#fye-nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}

ul#fye-menu ul {
	padding-top: 0;
}

/*Create a horizontal list with spacing*/
#fye-nav li {
	display: inline-block;
	margin-bottom: 0;
	cursor: pointer;
}

ul#fye-menu {
	display: flex;
	justify-content: space-between;
}

ul#fye-menu li {
	flex: 2;
	/*
    box-sizing: border-box;
    flex-basis:90%*/
}
ul#fye-menu li:first-child {
	flex: 1;
	/*
    box-sizing: border-box;
    flex-basis:90%*/
}
ul#fye-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*Style for menu links*/
/*Changed from width 155px to 138px to fit additional tab*/
#fye-nav li a {
	display: block;
	/* min-width: 132px; */
	padding: 0 25px 0 25px;
	height: 75px;
	text-align: center;
	/*line-height: 100px;*/
	color: #c99a2c;
	text-decoration: none;
	cursor: pointer;
}

/*Hover state for top level links*/
#fye-nav li:hover a {
	background: #333333;
}

/*Style for dropdown links*/
#fye-nav li:hover ul a {
	background: #333333;
	color: #c99a2c;
	height: 55px;
	line-height: 55px;
}

/*Hover state for dropdown links*/
#fye-nav li:hover ul a:hover {
	background: #c99a2c;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
#fye-nav li ul {
	display: none;
	position: absolute;
}

/*Make dropdown links vertical*/
#fye-nav li ul li {
	display: block;
	float: none;
	border-bottom: 1px solid #101010;
}

/*Prevent text wrapping*/
#fye-nav li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
	text-align: left;
}

.boxbac {
	background-color: #e1e1e1;
	padding: 20px;
	margin-bottom: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/*Display the dropdown on hover*/
#fye-nav ul li ul {
	-webkit-transition-delay: 0s;
}

#fye-nav ul li:hover ul {
	display: block;
}

.bdradius-left a {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}
.bdradius-right a {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	/*background: #19c589;*/
	background: #909090;
	text-align: center;
	padding: 15px 0;
	margin-left: 20px;
	display: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/*Hide checkbox*/
input[type="checkbox"] {
	display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type="checkbox"]:checked ~ #fye-menu {
	display: block;
}

/*Responsive Styles*/

@media screen and (max-width: 760px) {
	/*Make dropdown links appear stacked*/
	.themebanner-text {
		min-height: none !important;
	}

	.themebanner-text i.fas.fa-home {
		line-height: 50px !important;
	}

	#fye-nav {
		width: auto;
		margin-left: auto;
		margin-right: auto;
		position: static;
		margin-bottom: 0px;
	}
	#fye-nav ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#fye-nav li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/

	#fye-nav li a {
        height: 50px;
        line-height: 30px;
        padding: 0 0 0 0px;
        border-bottom: 1px solid #333;
        text-align: left;
    }

	#fye-nav ul li,
	li a {
		width: 100%;
	}

	#fye-nav li ul {
		display: none;
		position: static;
	}

	#fye-nav li ul li a {
		text-align: left;
		padding-left: 40px;
		justify-content:center;
	}

	#fye-nav ul li:hover ul {
		display: block;
		margin-top: 2px;
	}

	/*Display 'show menu' link*/
	.show-menu {
		display: block;
		border-bottom-left-radius: 0px;
		border-top-left-radius: 0px;
		border-radius: 0px 0px 0 0;
		cursor: pointer;
		background: none;
		text-decoration: none;
		color: #fff;
		text-align: left;
		padding: 15px 0;
	}

	.bdradius-left a {
		border-bottom-left-radius: 0px;
		border-top-left-radius: 0px;
		border-radius: 0;
	}
	.bdradius-right a {
		border-bottom-right-radius: 0px;
		border-top-right-radius: 0px;
		border-radius: 0;
	}
	a.submenu {
		pointer-events: none;
	}
}
