﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Montserrat', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 28px;
		font-weight: 400;}
	h2 {font-size:24px;
		font-weight: 400;}
	h3 {font-size:22px;
		font-weight: 400;}
	h4 {font-size:20px;
		font-weight: 400;}
	h5 {}
	h6 {}

p {
	margin: 0;
	color:#505050;
	}

.bold {
    font-weight: bold;
	}
.font-black{
	color:#505050;
}
.font-red{
	color:#cc0001;
}
.font-white{
	color:#fff;
}
.font-underline {
	text-decoration: underline;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

header {
	margin: 0 auto;
	max-width: 1240px;
	padding:15px 10px;
	box-sizing: border-box;
	}
.head-flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.header-img {
	display: block;
	margin:0;
	padding:0;
}
.header-img img {
	max-width:100%; 
	height: auto;
	display: block;
}
.mobile-head-img img {
	max-width:100%; 
	height: auto;
	display: block;
	margin: auto;
}
.mobile-head-img {
	display:none;
	}
.header-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.head-cont-2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.head-a-p {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.head-social {
	display: flex;
	flex-direction: column;
	padding: 0 0 0 10px;
	box-sizing: border-box;
	justify-content: space-between;
}
.head-social-mobile {
	display: none;
	flex-direction: row;
	padding: 0 10px;
	box-sizing: border-box;
	justify-content: space-between;
}
.head-social-mobile i {
	color:#cc0001;
	font-size: 24px;
	padding: 0 10px;
}
.head-icon-cont {
	display:flex;
	flex-direction: row;
}
.head-a-p a:hover{
	opacity: .7;
}
.head-icon {
	background: #000;
	border-radius: 50%;
	height: 18px;
	width: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.head-icon i {
	color:#fff;
	font-size: 10px;	
}
.head-icon-info {
    color: #cc0001;
    font-size: 13px;
    padding: 0 5px;
    font-weight: 500;
}
.head-social i {
	color:#cc0001;
	font-size: 24px;
}
.head-social i:hover, .head-social-mobile i:hover {
	opacity: .7;
}
.head-search-bar {
	display: flex;
	flex-direction: row;
}
.head-search #form1 input[type=text] {
    width: 380px!important;
    height: auto!important;
    background: #fff!important;
    border: 2px solid #505050!important;
    border-right: none!important;
    font-size: 14px!important;
    font-family: 'Montserrat', sans-serif!important;
    padding: 10px!important;
    display: inline-block!important;
    margin: 0!important;
    box-sizing: border-box!important;
    border-radius: 0px!important;
	line-height: normal!important;
}
.head-search button {
	color: #fff!important;
	background:#cc0001!important;
	border: none!important;
	height:auto!important;
	display: inline-block!important;
	width:40px!important;
	box-sizing: border-box!important;
	border-top-left-radius: 0px!important;	
}
.head-search button:hover {
	opacity: .7!important;
}
.head-search button i {
	display: block!important;
	margin: 0!important;
	padding:0!important;
	font-size:15px!important;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
    padding: 0;
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    background: #cc0001;
    border-top: medium solid #505050;
	border-bottom: medium solid #505050;
	text-align: center;
	}
	nav.primary ul {
		margin:0 auto; 
		max-width: 1240px;
		padding:0 10px;
		box-sizing: border-box;
		display:flex;
		justify-content:space-around;
		flex-direction: row;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0 auto;
			list-style-type:none; 
			}
			nav.primary ul li a {
			color: #ffffff;
			font-size: 18px;
			text-decoration: none;
			padding: 10px 10px;
			display: block;
			margin: 0;
			text-align: center;
			text-transform: uppercase;
			-webkit-transition: .4s ease-in;
			-moz-transition: .2s ease-in;
			-o-transition: .2s ease-in;
			transition: .2s ease-in;
			font-weight: 700;
				}	
			nav.primary ul li a:hover {
				background: #505050;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #505050;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover {
				background: #000;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
	z-index: 9999999999;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 9999999999;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 250px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/
.flex-sa {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.flex-sb-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.texturebg {
	background: url("../siteart/p6_@2X.png") repeat center;
}
.aboutbg-home {
	background: url("../siteart/field-bg.jpg") no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	margin-top: -80px;
	border-top: 1px solid #cc0001;
}
.aboutbg-home h1 {
	padding:70px 0 20px 0;
}
.brandsbg-home {
	background: url("../siteart/field-brands.jpg") no-repeat center;
	background-size: cover;
	border-top: 1px solid #cc0001;
}
.white-bg {
	background: rgba(255,255,255,1.00);
	border-top: 1px solid #cc0001;
}

.cat-button {
	position: relative;
	width: 30%;
}
.cat-button img {
	display: block;
	width:100%;
	height: auto;
}
.cat-button-cover {
	position: absolute;
	left:0;
	top:0;
	background: rgba(0,0,0,0.56);
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: .1s ease-in;
	-moz-transition: .1s ease-in;
	-o-transition: .1s ease-in;
	transition: .1s ease-in;
}
.cat-button-info {
    color: #fff;
	display: block;
    font-size: 1.5vw;
	font-weight: bold;
    text-decoration: underline;
    text-align: center;
    text-shadow: 1px 1px 17px rgba(0,0,0,1.00);
}
.cat-button-cover:hover {
	background: rgba(0,0,0,0.30);
}
.contact-info-home {
	padding: 0 5px 20px 0;
	box-sizing: border-box;
}
.contact-info-home ul {
	margin:0;
	padding:30px 0 0 0;
}
.contact-info-home ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.contact-info-home ul li a{
	color: #000;
}
.contact-info-home ul li a:hover{
	text-decoration: underline;
}
.contact-map-home {
	width: 70%;
	border: 1px solid #cc0001;
}
.brandsbg-home img {
	max-width:100%;
	height: 90px;
	padding: 10px 5px;
	box-sizing: border-box;
}
.ob-container {
	padding: 30px 0 0 8%;
	display:inline-block;
	border-bottom: 3px solid #cc0001;
}
.ob-container h2 {
	display: block;
	text-align: left;	
}
.container-sml .flex-sa img {
	display: block;
	max-width:100%;
	height: auto;
	box-sizing: border-box;
	padding:10px;
}

.container-sml .flex-sa iframe {
	box-sizing: border-box;
	padding:10px 10px 10px 10px;
}
.form-container p a {
	color: #cc0001;
}
.form-container p a:hover {
	text-decoration: underline;
}
.texturebg .form-container img {
	display: block;
	max-width:100%;
	height: auto;
	box-sizing: border-box;
	padding:10px;
	margin: auto;
}
.supply-list {
	padding: 10px 0 0 0;
	margin:0;
}
.supply-list ul {
	padding: 5px 0 0 35px;
	margin:0;
}

.hero-search {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-search h2 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    font-family: 'Montserrat';
}

.hero-mobile {
    display: none;
}

.search-wrapper {
    width: 100%;
    max-width: 560px;
}

.search-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.formfield {
    flex: 1;
    margin: 0;
    display: flex;
}

.formfield select {
    width: 100%;
    background: #fff;
    border: none;
    color: #333;
    font-size: 14px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

.formfield select option {
    color: #333;
    background: #fff;
}

.search-row button.submit-button {
    width: 56px;
    background: #000000;
    border: none;
    cursor: pointer;
    transition: background .3s ease;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-row button.submit-button:hover {
    background: #111;
}

/* Mobile */
@media only screen and (max-width: 800px) {
    .hero-desktop { display: none; }
    .hero-mobile { display: block; }

    .hero-search {
        padding: 20px 15px;
    }

    .search-row {
        flex-direction: column;
        border-radius: 4px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .formfield {
        width: 100%;
    }

    .formfield select {
        border-bottom: 1px solid #e5e5e5;
        width: 100%;
		height: 45px;
    }

    /* button inside formfield on mobile */
    .formfield button.submit-button {
        width: 100%;
        min-width: unset;
        height: 50px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .search-row button.submit-button {
        width: 100%;
        min-width: unset;
        height: 50px;
    }
}

/*===================== 
	slideshow styles 
=======================*/

.cycle-slideshow a {
	width:100%;
}

.cycle-slideshow a img {
	max-width:100%;
	height:auto;
}
/* pager */
.cycle-pager { 
    text-align: center; width: 100%; z-index: 200; position: absolute; bottom: 10px; overflow: hidden;
}
.cycle-pager span { 
    font-family: arial; font-size: 50px; width: 16px; height: 16px; 
    display: inline-block; color: #ddd; cursor: pointer; 
}
.cycle-pager span.cycle-pager-active { color: #cc0001;}
.cycle-pager > * { cursor: pointer;}


/*===================== 
	Form styles 
=======================*/
.form-container {
	margin: 0 auto;
	padding:30px 8%;
	box-sizing: border-box;
	}
.form-container h1 {
	padding:0 0 20px 0;
}
.form-container h2 {
	padding:0 0 10px 0;
}
.form-info label {
	font-size: 20px;
	display: block;
	font-weight: bold;
	margin:  0 0 5px 0;
	
}
.form-info input, .form-info select {
	width: 100%;
	display: block;
	padding: 10px 0 10px 5px;
	font-size: 18px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}

.form-info textarea {
	font-family: 'Source Sans Pro', sans-serif;
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 18px;
	min-height: 250px;
	box-sizing: border-box;
}
.form-info .button {
	color: #ffffff;
    background-color: #cc0001;
    display: block;
    padding: 5px;
	width: 50%;
    margin: 10px auto;
    border: 1px solid #cc0001;
}


.form-info .button:hover {
	opacity: .7;
}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 





/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
.container {
	margin: 0 auto!important;
	max-width: 1240px;
	}
.container-sml {
	margin: 0 auto;
	padding:30px 10%;
	box-sizing: border-box;
	}
.container-bg {
	margin: 0 auto!important;
	padding:0 8% 30px 8%!important;
	box-sizing: border-box!important;
	}
.slideshow-container{
	margin: 0 auto;
	padding:30px 8%;
	box-sizing: border-box;
	}

	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/
.foot-container {
	margin: 0 auto;
	padding:0 8% 30px 8%;
	box-sizing: border-box;
	}

footer {
	margin: 0;
	width: 100%;
	padding: 30px 0 0 0;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}
.foot-nav {
	display: flex;
	flex-direction: row;
}
.foot-nav ul {
	box-sizing: border-box;
	padding: 10px 20px 0 0;
	margin:0;
}
.foot-nav ul li {
	padding:0 0 3px 0;
	margin:0;
	list-style: none;
}
.foot-nav ul li a{
	color: #000;
}
.foot-nav ul li a:hover{
	text-decoration: underline;
}
.nav-info {
	text-align: right;
}



/*========================== 
	  Responsive styles 
============================*/
@media screen and (max-width: 1100px)  {
    nav.primary ul li a {
      font-size: 16px;
    }
}


@media screen and (max-width: 980px)  {
	.contact-map-home {
	width: 100%;
	}
	.flex-sa {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	}
	.foot-nav {
	display: block;
	width: 100%;
	text-align: center;
	}
	.nav-info {
	width: 100%;
	text-align: center;
	padding: 20px 0 0 0;
	box-sizing: border-box;
	}
	.white-bg .container h3 {
	text-align: center;
	}
}

@media screen and (max-width: 800px)  {

	.head-search #form1 input[type=text] {
		width: 90%!important;
	}
	.head-search button {
		width: 10%!important;
	}	
	.head-icon-cont {
		padding: 0 0 0 5px;
	}
	.header-img img {
	max-width:90%; 
	}
	.cat-button {
	position: relative;
	width: 80%;
	margin:1% auto;
	box-sizing: border-box;
	}
	.cat-button-info {
    font-size: 3vw;
	}
	    nav.primary ul li a {
      font-size: 14px;
    }
}


@media screen and (max-width: 760px)  {

	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height:60px; 
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #cc0001;
    	border-top: medium solid #505050;
		border-bottom: medium solid #505050;
		text-align: right;
		}
		#menu-button a{
			 color:#fff;
			 text-decoration: none;
			 padding:0 .8em 0 0; 
			 font-weight:normal;
			
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		right: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 600; /* needs to be higher than #menu-button, adjust as needed */
		overflow:hidden;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* 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: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	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 {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #C8102E solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* 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);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#cc0001; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		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:#999;}
    
    .grid figure{width: 49%;}
	
	.head-flex {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.header-info {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.head-cont-2 {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.head-icon-info {
		display: none;
	}
	.head-a-p {
		justify-content: flex-start;
	}
	.head-icon-cont {
		padding: 0 10px;
	}
	.head-social {
		display:none;
	}
	.head-social i {
		padding: 0 0 0 10px;
		box-sizing: border-box;
	}
	.header-img {
		display: none;
	}
	.mobile-head-img {
		display:block;
		padding: 10px;
	}
	.head-social-mobile {
		display: flex;
	}
	.head-a-p-s {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.head-search {
		padding: 20px 0 0 0;
	}
	.head-search #form1 input[type=text] {
		width: 90%;
	}
	.head-search button {
		width:10%;
	}
	.container {
	padding:0 10px 30px 10px;
	}
	.container-sml {
	padding:30px 10px;
	}
	.slideshow-container{
	padding:30px 10px 0 10px;
	}
	.aboutbg-home h1 {
	padding:50px 0 20px 0;
	}
	
	
}
