﻿
.clear{clear:both;}
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800&display=swap');
 @import url("https://use.typekit.net/cgv1ibq.css");
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile, .mobile-menu {display:none;}
.nav-background {position: relative;}
.navigation-position {position: absolute; left: 15px; right: 15px; top: 0; z-index: 2;}

nav.primary {
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	background: #fff; border-radius: 0 0 20px 20px;
	}
	nav.primary ul {
		margin:0; 
		padding:0 20px 0 0;
		float:right;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
nav.primary ul li a i {margin-left: 5px;}
			nav.primary ul li a {
				color:var(--dark-blue);
				font-size:20px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 5px;
				text-align:center;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.4s ease-in;  
				-o-transition:.4s ease-in;  
				transition:.4s ease-in;	
				font-weight:600;
				padding:15px 20px;
				font-family: 'golos-text', sans-serif;
				border-radius: 50px;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				background: var(--light-blue);
				}
nav.primary ul .last-btn a {border: #0ABAFF 6px solid!important; padding: 15px 30px; margin-left: 20px;}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:20px;
				letter-spacing: .2px;
				line-height:24px;
				padding:15px;
				color:var(--dark-blue);
				background-color: var(--grey);
				text-align:left;
				border-radius: 0;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background-color:var(--light-blue);
			}
/* 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: 1000;
}
nav.primary ul ul li {
    float: none; 
	width: 220px;
    position: relative;
    margin:0;
	display: block;
}

/** header styles **/
.my-header {justify-content: space-between; gap: 30px; background: var(--blue); padding: 10px 30px;}
.my-header a {color: #fff; font-size: 17px; font-family: 'golos-text', sans-serif; transition: all .4s ease-out;}
.my-header a:hover {color: var(--dark-blue);}
.my-header > ul:first-child {gap: 20px;}
.my-header > ul:last-child {gap: 40px;}
.my-header > ul:last-child span {margin-left: 10px;}

.logo-desktop img, .logo-mobile img{max-width: 400px; width: 100%; }
.logo-desktop, .logo-mobile{
	padding-top: 15px; padding-bottom: 15px; padding-left: 20px;
}
@media screen and (max-width: 1730px)  {
}


/******** End of primary Nav ***************/

@media screen and (max-width: 1160px)  {
	.mobile-menu {display: flex; justify-content: space-between; gap: 30px; align-items: center; background: #fff; border-radius: 0 0 20px 20px;}
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
#menu-button{ 
	display: inline-block;
	font-size: 24px;
	position: relative;
	line-height:60px; 
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	text-align: right;
	margin-right: 30px;
	}
	#menu-button a{
		 color:var(--dark-blue);
		 text-decoration: none;
		 font-weight:700;
		font-size: 40px;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: var(--grey);
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

/* MENU CLOSE 'X' BUTTON */
nav.mobile .menu-toggle {
	position: absolute;
	padding: 3px 8px 3px;
	font-family: Arial, sans-serif;
	font-size:24px;
	font-weight: bold;
	line-height: 1;
	color: var(--dark-blue);
	text-decoration: none;
	top: 38px;
	right:13px;
	cursor: pointer;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: var(--light-blue);
}

/* MENU LIST STYLE */
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	position:relative;
}
	
	.top-ul {margin-top: 100px!important;}

/* FIRST LEVEL */
nav.mobile ul li a {
	position: relative;
	display: block;
	font-size:17px;
	padding: 15px;
	color: var(--dark-blue);
	text-decoration: none;
	text-align: left;
	font-family: 'golos-text', sans-serif;
	font-weight: 600;
}
nav.mobile ul li a:hover {
	background:var(--light-blue); 
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: var(--blue);
	position: relative;
	display: block;
	padding: 15px;
	color: #fff;
	text-decoration: none;
}
nav.mobile ul li li a:hover {background: var(--dark-blue);}

	nav.mobile ul li .fa-chevron-down{color:var(--dark-blue)!important; margin-left: 10px;}
}

@media screen and (max-width: 600px)  {
	#menu-button {margin-right: 10px;}
	.logo-mobile {padding-left: 10px;}
	.my-header {padding: 10px;}
}

@media screen and (max-width: 500px)  {
	.my-header > ul:last-child span {display: none;}
	.my-header > ul:last-child, .my-header > ul:first-child {gap: 30px;}
}

