﻿.clear {
	clear: both;
}

/***** Start of primary nav ******/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
	font-family: "Manrope", serif;
}

nav.primary {
	padding: 0;
	display: inline-block;
	margin: 0;
	width: 100%;
	position: relative;
	font-family: "Manrope", serif;
}

nav.primary ul {
	display: flex;
	list-style: none;
}

.bottom-links{
	gap: 25px;
}

.bottom-links a{
	color: #FFFFFF;
}

nav.primary ul li{
	position: relative;
}

nav.primary ul li a {
	margin: 0;
	text-align: center;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	font-weight: 500;
	cursor:pointer;
}

nav.primary ul li a:hover {
	z-index: 9999999999;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	display: block;
	font-size: 16px;
	line-height: 39px;
	padding: 5px 25px;
	color: #000000;
	background-color: #FFFFFF;
	text-align: left;
	transition: 0.30s;
	white-space: nowrap;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background-color: #F2682A;
}

/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
}

nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}

nav.primary ul li:hover>ul {
	display: block;
	line-height: 18px;
	z-index: 100;
}

nav.primary ul ul li {
	float: none;
	width: auto;
	position: relative;
	margin: 0;
	display: block;
	top: 15px;
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1190px) {

	/*==============================
	Mobile Nav Styles			
================================*/
	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
		font-size: 24px;
		z-index: 400;
		/* needs to be lower than nav.mobile, adjust as needed */
		text-align: right;

	}

	#menu-button a {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #fff;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: hiden;
	}

	.mobile-top{
		display: flex;
		justify-content: center;
		padding: 5px 40px;
	}

	.mobile-bottom{
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: black;
		padding-left: 40px;

		.phone-icon{
			font-size: 16px;
			a{
				font-weight: 700 !important;
			}
			
		}
	}

	.menu-icon{
		background-color: #F2682A;
		padding: 10px 25px;
	}

	/* MENU HEADER STYLES */

	nav.mobile .mobile_top {
		padding: 15px 35px;
		text-align: right;
	}



	/* MENU CLOSE 'X' BUTTON */

	.mobile-top-menu {
		display: flex;
		justify-content: space-between;
		align-items: center;

	}

	nav.mobile .menu-toggle {
		color: #000;
		font-size: 24px;
		cursor: pointer;
	}


	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
	}

	nav.mobile ul li {
		border-bottom: 1px solid #80808030;
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size: 15px;
		padding: 20px 35px;
		color: #000;
		text-decoration: none;
		text-align: left;
		font-weight: 500;
		transition: .25s;
	}

	nav.mobile ul li a:hover {
		background-color: #80808015;
	}

	/* SECOND LEVEL */

	nav.mobile ul li li a {
		position: relative;
		display: block;
		text-decoration: none;
	}

	nav.mobile ul li li a:hover {
		;
	}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}

	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left: 4px #555 solid;
	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}

	a.click {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
	}


	/* FONT AWESOME ICONS */
	nav.mobile ul li a .fa {
		width: 25px;
		font-weight: 100;
		padding: 8px 3px;
		margin: 0 6px 0 0;
		text-align: center;
		background: #292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	}


	nav.mobile ul li .fa-chevron-down {
		color: #FFFFFF;
	}

	.mobile:not(.open)+.menu-toggle.exit-click {
		display: none;
	}

	.mobile.open+.menu-toggle.exit-click {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		z-index: 499;
		pointer-events: none;
		background: rgba(36, 32, 33, 0.5);
		opacity: 0;
		transition: ease opacity 0.3s;

	}

	/******** End of Toggle Overlay ***************/

	/******** Menu Overlay ***************/

	.mobile.open+.menu-toggle.exit-click {
		pointer-events: auto;
		opacity: 1;
		box-shadow: 0 0 10px 2px rgba(0, 0, 0, .4);
	}

	body.menu-toggle.exit-click {
		overflow: hiden !important;
	}


}