﻿/***** BEGIN RESET *****/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Teko:wght@300..700&display=swap');

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 --------*/
:root{
	--yellow:#FCC529;
	--gray:#f5f5f5;
	--heading: 'Teko', sans-serif;
}
body {
	font-family:'Manrope', sans-serif;
}

a{text-decoration:none;}
.yellow-arrow{font-size:20px; color:#000; font-family:var(--heading); font-weight:600; text-transform:uppercase;}
.yellow-arrow i{padding-left:10px; font-size:16px; color:var(--yellow); transition:.3s ease;}
.yellow-arrow:hover i{padding-left:25px;}

.box-3 { background-color: var(--yellow); }
.yellow-btn, .yellow-btn2 { line-height: 50px; height: 50px; text-align: center; width: 250px; cursor: pointer;padding:13px 30px;font-size:18px; font-weight:800; color: #000;font-family:var(--heading);transition: all 0.5s;position: relative;}
.yellow-btn span, .yellow-btn2 span{z-index:10; position:relative;}
.yellow-btn::before, .yellow-btn2::before { content: '';position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-color: var(--yellow); transition: all 0.3s;}
.yellow-btn:hover::before, .yellow-btn2:hover::before{opacity: 0 ; transform: scale(0.5,0.5);}
.yellow-btn::after, .yellow-btn2::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0; transition: all 0.3s; border: 1px solid var(--yellow); transform: scale(1.2,1.2);}
.yellow-btn:hover::after, .yellow-btn2:hover::after {opacity: 1; transform: scale(1,1);}
.yellow-btn:hover{color:#fff;}

/*----Animations----*/
@keyframes appear{
	0%{
		opacity: 0;
	}
		100%{
			opacity:1;
		}
	}

.show{position:relative; opacity:0; transition:1s all ease}
.show2{position:relative; opacity:0; transition:2s all ease}
.show3{position:relative; opacity:0; transition:3s all ease}
.fade{ opacity:1;}


/*--- HEADER STYLES ---------------------*/
header{width:100%; background:#fff;}
.header{width:98%; max-width:1800px; margin:0 auto; display:flex; flex-direction:row;}
.logo{max-width:300px; width:100%;}
.logo img{width:100%;}
.head-cont{width:350px; display:flex; flex-direction:row;}
.head-contact{width:50%; padding:30px 5px; box-sizing:border-box; display:flex; flex-direction:row;}
.head-contact i{font-size:14px; transition:.3s ease; margin-top:8px; color:#000; display:flex; flex-wrap:nowrap; margin-right:14px; align-items:center; justify-content: center; width:30px; height:30px; border-radius:50%; background:var(--yellow);}
.head-contact section{color:#000; font-size:15px; transition:.3s ease;}
.head-contact section p span{text-transform:uppercase; font-size:17px; font-weight:800; font-family:var(--heading); padding-bottom:8px;}

.header-center{width:calc(100% - 650px); padding:30px 10px; box-sizing:border-box; display:flex; flex-direction:row; justify-content: center;}

.head-contact:hover i{color:#fff; background:#000;}
.head-contact:hover section{letter-spacing:1px;}
/*------Header Search-----*/

.search{ position: relative;height:51px;width:51px;}
.inputsearch{ background: #fff!important; font-size:16px!important; padding: 15px!important; height:50px!important; width:50px!important; transition: width 0.3s ease!important; border-radius: 30px!important;border:0!important;}
.btn:before{content:"\f002"; font-family:FontAwesome; font-size:15px;}
.btn2{display:none;}
.btn, .btn2{ border-radius: 30px;  background: #ffffff;  border:0;  position:absolute;cursor: pointer;height:48px;margin:0!important; top:1px; left:0; width:48px; transition: transform 0.3s ease;}
.btn:focus, .inputsearch:focus{ outline: none;}
.search.active .inputsearch{ width:200px!important;border-radius: 30px!important;border:solid 1px #ccc!important;}
.search.active .btn:before{content:"\58"; font-size:10px;}
.search.active .btn{transform: translateX(200px); width:20px; top:-10px;}
.search.active .btn2 { transform: translateX(150px);display:block;transition:.3s ease;}
.search.active .btn2:hover{background:#000; color:#fff;}
.slide-image { width: 100%; height: 100%; }
/*---BODY--------------------------------*/
/*------Hero--------*/
.hero{width:100%; position:relative; background-color:#000;}
.hero img{width:100%; height:880px; object-fit:cover; filter:brightness(.4);}
.hero-text{max-width:1200px; animation:1s ease-in 0s 1 appear; text-align:center; color:#fff; width:100%; position:absolute; left:0; right:0; margin:0 auto; bottom:24%; z-index:100;}
.hero-text h1{font-family:var(--heading); color:#fff; font-size:100px; line-height:100px; font-weight:600; text-transform:uppercase;}
.hero-text h1 span{color:var(--yellow); font-weight:400;}
.hero-text p{font-size:18px; line-height:24px; max-width:600px; padding:40px 0 80px 0; margin:0 auto;}

/*------About Section--------*/
.about{width:100%; background:linear-gradient(to bottom, #fff 80%, #000 80%); padding:80px 0 40px 0; display:flex; flex-direction:row;}
.about-left{padding:8% 5% 5%; width:50%; box-sizing:border-box;}
.about-left h2{font-size:90px; line-height:90px; font-weight:400; font-family:var(--heading); text-transform:uppercase; color:#000;}
.about-left h2 span{font-weight:500;}
.about-left p{font-size:18px; width:80%; line-height:24px; padding:20px 0 80px 0;}
.about-right{width:50%; position:relative;}
.about-img{width:100%; position:relative; padding-bottom:60px; z-index:10; height:700px; object-fit:cover;}
.dots{position:absolute; bottom:0px; left:-60px; z-index:0;}


/*--------Why-----------*/
.black-back{width:100%; background:#000;}
.width{max-width:1800px; padding:0 10px; box-sizing:border-box; margin:0 auto;}
.cards{width:100%; color:#fff; padding:40px 0 100px 0;}
.cards h2{font-size:90px; color:#fff; font-family:var(--heading); font-weight:600; text-transform:uppercase; padding-bottom:40px; text-align:center;}
.cards h2 span{color:var(--yellow); font-weight:400; }
.card-row{width:100%; display:flex; flex-direction:row; gap:20px;}
.card{width:33.33%; background:#222; text-align:center; padding:60px 40px 80px 40px; box-sizing:border-box;}
.card p.num{font-size:140px; color:var(--yellow); padding-bottom:20px; line-height:140px; font-weight:500; font-family:var(--heading);}
.card h3{font-size:34px; font-family:var(--heading); font-weight:500; padding-bottom:10px;}
.card p{font-size:20px; line-height:26px; width:80%; margin:0 auto;}


/*--------Brands -----------*/
.brands-wrap{padding:120px 10px; box-sizing:border-box;}
.brands-wrap h2{font-size:90px; line-height:90px; padding-bottom:60px; font-family:var(--heading); font-weight:600; text-transform:uppercase;}
.brands-wrap h2 span{font-weight:400;}
.brands{width:100%; display:flex; flex-direction:row; gap:20px; justify-content: space-between;}
.brand{width:30%; max-width:500px;}
.brand img{max-width:300px; width:100%; display:flex; }
.brand p{font-size:18px; box-sizing:border-box; height:140px; line-height:26px; padding:20px 0 60px 0; width:80%;}


/*---------Contact---------*/
.page-top{width:100%; height:700px; position:relative;}
.page-top img{width:100%; height:100%; object-fit:cover; filter:brightness(.5);}
.top-text{width:100%; animation:1s ease-in 0s 1 appear; max-width:1800px; margin:0 auto; padding:0 10px; box-sizing:border-box; left:0; right:0; bottom:30%; position:absolute;}
.top-text h1{font-size:90px; text-transform:uppercase; font-weight:600; font-family:var(--heading); color:#fff; line-height:90px;}
.top-text h1 span{font-weight:400;}
.crumbs{padding-top:10px; color:#fff; letter-spacing:2px;}
.crumbs a {color:#fff; transition:.3s ease;}
.crumbs a:hover{color:var(--yellow);}

.flex{width:100%; display:flex; flex-direction:row; padding:100px 10px; box-sizing:border-box;}
.col-2{width:50%; padding:10px; box-sizing:border-box;}
.map iframe{width:100%;}
.contact-info h2{font-size:90px; font-weigth:400; font-family:var(--heading); text-transform:uppercase;}
.contact-info{padding-left:40px;}

.thanks h2{font-size:40px; font-family:var(--heading); text-transform:uppercase;}
/*--------FORM STYLES--------------------*/
.flex-form h2{font-size:90px; color:#fff; font-family:var(--heading); text-transform:uppercase;}
.flex-form{width:100%;text-align: left;margin: 0 auto;padding:100px 10px; box-sizing:border-box;}
#formpage input, select {padding:14px;border: 1px solid #ccc;color: #777!important;font-size: 14px;}
.flex-row{display:flex;flex-direction:row;width:100%;}
#formpage {width:100%;vertical-align: top;display:inline-block;text-align:left;padding: 30px 0px 20px 0;}
.form-half{width:calc(50% - 10px);display: inline-block;vertical-align: middle;margin:5px;}
.form-whole{width:calc(100% - 10px);display:block;vertical-align:middle;margin:5px;}
input[type="text"], input[type="email"], input[type="date"], select, input[type="phone"]{width:100%;box-sizing:border-box;}


#formpage textarea {font-family:'Arial', sans-serif; font-size:14px; box-sizing:border-box;padding: 14px;border: 1px solid #ccc!important;color: #000;background: #fff;width: 100%;height: 100px;border-radius:2px;}
#formpage textarea:focus{border: 1px solid #ccc; border-radius:2px} 

#formpage input.submit-button, #formpage input.submit-button:focus, #submit-btn button{background:var(--yellow); border:solid 1px var(--yellow); color:#000; text-transform:uppercase; font-family:var(--heading); font-size:18px; font-weight:800; text-align:center; padding:13px 30px; box-sizing:border-box; }

#formpage input.submit-button:hover, #submit-btn button:hover{ transition:ease-out .3s; cursor:pointer; background:transparent; color:#fff!important;}
.submit-button, #submit-btn{padding:10px 0px 10px 0px;position:relative;width:100%;}
.captcha-button{width:120px; }
.include-captcha{display:none;}
#formpage input.submit-button{color:#000!important;}

.CaptchaWhatsThisPanel a{color:#fff!important;}
.CaptchaPanel{text-align:left!important; color:#fff;}
/*-------- FOOTER STYLES ----------------*/
.gray-back{background:var(--gray); width:100%;}
footer{width:100%; padding:100px 10px 20px 10px; display:flex; flex-direction:row; box-sizing:border-box;}
.foot-left{width:60%;}
.foot-left img{max-width:350px; display:block; width:100%; padding-bottom:20px;}
.foot-left p{font-size:26px; font-family:var(--heading); font-weight:600; text-transform:uppercase; padding-bottom:10px;}
.foot-left ul li a{color:#000; font-size:18px; line-height:30px;}
.foot-right{width:40%;}
.foot-left ul li a:hover{text-decoration:underline!important;}

.foot-cont{width:100%; display:flex; flex-direction:row; padding-bottom:30px;}
.foot-contact{width:50%; padding:30px 5px; box-sizing:border-box; display:flex; flex-direction:row;}
.foot-contact i{font-size:16px; transition:.3s ease; margin-top:8px; color:#000; display:flex; flex-wrap:nowrap; margin-right:14px; align-items:center; justify-content: center; width:40px; height:40px; border-radius:50%; background:var(--yellow);}
.foot-contact section{color:#000; transition:.3s ease; font-size:18px;}
.foot-contact section p span{text-transform:uppercase; font-size:22px; font-weight:800; font-family:var(--heading); padding-bottom:8px;}
.left-par p{padding-bottom:60px; font-size:18px; line-height:24px;}

.bottom-foot{padding:100px 10px 10px;}
.bottom-foot p{color:#222; font-size:16px;}

.foot-contact:hover i{color:#fff; background:#000;}
.foot-contact:hover section{letter-spacing:1px;}
/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .check-availability-link,
.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .email-seller-link,
.body-wrapper>div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper>div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper>div:not(.detail-wrapper) button.page-nav {
    background: var(--yellow) !important;
    color: #000 !important;
}

.body-wrapper>div:not(.detail-wrapper) .view-listing-details-link,
.body-wrapper>div:not(.detail-wrapper) .contact-options a,
.body-wrapper>div:not(.detail-wrapper) .fin-calc-mobile>a,
.body-wrapper>div:not(.detail-wrapper) button.g-recaptcha.button,
.body-wrapper>div:not(.detail-wrapper) .show-all-modal .apply-button,
.body-wrapper>div:not(.detail-wrapper) .show-all-modal .nuf-button,
.body-wrapper>div:not(.detail-wrapper) .list-error-container .info button,
.body-wrapper>div:not(.detail-wrapper) .mobile-done-button-container .mobile-done-button,
.body-wrapper>div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now,
.body-wrapper>div:not(.detail-wrapper) a.buy-btn.des-buy-now,
.body-wrapper>div:not(.detail-wrapper) button.selected-facet.ts-button,
.body-wrapper>div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn {
    background: var(--yellow) !important;
    color: #fff !important;
}

.body-wrapper>div:not(.detail-wrapper) .view-listing-details-link:hover,
.body-wrapper>div:not(.detail-wrapper) .contact-options a:hover,
.body-wrapper>div:not(.detail-wrapper) .fin-calc-mobile>a:hover,
.body-wrapper>div:not(.detail-wrapper) button.g-recaptcha.button:hover,
.body-wrapper>div:not(.detail-wrapper) .email-seller-link:hover,
.body-wrapper>div:not(.detail-wrapper) .mc-nav-controls .mc-icon-navarrow span,
.body-wrapper>div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now:hover,
.body-wrapper>div:not(.detail-wrapper) a.buy-btn.des-buy-now:hover,
.body-wrapper>div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn:hover {
    background: #000 !important;
    color: #fff !important;
    /*----Border----*/
}

.body-wrapper>div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper>div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper>div:not(.detail-wrapper) .show-all-modal .back-button,
.body-wrapper>div:not(.detail-wrapper) .parts-listing-container .mobile-parts-detail-container .dealer-phone-container a {
    color: #000 !important;
    border: 1px solid #000 !important;
    /*-----------------------OTHER TEXT STYLES-----------------------*/
    /*----Page Title----*/
}

.body-wrapper>div:not(.detail-wrapper) .list-title .list-title-text,
.body-wrapper>div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-title-text span,
.body-wrapper>div:not(.detail-wrapper) .title-media-buttons-heading h1 {
    color: #000 !important;
    line-height: 28px !important;
}

.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name,
.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .fin-calc,
.body-wrapper>div:not(.detail-wrapper) .list-listing-mobile .listing-dealer-info .spec-value,
.body-wrapper>div:not(.detail-wrapper) .fin-calc,
.body-wrapper>div:not(.detail-wrapper) .fin-calc p,
.body-wrapper>div:not(.detail-wrapper) .list-main-section .list-container .list-error .info,
.body-wrapper>div:not(.detail-wrapper) .parts-bottom-section .parts-list-view .parts-list-content .error-message,
.body-wrapper>div:not(.detail-wrapper) .info,
.body-wrapper>div:not(.detail-wrapper) .list-title .list-listings-count,
.body-wrapper>div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count,
.body-wrapper>div:not(.detail-wrapper) .list-top-section .listing-option-bar .list-listings-count,
.body-wrapper>div:not(.detail-wrapper) span.part-list-price.bold,
.body-wrapper>div:not(.detail-wrapper) .dealer-company-header,
.body-wrapper>div:not(.detail-wrapper) .dealer-info h3,
.body-wrapper>div:not(.detail-wrapper) .listing-description-text,
.body-wrapper>div:not(.detail-wrapper) .paging-container .list-page-number,
.body-wrapper>div:not(.detail-wrapper) .paging-container .page-number,
.body-wrapper>div:not(.detail-wrapper) .listing-main-stats .price,
.body-wrapper>div:not(.detail-wrapper) .list-container-flexrow .price-container .price,
.body-wrapper>div:not(.detail-wrapper) h2.listing-portion-title,
.body-wrapper>div:not(.detail-wrapper) .list-listing-mobile .price-container .price,
.body-wrapper>div:not(.detail-wrapper) .compare-listings-container .compare-container .comp-header-img .comp-title-close-cont .compare-title,
.body-wrapper>div:not(.detail-wrapper) .compare-listings-container .compare-container .compare-price,
.body-wrapper>div:not(.detail-wrapper) .rent-title,
.body-wrapper>div:not(.detail-wrapper) .rent-title-details,
.body-wrapper>div:not(.detail-wrapper) span.list-title-text,
.body-wrapper>div:not(.detail-wrapper) a.search-results-link,
.body-wrapper>div:not(.detail-wrapper) h3.listing-portion-title {
    color: #000 !important;
}

.body-wrapper>div:not(.detail-wrapper) .mobile-option-bar .mobile-option-bar-filter,
.body-wrapper>div:not(.detail-wrapper) span.listing-prices__retail-price,
.body-wrapper>div:not(.detail-wrapper) span.parts-listings-count {
    color: #000 !important;
    /*-----------------------MEDIA QUERIES-----------------------*/
}






/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1475px) {
	.brand p{height:160px;}
	.page-top{height:600px;}
}

@media only screen and (max-width: 1250px) {
	.search{display:none;}

	.hero-text h1{font-size:80px; line-height:80px;}
	.about{flex-direction:column; padding:0;}
	.about-left{width:100%;}
	.about-right{width:100%;}
	.about-img{width:80%; float:right;}
	.dots{left:15%;}
	.card{padding:40px 20px;}
	.card p.num{font-size:110px; line-height:110px;}
	.brands{flex-wrap:wrap;}
	.brand{width:calc(50% - 10px);}
	.foot-right{max-width:510px; width:100%;}
	.foot-left{width:calc(100% - 520px);}
	.page-top{height:500px;}
	.contact-info h2{font-size:70px;}
}
@media only screen and (max-width: 1000px) {	
	.hero-text h1{font-size:70px; line-height:70px;}
	.about-img{height:400px;}
	.dots{left:13%;}
	.about-left{padding:5% 10px}
	.about-left h2, .cards h2, .brands-wrap h2, .flex-form h2{font-size:70px; line-height:70px;}
	.card-row{flex-wrap:wrap;}
	.card{width:calc(50% - 10px);}
	footer{flex-direction:column; padding:60px 10px 20px;}
	.foot-left, .foot-right{width:100%;}
	.page-top{height:400px;}
	.page-top h1{font-size:70px;}
	.contact-info h2{font-size:60px;}
	.page{width:100%!important;}
}

@media only screen and (max-width: 780px) {	
	.hero img {max-height:600px;}
	.head-cont{display:none;}
	.header{justify-content: space-between;}
	.hero{height:600px;}
	.hero-text h1{font-size:60px; line-height:60px;}
	.card{width:100%;}
	.flex{flex-direction:column-reverse; padding:60px 10px;}
	.col-2{width:100%;}
	.contact-info{padding-left:0;}
}
@media only screen and (max-width: 700px) {	
	.brand{width:100%;}
	.brand p{height:auto; padding:10px 0 20px 0;}
}
@media only screen and (max-width: 620px) {
	.hero-text h1{font-size:50px; line-height:50px;}
	.hero-text p{padding:25px 0px 40px 0px; }
	.hero-text {bottom:20%; padding:0 10px; box-sizing:border-box;}
	.dots{left:5%;}
	.about-left h2, .cards h2, .brands-wrap h2, .flex-form h2{font-size:50px; line-height:50px;}
	.card p.num{font-size:90px;line-height:90px;}
	.card h3{font-size:30px;}
	.contact-info h2{font-size:40px;}
	.flex-row{flex-direction:column;}
	.form-half{width:calc(100% - 10px);}
	.flex-form{padding:60px 10px;}
	.thanks h2{font-size:30px;}
	.about-left{padding:40px 10px;}
	.about-left p{padding:20px 0 30px 0;}
}
@media only screen and (max-width: 450px) {
	.foot-cont{flex-direction:column;}
	.foot-contact{width:100%; padding:20px 5px;}
	.page-top{height:300px;}
	.page-top h1{font-size:50px;}
	.thanks h2{font-size:25px;}
}
@media only screen and (max-width: 400px) {
	.logo{max-width:250px;}
	.header-center{width:calc(100% - 250px);}
	.about-img{height:300px; width:90%;}
	.card{padding:30px 15px;}
	.about-left h2, .cards h2, .brands-wrap h2, .flex-form h2{font-size:35px; line-height:35px;}
}

@media only screen and (max-width: 320px) {
	.hero-text {bottom:13%;}
}




