﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 
html{
	scroll-behavior: smooth;
}

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.red{
	color: #c52b47;
}
.green{
	color: #2a8d56;
}
.gray{
	color: #7e7576;
}
.text-gradient{
	
  background: linear-gradient(to bottom, #2b7a4b, #263a2f) !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.rounded{
	border-radius: 8px;
	overflow: hidden;
}
.bg-img{
	background-size: cover;
	background-position: 50% 30%;
}
.bg-tl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top left;
	background-repeat: no-repeat;
}
.bg-tr{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top right;
	background-repeat: no-repeat;
}
.bg-bl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom left;
	background-repeat: no-repeat;
}
.bg-br{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}

.bg-red{
	background-color: #c52b47;
	color: #fff;
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bg-black{
	background-color: #231f20;
	color: #fff;
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bg-offwhite{
	background-color: #f4f1ec;
	color: #231f20;
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bg-white{
	background-color: #fff;
	color: #231f20;
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.hero.bg-overlay{
	position: relative;
}
.hero.bg-overlay:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background: linear-gradient(to right, #031224, transparent);
}

/*---STRUCTURE--------------------------------*/

.relative{
	position: relative;
}
.pad-top{
	padding-top: max(120px, 5vw);
}
.pad-bottom{
	padding-bottom: max(120px, 5vw);
}

.pad-top-half{
	padding-top: max(60px, 2.5vw);
}
.pad-bottom-half{
	padding-bottom: max(60px, 2.5vw);
}
.cs-wrap{
	padding-left:6.9vw;
	padding-right:6.9vw;
}
.pad{
	padding: max(40px, 2vw);
}
.pad-1-left{
	padding-left: 7.3vw;
}
.pad-1-right{
	padding-right: 7.3vw;
}
/*---TEXT--------------------------------*/

.heading-lg, .heading-md, .heading-sm{
	font-family: "barlow", sans-serif;
	display: block;
}

.heading-lg{
	font-weight: 900;
	font-size: min(48px, 8vw);
	line-height: 1;
	letter-spacing: normal;
}
.heading-md{
	font-weight: 900;
	letter-spacing: 0.01em;
	font-size: min(36px, 6vw);
	line-height: 1.1;
}
.heading-sm{
	font-weight: 700;
	
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: 0.01em;
}
.paragraph{	
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: normal;
}
.light{
	font-weight: 400;
}

.icon-lg{
	font-size: 44px;
}
/*---BUTTONS--------------------------------*/

.cta{
	display: inline-block;
	padding: 0 20px;
	line-height: 36px;
	max-width: 100%;
	position: relative;
	font-family: "barlow", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.025em;
	color: #fff;
	background-color: #231f20;
	text-align: center;
	border-radius: 8px;
    box-sizing: border-box;
}
.cta-red{
	background: #c52b47;
	color: #fff;
}
.cta-green{
	background: #2a8d56;
	color: #fff;
}
.cta-black{
	background: #231f20;
	color: #fff;
}

/* CUSTOM */

.hero .col-row{
	min-height: calc(100vh - 200px);
	padding-top: 30px; padding-bottom: 30px;
	box-sizing: border-box;
}
#hero-ctas{
	display: flex; gap: 12px;
}
#hero-ctas a{
	display: block;
	width: 100%;
	padding: min(40px, 4vw);
	height: calc(100% - 40px);
	min-height: 480px;
	box-sizing: border-box;
	position: relative;
	transition: ease all 0.3s;
}
#hero-ctas a:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	bottom: 0;
	background: linear-gradient(transparent, rgba(35,31,32,0.9));
}
#hero-ctas a:hover{
	filter: brightness(1.1);
}
#hero-ctas a .heading-sm{
	position: absolute;
	bottom: min(40px, 4vw);
	left: min(40px, 4vw);
	right: min(40px, 4vw);
	display: block;
	color: #fff;
	transition: ease all 0.5s;
	transition-delay: 0.05s;
}
#hero-ctas a .heading-sm:after{
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 10px;
	font-weight: 300;
	letter-spacing: 0.025em;
	font-size: 22px;
	color: #fff;
	transition: ease all 0.5s;
	transition-delay: 0.1s;
	opacity: 0;
}
#hero-ctas a:nth-of-type(1) .heading-sm:after{
	content: 'View Auctions';
}
#hero-ctas a:nth-of-type(2) .heading-sm:after{
	content: 'View Inventory';
}
#hero-ctas a:nth-of-type(3) .heading-sm:after{
	content: 'Consign With Us';
}
#hero-ctas a:hover .heading-sm:after{
	opacity: 0.8;
}
#hero-ctas a:hover .heading-sm{
transform: translateY(-40px);
}

.cs-banner{
	min-height: 120px;
	display: flex; align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
}

/*--------FORM STYLES--------------------*/

.custom-form input{
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: "barlow", sans-serif !important;
}
.custom-form select{
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: "barlow", sans-serif !important;
}
.custom-form input[type="radio"], .custom-form input[type="checkbox"]{
	width: 24px;
}
.custom-form .flex{
	gap: 10px;
	display: flex;
}
.custom-form textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border-radius: 10px;
	outline: none;
	border: none;
	background: #fff;
	font-family: "barlow", sans-serif !important;
}
.custom-form button{
	border: unset !important;
	cursor: pointer;
}

.CaptchaPanel{
	text-align: left !important;
	font-family: "barlow", sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 10px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #535b65 !important;
}
.bg-white .custom-form input, .bg-white .custom-form select, .bg-white .custom-form textarea{
	background: #f4f1ec !important;
}

/*-------- FOOTER STYLES ----------------*/

.cs-footer{
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #231f20;
	color: #fff;
	font-family: 'Barlow', sans-serif;
	padding: 0 3.45vw 0 6.9vw;
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1200px) {

	.wrapper{
		padding-left: 0;
		padding-right: 0;
	}
	
}
@media only screen and (max-width: 991px) {

.pad-top{
	padding-top: max(60px, 2.5vw);
}
.pad-bottom{
	padding-bottom: max(60px, 2.5vw);
}

	.cs-banner{
		padding: 20px;
	}
#hero-ctas a:before{
	top: 0;
	background: linear-gradient(rgba(35,31,32,0.3), rgba(35,31,32,0.9));
}
#hero-ctas{
	position: relative;
	flex-wrap: wrap;
	padding-top: 30px;
}
#hero-ctas a{
	min-height: 200px;
}
	
}
@media only screen and (max-width: 767px) {

	.custom-form .flex{flex-wrap: wrap; gap: 0px;}

}
@media only screen and (max-width: 575px) {
	
	.heading-lg{
		font-size: 36px;
	}
	.heading-sm, .heading-md{
		font-size: 24px;
	}
	
	#hero-ctas a .heading-sm:after{
		font-size: 18px;
	}
	#hero-ctas a .heading-sm:after{
		opacity: 0.8;
	}
	#hero-ctas a .heading-sm{
	transform: translateY(-40px);
	}
	
.cs-footer {
	padding: 20px;
}

.cs-footer > div{
	justify-content: center;
	flex-direction: column-reverse;
	width: 100%;
	box-sizing: border-box;
}

}






