﻿/*===================== 
	Color information
	
	- Blue #263d90
	- Red #d41b25
		 
=======================*/
/*===================== 
	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%;}



/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	}

body {
	font-family: 'Open Sans', sans-serif;
    margin: 0;
	padding:0;
/*	background:#000;*/
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}

img { border: 0;} 

/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
		font-size: 28px;
		color:#263d90;
		font-weight:bold;
		padding:2% 1% 1% 1%;
		margin-left: -7px;
	}
	h2 {
		font-size: 22px;
		color:#263d90;
		font-weight:bold;
		padding:2% 1% 1% 1%;
	}
	h3 {
		font-size: 22px;
		color:#263d90;
		font-weight:bold;
		padding:3% 1% 0 1%;
		margin-left: -7px;
	}
	h4 {
		font-size: 18px;
		color:#000;
		font-weight:bold;
		padding:0% 1% 0 1%;
		margin:0;
	}
	
	h5 {
		font-size: 30px;
		font-weight:normal;
		text-align:center;
		color: #263d90;
	}

p {
	margin: 0;
	padding:2% 1% 1% 1%;
	font-weight:normal;
	color:#000;
	font-size:14px;
	}
p + p {
	padding: 1%;
}

.bold, strong {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #263d90; 
    text-decoration:underline;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  
a.btn_link{
	display:block;
	padding:2% 3%;
	background:#263d90;
	margin:2% auto 3% auto;
	color:#fff;
	width:40%;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
	border-radius:5px;
}
a.btn_link:hover{
	 background: #405FCC;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin:0;
	padding:0;
	border-bottom: #263d90 solid 3px;
	background:#fff;
	}
header {
	width:100%;
	border-bottom: #263d90 solid 3px;
	background:#fff;
	}
.main_logo{
	display:block;
	width:300px;
	float:left;
	padding:1% 1% 1% 4%;
}
.phone{
	font-weight:700;
	font-size:36px;
	float:right;
	color:#263d90;
	margin:3% 4% 0  0;
}

.hero-wrap {
	position: relative;
}
.banner-overlay-1 {
	position: relative;
	width:100%;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap:20px;
	padding:20px;
	box-sizing: border-box;
	height: auto;
	min-height: 26vw;
}
.home-logo {
	width:100%;
	max-width: 350px;
	background-color:rgba(255,255,255,0.8);
	padding:20px;
	box-sizing: border-box;
	display: block;
	height: auto;
}
.home-phone{
	font-weight:700;
	font-size:42px;
	color:#fff;
	padding:30px;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
}
.hero-wrap-img {
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	left:0;
	top:0;
	z-index: 1;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0;
	width:100%;
	position:relative;
	background: #d41b25;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:12%;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:17px;
				line-height:60px;
				text-decoration:none;
				padding:0;
				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: #000;
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #d41b25;
				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; 
}
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;
	width: 230px;
}
nav.primary ul ul li {
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/
.banner_img{
	width:100%;
}

.icon{
	display:block;
	margin:0 auto;
	padding: 5% 0;
	width:80%;
	}
	.icon img{
		width:100%;
	}
.homePhoto{
	width:100%;
}
.thumb{
	display:inline-block; 
	zoom:1; 
	*display:inline;
	width:15%;
	margin:2%;
}
.space{
	width:100%;
	padding:3% 0;
}

.auction-flex {display: flex; justify-content: space-between; align-items: center; padding-top: 40px; padding-bottom: 15px; width: 95%; margin: 0 auto;}
.auction-flex img {width: 250px;}
.live-auction-content { max-width: 600px;width: 98%;}

/*********** scrolling text **************/
.scroll-left {
	height: 58px;	
	overflow: hidden;
	position: relative;
	width: 100%;
	margin:0 auto;
	background: #263d90;
}
.scroll-left p {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	text-align: center;
	color:#fff;
	font-weight:bold;
	/* Starting position */
	-moz-transform:translateX(100%);
	-webkit-transform:translateX(100%);	
	transform:translateX(100%);
	/* Apply animation to this element */	
	-moz-animation: scroll-left 15s linear infinite;
	-webkit-animation: scroll-left 15s linear infinite;
	animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0%   { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
0%   { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
0%   { 
	-moz-transform: translateX(100%); /* Browser bug fix */
	-webkit-transform: translateX(100%); /* Browser bug fix */
 	transform: translateX(100%); 		
 }
100% { 
 	-moz-transform: translateX(-100%); /* Browser bug fix */
 	-webkit-transform: translateX(-100%); /* Browser bug fix */
 	transform: translateX(-100%); 
}
}
/************** end Scrolling Text *************/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	}
	
.wrap2 {
	width: 100%;
	margin: 0;
	background:url('../siteart/site-bg.jpg') repeat;
	}

.container {
	max-width: 1024px;
	margin: 0 auto;
	}
.icon_wrap{
	width:100%;
	background:url('../siteart/site-bg.jpg') repeat;
	margin:-5px 0 0 0;
	padding:0;
}
	
.col-1-6 { width: 16%;}
.col-1-5 { width: 20%;}
.col-1-4 { width: 24%;}
.col-1-3 { 
	display:inline-block; 
	float:left;
	padding:4% 1% 3% 1%;
	width: 31%;
	}
.col-1-2 { 
	display:inline-block; 
	float:left;
	padding:1% 1% 3% 1%;
	width: 48%;
}
.col-2-3 { 
	display:inline-block; 
	float:left;
	padding:1% 1% 3% 1%;
	width: 64%;
	}
.col-3-4 { width: 75%;}

/*===================== 
	Form styles 
=======================*/
/*** Consignment Form ***/
form.consign {
  width: 100%;
  box-sizing: border-box;
  color: #000;
}
form.consign select {
  width: 100%;
  padding: 9px 10px;
  box-sizing: border-box;
  display: inline-block;
}
form.consign input, form.consign textarea {
  width: 100%;
  padding: 9px 10px;
  box-sizing: border-box;
  display: inline-block;
  font-family: inherit;
}
form.consign textarea {
  height: 100px;
}
form.consign input.consignButton {
  width: 50%;
  display: block;
  margin: 30px auto 20px auto;
  background: #d41b25;
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  border: none;
}
form.consign input.consignButton:hover {
  cursor: pointer;
  background: #000;
}
form.consign input::-webkit-input-placeholder, form.consign textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
form.consign input::-moz-placeholder, form.consign textarea::-moz-input-placeholder { /* Firefox 19+ */
  color: #000;
}
form.consign input:-ms-input-placeholder, form.consign textarea::-mx-input-placeholder { /* IE 10+ */
  color: #000;
}
form.consign input:-moz-placeholder, form.consign textarea:-moz-placeholder { /* Firefox 18- */
  color: #000;
  opacity: 1;
}
form.consign input::placeholder, form.consign textarea::placeholder {
  color: #000;
  opacity: 1;
}
form.consign div.col-1-2 {
  width: 48%;
  box-sizing: border-box;
  float: left;
  padding: 1%;
}
form.consign div.col-1-4 {
  width: 24%;
  box-sizing: border-box;
  float: left;
  padding: 1%;
}
form.consign div.col-1 {
  width: 94%;
  padding: 1%;
}

/*===================== 
	footer styles 
=======================*/
.foot_wrap{
	margin: 0;
	width: 100%;
	background:#000;
	border-top:#d41b25 solid 3px;
}

.logos{
	margin: 0 auto;
	width:45%;
	padding:2% 1%;
	text-align: center;
}
.logos img{
	display:inline-block;
	padding: 0 1%;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	color: #fff;
	}
	a.footerlink:hover {
		text-decoration:none; 
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#fff;
	}

.smallfootertext {
	font-size:10px; 
	color:#fff;
	}

.divfooter {
	padding:4% 1%;
	width:45%;
	float:left;
	}
	

/*=========================== 
	  Responsive styles 
=============================*/
@media screen and (max-width: 1245px)  {
  nav.primary ul li {width:12%;}
  nav.primary ul li a {font-size:14px;}	
}

@media screen and (max-width: 965px)  {
	nav.primary ul li a{line-height: 45px; font-size: 12px;}
}

@media screen and (max-width: 930px)  {
.phone{font-size:28px;}	
	nav.primary ul li {width:13%;}
    nav.primary ul li a {font-size:13px;}	
	form.consign div.col-1-2 {
	  width: 96%;
	  box-sizing: border-box;
	  float: left;
	  padding: 1%;
	}
	form.consign div.col-1-4 {
	  width: 48%;
	  box-sizing: border-box;
	  float: left;
	  padding: 1%;
	}
	form.consign div.col-1 {
	  width: 94%;
	  padding: 1%;
	}
}
@media screen and (max-width: 930px)  {
	footer {
	margin: 0 auto;
	width: 95%;
	float:none;
	display:block;
	}
	.divfooter {
	padding:2% 1% 0 1%;
	text-align:center;
	}
	.logos{
		width:97%;
		float:none;
		padding:2% 1%;
		margin:0 auto;
		display: flex;
		justify-content: center;
		
	}
	.divfooter {
		padding:4% 1%;
		box-sizing: border-box;
		width:100%;
		float:none;
		text-align: center;
	}
	h5 {font-size: 21px !important;}

	nav.primary{
		display:none;
	}

	/*==============================
		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: #C0C0C0;
		}
		#menu-button a{
			 color:#000;
			 text-decoration: none;
			 padding:0 0 0 .8em; 
			 font-weight:normal;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		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: #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:#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;}
	/********End of mobile nav************/

	.main_logo{
		display:block;
		width:40%;
		float:none;
		padding:2% 1%;
		margin:0 auto;
	}
	.phone{
		font-weight:700;
		font-size:26px;
		float:none;
		color:#263d90;
		margin:0 auto 1%  auto;
		text-align:center;
	}
	.banner-overlay-1 {
		justify-content: space-around;
	}
	.home-phone {
	  font-size: 10vw;
	}

}
@media only screen and (max-width: 700px) {
	.auction-flex {flex-wrap: wrap;}
	.auction-flex img {width: 80%; margin: 0 auto; display: flex; justify-content: center;}
	.live-auction-content {width: 100%; margin-top: 0px; margin-bottom: 35px; text-align: center;}
}
@media screen and (max-width: 630px)  {
	h5 {font-size: 16px !important; }
	.icon{
		padding: 2% 5%;
		width:70%;
	}
	.col-1-3 { 
	display:block; 
	float:none;
	padding:1% 2%;
	width: 96%;
	}
	.col-1-2 { 
		display:block; 
		float:none;
		padding:1% 2%;
		width: 96%;
	}
	.col-2-3 { 
		display:block; 
		float:none;
		padding:1% 2%;
		width: 96%;
	}
	form.consign div.col-1-4 {
	  width: 96%;
	  box-sizing: border-box;
	  float: left;
	  padding: 1%;
	}
}
@media screen and (max-width: 480px)  {
	.logos img{
		padding:1%;
	}
	
	.main_logo{width:60%;}
	.phone{font-size:21px;}
	h5 {font-size: 12px !important;}
	.logos img {width: 17%;}
	
}	
@media only screen and (max-width: 450px) {
	.auction-flex img {width: 90%;}
}