﻿/***** 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;  
} 

/*-------- 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 {

	font-family: "Poppins", sans-serif;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{
	border-left: unset;
	border-right: unset;
	border-bottom: unset;
	border-top:#000 1px solid;
}

/*--- HEADER STYLES ---------------------*/
header {}


.cs-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Poppins", sans-serif;
	padding: min(20px, 1vw) min(40px, 4vw);
	color: #fff;
	margin-bottom: min(40px, 0.6vw);
}

/*---BODY--------------------------------*/

.red, a.red{
	color: #b12b1b !important;
}

.bg-dark .red, .bg-dark a.red{
	color: #e64532 !important;
}

.bg-dark{
	background-color: #000;
	color: #fff;
}
.bg-img{
	background-size: cover;
	background-position: center center;
}


.hero{
	position: relative;
	font-family: "Poppins", sans-serif;
}
.hero:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	height: 160px;
	z-index: 0;
	background: #fff;
	
}
#hero-phone{
	font-size: max(3.5vw, 24px); 
}
.hero .col-row{
	min-height: 80vh;
	font-family: "Poppins", sans-serif;
}
.hero-col{
	display: block;
	width: 100%;
	padding: min(40px, 4vw);
	height: calc(100% - 40px);
	min-height: 300px;
	box-sizing: border-box;
	position: relative;
	border-radius: 3px;
	transition: ease all 0.3s;
}
.hero-col:hover{
	filter: brightness(1.1);
}
.hero-col:after{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 30%;
	margin-top: 34px;
	height: 6px;
	background: #b12b1b;
	display: block;
	
	
}
.hero-col h2, .hero-col h3{
	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-col h2:after{
	content: 'View Details';
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 10px;
	font-weight: 300;
	letter-spacing: 0.1em;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	transition: ease all 0.5s;
	transition-delay: 0.1s;
	opacity: 0;
}
.hero-col h3:after{
	content: 'Shop Now';
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 10px;
	font-weight: 300;
	letter-spacing: 0.1em;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	transition: ease all 0.5s;
	transition-delay: 0.1s;
	opacity: 0;
}
.hero-col:hover h2:after, .hero-col:hover h3:after{
	opacity: 1;
}
.hero-col:hover h2, .hero-col:hover h3{
transform: translateY(-40px);
}
#hero-left-col{
	position: relative;
	height: 100%;
	box-sizing: border-box;
}
#hero-left-col .cta-outline{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.heading-lg{
	font-family: "Poppins", sans-serif;
	font-size: 60px;
	font-weight: 800;
	text-transform: uppercase;
	display: block;
	line-height: 1;
}
.heading-md{
	font-family: "Poppins", sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: block;
	line-height: 1.2;
}

.bg-white p{
	line-height: 1.5;
	font-size: 18px;
	font-weight: 300;
	
}
.light{
	font-weight: 300;
}


.cta-outline{
	position: relative;
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 40px 20px;
	box-sizing: border-box;
	border: solid 1px #000;
	font-family: "Poppins", sans-serif;
	color: #000;
	background-color: transparent;
	transition: ease all 0.3s;
}
.cta-outline .btn-label{
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	padding-right: 10px;
	padding-bottom: 10px;
	font-weight: 300;
	letter-spacing: 0.05em;
	color: #555555;
}


.cta-outline:hover{
	background-color: #000;
	color: #fff;
	transform: scale(1.05);
	
}
.cta-outline-alt{
	position: relative;
	display: block;
	font-size: 24px;
	text-transform: uppercase;
	padding: 40px 30px;
	box-sizing: border-box;
	border: solid 1px #000;
	font-family: "Poppins", sans-serif;
	color: #000;
	background-color: transparent;
	font-weight: 700; 
	flex-grow: 1; 
	text-align: left;
	transition: ease all 0.3s;
}
.cta-outline-alt:hover{
	color: #b12b1b;
}
.cta-outline-alt .btn-label{
	position: absolute;
	top: -5px;
	left: -2px;
	background: #fff;
	padding-right: 10px;
	padding-bottom: 10px;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: #555555;
	line-height: 1;
	font-size: 14px;
}
.cta-outline-alt i{
	float: right;
	padding-right: 10px;
	padding-top: 3px;
}

@keyframes pop {
  0% {
            transform: scale(0.9); }
  50% {
    transform: scale(1.2) }
  100% {
            transform: scale(1); } }

.cta-outline-alt i{
	transition: ease all 0.3s;
	
}
.cta-outline-alt:hover i{
	animation: pop 0.4s ease;
	transform-origin: center;
	
}
.bg-dark .cta-outline{
	border: solid 1px #fff;
	color: #fff;
	
}
.bg-dark .cta-outline:hover{
	border: solid 1px #fff;
	background-color: #fff;
	color: #000;
	
}
.cta-col .cta-outline{
	padding: 30px 20px;
	
}

.cta-red{
	display: flex;
	gap: 10px;
	background: #b12b1b;
	color: #fff !important;
	font-weight: 700;
	padding: 10px 18px 10px 16px;
	border-radius: 5px;
	font-size: 14px;
	align-items: center;
	transition: ease all 0.3s;
	text-transform: uppercase;
}
.cta-red:hover{
	background: #bf3322;
	color: #fff;
	transform: scale(1.05);
}
.cs-header .cta-red:hover, .bg-dark .cta-red:hover{
	background: #fff;
	color: #000 !important;
}
.cta-black{
	display: flex;
	gap: 10px;
	background: #000;
	color: #fff;
	font-weight: 700;
	padding: 10px 18px 10px 16px;
	border-radius: 5px;
	font-size: 14px;
	align-items: center;
	transition: ease all 0.3s;
	text-transform: uppercase;
}
.cta-black:hover{
	background: #222;
	color: #fff;
	transform: scale(1.05);
}

.cta-col{
	display: flex;
	flex-direction: column;
}
.cta-col > a{
	width: 100%;
	font-size: 24px;
	justify-content: space-between;
	padding: min(40px, 4vw);
    box-sizing: border-box;
}
/*--------FORM STYLES--------------------*/


.custom-form input{
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #454a49;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #efefef;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;    
	font-family: "Poppins", sans-serif !important;
	border-radius: 5px;
}
.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: 300;
	font-size: 14px;
	color: #454a49;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border-radius: 5px;
	outline: none;
	border: none;
	background: #efefef;
	font-family: "Poppins", sans-serif !important;
}

.CaptchaPanel{
	text-align: left !important;
	font-family: "Poppins", sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 5px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #454a49 !important;
}
.custom-form button{
	font-family: "Poppins", sans-serif;	
	outline: unset; border: unset !important;
}

#consign-options{
	display: none;
}
#consign-yes:checked ~ #consign-options{
	display: block;
}

/*-------- FOOTER STYLES ----------------*/
footer{}

.cs-footer{

	font-family: "Poppins", sans-serif;	
}
.cs-footnav{
	display: flex;
	list-style: none;
	justify-content: space-between;
	width: 100%;
	max-width: 700px;
	flex-wrap: wrap;
}
.cs-footnav a{
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.1em;
	font-size: 14px;
	padding: 10px;
	display: block;
	flex-grow: 1;
	box-sizing: border-box;
}
.cs-footnav a:not(.red){
	color: #000;
	transition: ease all 0.3s;
}
.cs-footnav a:not(.red):hover{
	color: #b12b1b;
	
}





/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1439px) {

	.cta-outline, .cta-col .cta-outline, .cta-col > a{
		font-size: 18px;

	}

}

@media only screen and (min-width: 992px) {
	
	.pad-lg{
        padding: 0 20px;
	}
}

@media only screen and (max-width: 991px) {

	#hero-phone{
		font-size: max(8vw, 24px); 
		display: block; width: 100%;
		text-align: center;
	}
	
	.heading-md{
		font-size: 24px;
	}
	
	.pad-sm, .pad-lg{
        padding: 0 4vw;
	}

}

@media only screen and (max-width: 767px) {


	.cs-footnav li {
		width: 100%;
	}

	.custom-form .flex{flex-wrap: wrap; gap: 0px;}
}



@media only screen and (max-width: 575px) {
	.hero-btns{
		flex-wrap: wrap;
	}
	.hero-col{
		height: unset;
		min-height: 140px;
		position: relative;
	}
	.hero-col:before{
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		transition: ease all 0.3s;
		background: rgba(0,0,0,0.33);
	}
	.hero-col:hover:before{
		background: rgba(0,0,0,0.66);
	}
	.hero:before {
		height: 260px;
	}
	#hero-left-col > div{
		margin: 0 !important;
	}
	

	.heading-lg{
		font-size: 30px;
	}
}






