@charset "utf-8";
/* CSS Document */

a, button, .button, a:hover, button:hover, .button:hover, button.mobile_btn::after {
    -webkit-transition:all .45s ease;
    -moz-transition:all .45s ease;
    -ms-transition:all .45s ease;
    -o-transition:all .45s ease;
    transition:all .45s ease;
}
* { outline: none; }
body { overflow-x:hidden; }

::-webkit-scrollbar-track, ::-webkit-scrollbar, ::-webkit-scrollbar-thumb {
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #eee;
}
::-webkit-scrollbar {
	width: 10px;
	background-color: #eee;
}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,.25); }

/* =============================================================================
   Foundation Resets                                                               
============================================================================= */



/* =============================================================================
   Hosted Inventory Resets                                                               
============================================================================= */
.inven #wide_col { float: left; }
.hosted-content .columns.small-12 {
    width: 25%;
    float: left;
    padding: 0;
}
.attachment-search { width: 100% !important; }

/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}
.at-share-btn-elements{
	padding-bottom:10px !important;
}
.listings-wrapper .listing-smallcard .listing-smallcard-title{
	min-height:0 !important;
}
h1{font-size:2em;margin:0}
.listings-wrapper .listing-smallcard .listing-card-pricing .listing-prices {
     margin-bottom: 0px; 
}.hosted-content .columns.small-12{
	width:100%;
}
.hosted-content img {
	vertical-align: baseline!important;
}
/* =============================================================================
   Typeography                                                              
============================================================================= */

/* =============================================================================
   Top                                                              
============================================================================= */



#top p{
	color:black;
	text-transform:uppercase;
	font-family: 'Montserrat', sans-serif;
	text-align:right;
	font-size:15px;
	font-weight:600;
	margin-bottom:0;
}
.head-phone {
    padding:20px 0;
}
#top p a{
	color:#ab1f28;
}
#top p a:hover{
	color:black;
}
/* =============================================================================
   Header                                                              
============================================================================= */

header {
	display: table;
	width: 100%;
	padding: 0px;
	background-color:black;
}


.header-1 {
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding:20px;
    box-sizing: border-box;
    gap:20px 0;
}
.head-logo-1 {
    width:32%;
    max-width: 500px;
}
.head-logo-1 img {
    width:100%;
    max-width: 100%;
    display: block;
    margin:0;
}
.head-brands-1 {
    width:35%;
    display: flex;
    flex-wrap: wrap;
    gap:20px 3%;
    justify-content: center;
    align-items: center;
}
.head-brands-1 a {
    width:30%;
    display: block;
}
.head-brands-1 a img {
    width:100%;
    max-width: 200px;
    display: block;
    margin:0 auto;
}

/* Menu Main */
.menu-main-container ul{
	margin: 0;
	padding:0;
	list-style: none;
	text-align:center;
}
.mobile-nav ul {
	margin: 0;
	padding:0;
	list-style: none;
}

#menu-main a {
	display:block; 
	color: white; 
	padding: 0.8em .8em;
	position: relative;
	text-transform:uppercase;
	font-family: 'Montserrat', sans-serif;
	font-size:18px;
	font-weight:600;
}

#menu-main a:hover{
	background-color:#ab1f28;
}
.important{background-color:#ab1f28;}
#menu-main li {
	position: relative;
	display: inline-block;
}

/* Main Sub-Menu */
#menu-main ul {
	position: absolute;
	white-space: nowrap;
	z-index: 9999999;
	left: -99999em;
	background: black;
	text-align: left;
}
#menu-main li ul li { display:block; }
#menu-main ul li a:hover { color: white; }
#menu-main > li:hover > ul {
	left: auto;
	min-width: 100%;
}
#menu-main > li li:hover > ul { 
	left: 100%;
	margin-left: 1px;
	top: -1px;
}

/* Dropdown Arrow */
#menu-main li > a:after {
	content: ' ';
    background: url(../siteart/down.png) no-repeat 80% 50% / 8px;
    top: 0;
    position: absolute;
    width: 15px;
    height: 100%;
}
#menu-main li > a:hover:after { background: url(../siteart/down.png) no-repeat 80% 50% / 8px; }
#menu-main li > a:only-child:after { content: none; }


	/* Mobile Menu Toggle */
	.off-canvas-container { position: relative;	}
	.off-canvas-inner {
	    position: relative;
		width: 100%;
		display: block;
		overflow:hidden;
	}
	.off_canvas {
		position: relative;
		height: 100vh;
		max-height: 100%;
		background: black;
		position: fixed;
		overflow-x:hidden;
		top: 0;
    	z-index: 1;
	}
	.off_canvas_content.is_open, .off_canvas_content.open_right.is_open {
		filter: blur(3px);
		position:fixed;
		width: 100%;
	}
	.off_canvas_content.is_open { transform: translateX(300px); }
	.off_canvas_content.open_right.is_open { transform: translateX(-250px); }
	.position_left, .position_right {
		width: 300px;
		overflow-y: auto;
	}
	.position_left {
		transform: translateX(-300px);
		left: 0	
	}
	.position_right {
		transform: translateX(300px);
		right: 0;	
	}
	.position_left.is_open, .position_right.is_open {
		transform: translateX(0px);
		z-index: 999999;
		-webkit-box-shadow: 2px 0 20px -4px #222;
        box-shadow: 2px 0 20px -4px #222;
	}
	.off_canvas_content, .off_canvas_content.is_open, .position_left, .position_left.is_open, #off_canvas_cover.is_open, #off_canvas_cover, .position_right.is_open, .position_right  {
		-webkit-transition: all 0.75s ease;
		-moz-transition: all 0.75s ease;
		-o-transition: all 0.75s ease;
		transition: all 0.75s ease;		
	}
		/* Close Btn */
		.close {
			background: url(../siteart/close.png) no-repeat 50% 50% / 20px transparent;
			width: 20px;
			height: 20px;
			position: absolute;
			right: 12px;
			top: 15px;
			display: block;		
		}
		.close:hover {
			cursor:pointer;
			background: url(../siteart/close.png) no-repeat 50% 50% / 20px transparent;
		}
		#off_canvas_cover, #off_canvas_cover.is_open { transform: rotate(0); }
		#off_canvas_cover {
			visibility:hidden;
			position: fixed;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			z-index:-1;
			background: rgba(255,255,255,.65);
			opacity: 0;
		}
		#off_canvas_cover.is_open {
			opacity: 1;
			visibility:visible;
			z-index:9999;
		}

  	/* Mobile Menu */
	.off_canvas header {
		background: transparent;
		padding: 0px;
		position: relative;		
		top: 0;
	}
	.off_canvas h2 {
		color:#ab1f28;
		text-align:left;
		font-size: 1.5em;
		margin: 10px 15px;
		font-family: 'Montserrat', sans-serif;
		text-transform:uppercase;
	}
	.mobile.button { display: none;	}
	.mobile-nav #mobile-menu-main { border-top: 1px solid #333; }
	.mobile-nav #mobile-menu-main li {
		width: 100%;
		position: relative;
	}
	.mobile-nav #mobile-menu-main li a:hover { background-color:#ab1f28; }
	.mobile-nav #mobile-menu-main a {
		font-family: 'Montserrat', sans-serif;
		text-transform:uppercase;
		width: 100%;
		color: white;
		min-height: 45px;
		display: inline-block;
		text-decoration: none;
		padding: 10px 0 10px 5%;
		position: relative;
		font-size: 14px;
		border-bottom: 1px solid #333;
	}

	/* Mobile Sub-Menu */
	.mobile-nav #mobile-menu-main ul {
		position: relative;
		z-index: initial;
		left: 0;
		background: transparent;
		text-align: left;
		width: 100%;
		padding: 0px;
		display:none;
	}
	.mobile-nav ul li ul li a { padding: 10px 0; }
	.mobile-nav ul li a:hover { color: #fff !important; }
	
	/* First Dropdown */
	.mobile-nav #mobile-menu-main > li li:hover > ul {
		left: 0px;
	}
	/* Second Dropdown */
	.mobile-nav #mobile-menu-main > li > .sub-menu li a {
		margin: 0 0 0 5%;
	}
	/* Third Dropdown */
	.mobile-nav #mobile-menu-main > li > .sub-menu > li > ul.sub-menu li a {
		margin: 0 0 0 10%;
	}
	/* Fourth Dropdown */
	.mobile-nav #mobile-menu-main > li > .sub-menu > li > ul.sub-menu > li > ul.sub-menu li a {
		margin: 0 0 0 15%;
	}
	/* Fifth Dropdown */
	.mobile-nav #mobile-menu-main > li > .sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu li a {
		margin: 0 0 0 20%;
	}

	/* Mobile Btn */
	.mobile-nav li button.mobile_btn {
		height: 45px;
		width: 50px;
		position: absolute;
		top: 0;
		right: 0;
		background: #333;
		display: inline-block;
		border-radius: 3px 0 0 3px;
		border:none;
	}
	.mobile-nav li button.mobile_btn:hover { cursor: pointer }
	.mobile-nav button.mobile_btn::after {
		content: ' ';
		position: absolute;
		top: 0;
		left: 0;
		background: url(../siteart/mobile_arrow.png) no-repeat center center / 10px;
		width: 100%;
		height: 100%;
	}
	.mobile-nav li button.mobile_btn.active { background: #666; }
	.mobile-nav li button.mobile_btn.active::after, .close:hover {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}
/* =============================================================================
   Slider                                                              
============================================================================= */
		#slider {
			overflow:hidden;
			position:relative;
			width: 100%;
			background: #222;
			display: table;
		}
		#slider .orbit-container {
			height: 0;
			margin: 0;
			list-style: none;
			overflow: hidden;
			height: 55vh !important;
			width: 100%;
			text-align:left;
		}
		#slider .orbit-slide {
			background-repeat: no-repeat;
			background-size: cover;
			height: 55vh;
			background-position: 50% 15%;
			width: 100%;
			z-index: 9999;
			padding: 0;
		}
		.orbit-next::after, .orbit-previous::after { display: none; }
		.orbit-next, .orbit-previous, .orbit-next:focus, .orbit-previous:focus, .orbit-next:active, .orbit-previous:active { 
			z-index: 999999999; 
			cursor: pointer;
			background: transparent;
		}
		.orbit-next:hover, .orbit-previous:hover { background: rgba(0,0,0,.5) }
		.orbit-next:hover, .orbit-previous:hover, .orbit-next:focus, .orbit-previous:focus { padding: 1rem; }
		.orbit-next, .orbit-previous { background: transparent; }
		
			/* Interior */
			#interior #slider .orbit-container, #interior #slider, #interior #slider .orbit-slide { height: 20vh !important; }
			#interior #slider .orbit-caption { display: none; }
			#interior .orbit-next, #interior .orbit-previous { display:none; }
			#interior #slider .orbit-slide { background-position: 50% 65%; }
			
/* =============================================================================
   Floating Links                                                             
============================================================================= */	
			.float-links {
				position: absolute;
				z-index: 999999;
				right: 0;
				top: 215px;
			}
            
			.floating-link a {
				width: 40px;
				height: 40px;
				border-radius: 5px 0 0 5px;
				z-index: 999999999999;
				margin-bottom: 5px;
				display: block;
			}
			.floating-link #w-btn { background:url(../siteart/weather.png) no-repeat 50% 50% / 35px #ab1f28; }
			.floating-link #fb-btn { background:url(../siteart/facebook.png) no-repeat 50% 50% / 30px #ab1f28; }
			
			.floating-link #w-btn:hover, .floating-link #w-btn:focus, .floating-link #w-btn:active { background: url(../siteart/weather.png) no-repeat 50% 50% / 35px black; }
			.floating-link #fb-btn:hover, .floating-link #fb-btn:focus, .floating-link #fb-btn:active { background: url(../siteart/facebook.png) no-repeat 50% 50% / 30px black; }
			
			.float-links section {
				width: 350px;
				position: absolute;
				z-index:999999999;
				right: -360px;
				background: #FFF;
				padding: 10px;
				display:table;
				-webkit-box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.26);
				-moz-box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.26);
				box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.26);
                display: none;
			}
			.float-links section.show-section {right: 0; display: inherit;}

/* =============================================================================
   CTA                                                          
============================================================================= */
			.cta{ max-width:80rem; margin-left:auto; margin-right:auto;}
			.cta ul { 
				margin: 0; 
				list-style:none; 
				width: 100%;
				display: table;
				position: relative;
				padding:25px 0;
			}
			.cta ul li { 
				padding: 0 10px 0;
				margin: 0px; 
			}			
			.cta ul li div:first-child {
				list-style:none;
				position: relative;
				background-repeat:no-repeat;
				background-size: cover;
				background-position: 50% 50%;
				padding: 0;
				height: 225px;
				z-index:999;
			}
			.cta a span {
				text-align: left;
				display: table-cell; 
				vertical-align:middle;
			}
			.cta a h2 { 
				color: #fff; 
				font-weight: 200; 
				line-height: 1; 
				text-transform:uppercase; 
				font-family: 'Montserrat', sans-serif;
			    font-size: 35px;
				}
			.cta a h2 strong { display: block; font-weight: 800; }
			.cta a:hover { opacity: 1; }
			.cta a .overlay {
				background: rgba(0,0,0,.30);
				position:absolute;
				top:0;
				bottom: 0;
				display: table;
				padding: 0 0 0 35px;
				width: 100%;
				height: 100%;
			}
			.cta ul li .cta1 { background-image:url(../siteart/used.jpg); }
			.cta ul li .cta2 { background-image:url(../siteart/timed.jpg); }
			.cta ul li .cta3 { background-image:url(../siteart/sales.jpg); }
			.cta ul li .cta4 { background-image:url(../siteart/contact.jpg); }
			.cta a:hover .overlay { background: rgba(0,0,0,.75); }
			
				/* Interior */
				#interior .cta ul li div:first-child { height: 135px; }

/* =============================================================================
   Body                                                              
============================================================================= */
#welcome{
	font-family: 'Montserrat', sans-serif;
}
#welcome .grey{	
	border-top: 5px solid #ab1f28;
	border-bottom: 5px solid #ab1f28;
	background-color:#f3f3f3;}
#welcome .grey a{color:black;}
#welcome .grey a:hover{color:#ab1f28;}	
#welcome .welcome-title{
	text-transform:uppercase;
	font-size:40px;
	color:#ab1f28;
	font-weight:600;
}

#welcome .welcome-red-text{
	font-size:20px;
	color:#ab1f28;
}
#welcome .welcome-red-text-caps{
	font-size:23px;
	color:#ab1f28;
	text-transform:uppercase;
}
#welcome .welcome-black-text{
	font-size:20px;
	color:black;
}
#welcome .welcome-black-text-small{
	font-size:18px;
	color:black;
}
#welcome .about-image{
	margin-left:auto;
	margin-right:auto;
	display:block;
}
#welcome .extra-space{padding:30px 0;}


#welcome [type=button], [type=submit]{
	border-radius: 0;
    border: none;
    padding: 11px;
    color: white;
	background-color:black;
	text-transform:uppercase;
}
#welcome [type=button], [type=submit]:hover{
	background-color:#414141;
}
#welcome [type=button], [type=reset]:hover{
	background-color:white;
	color:#ab1f28;
}
#welcome [type=button], [type=reset]{
	border-radius: 0;
    border: none;
    padding: 11px;
    color: white;
	background-color:#ab1f28;
	text-transform:uppercase;
}

#welcome .redbox{border:3px #ab1f28 solid; margin:10px 0;}
#welcome .redbox p{
	margin-bottom:0;
	color:black;
	text-transform:uppercase;
	font-size:17px;
	font-weight:600;
	padding:11px;
	text-align:center;
}
#welcome .redbox p a{
	color:black;
}
#welcome .redbox p a:hover{
	color:#ab1f28;
}
#welcome .grey .product-logos{
	max-height: 50px;
	padding:0;
}
.product-logos{
	padding:0 0 40px 0;
}
.name strong{
	color:black;
	font-size:20px;
	display:block;
} 
.email-icon{
	max-height:23px;
	display:inline-block;
	vertical-align:middle;
} 
.name{
	font-family: 'Montserrat', sans-serif;
}
/* =============================================================================
   Footer                                                              
============================================================================= */
.map-responsive{
    width:100%;
    height: 400px;
}

.footer-black{
	background-color:black;
	padding:10px 0;
}
.footer-black p{
	color:white;
	text-transform:uppercase;
	font-size:15px;
	font-weight:600;
    line-height: normal;
}
.footer-black p a{
	color:white;
}
.footer-black p a:hover{
	color:#ab1f28;
}
.footer-black .title{
	color:#ab1f28; 
	text-transform:uppercase;
	font-size:20px;
	font-weight:600;
}

a.footerlink:link, a.footerlink:visited, a.footerlink:active{text-decoration:underline; font-size:13px; color:white;}
a.footerlink:hover {text-decoration:none; font-size:13px; color:#ab1f28;}

.footertext{font-size:13px; color:white;}

.smallfootertext{font-size:13px; color:white;}

.divfooter {max-width:600px; float:right; text-align:right; margin:0 auto;}


/* =============================================================================
   Mobile                                                              
============================================================================= */
@media only screen and (max-width: 1400px) {
	#menu-main a {
    padding: 0.6em .8em;
    font-size: 1.2vw;
}
}
@media only screen and (max-width: 1115px) {
	.cta ul li {
    padding: 0;
	}
}
@media only screen and (max-width: 1020px) {

	.off_canvas { display: block; }
	.mobile.button {
		display: block;
		background: url(../siteart/mobile.png) no-repeat 50% 50% / contain transparent;
		height: 45px;
		width: 45px;
		position:relative;
		color: transparent !important;
		margin: 0 auto 1rem auto!important;
	}
	.mobile.button:hover {
		background: url(../siteart/mobile.png) no-repeat 50% 50% / contain transparent!important;
	}
	.menu-main-container { display: none; }
header {
    padding-left: 16px;
    padding-top: 13px;
	padding-bottom:1px;
}
.head-logo-1 {
    width: 100%;
    margin:0 auto;
}
.head-brands-1 {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    gap:20px 3%;
    justify-content: center;
    align-items: center;
}
    .head-phone {
        margin:0 auto;
    }
#top p{text-align:center; padding:0;}
    
}
@media only screen and (max-width: 960px) {
	#top .small-12{width:100%}
	#top .logo {
		margin-left:auto;
		margin-right:auto;
		display:block;
	}
	#top p{text-align:center; padding:0;}
	.float-links {
    top: 285px;
	}
	#slider .orbit-slide {
    background-position: 22% 15%;
	}
	#welcome .split .small-12{width:100%;}
	#welcome .welcome-red-text-caps, #welcome .welcome-black-text-small{text-align:center;}
	#welcome .providers{padding-bottom:80px;}
	
}
@media only screen and (max-width: 810px) {

	.cta ul{padding:0;}
	.cta ul li div:first-child {
    height: 200px;
	}
}
@media only screen and (max-width: 640px) {
	#top .logo {
		width:100%;
	}
	.footer-black p{
		text-align:center;
	}
	.divfooter {
    float: none;
	margin-left:auto;
	margin-right:auto;
    text-align: center;
}
.grey .large-up-3 .text-left{
	text-align:center;
}
.grey .large-up-3 .text-right{
	text-align:center;
}
}
@media only screen and (max-width: 420px) {
	#top p {
		font-size:15px;
	}
	#welcome .providers .small-4{
		width:100%;}
	.float-links {
    top: 220px;
	}
}