﻿
.clear{clear:both;}
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800&display=swap');
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile, .mobile-menu { display:none;}
.nav-background {background: var(--black);}

nav.primary {
	display:flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		float:right;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
			nav.primary ul li a {
				color:var(--orange);
				font-size:15px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 2px;
				text-align:center;
				text-transform:uppercase;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.4s ease-in;  
				-o-transition:.4s ease-in;  
				transition:.4s ease-in;	
				font-weight:600;
				padding:20px;
				font-family: "Open Sans", sans-serif;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:20px;
				letter-spacing: .2px;
				line-height:24px;
				padding:7px 10px;
				color:var(--orange);
				background-color: var(--black);
				text-align:left;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				color: #fff;
			}
/* 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-site-header .bg-black > div {position: relative;}
.language-btns {position: absolute; top: 8px; left: 15px; gap: 15px; justify-content: flex-start;}
.language-btns a {padding: 5px 10px; background: var(--orange); color: var(--black); font-family: "Open Sans", sans-serif; font-size: 14px; border-radius: 10px; transition: all .4s ease-out; font-weight: 600;}
.language-btns a:hover {background: #fff!important;}

.my-site-header .bg-black {background: var(--black);}
.my-site-header .bg-black p {text-align: center; color: var(--orange); padding: 10px 15px; font-weight: 500!important;}
.my-site-header .middle-section {justify-content: space-between; gap: 30px; align-items: center;}
.my-site-header .middle-section .img-height img {max-width: 900px; width: 100%;}
.my-site-header .middle-section .flex {justify-content: space-between; align-items: center; gap: 30px;}
.my-site-header .blue-box {border-radius: 10px; border: 5px solid #FFF; background: var(--blue); box-shadow: 4px 5px 8px 0 rgba(0, 0, 0, 0.60); box-sizing: border-box; padding: 30px 20px; max-width: 640px; width: 100%; text-align: center; min-width: 380px;}

.my-site-header .medium-txt {font-size: 22px; font-weight: 700;}
.my-site-header .location-txt {font-size: 19px; font-weight: 700; margin-top: 9px; margin-bottom: 9px;}
.my-site-header .lg-txt a {font-family: "Open Sans", sans-serif; font-size: 30px; font-weight: 700; color: var(--black); line-height: 32px;}
.my-site-header .blue-box > p:last-child {margin-bottom: 0;}

.header-logo {max-width: 400px; width: 100%;}
.header-logo img {max-width: 400px; margin-top: 15px; margin-bottom: 15px; width: 100%;}

.logo-mobile img{max-width: 100px; width: 100%;}
.logo-mobile{
	width:100%;
}

@media screen and (max-width: 990px) {
	.my-site-header > .middle-section {flex-wrap: wrap; justify-content: center; gap: 0;}
	.my-site-header .middle-section .flex {flex-wrap: wrap; justify-content: center; gap: 0;}
	.my-site-header .blue-box {max-width: 1000px;}
	.my-site-header .bg-black p {padding: 45px 15px 10px 15px;}
}

@media screen and (max-width: 770px) {
	.header-logo img {width: 100%;}
}

/******** End of primary Nav ***************/

@media screen and (max-width: 770px)  {
	.mobile-menu {display: block;}
	.my-site-header > .middle-section {display: none;}
	.nav-background {background: #fff;}
	.mobile-menu .flex {display: flex; justify-content: space-between;}
	.nav-number {display: flex; justify-content: center;}
	.nav-number a {color: var(--orange); font-family: "Open Sans", sans-serif; padding: 10px; width: 100%; text-align: center; transition: all .4s ease-out;}
	.nav-number a:hover {background: var(--orange); color: #fff!important;}
	.nav-number i {margin-right: 5px;}
	
/*==============================
	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;
	}
	#menu-button a{
		 color:var(--black);
		 text-decoration: none;
		 font-weight:700;
		font-size: 30px;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: var(--black);
	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(--orange);
	text-decoration: none;
	top: 38px;
	right:13px;
	cursor: pointer;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #fff;
}

/* 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:15px;
	padding: 10px;
	color: var(--orange);
	text-decoration: none;
	text-align: left;
	font-family: "Open Sans", sans-serif;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 600;
}
nav.mobile ul li a:hover {
	color: #fff; 
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: var(--black);
	position: relative;
	display: block;
	padding: 10px 10px 10px 30px;
	color: var(--orange);
	text-decoration: none;
}
nav.mobile ul li li a:hover {color: #fff;}


	nav.mobile ul li .fa-chevron-down{color:var(--orange)!important;}
	nav.mobile ul li a:hover .fa-chevron-down {color: #fff!important;}
}
