﻿/*===================== 
	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: 'Poppins', 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: 35px;
		font-weight: 700;
}
	h2 {
		font-size: 24px;
		font-weight: 600;
}
	h3 {}
	h4 {}
	h5 {}
	h6 {}

p {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	line-height: 45px;
	}

.bold {
    font-weight: bold;
	}

.btn-1 {
	display: inline-block;
	background:#004a87;
	border:1px solid #004a87;
	padding:15px 25px;
	border-radius: 50px;
	color:#fff!important;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	box-sizing: border-box;
	text-align: center;
	}
.btn-2 {
	display: inline-block;
	background:#fff;
	border:1px solid #000;
	padding:15px 25px;
	border-radius: 50px;
	color:#000!important;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	box-sizing: border-box;
	text-align: center;
}
.btn-1:hover, .btn-2:hover {
	background:#0042e9;
	border:1px solid #0042e9;
	color:#fff!important;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	position: absolute;
	top:0;
	z-index: 900;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	}

.header-wrap.sticky {
	background:#fff;
	position: fixed!important;
	box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
}
.inventory .header-wrap{
	background:#fff;
	box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
	position: relative;
}
header {
	margin: 0 auto;
	max-width: 1100px;
	display: flex;
	padding:10px;
	justify-content: space-between;
	align-items: center;
	}
.head-logo-1 {
	padding:10px;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}
.scroll-logo {
	display: none!important;
}
.sticky .scroll-logo, .inventory .scroll-logo {
	display: block!important;
}
.sticky .no-scroll-logo, .inventory .no-scroll-logo {
	display: none!important;
}
/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
				font-family: 'Poppins', sans-serif;
				color: #fff;
				font-size: 13px;
				text-decoration: none;
				padding: 10px 12px;
				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: 600;
				}
			.sticky nav.primary ul li a, .inventory nav.primary ul li a {
				color:#000;	
			}
			.sticky nav.primary ul li a:hover, .inventory nav.primary ul li a:hover {
				color:#004a87;	
			}
			nav.primary ul li:last-child a {
				padding: 10px 0 10px 12px;
			}
			nav.primary ul li a:hover {
				opacity: 0.7;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				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 { 
			}
/* 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: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.about-info h1:first-child:before {
	display: block;
	width: 100px;
	height: 2px;
	background: #000;
	content: "";
	margin: 0 0 20px 0;
}
.about-info h1 {
	display: block;
	line-height: 60px;
}
.about-info .btn-1, .about-info .btn-2 {
	margin:20px 10px 0 0;
}
.sub-cat-btn-1 {
	width:33.33%;
	display: block;
	margin: 0px;
	position: relative;
}
.sub-cat-btn-1 img {
	width: 100%;
	height: auto;
	display: block;
}
.btn-overlay-1 {
	position: absolute;
	z-index: 100;
	background:rgba(0,0,0,0.6);
	height: 100%;
	width:100%;
	padding:35% 10px 0 10px;
	box-sizing: border-box;
	top:0;
	left: 0;
	right:0;
	text-align: center;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	font-weight: 600;
}
.btn-overlay-1 h1 {
	color:#fff!important;
	padding:0 0 20px 0;
}
.btn-overlay-1 p {
	color:#fff!important;	
}
.btn-overlay-1:hover {
	background:rgba(0,0,0,0.2);
	text-shadow: 0 0 10px #000;
}

/*===================== 
	slideshow styles 
=======================*/

.slide-show-wrap {
	width:100%;
	position: relative;
}
.cycle-slideshow {
	width:100%;
}
.cycle-slideshow img {
	width:100%;
}
.slide-overlay-1 {
	position: absolute;
	top:calc(50% - 20px);
	left:0;
	right:0;
	
	
}
#prev {
	font-size: 30px;
	position: absolute;
	z-index: 200;
	color:rgba(255,255,255,0.4);
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	top:calc(50% - 15px);
	left:8%;
}

#next {
	font-size: 30px;
	position: absolute;
	z-index: 200;
	color:rgba(255,255,255,0.4);
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	top:calc(50% - 15px);
	right:8%;
}
#prev:hover, #next:hover {
	color:rgba(255,255,255,0.8);
}

/* pager */
.cycle-pager { 
    text-align: center; width: 100%; z-index: 300; position: absolute; bottom: 20px; overflow: hidden;
}

.pager-box {
	background:rgba(255,255,255,0.4);
	width: 60px;
	height: 6px; 
	margin:0 10px;
    display: inline-block;
}

.cycle-pager-active .pager-box, .pager-box:hover { background:rgba(255,255,255,0.8);}
.cycle-pager > * { cursor: pointer;}


/* caption */
.cycle-caption { position: absolute; color: white; bottom: 15px; right: 15px; z-index: 700; }


/* overlay */
.cycle-overlay { 
    font-family: tahoma, arial;
    position: absolute; bottom: 0; width: 100%; z-index: 600;
    background: black; color: white; padding: 15px; opacity: .5;
}


/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:40px 10px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1100px;
	margin: 0 auto;
	padding:60px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-cont-3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
	
.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 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:url("../siteart/foot-bg-1.jpg") no-repeat center;
	background-size: cover;
	}

footer h1 {
	color:#fff;
	text-align: center;
}

footer ul li {
	font-family: 'Poppins', sans-serif;
	color:#fff;
	font-size: 18px;
	font-weight: 600;
	padding:7px 0;
}
.bottom-foot {
	font-family: 'Poppins', sans-serif;
	padding:50px 10px;
	text-align: center;
	font-size: 11px;
	color:#000;
	background:#fff;
	width:100%;
	box-sizing: border-box;
}
.bottom-foot a {
	color:#000!important;	
}
.bottom-foot a:hover {
	opacity: 0.8;
}

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;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1100px)  {
	nav.primary ul li a {
		font-size: 12px;
		padding: 10px 8px;
	}
	.btn-overlay-1 h1 {
		font-size: 3vw;
	}
	.btn-overlay-1 p {
		font-size: 1.7vw;
	}
}
@media screen and (max-width: 1000px)  {
	.col-1-3, .col-2-3 {
		width:100%;
	}
	.head-logo-1 {
		margin: 0 auto;
		padding:0;
		
	}
	.head-logo-1 img {
		max-width: 304px;	
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		font-size: 24px;
		position: absolute;
		z-index: 400;
		right: 30px;
		top:20px;
		}
		#menu-button a{
			 color:#fff;
			 text-decoration: none; 
			 font-weight:normal;
		  }
	.sticky #menu-button a, .inventory #menu-button a{
			 color:#000;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #fff;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	/* 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: #fff;
		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 rgba(0,0,0,0.1) solid;
		border-bottom: 1px rgba(0,0,0,0.1) solid;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #000;
		text-decoration: none;
		border-left:4px rgba(0,0,0,0.0) solid;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #004a87 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:#1B1B1B; 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;}
    
    .about-info h1:first-child:before {
		width: 100%;
	}
	.about-info h1 {
		line-height: normal;
	}
	
	
}
@media screen and (max-width: 760px)  {
	#prev, #next {
		display: none;
	}
	footer ul {
		width:100%;
	}

}
@media screen and (max-width: 600px)  {

	.sub-cat-btn-1 {
		width: 100%;
	}
	h1 {
		font-size: 9vw;
	}
	.btn-overlay-1 p {
		font-size: 5vw;
	}
}

@media screen and (max-width: 500px)  {

	.head-logo-1 img {
		max-width: 64vw;	
	}
	.about-info .btn-1, .about-info .btn-2 {
    	margin: 20px auto;
		display: block;
		width:90%;
		font-size: 6vw;
		
	}
}
@media screen and (max-width: 400px)  {
	.head-logo-1 {
		margin: 0;
	}	
	h1 {
		font-size: 10vw;
	}
}
