﻿
.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/cxl7fhz.css");
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}
.mobile-search-menu {display:none;}
.nav-background {background: #2E2A29;}
nav.primary {
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
	position:relative;
	width:100%;
	box-sizing: border-box;
	align-items: center;
	padding-top:40px;
	padding-bottom: 40px;
	background: #2E2A29;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:20px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px!important;
				text-align:center;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.4s ease-in;  
				-o-transition:.4s ease-in;  
				transition:.4s ease-in;	
				font-weight:700;
				padding:15px;
				font-family: 'golos-text', sans-serif;
				cursor: pointer;
				border-radius: 15px;
				}	
			nav.primary ul li a:hover {
				background: #F96939;
				color:#2E2A29;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				border-radius: 0px;
				font-size:20px;
				line-height:24px;
				padding:15px 15px;
				color:#fff;
				background-color: #2E2A29;
				text-align:left;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				color: #2E2A29;
				background-color:#F96939;
			}
/* 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: 250px;
    position: relative;
    margin:0;
	display: block;
}


/*Search Form (from plpequipment.com)*/
@keyframes dropIn {
  from {
    transform: translateY(-10px);
	  opacity: 0;
  }

  to {
    transform: translateY(0px);
	  opacity: 1;
  }
}
@keyframes dropOut {
  from {
    transform: translateY(0px);
	  opacity: 1;
  }

  to {
    transform: translateY(10px);
	  opacity: 0;
  }
}
.search-form{
	display: block;
	padding: 5px 60px 30px;
	background: #2E2A29;
}
.search-form form{
	position: relative;
	margin: 0 !important;
}
.search-form input{
	display: block!important;
	background: #fff;
	width: 100%!important;
	padding: 20px !important;
	font-family: 'golos-text', sans-serif!important;
	border: none !important;
	border-radius: 15px !important;
	line-height: 24px !important;
	font-size: 20px !important;
	box-sizing: border-box!important;
	height: auto !important;
}
.search-form button{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 20px 24px !important;
	background: #F96939 !important;
	border-radius: 15px;
	border: none !important;
	outline: none !important;
	line-height: 24px !important;
	font-size: 25px !important;
	transition:.4s ease-in;
	cursor: pointer;
}
.search-form button:hover {background: #5C5958!important; color: #fff!important;}
.search-square {
	font-size: 25px;
	font-weight: 700;
	background: #F96939;
	color: #2E2A29;
	padding: 15px 20px;
	border-radius: 15px;
	margin-left: 20px;
	transition:.4s ease-in;	
	cursor: pointer;
}

.search-square:hover {background: #fff;}

/** header styles **/

.site-header {
	display: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	background: #F5F3F2;
}

.header-links .flex {
	justify-content: flex-end;
	gap: 60px;
}

.header-links li a {color: #2E2A29;font-family: 'golos-text', sans-serif;font-size: 20px;}
.header-links li a:hover {text-decoration: underline;}
.header-links li a:hover i {color: #F96939;}
.header-links li a i {margin-right: 20px;}

.header-logo img{max-width: 290px; padding: 10px; background: #5C5958; box-sizing: border-box;}
.header-logo{
	position: absolute;
	top: 0;
	z-index: 500;
}
@media screen and (max-width: 1351px)  {
	nav.primary ul li a{margin:0 5px;}	
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1350px)  {
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
	.mobile-search-menu {align-items: center; display: flex;}
	.mobile-nav-top {margin-top: 100px!important;}
#menu-button{ 
	width: 100%;
	display: inline-block;
	font-size: 40px;
	position: relative;
	line-height:60px; 
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	text-align: right;
	padding-top: 40px;
    padding-bottom: 35px;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 padding:0 0 0 .8em; 
		 font-weight:normal;
        margin-right: 10px;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #2E2A29;
	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;
	background: #F96939;
	color: #2E2A29;
	text-decoration: none;
	top:35px;
	right:13px;
	transition:.4s ease-in;
	cursor: pointer;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	background: #fff;
}

/* MENU LIST STYLE */
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	position:relative;
}

/* FIRST LEVEL */
nav.mobile ul li a {
	position: relative;
	display: block;
	font-size:20px;
	padding: 15px;
	color: #fff;
	text-decoration: none;
	text-align: left;
	font-family: 'golos-text', sans-serif;
	font-weight: 700;
}
nav.mobile ul li a:hover {
	background:#F96939; 
	color: #2E2A29;
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: #2E2A29;
	position: relative;
	display: block;
	padding: 15px;
	color: #fff;
	text-decoration: none;
}
nav.mobile ul li li a:hover {background:#F96939;color: #2E2A29;}

/* FONT AWESOME ICONS */
nav.mobile ul li .fa-chevron-down {color:#fff; margin-left: 15px;}
	nav.mobile ul li a:hover .fa-chevron-down {color: #2E2A29!important;}
}

@media screen and (max-width: 1020px)  {
	#menu-button{width:100%;}
}

@media screen and (max-width: 900px)  {
	.header-links li a span{display: none;}
	.header-links li a i {margin-right: 0;}
}
@media screen and (max-width:500px){
	.header-logo img {max-width: 190px;}
}
@media screen and (max-width:450px){
	#menu-button{width:100%;}
	.search-form {padding: 5px 15px 30px;}
}

@media screen and (max-width:380px){
	.header-links .flex {gap: 25px;}
	.mobile-search-menu .search-square {padding: 11px 15px;margin-left: 10px;}
}

@media screen and (max-width:350px){
	.header-logo img {max-width: 180px;}
}