﻿/*-------- VARIABLES --------*/
:root {
        --color-primary: #000000;
        --color-secondary: #ffffff;
        --color-dark-background: #ff0000;
        --color-light-background: #ff0000;
        --color-body-dark: #000000;
        --color-body-light: #000000;
        --color-primary-button: #000000;
        --color-secondary-button: #000000;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #000000;
        --font-header: "Manrope", sans-serif;
        --font-secondary: "Manrope", sans-serif;
        --font-body: "Manrope", sans-serif;
        --font-header-size: 72px;
        --font-header-size-medium: 48px;
        --font-header-size-sml: 32px;
        --font-header-span-size: 21px;
        --font-header-span-size-sml: 18px;
        --font-secondary-header-size: 48px;
        --font-secondary-header-size-medium: 36px;
        --font-secondary-header-size-sml: 18px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 15px;
}

.clear {
	clear: both;
}

/***** Start of primary nav ******/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}

nav.primary {
	padding: 0;
	display: inline-block;
	margin: 0;
	width: 100%;
	position: relative;
}

nav.primary ul {
	display: flex;
	list-style: none;
}

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;
	white-space: nowrap;
	text-transform: uppercase;
	font-family: 'Teko', Helvetica, Arial, Lucida, sans-serif;
	font-size: 22px;
}

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: 22px;
	line-height: 39px;
	color: #333;
	background-color: #FFFFFF;
	text-align: left;
	transition: 0.30s;
	font-family: 'Teko', Helvetica, Arial, Lucida, sans-serif;
	letter-spacing: 1px;
	font-weight: 600;
	white-space: normal;
	text-align: center;
	line-height: 35px;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	color: #686868;
}

/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
    max-width: 80%;
    margin: 0 auto;
    top: 75px;
    right: 0;
    z-index: 999999;
    background-color: #fff;
    padding: 2rem;
}

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;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/******** End of primary Nav ***************/

@media screen and (max-width: 980px) {

	/*==============================
	Mobile Nav Styles			
================================*/
	nav.primary {
		display: none;
	}

	#menu-button {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 24px;
		z-index: 400;
		/* needs to be lower than nav.mobile, adjust as needed */
		background: #fff;
		text-align: right;
		border-bottom: rgba(255, 255, 255, 0.25) 0.25px solid;
		padding: 5px 40px;

	}

	#menu-button a {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		background: #fff !important;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow-x: auto;
        scrollbar-width: none;
	}

	/* MENU HEADER STYLES */

	nav.mobile .mobile_top {
		text-align: right;
		margin-bottom: -65px;
	}



	/* MENU CLOSE 'X' BUTTON */

	.mobile-top-menu {
		display: flex;
		justify-content: space-between;
		align-items: center;

	}

	.hamburger{
		background-color: #0072ab;
		border-radius: 100px !important;
		padding: 4px 10px 6px 10px !important;
	}

	nav.mobile .menu-toggle {
		color: #FFFFFF;
		font-size: 28px;
		font-family: "Open Sans", sans-serif;
		font-weight: 300;
		background-color: #4d4e4e !important;
		border-radius: 100px !important;
		padding: 0px 12px 2px;
		cursor: pointer;
		position: relative;
		z-index: 500;

	}

	.mobile-container{
		padding: 20px 50px;
        margin: 0 auto;
		padding-top: 50px;
	}


	*/ nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		color: var(--color-primary-lite);
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
		margin-top: 50px;
	}

	nav.mobile ul li {
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size: 18px;
		padding: 15px 35px;
		color: #333333 !important;
		text-decoration: none;
		text-align: left;
		font-weight: 500;
		transition: .25s;
		cursor: pointer;
		background-color: rgba(44, 61, 73, 0.03) !important;
		font-family: 'Teko', Helvetica, Arial, Lucida, sans-serif;
		margin-bottom: 10px;
		text-transform: uppercase;
				display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		position: relative;
		letter-spacing: 1px;

		i{
			font-size: 10px;
			position: absolute;
			right: 25px;
			background-color: #00000010;
            padding: 6px 5px;
            border-radius: 100%;
			color: #33333360;

		}
	}

	nav.mobile ul li a:hover {
		opacity: 0.75;
	}

	.dpdown-list{
		margin: 20px 10px !important;
	}

	/* SECOND LEVEL */

	nav.mobile ul li li a {
		position: relative;
		display: block;
		text-decoration: none;
		background-color: rgba(255, 255, 255, 0.28) !important;
		font-weight: 500 !important;
		font-size: 14px;
	}

	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;

	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}


	/* 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: hidden !important;
	}
}



@media screen and (max-width: 550px){

}