﻿/*===================== 
	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;
	background: url("/siteart/bg.jpg") no-repeat center center fixed;
	background-color: #000;
	background-size: cover;
	
	}

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: 36px;
		line-height: 42px;
		font-weight: 500;
	}
	h2 {
		font-size: 24px;
		color: #bf6938;
		font-weight: 500;
	}
	h3 {
		font-size: 18px;
	}
	h4 {}
	h5 {}
	h6 {}

p {
	font-size: 14px;
	line-height: 26px;
	margin: 0;
	font-weight: 600;
	}

.bold {
    font-weight: bold;
	}
.font-white {
	color:#fff;
}
.font-orange {
	color:#bf6938;
}
.bottom-padding {
	margin:0 0 50px 0;
}
.font-center {
	text-align: center;
}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	border-bottom:3px #bf6938 solid;
	background:url("/siteart/white-texture.png") repeat;
	background-color:#fff;
	}

header {
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	}
.head-logo-1 {
	max-width: 100%;
	height: auto;
	display: block;
	padding:15px 10px;
}
.head-logo-1 img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}

/*===================== 
	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;
		width: 100%;
		display: flex;
		justify-content: flex-end;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
				font-family: 'Montserrat', sans-serif;
				color: #333;
				font-size: 16px;
				text-decoration: none;
				padding: 20px;
				display: block;
				margin: 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: 800;
			}	
			nav.primary ul li a:hover {
				color:#bf6938;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:12px;
				padding:10px 18px;
				color:#000;
				background: #fff;
				font-weight: 500;
				text-align: left;
				display: block;
				border: 1px #ccc solid;
			}
			/* 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; 
	width:auto;
}
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: 250px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/
.btn-1 {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff!important;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 0;
	margin: 5px 3px;
	background: #bf6938;
	background: -moz-linear-gradient(top, #bf6938 0%, #a25427 100%);
	background: -webkit-linear-gradient(top, #bf6938 0%,#a25427 100%);
	background: linear-gradient(to bottom, #bf6938 0%,#a25427 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf6938', endColorstr='#a25427',GradientType=0 );
	border-radius: 5px;
}
.btn-1:hover{
	background: #a25427;
}
.btn-2 {
	font-size: 18px;
	font-weight: 700;
	color: #A75A2E!important;
	text-align: center;
	padding: 10px 50px;
	border: 2px #bf6938 solid;
	transition: all .2s ease-in-out;
}
.btn-2:hover {
	background: #a25427;
	color:#fff!important;
}
.slide-show-cont-1 {
	width:49%;
}
.about-cont-1 {
	width:49%;
}
.about-cont-1 p {
	color:#fff;	
	padding:0 0 30px 0;
	text-shadow: 0 0 5px #000;
}
.info-cont-1 {
	width:100%;
	margin: auto;
	box-sizing: border-box;
	background: #282828;
	border: #545454 1px solid;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.info-cont-1 h2 {
	padding: 12px 20px;
	background: -moz-linear-gradient(top, #bf6938 0%, #a25427 100%);
	background: -webkit-linear-gradient(top, #bf6938 0%,#a25427 100%);
	background: linear-gradient(to bottom, #bf6938 0%,#a25427 100%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#bf6938', endColorstr='#a25427',GradientType=0 );
	font-size: 15px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	box-sizing: border-box;
}
.auction-btn-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.auction-btn-1 {
	max-width: 48%;
	position: relative;
	margin:15px auto;
	box-sizing: border-box;
}
.auction-btn-img-1 {
    position: relative;
}
.auction-btn-1 img {
	width:100%;
	display: block;
	opacity: 0.3;
	transition: .2s ease-in;
}
.auction-btn-1 .auction-btn-overlay-1 {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	top:0;
}
.auction-btn-overlay-1 img {
	max-width: 100%;
	height: auto;
	width:auto;
	opacity: 1;
}
.auction-btn-1 h3
{
	padding:5px 0 0 0;
	color:#fff!important;
    text-align: center;
    text-shadow: 0 0 5px #000;
}
 
.auct-text {
   font-size: 26px!important; 
}

.auction-btn-1:hover img {
	opacity: 1.0;
}
.auction-btn-links-1 {
    
}
.auction-btn-links-1 a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0;
    margin:26px 3px 0px 3px;
    background: #bf6938;
    background: -moz-linear-gradient(top, #bf6938 0%, #a25427 100%);
    background: -webkit-linear-gradient(top, #bf6938 0%,#a25427 100%);
    background: linear-gradient(to bottom, #bf6938 0%,#a25427 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf6938', endColorstr='#a25427',GradientType=0 );
    border-radius: 5px; 
}
.auction-btn-links-1 a:hover{
	background: #a25427;
}

.border-wrap {
	width: 100%;
	margin: 0;
	border-top:3px #bf6938 solid;
	background:url("/siteart/white-texture.png") repeat;
	background-color:#fff;
}
.banner-cont-1 {
	max-width: 1200px;
	margin: 0 auto;
	padding:25px 15px;
	box-sizing: border-box;
}
.banner-cont-1 img {
	max-width: 100%;
	height: auto;
	padding:10px 0;
	box-sizing: border-box;
}
.banner-cont-1 h2 {
	padding:10px 0;
}
.auction-info h1 {
	color: #bf6938;
	font-size: 24px;
	text-transform: uppercase;
	line-height: 36px;
	font-weight: 600;
	padding:0 0 20px 0;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
	margin:20px 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-info {
	width:70%;
}
.contact-info h1 {
	color: #bf6938;
	font-size: 24px;
	text-transform: uppercase;
	line-height: 36px;
	font-weight: 600;
	padding:0 0 20px 0;
}
.contact-info p {
	color:#fff;
	padding:0 0 20px 0;
}
.contact-info img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block;
	padding:0 0 20px 0;
	box-sizing: border-box;
}
.staff-info {
	width:25%;
	text-align: center;
}
.staff-info h3 {
	color:#fff;
	font-size: 14px;
}
.staff-info ul {
	padding:10px 0 30px 0;
	margin:0;
}
.staff-info ul li {
	padding:3px 0;
	margin:0;
	list-style: none;
	color:#fff;
}
.staff-info ul li a {
	color:#fff;
}
.staff-info img {
	max-width: 100%;
	height: auto;
}

/*===================== 
	slideshow styles 
=======================*/

.cycle-slideshow {
	position: relative;
	width:100%;
	border:1px solid #bf6938;
}
.cycle-slideshow img {
	width:100%;
}

/* pager */
.cycle-pager { 
    text-align: center; width: 100%; z-index: 500; position: absolute; bottom: 5px; 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: #bf6938;}
.cycle-pager > * { cursor: pointer;}

#prev {
	position: absolute;
	font-size: 30px;
	color:#000;
	top:calc(50% - 20px);
	left:10px;
	z-index: 200;
}
#next {
	position: absolute;
	font-size: 30px;
	color:#000;
	top:calc(50% - 20px);
	right:10px;
	z-index: 200;
}
#prev:hover, #next:hover {
	color:#fff;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
	padding:10px 0 0 0;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}
.form-info-cont label {
	color:#fff;
	font-weight: 600;
}
.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  5px 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  15px 5px 15px 0;
	box-sizing: border-box;
	width:auto;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  5px 0 15px 0;
	font-family: 'Montserrat', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	font-size: 18px;
	font-weight: 700;
	color: #fff!important;
	text-align: center;
	padding: 10px 50px;
	border: none;
	transition: all .2s ease-in-out;
	border-radius: 5px;
	background: #A4592E!important;
	margin:0 auto;
	display: block;
}


.form-inline .button:hover {
    background: #a25427;
}

.CaptchaWhatsThisPanel a, .CaptchaMessagePanel {color:#fff;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 




/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1200px;
	margin: 50px auto;
	padding:25px 15px;
	box-sizing: border-box;
	}
.container-fill {
	width:100%;
	padding:25px 15px;
	box-sizing: border-box;
	background: #282828;
	border: #545454 1px solid;
	}
.container-3 {
	max-width: 1200px;
	margin: 0 auto;
	padding:25px 15px;
	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;
	align-items: flex-start;
}
.flex-cont-3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}
	
.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 {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	width: 100%;
	border-top:3px #bf6938 solid;
	background:#333333;
	}
footer h2 {
	color:#fff;	
}
footer ul {
	padding:5px 0;
	margin:0;
}
footer ul li {
	padding:5px 0;
	margin:0;
	list-style: none;
	color:#fff;
	font-size: 12px;
}
footer ul li a {
	color:#fff!important;
}
footer ul li a:hover {
	color:#bf6938!important;
}
.foot-social {
	padding:20px 0 0 0;
}
.foot-social a {
	color: #fff;
	font-size: 40px;
	margin-right: 10px;
}
.foot-social a:hover {
	color: #bf6938;
}
.bottom-foot {
	width: 100%;
	margin: 0;
	border-top:3px #bf6938 solid;
	background:url("/siteart/white-texture.png") repeat;
}
.foot-logo-1 img {
	max-width: 75px;
	width: 100%;
	height: auto;
}

a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: underline;
	font-size: 10px;
	color: #000;
}
a.footerlink:hover {
	color: #bf6938;
}

.footertext {
	font-size: 10px;
	color: #000;
}

.smallfootertext {
	font-size: 10px;
	color: #000;
}

.divfooter {
	width: 60%;
	line-height: 16px;
	font-weight: 600;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1065px)  {
	nav.primary ul li a {
		font-size: 14px;
		padding: 20px 10px;
	}
	
}

@media screen and (max-width: 880px)  {

    .plate-box-mobile {
        background:#3268b0;
        position: relative;
        width:100%
    }
    .plate-box-mobile:after {
    
    }
    .plate-box-mobile:before {
    
    }
    
    .auct-text {
       font-size: 4.5vw!important; 
    }
    
	.head-logo-1 {
		margin: 0 auto;
	}
	.slide-show-cont-1 {
		width:100%;
	}
	.about-cont-1 {
		width:100%;
		padding:20px 0 0 0;
	}
	.auction-btn-1 {
		max-width: 100%;
        width:100%;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		font-size: 24px;
		line-height: none;
		position: absolute;
		top:10px;
		left:10px;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background:#bf6938;
		padding:5px 10px; 
		border-radius: 5px;
		}
		#menu-button a{
			 color:#fff;
			font-weight: 700;
			 text-decoration: none;
			 
		  }
	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 #bf6938 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:#bf6938; 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%;}
	
	.banner-cont-1 img {
		margin:0 auto;
		padding:10px 0;
	}
	.banner-cont-1 h2 {
		text-align: center;
		width:100%;
		padding:10px 0;
		box-sizing: border-box;
	}
	.banner-cont-1 .btn-2 {
		margin:10px auto;
	}
	.divfooter {
		width: 100%;
		text-align: center;
		order: 2;
	}
	.foot-logo-1 {
		display: block;
		width:100%;
		padding:10px;
		box-sizing: border-box;
		order: 1;
	}
	.foot-logo-1 img {
		margin:0 auto;
		display: block;
	}
	.col-1-4 {
		width:50%;
	}
	footer ul {
		padding:5px 0 20px 0;
		margin:0;
	}
	.contact-info, .staff-info {
		width:100%;
		padding:0 0 20px 0;
	}
	
@media screen and (max-width: 550px)  {
	.auction-btn-1 .auction-btn-overlay-1{
		    height: 100%;
	}
	.auction-btn-overlay-1 img {
		max-width: 41%;
	}
	h3 {
    font-size: 14px;
}
	}
@media screen and (max-width: 450px)  {
	.col-1-4 {
		width:100%;
	}	
}
