-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1006 lines (943 loc) · 166 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html data-wf-domain="www.acvauctions.com" data-wf-page="64d66e51ea9c86e977a9482a" data-wf-site="63d04d4b1b28345af4504ddc" lang="en" class=" w-mod-js anti-flicker-hide"><head><meta charset="utf-8"><title>Online Car Auction | Auto Dealer Vehicle Auctions | ACV Auctions</title><meta content="Use our online dealer auction platform and access our extensive vehicle inventory. Get bidding in no time with our simple approval process. Sign up now!" name="description"><meta content="Online Car Auction | Auto Dealer Vehicle Auctions | ACV Auctions" property="og:title"><meta content="Use our online dealer auction platform and access our extensive vehicle inventory. Get bidding in no time with our simple approval process. Sign up now!" property="og:description"><meta content="images/6214df2c7223d937aad401a3_Open%20Graph%20Image.jpg" property="og:image"><meta content="Online Car Auction | Auto Dealer Vehicle Auctions | ACV Auctions" property="twitter:title"><meta content="Use our online dealer auction platform and access our extensive vehicle inventory. Get bidding in no time with our simple approval process. Sign up now!" property="twitter:description"><meta content="https://assets-global.website-files.com/61df0075e6ac6a4373114030/6214df2c7223d937aad401a3_Open%20Graph%20Image.jpg" property="twitter:image"><meta property="og:type" content="website"><meta content="summary_large_image" name="twitter:card"><meta content="width=device-width, initial-scale=1" name="viewport"><meta content="KwWi9bStpbXCCEs5KsmrD9PHxkOVI2g--YeWXRVAuqI" name="google-site-verification"><link href="css/acv-2023.03d4af92b.min.css" rel="stylesheet" type="text/css"><link href="https://fonts.googleapis.com" rel="preconnect"><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"><script async="" src="js/gtm.js"></script><script src="js/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({ google: { families: ["Roboto:300,regular,500,700","Roboto:regular,700,900"] }});</script><script src="js/kib1rlq.js" type="text/javascript"></script><script type="text/javascript">try{Typekit.load();}catch(e){}</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="images/622762ff70941c4a77e7d745_favicon.png" rel="shortcut icon" type="image/x-icon"><link href="images/622762ff70941c8cfbe7d74a_webclip.png" rel="apple-touch-icon"><link href="https://www.acvauctions.com/" rel="canonical"><style>.anti-flicker-hide { opacity: 0 !important}</style><script type="text/javascript">(function(a,s,y,n,c,h,i,d,e){s.className+=' '+y;h.start=1*new Date;h.end=i=function(){s.className=s.className.replace(RegExp(' ?'+y),'')};(a[n]=a[n]||[]).hide=h;setTimeout(function(){i();h.end=null},c);h.timeout=c;})(window,document.documentElement,'anti-flicker-hide','dataLayer',4000,{'GTM-K9MM6MD':true});</script><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=5">
<meta name="theme-color" content="#333"> <!-- Sets Chrome menu bar color -->
<script async="" src="js/fs-cc.js" fs-cc-mode="opt-in"></script>
<style>
body .load-1, body .load-2, body .load-3, body .load-4, body .load-5, body .load-6, body .slide-1, body .slide-2, body .slide-3, body .slide-4, body .slide-5, body .slide-6 {opacity: 0;}
.w-editor .load-1, .w-editor .load-2, .w-editor .load-3, .w-editor .load-4, .w-editor .load-5, .w-editor .load-6, .w-editor .slide-1, .w-editor .slide-2, .w-editor .slide-3, .w-editor .slide-4, .w-editor .slide-5, .w-editor .slide-6 {opacity: 1;}
/* Hide FormAssembly lenght indicator */
.lengthIndicator { display: none !important; }
</style>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PXN3PFG');</script>
<!-- End Google Tag Manager -->
<style>
'[x-cloak]' {
opacity: 0 !important;
visibility: hidden !important;
}
</style>
<!-- START Slick Slider -->
<link rel="stylesheet" type="text/css" href="css/slick.css">
<style>
.slick-list {
overflow: hidden;
padding-left: 40px;
}
.slick-track {
display: flex !important; align-items: flex-end !important;
}
.slick-slide {
height: inherit !important;
outline: none;
}
.slick-slide.slick-active {box-shadow: -20px 20px 30px 0 rgb(0 0 0 / 8%);}
.slick-disabled {
opacity: 0;
pointer-events:none;
}
@media only screen and (max-width: 991px) {
.slick-list {
overflow: visible;
padding-left: 0px;
}
}
</style>
<!-- END Slick Slider -->
<script>
(function() {
var domainsToDecorate = [
'app.acvauctions.com'
],
queryParams = [
'utm_medium',
'utm_source',
'utm_term',
'utm_campaign',
'gclid'
]
// do not edit anything below this line
var links = document.querySelectorAll('a');
// check if links contain domain from the domainsToDecorate array and then decorates
for (var linkIndex = 0; linkIndex < links.length; linkIndex++) {
for (var domainIndex = 0; domainIndex < domainsToDecorate.length; domainIndex++) {
if (links[linkIndex].href.indexOf(domainsToDecorate[domainIndex]) > -1 && links[linkIndex].href.indexOf("#") === -1) {
links[linkIndex].href = decorateUrl(links[linkIndex].href);
}
}
}
// decorates the URL with query params
function decorateUrl(urlToDecorate) {
urlToDecorate = (urlToDecorate.indexOf('?') === -1) ? urlToDecorate + '?' : urlToDecorate + '&';
var collectedQueryParams = [];
for (var queryIndex = 0; queryIndex < queryParams.length; queryIndex++) {
if (getQueryParam(queryParams[queryIndex])) {
collectedQueryParams.push(queryParams[queryIndex] + '=' + getQueryParam(queryParams[queryIndex]))
}
}
return urlToDecorate + collectedQueryParams.join('&');
}
// borrowed from https://stackoverflow.com/questions/831030/
// a function that retrieves the value of a query parameter
function getQueryParam(name) {
if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(window.location.search))
return decodeURIComponent(name[1]);
}
})();
</script>
<meta property="og:site_name" content="ACV Auctions">
<meta property="og:url" content="https://www.acvauctions.com">
</head><body class="body__dark-gradient"><div class="w-embed w-iframe"><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PXN3PFG"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --></div><div id="custom-styles" data-w-id="96646400-4888-24b4-2653-6f9fbccfacf4" class="custom-styles w-embed"><style>
body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
a {color: inherit; text-decoration: none;}
input, textarea {
-webkit-appearance: none; /* webkit browsers */
-moz-appearance: none; /* firefox browser */
appearance: none;
}
.line-clamp {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.overlay {pointer-events: none;}
.w-slider-dot {
width: 10px;
height: 10px;
background-color: rgba(0,0,0,.2);
-webkit-transition: background-color .2s ease-out;
-moz-transition: background-color .2s ease-out;
-o-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
}
.w-slider-dot.w-active {
background-color: #F26522;
}
/*Makes sure that if a heading or blockquote is the first item in a rich text block, the margin top will be 0px so it doesn't throw off the spacing. */
.w-richtext h1:first-child, .w-richtext h2:first-child, .w-richtext h3:first-child, .w-richtext h4:first-child, .w-richtext h5:first-child, .w-richtext h6:first-child, .w-richtext blockquote:first-child {margin-top: 0px;}
.burger-lines {background-color: currentColor;}
/* Light Nav */
.use-light-nav .nav-link { color: #323536; }
.use-light-nav .nav-link:hover { color:black; }
.use-light-nav .nav-link.w--current { color: #d34319; }
.use-light-nav .burger-button.light-button {display: flex;}
.use-light-nav .burger-button.dark-button {display: none;}
.w-nav-button.w--open .burger-button.light-button, .w-nav-button.w--open .burger-button.dark-button { color: white; }
/* Cookie Banner */
.fs-cc-banner_buttons-wrapper { gap: 1rem; }
/* Gradient Button Transitions */
.button::before,
.button--on-color::before,
.button-outline::before {
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 4px;
background: linear-gradient(251.74deg, #121212, #121212, #323536 73.42%, #53565a 97.22%);
transition: opacity 0.2s linear;
z-index: -1; /* We'll come back to this */
opacity: 0;
}
.button:hover::before,
.button--on-color:focus::before,
.button-outline:hover::before {
opacity: 1;
}
.share-links-wrapper { gap: 1rem; }
/* Start Testimonial Slider Styles */
.slick-current .test-slide__overlay {
opacity: 0%;
transition: opacity 300ms ease;
}
.slick-current .play-btn {z-index: 10;}
.blog_anchor-links { overflow: scroll hidden; }
.select-field {
appearance: none;
-webkit-appearance: none;
background-image: url('images/621677ee03da69265045a16c_icon-arrow-down.svg');
background-repeat: no-repeat;
background-size: 12px;
background-position: calc(100% - 8px) center;
}
@media only screen and (max-width: 479px) {
.scroll-img-wrapper {height: calc((100vw - 48px) *.75%); }
}
.list li::marker {
color: #d34319;
}
/* Make sure the lightbox stays on top of everything, including the nav */
.w-lightbox-backdrop { z-index: 999999; }
/* Angled Tab Link */
.tab-link__fill {
clip-path: polygon(10% 1%, 100% 0%, 90% 100%, 0% 100%);
}
/*
@media screen and (max-width:358px){
.cta-bar.less-padding.sticky{
top:137px;
}
}
/*width*/
#myscrollbar::-webkit-scrollbar {
width:5px;
}
/*track*/
#myscrollbar::-webkit-scrollbar-track {
background:rgb(242, 242, 242);
border-width:1px;
border-style:solid;
border-color:rgb(202, 202, 202);
border-radius:40px;
}
/*thumb*/
#myscrollbar::-webkit-scrollbar-thumb {
background:rgb(191, 191, 191);
border-radius:100px;
}
.other-models-list h5 {
margin-bottom: 5px !important;
padding-top: 15px !important;
}
.manufacturer-list-box:hover {
transform: scale(1.025);
transition: transform 200ms ease-in-out;
}
.manufacturer-list-box {
transition: transform 200ms ease-in-out;
}
body.body__dark-gradient {
background-attachment: fixed;
}
@media screen and (max-width:1100px){
.dropdown-toggle-nav{
padding-left: calc(6% + 20px);
padding-right: calc(6% + 20px);
}
.bg-trans{
padding-left: calc(6% + 5px);
padding-right: calc(6% + 5px);
}
.mobile-inner-wrapper{
overflow-y:scroll;
overflow-x:hidden;
}
}
</style></div><div class="nav-container _2"><div class="div-block-5"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e64515e" class="mobile-menu-open"><div data-is-ix2-target="1" class="mobile-lottie" data-w-id="4e1ed591-ef74-ef9e-abf3-33201e64515f" data-animation-type="lottie" data-src="https://assets-global.website-files.com/63d04d4b1b28345af4504ddc/63d04d4b1b2834a6b7504f4a_lf30_editor_idgzw7u7.json" data-loop="0" data-direction="1" data-autoplay="0" data-renderer="svg" data-duration="0" data-ix2-initial-state="0"></div></div><a href="/" aria-current="page" class="brand-wrapper w-nav-brand w--current"><img width="135.5" sizes="(max-width: 991px) 72px, (max-width: 1279px) 10vw, 126px" src="images/63d04d4b1b2834b407504f58_ACVLogoGradient_DarkBKGD.webp" loading="lazy" alt="ACV Auctions logo" srcset="images/63d04d4b1b2834b407504f58_ACVLogoGradient_DarkBKGD-p-500.png 500w, images/63d04d4b1b2834b407504f58_ACVLogoGradient_DarkBKGD-p-800.png 800w, images/63d04d4b1b2834b407504f58_ACVLogoGradient_DarkBKGD-p-1080.png 1080w, images/63d04d4b1b2834b407504f58_ACVLogoGradient_DarkBKGD.webp 4402w" class="brand-img"></a></div><nav role="navigation" class="nav-menu _2 w-nav-menu"><div class="div-block-6"><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e645165" class="dropdown-toggle-nav nav-link w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>For Buyers</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/buy" class="nav-link-list-2 w-dropdown-link">Buyer Features</a><a href="/no-reserve-auctions" class="nav-link-list-2 w-dropdown-link">No Reserve Auction</a><a href="/acv-market-report" class="nav-link-list-2 w-dropdown-link">Market Report</a><div data-hover="true" data-delay="0" class="orange-drop for-vehicle-types w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e645172" class="orange-drop-toogle-2 w-dropdown-toggle"><div class="orange-drop-icon-2 w-icon-dropdown-toggle"></div><div class="text-block-7">Vehicle Types</div></div><nav class="abs-orange-list-2 w-dropdown-list"><div class="warpper"><a href="#" class="nav-link-list-2 goback">< � � Go Back</a><a href="/sports-cars-auction" class="nav-link-list-2 space-sm w-dropdown-link">Sports Cars</a><a href="/luxury-car-auction" class="nav-link-list-2 space-sm w-dropdown-link">Luxury Cars</a><a href="/sedans-auction" class="nav-link-list-2 space-sm w-dropdown-link">Sedans</a><a href="/hatchback-car-auction" class="nav-link-list-2 space-sm w-dropdown-link">Hatchbacks</a><a href="/suv-auction" class="nav-link-list-2 space-sm w-dropdown-link">SUVs</a><a href="/vans-auction" class="nav-link-list-2 space-sm w-dropdown-link">Vans</a><a href="/truck-auction" class="nav-link-list-2 space-sm w-dropdown-link">Trucks</a><a href="/wholesale" class="nav-link-list-2 space-sm w-dropdown-link">Wholesale</a><div class="nav-menu-right _2 _3"><a href="https://app.acvauctions.com/login" class="nav-link-2 right-nav-link _2 w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" class="nav-link-2 right-nav-link tablet__show _3 w-nav-link">Get Started</a></div></div></nav></div><a href="/manufacturers" class="nav-link-list-2 w-dropdown-link">Vehicle Makes</a><a href="/rental-cars" class="nav-link-list-2 w-dropdown-link">Used Rental Cars</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e645190" class="dropdown-toggle-nav nav-link w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>For Sellers</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/sell" class="nav-link-list-2 w-dropdown-link">Seller Features</a><a href="/guaranteed-sale" class="nav-link-list-2 w-dropdown-link">Guaranteed Sale</a><a href="/live-appraisal" class="nav-link-list-2 w-dropdown-link">Live Appraisal</a><a href="/title-hub" class="nav-link-list-2 w-dropdown-link">Title Hub</a><a href="/private-marketplace" class="nav-link-list-2 w-dropdown-link">Private Marketplaces</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="77d2f4dd-ce96-488c-3ba8-b247b51cceef" class="dropdown-toggle-nav nav-link w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Services</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/acv-transportation" class="nav-link-list-2 w-dropdown-link">Transport</a><a href="/capital" class="nav-link-list-2 w-dropdown-link">Finance</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451a1" class="dropdown-toggle-nav nav-link w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Updates</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/blog" class="nav-link-list-2 w-dropdown-link">ACV Blog</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451aa" class="dropdown-toggle-nav nav-link w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Company</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/about" class="nav-link-list-2 w-dropdown-link">About ACV Auctions</a><a href="/contact" class="nav-link-list-2 w-dropdown-link">Contact</a><a href="/careers" class="nav-link-list-2 w-dropdown-link">Career</a><a href="/testimonials" class="nav-link-list-2 w-dropdown-link">Testimonials</a></div></nav></div></div><div class="nav-menu-right _2"><a href="https://app.acvauctions.com/login" class="nav-link-2 right-nav-link _2 nav-link w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" class="nav-link-2 right-nav-link tablet__show _3 w-nav-link">Get Started</a></div></nav><div class="mobile-menu main-mobile-menu"><div class="mobile-inner-wrapper"><div class="mobile-menu mobile-vehicle-types"><div class="vehicle-types-wrapper"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451c6" class="vehicle-back-button"><img src="images/63d04d4b1b28342088504f47_Vector%201.webp" loading="lazy" alt="" class="arrow-left"><div class="text-block-6">Go Back</div></div><div class="vehicle-types-mobile-links"><a href="/sports-cars-auction" class="nav-link-list-2 nopad">Sports Cars</a><a href="/luxury-car-auction" class="nav-link-list-2 nopad">Luxury Cars</a><a href="/sedans-auction" class="nav-link-list-2 nopad">Sedans</a><a href="/hatchback-car-auction" class="nav-link-list-2 nopad">Hatchbacks</a><a href="/suv-auction" class="nav-link-list-2 nopad">SUVs</a><a href="/vans-auction" class="nav-link-list-2 nopad">Vans</a><a href="/truck-auction" class="nav-link-list-2 nopad">Trucks</a><a href="/wholesale" class="nav-link-list-2 nopad">Wholesale</a></div><div class="mobile-menu-buttons-wrap inside-vehicle-types"><div class="nav-menu-right _2 full-width"><a href="https://app.acvauctions.com/login" class="nav-link-2 right-nav-link _2 full-width w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" class="nav-link-2 right-nav-link tablet__show _3 full-width w-nav-link">Get Started</a></div></div></div></div><div class="div-block-4"><div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451e2" class="dropdown-toggle-nav w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>For Buyers</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/buy" class="nav-link-list-2 w-dropdown-link">Buyer Features</a><a href="/no-reserve-auctions" class="nav-link-list-2 w-dropdown-link">No Reserve Auction</a><a href="/acv-market-report" class="nav-link-list-2 w-dropdown-link">Market Report</a><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451ee" class="mobile-vehicle-type-opener"><div class="nav-link-list-2">Vehicle Types</div><div class="arrow-drop-icon _0marg w-icon-dropdown-toggle"></div></div><a href="/rental-cars" class="nav-link-list-2 w-dropdown-link">Used Rental Cars</a><a href="/manufacturers" class="nav-link-list-2 w-dropdown-link">Vehicle Makes</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e6451f5" class="dropdown-toggle-nav w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>For Sellers</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/sell" class="nav-link-list-2 w-dropdown-link">Seller Features</a><a href="/guaranteed-sale" class="nav-link-list-2 w-dropdown-link">Guaranteed Sale</a><a href="/live-appraisal" class="nav-link-list-2 w-dropdown-link">Live Appraisal</a><a href="/title-hub" class="nav-link-list-2 w-dropdown-link">Title Hub</a><a href="/private-marketplace" class="nav-link-list-2 w-dropdown-link">Private Marketplaces</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="eae2b146-1798-dcbf-4185-07eae538c7a4" class="dropdown-toggle-nav w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Services</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/acv-transportation" class="nav-link-list-2 w-dropdown-link">Transport</a><a href="/capital" class="nav-link-list-2 w-dropdown-link">Finance</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e645206" class="dropdown-toggle-nav w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Updates</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/blog" class="nav-link-list-2 w-dropdown-link">ACV Blog</a></div></nav></div><div data-hover="true" data-delay="0" class="nav-drop w-dropdown"><div data-w-id="4e1ed591-ef74-ef9e-abf3-33201e64520f" class="dropdown-toggle-nav w-dropdown-toggle"><div class="arrow-drop-icon w-icon-dropdown-toggle"></div><div>Company</div></div><nav class="nav-drop-list-2 w-dropdown-list"><div class="bg-trans"><a href="/about" class="nav-link-list-2 w-dropdown-link">About ACV Auctions</a><a href="/contact" class="nav-link-list-2 w-dropdown-link">Contact</a><a href="/careers" class="nav-link-list-2 w-dropdown-link">Career</a><a href="/testimonials" class="nav-link-list-2 w-dropdown-link">Testimonials</a></div></nav></div></div><div class="mobile-menu-buttons-wrap"><div class="nav-menu-right _2"><a href="https://app.acvauctions.com/login" class="nav-link-2 right-nav-link _2 w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" class="nav-link-2 right-nav-link tablet__show _3 w-nav-link">Get Started</a></div></div></div></div></div><div class="navrightwhite"><a href="https://app.acvauctions.com/login" class="newnavlink first w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" class="newnavlink w-nav-link">Get Started</a><a href="https://app.acvauctions.com/registration" class="button nav-btn w-button">Get Started</a></div><div class="nav-menu-right formobile"><a href="https://app.acvauctions.com/login" id="mnavlogin" class="nav-link right-nav-link w-nav-link">Login</a><a href="https://app.acvauctions.com/registration" id="mnavcta" class="nav-link right-nav-link tablet__show w-nav-link">Get Started</a><a href="https://app.acvauctions.com/registration" class="button nav-btn w-button">Get Started</a></div></div></div></div></div><div class="page-wrapper"><div class="hero-timer"><div class="hero-timer-background"><div class="hero-timer-bg-crop"><div class="hero-timer-bg"></div><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b463" style="opacity:0" class="hero-timer-slashes"><img src="images/63d0517997cbdf1f63476db3_Slashs.svg" loading="lazy" alt="" class="opacity-20"></div></div><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b465" style="opacity:0" class="hero-hollow-slash"><img src="images/63d0517997cbdf4e04476db4_Hollow%20Slash.svg" loading="lazy" x-ref="hollowArrow" alt=""></div><div class="hero-hollow-slash shift"><img src="images/63d0517997cbdf4e04476db4_Hollow%20Slash.svg" loading="lazy" style="opacity:0" data-w-id="07188921-a9ba-998e-38a4-40e66b95b468" alt=""></div></div><div class="container"><div class="hero-container"><div class="hero-timer-content"><h1 id="w-node-_07188921-a9ba-998e-38a4-40e66b95b46c-77a9482a" data-w-id="07188921-a9ba-998e-38a4-40e66b95b46c" style="opacity:0" class="h1-alt-2 text-color__orange">The Leading Online Car Auction <span class="text-color__white-2">For Dealers</span></h1><div id="w-node-_07188921-a9ba-998e-38a4-40e66b95b470-77a9482a" class="hero_content tablet__hide"><p data-w-id="07188921-a9ba-998e-38a4-40e66b95b471" style="opacity:0" class="hero_copy-5">Don't miss out on the inventory you need.</p><div id="w-node-_07188921-a9ba-998e-38a4-40e66b95b473-77a9482a" data-w-id="07188921-a9ba-998e-38a4-40e66b95b473" style="opacity:0" class="buttons"><a href="https://app.acvauctions.com/registration/information" class="button-4 w-button">Become a Buyer</a><a href="https://www.acvauctions.com/buy" class="button-secondary--on-color-2 w-button">Explore Buyer Features</a></div></div></div><div x-cloak="" x-data="timerCards()" data-w-id="07188921-a9ba-998e-38a4-40e66b95b478" style="-webkit-transform:translate3d(94%, 100%, 0) scale3d(1, 1, 1) rotateX(-15deg) rotateY(26deg) rotateZ(17deg) skew(0, 0);-moz-transform:translate3d(94%, 100%, 0) scale3d(1, 1, 1) rotateX(-15deg) rotateY(26deg) rotateZ(17deg) skew(0, 0);-ms-transform:translate3d(94%, 100%, 0) scale3d(1, 1, 1) rotateX(-15deg) rotateY(26deg) rotateZ(17deg) skew(0, 0);transform:translate3d(94%, 100%, 0) scale3d(1, 1, 1) rotateX(-15deg) rotateY(26deg) rotateZ(17deg) skew(0, 0);opacity:0;transform-style:preserve-3d" class="timer-cards"><div class="timer-card"><div class="timer-card-meta"><div x-show="active === 1" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">53</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">317</div><div class="meta-key">Views</div></div></div><div x-show="active === 2" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">18</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">591</div><div class="meta-key">Views</div></div></div><div x-show="active === 3" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">12</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">225</div><div class="meta-key">Views</div></div></div><div x-show="active === 4" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">35</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">145</div><div class="meta-key">Views</div></div></div><div x-show="active === 5" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">26</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">198</div><div class="meta-key">Views</div></div></div><div x-show="active === 6" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">48</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">175</div><div class="meta-key">Views</div></div></div><div x-show="active === 7" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">19</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">20</div><div class="meta-key">Views</div></div></div><div x-show="active === 8" class="timer-card-info"><div class="meta-cluster"><div class="meta-value">22</div><div class="meta-key">Bids</div></div><div class="meta-cluster"><div class="meta-value">239</div><div class="meta-key">Views</div></div></div></div><div class="timer-card-background"><img src="images/64383c39591f744a3dac1612_lot%20background%2063d0517997cbdf6c7d476dd9_lot-background.webp" loading="lazy" sizes="(max-width: 479px) 100vw, (max-width: 767px) 276px, 448px" srcset="images/64383c39591f744a3dac1612_lot%20background%2063d0517997cbdf6c7d476dd9_lot-background-p-500.webp 500w, images/64383c39591f744a3dac1612_lot%20background%2063d0517997cbdf6c7d476dd9_lot-background-p-800.webp 800w, images/64383c39591f744a3dac1612_lot%20background%2063d0517997cbdf6c7d476dd9_lot-background-p-1080.webp 1080w, images/64383c39591f744a3dac1612_lot%20background%2063d0517997cbdf6c7d476dd9_lot-background.webp 1308w" alt=""></div><div class="timer-card-footer"><a href="https://app.acvauctions.com/registration/information" class="button-4 button-full w-button">BID</a><div class="timer-footer-divider"></div><div class="timer-footer-right"><div class="flex-center"><div class="timer-label">Time Remaining</div><div x-text="time" class="timer"></div></div><div class="vehicle-dot-wrapper"><div x-show="active === 1" class="vehicle-dots"><div class="vehicle-dot dot-green"></div><div class="vehicle-dot dot-blue"></div></div><div x-show="active === 2" class="vehicle-dots"><div class="vehicle-dot dot-green"></div></div><div x-show="active === 3" class="vehicle-dots"><div class="vehicle-dot dot-green"></div><div class="vehicle-dot dot-blue"></div></div><div x-show="active === 4" class="vehicle-dots"><div class="vehicle-dot dot-blue"></div><div class="vehicle-dot dot-yellow"></div></div><div x-show="active === 5" class="vehicle-dots"><div class="vehicle-dot dot-green"></div><div class="vehicle-dot dot-blue"></div></div><div x-show="active === 6" class="vehicle-dots"><div class="vehicle-dot dot-green"></div></div><div x-show="active === 7" class="vehicle-dots"><div class="vehicle-dot dot-blue"></div><div class="vehicle-dot dot-yellow"></div></div><div x-show="active === 8" class="vehicle-dots"><div class="vehicle-dot dot-green"></div></div></div></div></div></div><div class="timer-vehicles"><img class="timer-vehicle" src="images/643833d4a87446f67ecf20cf_Toyota_63d0517997cbdf9598476dde_Toyota.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/643833d4a87446f67ecf20cf_Toyota_63d0517997cbdf9598476dde_Toyota-p-500.webp 500w, images/643833d4a87446f67ecf20cf_Toyota_63d0517997cbdf9598476dde_Toyota-p-800.webp 800w, images/643833d4a87446f67ecf20cf_Toyota_63d0517997cbdf9598476dde_Toyota-p-1080.webp 1080w, images/643833d4a87446f67ecf20cf_Toyota_63d0517997cbdf9598476dde_Toyota.webp 1500w"><img class="timer-vehicle" src="images/6438341435831c3ef0cb68cd_Chevy%20Trruck_63d0517997cbdf0baf476de3_ChevyTruck.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/6438341435831c3ef0cb68cd_Chevy%20Trruck_63d0517997cbdf0baf476de3_ChevyTruck-p-500.webp 500w, images/6438341435831c3ef0cb68cd_Chevy%20Trruck_63d0517997cbdf0baf476de3_ChevyTruck-p-800.webp 800w, images/6438341435831c3ef0cb68cd_Chevy%20Trruck_63d0517997cbdf0baf476de3_ChevyTruck-p-1080.webp 1080w, images/6438341435831c3ef0cb68cd_Chevy%20Trruck_63d0517997cbdf0baf476de3_ChevyTruck.webp 1500w"><img class="timer-vehicle" src="images/64383448772e13376286c959_Porshe_63d0517997cbdf47c5476df8_porsche.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/64383448772e13376286c959_Porshe_63d0517997cbdf47c5476df8_porsche-p-500.webp 500w, images/64383448772e13376286c959_Porshe_63d0517997cbdf47c5476df8_porsche-p-800.webp 800w, images/64383448772e13376286c959_Porshe_63d0517997cbdf47c5476df8_porsche-p-1080.webp 1080w, images/64383448772e13376286c959_Porshe_63d0517997cbdf47c5476df8_porsche.webp 1500w"><img class="timer-vehicle" src="images/643834a605a92b811cfe4b9e_Jeep_63d0517997cbdf6dc2476dfd_jeep.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/643834a605a92b811cfe4b9e_Jeep_63d0517997cbdf6dc2476dfd_jeep-p-500.webp 500w, images/643834a605a92b811cfe4b9e_Jeep_63d0517997cbdf6dc2476dfd_jeep-p-800.webp 800w, images/643834a605a92b811cfe4b9e_Jeep_63d0517997cbdf6dc2476dfd_jeep-p-1080.webp 1080w, images/643834a605a92b811cfe4b9e_Jeep_63d0517997cbdf6dc2476dfd_jeep.webp 1500w"><img class="timer-vehicle" src="images/643834c237972fc1b5dd55a3_Kia_63d0517997cbdfe966476e02_kia.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/643834c237972fc1b5dd55a3_Kia_63d0517997cbdfe966476e02_kia-p-500.webp 500w, images/643834c237972fc1b5dd55a3_Kia_63d0517997cbdfe966476e02_kia-p-800.webp 800w, images/643834c237972fc1b5dd55a3_Kia_63d0517997cbdfe966476e02_kia-p-1080.webp 1080w, images/643834c237972fc1b5dd55a3_Kia_63d0517997cbdfe966476e02_kia.webp 1500w"><img class="timer-vehicle" src="images/643834dff16b301317ee95df_f150_63d0517997cbdf4f21476e0c_f150.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/643834dff16b301317ee95df_f150_63d0517997cbdf4f21476e0c_f150-p-500.webp 500w, images/643834dff16b301317ee95df_f150_63d0517997cbdf4f21476e0c_f150-p-800.webp 800w, images/643834dff16b301317ee95df_f150_63d0517997cbdf4f21476e0c_f150-p-1080.webp 1080w, images/643834dff16b301317ee95df_f150_63d0517997cbdf4f21476e0c_f150.webp 1500w"><img class="timer-vehicle" src="images/643835114be482370ac6f14b_Honda_63d0517997cbdf30f9476e07_honda.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/643835114be482370ac6f14b_Honda_63d0517997cbdf30f9476e07_honda-p-500.webp 500w, images/643835114be482370ac6f14b_Honda_63d0517997cbdf30f9476e07_honda-p-800.webp 800w, images/643835114be482370ac6f14b_Honda_63d0517997cbdf30f9476e07_honda-p-1080.webp 1080w, images/643835114be482370ac6f14b_Honda_63d0517997cbdf30f9476e07_honda.webp 1500w"><img class="timer-vehicle" src="images/6438352c591f746fb0ab7dfa_jaguar_63d0517997cbdf2934476de8_Jaguar-F-PACE.webp" data-vehicle="" alt="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 401.1953125px, 604.15625px" loading="lazy" srcset="images/6438352c591f746fb0ab7dfa_jaguar_63d0517997cbdf2934476de8_Jaguar-F-PACE-p-500.webp 500w, images/6438352c591f746fb0ab7dfa_jaguar_63d0517997cbdf2934476de8_Jaguar-F-PACE-p-800.webp 800w, images/6438352c591f746fb0ab7dfa_jaguar_63d0517997cbdf2934476de8_Jaguar-F-PACE-p-1080.webp 1080w, images/6438352c591f746fb0ab7dfa_jaguar_63d0517997cbdf2934476de8_Jaguar-F-PACE.webp 1679w"></div></div></div><div id="w-node-_07188921-a9ba-998e-38a4-40e66b95b4fd-77a9482a" class="hero-timer-content-mobile"><p class="hero_copy-5">Don't miss out on the inventory you need.</p><div id="w-node-_07188921-a9ba-998e-38a4-40e66b95b500-77a9482a" class="buttons"><a href="https://app.acvauctions.com/registration/information" class="button-4 w-button">Become a Buyer</a><a href="#" class="button-secondary--on-color-2 w-button">Explore Buyer Features</a></div></div></div></div><main class="main bg-white"><div class="section-14"><div class="container"><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b508" style="opacity:0" class="block-headline"><div class="title-slash"></div><h2 class="h1-2 headline-heading">Auction</h2><p class="p-large">The nation's leading wholesale automotive auction marketplace for buyers and sellers.</p></div><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b50e" style="opacity:0" class="text-coulums"><div class="text-column"><h3 class="text-color__orange-web">Buy</h3><p>Source vehicles nationwide confidently with trust and transparency, backed by the best condition report on the market.</p><div class="buttons buttons-left"><a href="/buy" class="button-4 w-button">Become a Buyer</a></div></div><div class="text-column"><h3 class="text-color__orange-web">Sell</h3><p>Access dealers nationwide who are looking for exactly what you're selling with options to maximize profit and reduce turn time.</p><div class="buttons buttons-left"><a href="/sell" class="button-4 w-button">Become a Seller</a></div></div><div class="text-column"><h3 class="text-color__orange-web">Value</h3><p>Get the most up-to-date wholesale pricing in the market, backed by real-time data to help you put your best price forward.</p><div class="buttons buttons-left"><a href="/acv-market-report" class="button-4 w-button">Market Report</a></div></div></div></div><div class="media-scroller"><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b528" class="scroller-container"><img src="images/6438383371f97e10bb383be5_Car%20Lot%20-%2063d0517997cbdf8735476dc4_car-lot.webp" loading="lazy" sizes="100vw" srcset="images/6438383371f97e10bb383be5_Car%20Lot%20-%2063d0517997cbdf8735476dc4_car-lot-p-500.webp 500w, images/6438383371f97e10bb383be5_Car%20Lot%20-%2063d0517997cbdf8735476dc4_car-lot.webp 792w" alt=""><img src="images/63d0517997cbdf4482476dee_phone-view.webp" loading="lazy" sizes="100vw" srcset="images/63d0517997cbdf4482476dee_phone-view-p-500.webp 500w, images/63d0517997cbdf4482476dee_phone-view-p-800.webp 800w, images/63d0517997cbdf4482476dee_phone-view.webp 992w" alt=""><img src="images/6438387fa874466adbcf89df_Vehcile%20Inspector%20-%2063d0517997cbdf8932476dcc_Vehicle%20Inspection.webp" loading="lazy" sizes="100vw" srcset="images/6438387fa874466adbcf89df_Vehcile%20Inspector%20-%2063d0517997cbdf8932476dcc_Vehicle%20Inspection-p-500.webp 500w, images/6438387fa874466adbcf89df_Vehcile%20Inspector%20-%2063d0517997cbdf8932476dcc_Vehicle%20Inspection-p-800.webp 800w, images/6438387fa874466adbcf89df_Vehcile%20Inspector%20-%2063d0517997cbdf8932476dcc_Vehicle%20Inspection.webp 975w" alt=""><img src="images/63d0517997cbdf1765476dd0_acv-screenshot.webp" loading="lazy" sizes="100vw" srcset="images/63d0517997cbdf1765476dd0_acv-screenshot-p-500.webp 500w, images/63d0517997cbdf1765476dd0_acv-screenshot-p-800.webp 800w, images/63d0517997cbdf1765476dd0_acv-screenshot-p-1080.webp 1080w, images/63d0517997cbdf1765476dd0_acv-screenshot.webp 1467w" alt=""><img src="images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop.webp" loading="lazy" sizes="100vw" srcset="images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-500.webp 500w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-800.webp 800w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-1080.webp 1080w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop.webp 1455w" alt=""><img src="images/63d0517997cbdf6105476df2_box.webp" loading="lazy" sizes="100vw" srcset="images/63d0517997cbdf6105476df2_box-p-500.webp 500w, images/63d0517997cbdf6105476df2_box-p-800.webp 800w, images/63d0517997cbdf6105476df2_box-p-1080.webp 1080w, images/63d0517997cbdf6105476df2_box-p-1600.webp 1600w, images/63d0517997cbdf6105476df2_box.webp 1964w" alt=""><img src="images/63d0517997cbdf223a476dad_UI%20Kit%20Image%203.webp" loading="lazy" sizes="100vw" srcset="images/63d0517997cbdf223a476dad_UI%2520Kit%2520Image%25203-p-800.webp 800w, images/63d0517997cbdf223a476dad_UI%2520Kit%2520Image%25203-p-1600.webp 1600w, images/63d0517997cbdf223a476dad_UI%20Kit%20Image%203.webp 1618w" alt="two people smiling."><img src="images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop.webp" loading="lazy" sizes="100vw" srcset="images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-500.webp 500w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-800.webp 800w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop-p-1080.webp 1080w, images/643838a7936be7106cadeab3_ACV%20Using%20Laptop%20-%2063d0517997cbdf8c38476dc7_ACV-Using-Laptop.webp 1455w" alt=""></div></div></div><div class="section-14"><div class="container"><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b533" style="opacity:0" class="block-headline"><div class="title-slash"></div><h2 class="h1-2 headline-heading">Transport</h2><p class="p-large"><strong>Simple, Fast, and Fairly-Priced:</strong> Ship any vehicle, regardless of where you buy it from</p></div></div><div class="split-over"><div class="container"><div class="block-content-wrapper"><div class="block-content"><h3 class="text-color__orange-web">ACV Transportation</h3><p>Reliable, Consistent, and Full-Service: We handle everything from start to finish so that you can focus on buying and selling more cars. We offer competitive and transparent pricing through a nationwide network of over 5,000 active, safe and reliable carriers. Plus use ACV Transportation at check-out to receive exclusive benefits.</p><div class="buttons buttons-left"><a href="/acv-transportation" class="button-4 w-button">Learn More</a></div><p class="mt-64">Interested in becoming a Carrier for ACV Transportation? - <a href="https://www.acvauctions.com/haul" target="_blank"><strong>Click Here</strong></a></p></div></div></div><div class="split-over-background"><img class="split-over-media" src="images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation.webp" alt="" style="opacity:0" sizes="100vw" data-w-id="07188921-a9ba-998e-38a4-40e66b95b54b" loading="lazy" srcset="images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation-p-500.webp 500w, images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation-p-800.webp 800w, images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation-p-1080.webp 1080w, images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation-p-1600.webp 1600w, images/64383cfd7b4785d099dbc77f_Transportation%20-%2063d0517997cbdf3d89476db5_transportation.webp 2169w"></div></div></div><div class="section-14 bg-cream overflow-hidden"><div class="container-1285"><div class="block-headline"><div class="title-slash"></div><h2 class="h1-2 headline-heading">Floor</h2><p class="p-large"><strong>Financing made simple:</strong> Buy your inventory with ACV Capital and know your costs upfront</p></div></div><div class="split-over overflow-visible"><div class="container-1285"><div class="block-content-wrapper"><div class="block-content"><h3 class="text-color__orange-web">ACV Capital</h3><p>Straightforward and flexible financing solutions with no hidden fees. Pay only for the days you need with Fixed Plus Floorplan pricing, with up to 90 days of financing available. With ACV Capital, you’ll enjoy the lowest fees and the best service.</p><div class="buttons buttons-left"><a href="http://www.acvauto.com/acv-capital" class="button-4 w-button">Learn More</a></div></div></div></div><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b561" style="opacity:0" class="split-over-background"><img src="images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad.webp" loading="lazy" sizes="100vw" data-w-id="07188921-a9ba-998e-38a4-40e66b95b562" alt="" srcset="images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad-p-500.webp 500w, images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad-p-800.webp 800w, images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad-p-1080.webp 1080w, images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad-p-1600.webp 1600w, images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad-p-2000.webp 2000w, images/64383d705942c89a779849eb_Capital%20Ipad%20-%2063d0517997cbdf02f9476e18_capital-ipad.webp 2445w" class="parallax-tablet"><img src="images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook.webp" loading="lazy" sizes="100vw" data-w-id="07188921-a9ba-998e-38a4-40e66b95b563" alt="" srcset="images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook-p-500.webp 500w, images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook-p-800.webp 800w, images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook-p-1080.webp 1080w, images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook-p-1600.webp 1600w, images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook-p-2000.webp 2000w, images/64383d8cbe056665fdf81856_Capital%20Macbook%20-%2063d0517997cbdf56f5476e11_capital-macbook.webp 2445w" class="parallax-macbook"></div></div></div><div class="featured"><div class="container-1285"><div class="featured-headline"><h2 data-w-id="07188921-a9ba-998e-38a4-40e66b95b567" style="opacity:0" class="h1-2 headline-heading text-color__white">Ready to Sign Up?</h2></div></div><div class="featured-wrapper"><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b56a" style="opacity:0" class="featured-background tablet__hide"><img src="images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace.webp" loading="lazy" srcset="images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace-p-500.webp 500w, images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace-p-800.webp 800w, images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace-p-1080.webp 1080w, images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace-p-1600.webp 1600w, images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace-p-2000.webp 2000w, images/64383deed51b73c3a7875316_Laptop%20Marketplace%20-%2063d0517997cbdf5146476dbc_Laptop-Marketplace.webp 2847w" sizes="100vw" alt="" class="split-over-media"></div><div class="container-1285"><div data-w-id="07188921-a9ba-998e-38a4-40e66b95b56d" style="opacity:0" class="featured-content"><div class="featured-block-content"><div><h2 class="text-color__orange-web">Higher Profits</h2><p>ACV enables the buyers to <strong>profit $316 more per vehicle</strong> sourced on ACV due to our thorough inspection and data</p></div><div><h2 class="text-color__orange-web">Less Time</h2><p>By using ACV's wholesale solutions, dealers reporting <strong>saving 20 hours per month</strong> on average. That's less time out of the office and more time focusing on your customers.</p></div><div><h2 class="text-color__orange-web">More Cars</h2><p>ACV consumer solutions helps dealer partners buy an average of <strong>15 more vehicles</strong> per month from consumers</p></div><a href="https://app.acvauctions.com/registration/information" class="button-4 width-full w-button">Get Started</a></div></div></div></div><div class="container-1285"><div class="feature-image-mobile"><img src="images/64383e5474e38f2cfb9a8fec_Live%20Auction%20-%20Phone%20-%2063d0517997cbdffeb4476dd5_Live%20Auction%20-%20Phone.webp" loading="lazy" sizes="100vw" srcset="images/64383e5474e38f2cfb9a8fec_Live%20Auction%20-%20Phone%20-%2063d0517997cbdffeb4476dd5_Live%20Auction%20-%20Phone-p-500.webp 500w, images/64383e5474e38f2cfb9a8fec_Live%20Auction%20-%20Phone%20-%2063d0517997cbdffeb4476dd5_Live%20Auction%20-%20Phone.webp 975w" alt=""></div></div></div><div class="section test-slider-section desktop_hide"><div class="test-slider-flex"><div class="test-slider__cta"><h2 class="test-slider-cta__heading">Hear from our buyers</h2><a href="/testimonials" class="button-secondary w-button">View All Dealer Experiences</a></div><div class="test-slider-flex__slider"><div class="w-dyn-list"><div role="list" class="test-slider w-dyn-items"><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23-p-500.jpg 500w, images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23.jpg 600w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV is a great company to work with because of the transparency...from dealing with transport to capital, I would recommend them to anyone.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8"> RJ Budd</div><p class="p-small mb-0">Ontario Auto</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/821435141",
"originalUrl": "https://vimeo.com/821435141",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1661647711-10c314b01826bc4edb02eb48c600ddab1616f7b489f14785bf7b4fb4c434c163-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F821435141%3Fh%3Dfd331f743f%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F821435141&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1661647711-10c314b01826bc4edb02eb48c600ddab1616f7b489f14785bf7b4fb4c434c163-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-500.png 500w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-800.png 800w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-1080.png 1080w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-1600.png 1600w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer.png 1936w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV frees up my time to help assist our staff to put deals together. That's the biggest thing about having a partnership with ACV and our dealership...we create success.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Tyler Zinsmeyer</div><p class="p-small mb-0">Sharon Chevy</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/806821383",
"originalUrl": "https://vimeo.com/806821383",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1629166207-67f37f535e92ba98fec527486e4c143d4878ab71bec096f2d9f12207e5e7b92c-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F806821383%3Fh%3Da8def5325b%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F806821383&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1629166207-67f37f535e92ba98fec527486e4c143d4878ab71bec096f2d9f12207e5e7b92c-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-500.jpg 500w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-800.jpg 800w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-1080.jpg 1080w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-1600.jpg 1600w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM.jpg 2860w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV has become an integral part of our group's success. We're buying and selling hundreds of cars per month.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Bob Tasca</div><p class="p-small mb-0">Tasca Automotive</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/684812326",
"originalUrl": "https://vimeo.com/684812326",
"width": 1280,
"height": 720,
"thumbnailUrl": "https://i.vimeocdn.com/video/1387869353-f7e92691a7469cd7f6cc35f480c5714c384b56e39716c16e804545d41809516c-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F684812326%3Fh%3De2336f60b2%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F684812326&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1387869353-f7e92691a7469cd7f6cc35f480c5714c384b56e39716c16e804545d41809516c-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1280\" height=\"720\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM-p-500.png 500w, images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM-p-800.png 800w, images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM-p-1080.png 1080w, images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM-p-1600.png 1600w, images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM-p-2000.png 2000w, images/643840d4841e7e2dd940d366_Goodart%20-%2063d04d4b1b28344c975052eb_Screen%20Shot%202022-10-11%20at%203.19.58%20PM.png 2359w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">The relationship I have been able to build with ACV and Sunny Day Motors has made it easier to be an independent dealer. I don’t think that without ACV I would have been able to grow this business.
</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Jon Goodart</div><p class="p-small mb-0">Sunny Day Motors</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/758848305",
"originalUrl": "https://vimeo.com/758848305",
"width": 1920,
"height": 1080,
"thumbnailUrl": "http://i.vimeocdn.com/video/1524237083-721808f2aae9d1a3b7da2e4c08dc9540d6bdc09a1161cc4311e88c5f7398bd38-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F758848305%3Fh%3D43e67e15bb%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F758848305&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1524237083-721808f2aae9d1a3b7da2e4c08dc9540d6bdc09a1161cc4311e88c5f7398bd38-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/63d04d4b1b28343d5d5052f5_lexus_wc_smaller.jpg" loading="lazy" alt="" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I guarantee you this. If you try ACV, you will never go back to a brick-and-mortar auction.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Rex Hastings</div><p class="p-small mb-0">Lexus of Wesley Chapel</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/761943937",
"originalUrl": "https://vimeo.com/761943937",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1530220394-828f4bcf445c6ed379db04ced1d09f290934eb2f788c4c982a4dac163883976b-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F761943937%3Fh%3Dcb14d483cd%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F761943937&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1530220394-828f4bcf445c6ed379db04ced1d09f290934eb2f788c4c982a4dac163883976b-d_1280&key=c4e54deccf4d4ec997a64902e9a30300&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM-p-500.png 500w, images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM-p-800.png 800w, images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM-p-1080.png 1080w, images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM-p-1600.png 1600w, images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM-p-2000.png 2000w, images/643840ba08b012dcf49fe622_Mcdonald%20-%2063d04d4b1b28348d635053af_Screenshot%202023-01-20%20at%203.51.43%20PM.png 2686w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV is really good for us. I talk to the local reps daily. When I need a car appraised or an inspection done on it, I can make one call and ACV will be there that day.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Calvin McDonald</div><p class="p-small mb-0">Sam Pack Auto Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/791288180",
"originalUrl": "https://vimeo.com/791288180",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1592144047-d51ea9461da9007f8d302b3c486244eb2b5d43ffec655f7e9d21be360e86997e-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F791288180%3Fh%3D01699f2cd6%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F791288180&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1592144047-d51ea9461da9007f8d302b3c486244eb2b5d43ffec655f7e9d21be360e86997e-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/63d04d4b1b28344d6a5052bd_Joseph%20Barba.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/63d04d4b1b28344d6a5052bd_Joseph%2520Barba-p-500.jpg 500w, images/63d04d4b1b28344d6a5052bd_Joseph%2520Barba-p-800.jpg 800w, images/63d04d4b1b28344d6a5052bd_Joseph%2520Barba-p-1080.jpg 1080w, images/63d04d4b1b28344d6a5052bd_Joseph%2520Barba-p-1600.jpg 1600w, images/63d04d4b1b28344d6a5052bd_Joseph%2520Barba-p-2000.jpg 2000w, images/63d04d4b1b28344d6a5052bd_Joseph%20Barba.jpg 2600w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV is a much easier way of getting inventory.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Joseph Barba</div><p class="p-small mb-0">Wesley Chapel Toyota</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/743211788",
"originalUrl": "https://vimeo.com/743211788",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/filter/overlay?src0=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1495164054-3abf703922db6f1530d342aeaaf1524d925510107d8bd2673d35d06fda0757f7-d_1280x720&src1=https%3A%2F%2Ff.vimeocdn.com%2Fimages_v6%2Fshare%2Fplay_icon_overlay.png",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F743211788%3Fh%3D0df1d42e64%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F743211788&image=https%3A%2F%2Fi.vimeocdn.com%2Ffilter%2Foverlay%3Fsrc0%3Dhttps%253A%252F%252Fi.vimeocdn.com%252Fvideo%252F1495164054-3abf703922db6f1530d342aeaaf1524d925510107d8bd2673d35d06fda0757f7-d_1280x720%26src1%3Dhttps%253A%252F%252Ff.vimeocdn.com%252Fimages_v6%252Fshare%252Fplay_icon_overlay.png&key=c4e54deccf4d4ec997a64902e9a30300&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/640b977b3905f794bce7b88d_Hussien%20Farag.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/640b977b3905f794bce7b88d_Hussien%20Farag-p-500.jpg 500w, images/640b977b3905f794bce7b88d_Hussien%20Farag.jpg 640w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV has changed our business with more technology. It's an easy way of selling cars. That's why I'm still with ACV.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Hussien Farag</div><p class="p-small mb-0">Kuhn Automotive Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/806790763",
"originalUrl": "https://vimeo.com/806790763",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1629108294-fd77bfaf0d80a8e0ce229a23d19883e8ae1c699eeb608c783d18bd35371216ff-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F806790763%3Fh%3D6cdf8d4991%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F806790763&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1629108294-fd77bfaf0d80a8e0ce229a23d19883e8ae1c699eeb608c783d18bd35371216ff-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/63d04d4b1b2834dd95505248_john-preston.jpeg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/63d04d4b1b2834dd95505248_john-preston-p-500.jpeg 500w, images/63d04d4b1b2834dd95505248_john-preston.jpeg 1920w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">We're making more in the wholesale department than we ever have, but also, they've given us guidance so that we can be successful.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">John Preston</div><p class="p-small mb-0">Marin County Ford</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/679317675",
"originalUrl": "https://vimeo.com/679317675",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1376577701-c9de46ba9994b6e1adc0659c989c1f3f08da8930754195273040d8209c44c7f2-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F679317675%3Fh%3D1636d05e7e%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F679317675&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1376577701-c9de46ba9994b6e1adc0659c989c1f3f08da8930754195273040d8209c44c7f2-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/63d04d4b1b283448ce50525d_carlos-gamboa.jpeg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/63d04d4b1b283448ce50525d_carlos-gamboa-p-500.jpeg 500w, images/63d04d4b1b283448ce50525d_carlos-gamboa-p-800.jpeg 800w, images/63d04d4b1b283448ce50525d_carlos-gamboa-p-1600.jpeg 1600w, images/63d04d4b1b283448ce50525d_carlos-gamboa.jpeg 1920w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I like the outreach. ACV makes it very simple. It's just the push of a button and it saves me a lot of time and money.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Carlos Gamboa</div><p class="p-small mb-0">Mi Pueblo La Familia Motors</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/679317472",
"originalUrl": "https://vimeo.com/679317472",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1376578379-75198c5c090021080b10821283178d2d111ad14e0cd5ead0c4a370d765f01a35-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F679317472%3Fh%3D448d6961c8%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F679317472&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1376578379-75198c5c090021080b10821283178d2d111ad14e0cd5ead0c4a370d765f01a35-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/63d04d4b1b2834331650523c_rd-proud.jpeg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/63d04d4b1b2834331650523c_rd-proud-p-800.jpeg 800w, images/63d04d4b1b2834331650523c_rd-proud-p-1600.jpeg 1600w, images/63d04d4b1b2834331650523c_rd-proud.jpeg 1920w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I trust ACV Auctions a lot more than traditional auctions, and I've been doing this a long time.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">RD Proud</div><p class="p-small mb-0">LTD Auto</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/679318042",
"originalUrl": "https://vimeo.com/679318042",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1376570646-482c1eab6986a7f29427588ce290f6e9431ba8d8a9c88d4353e02d18a06f0a03-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F679318042%3Fh%3Debcc4de55d%26app_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F679318042&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1376570646-482c1eab6986a7f29427588ce290f6e9431ba8d8a9c88d4353e02d18a06f0a03-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202-p-500.png 500w, images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202-p-800.png 800w, images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202-p-1080.png 1080w, images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202-p-1600.png 1600w, images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202-p-2000.png 2000w, images/64660d7d2da8d48c5117b274_Screenshot%202023-05-17%20at%203.04.32%20PM%202.png 2728w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I definitely think ACV is a forward looking company. And I wouldn't be surprised if one day they took over all dealer tools for appraisal and everything else.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Peter Ciambriello</div><p class="p-small mb-0">Matthews Nissan</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/827757445?share=copy",
"originalUrl": "https://vimeo.com/827757445?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "http://i.vimeocdn.com/video/1671294651-7cd769cf160fa911e4c4a1a544933a079086d8aa7ab44472af24563c893e7653-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F827757445%3Fh%3D202c79eb35%26app_id%3D122963&dntp=1&display_name=Vimeo&url=http%3A%2F%2Fvimeo.com%2F827757445&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1671294651-7cd769cf160fa911e4c4a1a544933a079086d8aa7ab44472af24563c893e7653-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/6470e16fdac06617907a4165_crevbmw.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/6470e16fdac06617907a4165_crevbmw-p-500.jpg 500w, images/6470e16fdac06617907a4165_crevbmw-p-800.jpg 800w, images/6470e16fdac06617907a4165_crevbmw.jpg 1000w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">Live appraisals help us get top dollar for the customer and helps us to know that when we take in a car, we can sell it for that amount. It takes the guesswork and uneasiness out of the trade process.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Megan Quezada</div><p class="p-small mb-0">Crevier BMW</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/841283555",
"originalUrl": "https://vimeo.com/841283555",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1691656916-5bd46a163da5ae08fe6f4053541821f116bc4e7ab03078059bc266dcfa5d5e9e-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F841283555%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F841283555&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1691656916-5bd46a163da5ae08fe6f4053541821f116bc4e7ab03078059bc266dcfa5d5e9e-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64ac338e30ea81d8af6842dd_AlanBrown.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64ac338e30ea81d8af6842dd_AlanBrown-p-500.png 500w, images/64ac338e30ea81d8af6842dd_AlanBrown-p-800.png 800w, images/64ac338e30ea81d8af6842dd_AlanBrown.png 1000w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">By using ACV, I have seen a $1725 per vehicle increase over my local auction.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Alan Brown</div><p class="p-small mb-0">Sam Pack's Five Star Chevrolet</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/840568080",
"originalUrl": "https://vimeo.com/840568080",
"width": 1920,
"height": 1013,
"thumbnailUrl": "https://i.vimeocdn.com/video/1690619246-1756c6017c292859c4563d7a808cd8879e94d945b2b72bc06189a17511f7fbd0-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F840568080%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F840568080&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1690619246-1756c6017c292859c4563d7a808cd8879e94d945b2b72bc06189a17511f7fbd0-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1013\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b6fbe0537b0db85ce334df_Bridgeland%20Auto%20Brokers%20-%20tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b6fbe0537b0db85ce334df_Bridgeland%20Auto%20Brokers%20-%20tiny-p-500.png 500w, images/64b6fbe0537b0db85ce334df_Bridgeland%20Auto%20Brokers%20-%20tiny-p-800.png 800w, images/64b6fbe0537b0db85ce334df_Bridgeland%20Auto%20Brokers%20-%20tiny-p-1080.png 1080w, images/64b6fbe0537b0db85ce334df_Bridgeland%20Auto%20Brokers%20-%20tiny.png 1574w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">Once you get in there and you get comfortable with the technology, I don't see how you can miss.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Rob Seniecle</div><p class="p-small mb-0">Bridgeland Auto Brokers </p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/791314586",
"originalUrl": "https://vimeo.com/791314586",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1592197514-1d68e15cc67acdb1671691e3a19e6d336a46fede6eb074d2779eb0bbf0f3ae07-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F791314586%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F791314586&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1592197514-1d68e15cc67acdb1671691e3a19e6d336a46fede6eb074d2779eb0bbf0f3ae07-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny-p-500.png 500w, images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny-p-800.png 800w, images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny-p-1080.png 1080w, images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny-p-1600.png 1600w, images/64b6fd3236b756d139b9f88d_Cosmo%20Motors%20-%20tiny.png 1888w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACVs definitely a teammate for me.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Cosmo Kogan</div><p class="p-small mb-0">Cosmo Motors</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/830363720?share=copy",
"originalUrl": "https://vimeo.com/830363720?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1675134460-8b4a070e60797e3a32ed1ba63e69a71e93337656f2c68e8b9ee97acbdddd910d-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F830363720%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F830363720&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1675134460-8b4a070e60797e3a32ed1ba63e69a71e93337656f2c68e8b9ee97acbdddd910d-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b6fd7c70f75d16973ad4e7_Carmart%20OC%20-%20tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b6fd7c70f75d16973ad4e7_Carmart%20OC%20-%20tiny-p-500.png 500w, images/64b6fd7c70f75d16973ad4e7_Carmart%20OC%20-%20tiny-p-800.png 800w, images/64b6fd7c70f75d16973ad4e7_Carmart%20OC%20-%20tiny-p-1080.png 1080w, images/64b6fd7c70f75d16973ad4e7_Carmart%20OC%20-%20tiny.png 1690w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV makes me a better dealer and gives me more confidence of buying and selling</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Jamie Danishment</div><p class="p-small mb-0">Carmart OC</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/830363745?share=copy",
"originalUrl": "https://vimeo.com/830363745?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1675134507-29a0aa229da510b49affedfe462a407d0eb44549dcbf1660ed60ba35cffbcf8c-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F830363745%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F830363745&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1675134507-29a0aa229da510b49affedfe462a407d0eb44549dcbf1660ed60ba35cffbcf8c-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b6ff44f3b22e830de011bf_Upstate%20Auto%20Group%20-%20Brian%20Enos%20-%20Tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b6ff44f3b22e830de011bf_Upstate%20Auto%20Group%20-%20Brian%20Enos%20-%20Tiny-p-500.png 500w, images/64b6ff44f3b22e830de011bf_Upstate%20Auto%20Group%20-%20Brian%20Enos%20-%20Tiny-p-800.png 800w, images/64b6ff44f3b22e830de011bf_Upstate%20Auto%20Group%20-%20Brian%20Enos%20-%20Tiny-p-1080.png 1080w, images/64b6ff44f3b22e830de011bf_Upstate%20Auto%20Group%20-%20Brian%20Enos%20-%20Tiny.png 1676w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I believe ACV is a partnership with me</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Brian Enos</div><p class="p-small mb-0">Upstate Auto Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/830363670?share=copy",
"originalUrl": "https://vimeo.com/830363670?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1675134343-b9942d3ed1abf7741797dccf17c133e538bfb94e1e2be226b0273f90ec782e88-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F830363670%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F830363670&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1675134343-b9942d3ed1abf7741797dccf17c133e538bfb94e1e2be226b0273f90ec782e88-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b700070a4a8161cf0fda80_Basil%20Family%20Dealerships%20-%20tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b700070a4a8161cf0fda80_Basil%20Family%20Dealerships%20-%20tiny-p-500.png 500w, images/64b700070a4a8161cf0fda80_Basil%20Family%20Dealerships%20-%20tiny-p-800.png 800w, images/64b700070a4a8161cf0fda80_Basil%20Family%20Dealerships%20-%20tiny-p-1080.png 1080w, images/64b700070a4a8161cf0fda80_Basil%20Family%20Dealerships%20-%20tiny.png 1662w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV makes me a better dealer and gives me more confidence of buying and selling</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Joe Basil</div><p class="p-small mb-0">Basil Family Dealerships</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/830363764?share=copy",
"originalUrl": "https://vimeo.com/830363764?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1675134520-52aaa52be71cf56a72b0b599d88b746139912d165a557c80e4ff28f9af3dd363-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F830363764%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F830363764&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1675134520-52aaa52be71cf56a72b0b599d88b746139912d165a557c80e4ff28f9af3dd363-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b70060d745c3c018f35b5c_Upstate%20Auto%20Group%20-%20Amy%20Bork%20-%20Tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b70060d745c3c018f35b5c_Upstate%20Auto%20Group%20-%20Amy%20Bork%20-%20Tiny-p-500.png 500w, images/64b70060d745c3c018f35b5c_Upstate%20Auto%20Group%20-%20Amy%20Bork%20-%20Tiny-p-800.png 800w, images/64b70060d745c3c018f35b5c_Upstate%20Auto%20Group%20-%20Amy%20Bork%20-%20Tiny-p-1080.png 1080w, images/64b70060d745c3c018f35b5c_Upstate%20Auto%20Group%20-%20Amy%20Bork%20-%20Tiny.png 1714w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV really gives us a leg up over our competition.</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Amy Bork</div><p class="p-small mb-0">Upstate Auto Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/830363652?share=copy",
"originalUrl": "https://vimeo.com/830363652?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1675134547-62e4dc162546bb924f0ae1f26637b0f9bc59b0cb9c079d0b590f59e7e1f0f2de-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F830363652%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F830363652&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1675134547-62e4dc162546bb924f0ae1f26637b0f9bc59b0cb9c079d0b590f59e7e1f0f2de-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b84e0a1a0c8382ea3320f2_Tony%20Lucas%20-%20tiny.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b84e0a1a0c8382ea3320f2_Tony%20Lucas%20-%20tiny-p-500.png 500w, images/64b84e0a1a0c8382ea3320f2_Tony%20Lucas%20-%20tiny-p-800.png 800w, images/64b84e0a1a0c8382ea3320f2_Tony%20Lucas%20-%20tiny-p-1080.png 1080w, images/64b84e0a1a0c8382ea3320f2_Tony%20Lucas%20-%20tiny.png 1364w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">I really appreciate the partnership. ACV is a great partner of Casa Auto Group
</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Tony Lucas</div><p class="p-small mb-0">Casa Auto Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/825995289?share=copy",
"originalUrl": "https://vimeo.com/825995289?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "https://i.vimeocdn.com/video/1668652518-3b665e5627bb92b6878678472f0a11b3e70fe1d938642292122d2a5d1eba7b67-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F825995289%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F825995289&image=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1668652518-3b665e5627bb92b6878678472f0a11b3e70fe1d938642292122d2a5d1eba7b67-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div><div role="listitem" class="test-slide w-dyn-item"><div class="test-slide__inner"><div class="test-slide__img-wrap"><img src="images/64b84f839ef2c45358237d1b_sam%20darc%20-%20ting.png" loading="lazy" alt="" sizes="(max-width: 767px) 100vw, (max-width: 991px) 332px, 100vw" srcset="images/64b84f839ef2c45358237d1b_sam%20darc%20-%20ting-p-500.png 500w, images/64b84f839ef2c45358237d1b_sam%20darc%20-%20ting-p-800.png 800w, images/64b84f839ef2c45358237d1b_sam%20darc%20-%20ting-p-1080.png 1080w, images/64b84f839ef2c45358237d1b_sam%20darc%20-%20ting.png 1306w" class="image-cover"></div><div class="test-slide__caption"><div class="illo__quotation w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4151 24.5312L0.000976562 24.5311L0.000977823 10.117H0.00699837L0.0201934 9.90591C0.166015 7.16352 1.0974 4.72029 3.16336 2.80768C4.99413 1.11426 7.20875 0.325885 9.65479 0.0963338C10.0965 0.0546602 10.5409 0.0435022 10.9853 0.0323443L10.9853 0.0323439C11.2432 0.0258686 11.501 0.0193931 11.7584 0.00695751C11.9084 -0.00297023 12.059 -0.00297021 12.209 0.00695755C12.2006 1.74083 12.2015 4.37033 12.209 6.10514H11.8092C8.39799 6.10514 7.42077 8.36734 7.4607 10.117L14.4151 10.117L14.4151 24.5312ZM32.9161 24.5312L18.502 24.5311L18.502 10.117H18.508L18.5212 9.90591C18.667 7.16352 19.5984 4.72029 21.6643 2.80768C23.4951 1.11426 25.7097 0.325885 28.1558 0.0963338C28.5975 0.0546602 29.0419 0.0435022 29.4863 0.0323443C29.7442 0.0258688 30.002 0.0193934 30.2594 0.00695751C30.4094 -0.00297023 30.56 -0.00297021 30.71 0.00695755C30.7015 1.74083 30.7025 4.37033 30.71 6.10514H30.3102C26.899 6.10514 25.9217 8.36734 25.9617 10.117L32.9161 10.117V24.5312Z" fill="url(#paint0_linear_2294_26306)"></path>
<defs>
<linearGradient id="paint0_linear_2294_26306" x1="26.7857" y1="-0.349279" x2="-4.7264" y2="9.68484" gradientUnits="userSpaceOnUse">
<stop stop-color="#C61521"></stop>
<stop offset="0.619792" stop-color="#D34319"></stop>
<stop offset="1" stop-color="#F26522"></stop>
</linearGradient>
</defs>
</svg></div><p class="mb-32">ACV help us deliver an extraordinary customer experience by reducing our aged inventory</p><div class="test-slide__author-wrap"><div><div class="overline text-color__gray-03 mb-8">Sam D’arc</div><p class="p-small mb-0">Zeigler Automotive Group</p></div><a href="#" class="play-btn sm-bk-play w-inline-block w-lightbox"><img src="images/63d04d4b1b2834287f504e67_play-icon__red-oj.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play hover-icon"><img src="images/63d04d4b1b283423c3504e94_play-icon__dark.svg" loading="lazy" alt="play button icon" class="play-btn__icon sm-bk-play static-icon"><script type="application/json" class="w-json">{
"items": [
{
"url": "https://vimeo.com/826007296?share=copy",
"originalUrl": "https://vimeo.com/826007296?share=copy",
"width": 1920,
"height": 1080,
"thumbnailUrl": "http://i.vimeocdn.com/video/1668667632-7910feb73f084693eb2341a139220825631a8ca0b88e38aabf573459b314bcbd-d_1280",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F826007296%3Fapp_id%3D122963&dntp=1&display_name=Vimeo&url=https%3A%2F%2Fvimeo.com%2F826007296&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1668667632-7910feb73f084693eb2341a139220825631a8ca0b88e38aabf573459b314bcbd-d_1280&key=96f1f04c5f4143bcb0f2e68c87d65feb&type=text%2Fhtml&schema=vimeo\" width=\"1920\" height=\"1080\" scrolling=\"no\" title=\"Vimeo embed\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script></a></div></div></div><div class="test-slide__overlay"></div></div></div></div></div></div><div class="container"><div class="slider-buttons"><div class="test-prev"><div class="slider-btn__icon w-embed"><svg width="100%" height="auto" viewBox="0 0 18 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 30L2 16L16 2" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div class="test-next"><div class="slider-btn__icon w-embed"><svg width="100%" height="auto" viewBox="0 0 18 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2L16 16L2 30" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div></div></div></div><div class="section-14 test-slider-section tablet__hide"><div class="container-1285 testimonial-grid"><h2 class="h2-alt">Hear from our dealers</h2><div class="w-dyn-list"><div role="list" class="testimonial-cta_list w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/testimonials/rj-budd" class="height-full w-inline-block"><div class="testimonial-cta-wrapper"><div class="testiimonial-cta__img-ratio"><img src="images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23.jpg" loading="lazy" alt="" sizes="(max-width: 991px) 100vw, (max-width: 1279px) 27vw, (max-width: 1439px) 28vw, 29vw" srcset="images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23-p-500.jpg 500w, images/6449dfd84c8132288dd7332b_Updated%20-%204.26.23.jpg 600w" class="image-cover ratio-t-10"></div><div class="testimonial-cta-inner"><div class="quote-circle w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2204 24.3867L0.118652 24.3867V10.2849H0.124251L0.137153 10.0785C0.279815 7.3955 1.19102 5.00522 3.21222 3.13404C5.00332 1.47731 7.16995 0.70602 9.563 0.481443C9.99518 0.440672 10.4299 0.429756 10.8647 0.41884L10.8647 0.41884C11.117 0.412506 11.3693 0.406171 11.621 0.394005C11.7678 0.384292 11.9151 0.384292 12.0619 0.394005C12.0536 2.09031 12.0545 4.66283 12.0619 6.36005H11.6707C8.33351 6.36005 7.37742 8.57314 7.41644 10.2849L14.2204 10.2849L14.2204 24.3867ZM32.3207 24.3867L18.2189 24.3867L18.219 10.2849H18.2245L18.2374 10.0785C18.3801 7.3955 19.2913 5.00522 21.3125 3.13404C23.1036 1.47731 25.2702 0.70602 27.6633 0.481443C28.0955 0.440672 28.5302 0.429756 28.965 0.41884C29.2173 0.412506 29.4695 0.406172 29.7213 0.394005C29.8681 0.384292 30.0154 0.384292 30.1622 0.394005C30.1539 2.09031 30.1548 4.66283 30.1622 6.36005H29.771C26.4338 6.36005 25.4777 8.57314 25.5167 10.2849L32.3207 10.2849V24.3867Z" fill="currentColor"></path>
</svg></div><p class="mb-40">ACV is a great company to work with because of the transparency...from dealing with transport to capital, I would recommend them to anyone.</p><div class="profile-wrap"><div><p class="overline mb-8"> RJ Budd</p><p class="p-small mb-0">Ontario Auto</p></div><div class="play-btn seller-play"><div class="flex-horizontal w-embed"><svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.432617 0.822019C0.432617 0.201036 1.13611 -0.158668 1.63953 0.204912L11.5909 7.39201C12.0116 7.69586 12.0116 8.32238 11.5909 8.62623L1.63953 15.8133C1.13611 16.1769 0.432617 15.8172 0.432617 15.1962L0.432617 0.822019Z" fill="currentColor"></path>
</svg></div></div></div></div></div></a></div><div role="listitem" class="w-dyn-item"><a href="/testimonials/tyler-zinsmeyer" class="height-full w-inline-block"><div class="testimonial-cta-wrapper"><div class="testiimonial-cta__img-ratio"><img src="images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer.png" loading="lazy" alt="" sizes="(max-width: 991px) 100vw, (max-width: 1279px) 27vw, (max-width: 1439px) 28vw, 29vw" srcset="images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-500.png 500w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-800.png 800w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-1080.png 1080w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer-p-1600.png 1600w, images/640b94167c91e05e35b64f1d_Tyler%20Zinsmeyer.png 1936w" class="image-cover ratio-t-10"></div><div class="testimonial-cta-inner"><div class="quote-circle w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2204 24.3867L0.118652 24.3867V10.2849H0.124251L0.137153 10.0785C0.279815 7.3955 1.19102 5.00522 3.21222 3.13404C5.00332 1.47731 7.16995 0.70602 9.563 0.481443C9.99518 0.440672 10.4299 0.429756 10.8647 0.41884L10.8647 0.41884C11.117 0.412506 11.3693 0.406171 11.621 0.394005C11.7678 0.384292 11.9151 0.384292 12.0619 0.394005C12.0536 2.09031 12.0545 4.66283 12.0619 6.36005H11.6707C8.33351 6.36005 7.37742 8.57314 7.41644 10.2849L14.2204 10.2849L14.2204 24.3867ZM32.3207 24.3867L18.2189 24.3867L18.219 10.2849H18.2245L18.2374 10.0785C18.3801 7.3955 19.2913 5.00522 21.3125 3.13404C23.1036 1.47731 25.2702 0.70602 27.6633 0.481443C28.0955 0.440672 28.5302 0.429756 28.965 0.41884C29.2173 0.412506 29.4695 0.406172 29.7213 0.394005C29.8681 0.384292 30.0154 0.384292 30.1622 0.394005C30.1539 2.09031 30.1548 4.66283 30.1622 6.36005H29.771C26.4338 6.36005 25.4777 8.57314 25.5167 10.2849L32.3207 10.2849V24.3867Z" fill="currentColor"></path>
</svg></div><p class="mb-40">ACV frees up my time to help assist our staff to put deals together. That's the biggest thing about having a partnership with ACV and our dealership...we create success.</p><div class="profile-wrap"><div><p class="overline mb-8">Tyler Zinsmeyer</p><p class="p-small mb-0">Sharon Chevy</p></div><div class="play-btn seller-play"><div class="flex-horizontal w-embed"><svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.432617 0.822019C0.432617 0.201036 1.13611 -0.158668 1.63953 0.204912L11.5909 7.39201C12.0116 7.69586 12.0116 8.32238 11.5909 8.62623L1.63953 15.8133C1.13611 16.1769 0.432617 15.8172 0.432617 15.1962L0.432617 0.822019Z" fill="currentColor"></path>
</svg></div></div></div></div></div></a></div><div role="listitem" class="w-dyn-item"><a href="/testimonials/bob-tasca" class="height-full w-inline-block"><div class="testimonial-cta-wrapper"><div class="testiimonial-cta__img-ratio"><img src="images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM.jpg" loading="lazy" alt="" sizes="(max-width: 991px) 100vw, (max-width: 1279px) 27vw, (max-width: 1439px) 28vw, 29vw" srcset="images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-500.jpg 500w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-800.jpg 800w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-1080.jpg 1080w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM-p-1600.jpg 1600w, images/643840867b4785ba73dbf6ae_Tasca%20-%2063d04d4b1b28341a5b50524c_Screen%20Shot%202022-03-04%20at%204.48.33%20PM.jpg 2860w" class="image-cover ratio-t-10"></div><div class="testimonial-cta-inner"><div class="quote-circle w-embed"><svg width="33" height="25" viewBox="0 0 33 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2204 24.3867L0.118652 24.3867V10.2849H0.124251L0.137153 10.0785C0.279815 7.3955 1.19102 5.00522 3.21222 3.13404C5.00332 1.47731 7.16995 0.70602 9.563 0.481443C9.99518 0.440672 10.4299 0.429756 10.8647 0.41884L10.8647 0.41884C11.117 0.412506 11.3693 0.406171 11.621 0.394005C11.7678 0.384292 11.9151 0.384292 12.0619 0.394005C12.0536 2.09031 12.0545 4.66283 12.0619 6.36005H11.6707C8.33351 6.36005 7.37742 8.57314 7.41644 10.2849L14.2204 10.2849L14.2204 24.3867ZM32.3207 24.3867L18.2189 24.3867L18.219 10.2849H18.2245L18.2374 10.0785C18.3801 7.3955 19.2913 5.00522 21.3125 3.13404C23.1036 1.47731 25.2702 0.70602 27.6633 0.481443C28.0955 0.440672 28.5302 0.429756 28.965 0.41884C29.2173 0.412506 29.4695 0.406172 29.7213 0.394005C29.8681 0.384292 30.0154 0.384292 30.1622 0.394005C30.1539 2.09031 30.1548 4.66283 30.1622 6.36005H29.771C26.4338 6.36005 25.4777 8.57314 25.5167 10.2849L32.3207 10.2849V24.3867Z" fill="currentColor"></path>
</svg></div><p class="mb-40">ACV has become an integral part of our group's success. We're buying and selling hundreds of cars per month.</p><div class="profile-wrap"><div><p class="overline mb-8">Bob Tasca</p><p class="p-small mb-0">Tasca Automotive</p></div><div class="play-btn seller-play"><div class="flex-horizontal w-embed"><svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.432617 0.822019C0.432617 0.201036 1.13611 -0.158668 1.63953 0.204912L11.5909 7.39201C12.0116 7.69586 12.0116 8.32238 11.5909 8.62623L1.63953 15.8133C1.13611 16.1769 0.432617 15.8172 0.432617 15.1962L0.432617 0.822019Z" fill="currentColor"></path>
</svg></div></div></div></div></div></a></div></div></div><div class="flex-center"><a href="/testimonials" class="button-secondary-2 w-button">View All Dealer Experiences</a></div><div class="divider"></div></div></div><div class="section"><div class="container _75"><div class="center-content"><h2 class="heading-26">WHAT IS ACV AUCTIONS?</h2><img src="images/64bd490431c428ba17f3e87d_div.title-slash.svg" loading="lazy" alt="" class="slash-ab"><p class="p center">ACV Auctions is the leading online car auction for dealers. If you have a dealer’s license, you can join ACV to source <a href="https://www.acvauctions.com/clean-title-auctions" target="_blank"><strong><em>clean title used cars</em></strong></a> or wholesale inventory, like <a href="https://www.acvauctions.com/suv-auction" target="_blank"><strong><em>SUVs</em></strong></a>, <a href="https://www.acvauctions.com/truck-auction" target="_blank"><strong><em>pickup trucks</em></strong></a>, <a href="https://www.acvauctions.com/sedans-auction" target="_blank"><strong><em>sedans</em></strong></a>, <a href="https://www.acvauctions.com/hatchback-car-auction" target="_blank"><strong><em>hatchbacks</em></strong></a>, <a href="https://www.acvauctions.com/luxury-car-auction" target="_blank"><strong><em>luxury cars</em></strong></a>, and more. ACV’s used car auctions are 100% online and run daily, so you can find used car inventory from your phone or desk without having to travel to a physical auto auction.<br><br>ACV has vehicle inspectors all over the nation who inspect <a href="https://www.acvauctions.com/wholesale" target="_blank"><strong><em>wholesale</em></strong></a>, off-lease, and retail inventory directly on the lot. The inspectors conduct a thorough vehicle inspection so you can bid with confidence. The vehicle inspection includes interior and exterior photos of the vehicle to show the tires, engine, odometer; high-definition engine sounds; OBDII scan; Paint Meter: Undercarriage, Engine Sound, and more.<br><br>ACV also has other products that can make your life as a dealer easier including: Transportation, Flooring, Inventory Management and Vehicle Appraisal tools.</p><div class="bold-orange">Register today to start bidding and winning used car auctions.</div><a href="https://app.acvauctions.com/registration" target="_blank" class="button-4 w-button">Register Today</a></div></div></div><section class="cta-bar"><div class="container-1285 text-align-center slide-up"><p class="overline slide-1">Get Started</p><h2 class="cta-bar_heading-2 slide-2">Access to Our Online Vehicle Inventory is a Click Away</h2><div class="cta-bar_button-wrap"><a href="https://app.acvauctions.com/registration/information" class="button--on-color-2 slide-3 w-button">Become a Buyer</a><div class="button-spacer"></div><a href="/buy" class="button-secondary--on-color-2 slide-4 w-button">Explore Buyer Features</a></div></div></section></main><div class="footer louisiana"><div class="container"><a href="/" aria-current="page" class="footer-logo_wrap w-inline-block w--current"><img src="images/63d04d4b1b283466e8504e27_ACV%20_%20logo%20color.svg" loading="lazy" alt="ACV Auctions logo" class="mobile__hide"><img src="images/63d04d4b1b2834ab39504e2b_Logo.svg" loading="lazy" alt="ACV Auctions logo" class="mobile__show"></a><div class="footer-top"><div class="footer-content_wrap"><div class="footer-title">Auctions</div><a href="https://app.acvauctions.com/registration" class="footer_link">Get Started</a><a href="https://app.acvauctions.com/login" class="footer_link">Login</a><a href="/contact" class="footer_link">Contact</a><a href="/pricing" class="footer_link">Pricing</a><a href="/inventory-near-you" class="footer_link">Inventory Near You</a></div><div class="footer-content_wrap"><div class="footer-title">Explore</div><a href="/blog" class="footer_link">Updates</a><a href="/testimonials" class="footer_link">Testimonials</a><a href="/category/press" class="footer_link">Press</a></div><div class="footer-content_wrap"><div class="footer-title">Company</div><a href="/" aria-current="page" class="footer_link w--current">Home</a><a href="/about" class="footer_link">About</a><a href="/careers" class="footer_link">Careers</a><a href="https://investors.acvauto.com" target="_blank" class="footer_link">Investors</a></div><div class="footer-content_wrap"><div class="footer-title">Resources</div><a href="/legal/terms-of-service" class="footer_link">Legal</a><a href="/legal/arbitration" class="footer_link">Arbitration</a><a href="/dealer-forms" class="footer_link">Dealer Forms</a><a href="/support" class="footer_link">Support</a></div><div id="w-node-_7b234055-ae3a-61fa-5a78-ad14593befea-593befba" class="footer-link_wrap"><div class="footer_button-wrap"><a data-w-id="e51b027a-9fd2-f175-a91d-ff913bd5e48f" href="/buy" class="button-arrow footer_button-arrow w-inline-block"><div class="standard-link text-color__white">For Buyers</div><div class="button-arrow-svg"><div class="button-arrow-line"><div class="line-overlay"></div></div><div class="arrowhead w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.20701 8.7781C8.59801 8.38757 8.59801 7.75441 8.20701 7.36388L1.84299 0.999924C1.45299 0.6094 0.818992 0.6094 0.428992 0.999924C0.0379922 1.39045 0.0379922 2.02361 0.428992 2.41414L6.08601 8.07099L0.428992 13.7279C0.0379922 14.1184 0.0379922 14.7515 0.428992 15.1421C0.818992 15.5326 1.45299 15.5326 1.84299 15.1421L8.20701 8.7781Z" fill="currentColor"></path>
</svg></div></div></a><a data-w-id="fb4785cb-185e-9f81-a06e-e2ed12fd63ad" href="/sell" class="button-arrow footer_button-arrow w-inline-block"><div class="standard-link text-color__white">For Sellers</div><div class="button-arrow-svg"><div class="button-arrow-line"><div class="line-overlay"></div></div><div class="arrowhead w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.20701 8.7781C8.59801 8.38757 8.59801 7.75441 8.20701 7.36388L1.84299 0.999924C1.45299 0.6094 0.818992 0.6094 0.428992 0.999924C0.0379922 1.39045 0.0379922 2.02361 0.428992 2.41414L6.08601 8.07099L0.428992 13.7279C0.0379922 14.1184 0.0379922 14.7515 0.428992 15.1421C0.818992 15.5326 1.45299 15.5326 1.84299 15.1421L8.20701 8.7781Z" fill="currentColor"></path>
</svg></div></div></a></div><div class="social-link_wrap tablet__hide"><a aria-label="facebook" rel="noreferrer" href="https://www.facebook.com/venkykumar.5602/" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8086 12.875L16.3008 9.64062H13.1719V7.53125C13.1719 6.61719 13.5938 5.77344 15 5.77344H16.4414V2.99609C16.4414 2.99609 15.1406 2.75 13.9102 2.75C11.3438 2.75 9.65625 4.33203 9.65625 7.14453V9.64062H6.77344V12.875H9.65625V20.75H13.1719V12.875H15.8086Z" fill="currentColor"></path>
</svg></div></a><a aria-label="LinkedIn" rel="noreferrer" href="https://www.linkedin.com/in/venkykumar0006/" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.51562 18.5V7.98828H4.24609V18.5H7.51562ZM5.86328 6.58203C6.91797 6.58203 7.76172 5.70312 7.76172 4.64844C7.76172 3.62891 6.91797 2.78516 5.86328 2.78516C4.84375 2.78516 4 3.62891 4 4.64844C4 5.70312 4.84375 6.58203 5.86328 6.58203ZM19.7148 18.5H19.75V12.7344C19.75 9.92188 19.1172 7.74219 15.8125 7.74219C14.2305 7.74219 13.1758 8.62109 12.7188 9.42969H12.6836V7.98828H9.55469V18.5H12.8242V13.2969C12.8242 11.9258 13.0703 10.625 14.7578 10.625C16.4453 10.625 16.4805 12.1719 16.4805 13.4023V18.5H19.7148Z" fill="currentColor"></path>
</svg></div></a><a aria-label="twitter" rel="noreferrer" href="https://twitter.com/venkykumar0006" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.1367 8.09375C19.8398 7.56641 20.4727 6.93359 20.9648 6.19531C20.332 6.47656 19.5938 6.6875 18.8555 6.75781C19.6289 6.30078 20.1914 5.59766 20.4727 4.71875C19.7695 5.14062 18.9609 5.45703 18.1523 5.63281C17.4492 4.89453 16.5 4.47266 15.4453 4.47266C13.4062 4.47266 11.7539 6.125 11.7539 8.16406C11.7539 8.44531 11.7891 8.72656 11.8594 9.00781C8.80078 8.83203 6.05859 7.35547 4.23047 5.14062C3.91406 5.66797 3.73828 6.30078 3.73828 7.00391C3.73828 8.26953 4.37109 9.39453 5.39062 10.0625C4.79297 10.0273 4.19531 9.88672 3.70312 9.60547V9.64062C3.70312 11.4336 4.96875 12.9102 6.65625 13.2617C6.375 13.332 6.02344 13.4023 5.70703 13.4023C5.46094 13.4023 5.25 13.3672 5.00391 13.332C5.46094 14.8086 6.83203 15.8633 8.44922 15.8984C7.18359 16.8828 5.60156 17.4805 3.87891 17.4805C3.5625 17.4805 3.28125 17.4453 3 17.4102C4.61719 18.4648 6.55078 19.0625 8.66016 19.0625C15.4453 19.0625 19.1367 13.4727 19.1367 8.58594C19.1367 8.41016 19.1367 8.26953 19.1367 8.09375Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="https://www.instagram.com/venkykumar0607" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.875 7.70703C9.625 7.70703 7.83203 9.53516 7.83203 11.75C7.83203 14 9.625 15.793 11.875 15.793C14.0898 15.793 15.918 14 15.918 11.75C15.918 9.53516 14.0898 7.70703 11.875 7.70703ZM11.875 14.3867C10.4336 14.3867 9.23828 13.2266 9.23828 11.75C9.23828 10.3086 10.3984 9.14844 11.875 9.14844C13.3164 9.14844 14.4766 10.3086 14.4766 11.75C14.4766 13.2266 13.3164 14.3867 11.875 14.3867ZM17.0078 7.56641C17.0078 7.03906 16.5859 6.61719 16.0586 6.61719C15.5312 6.61719 15.1094 7.03906 15.1094 7.56641C15.1094 8.09375 15.5312 8.51562 16.0586 8.51562C16.5859 8.51562 17.0078 8.09375 17.0078 7.56641ZM19.6797 8.51562C19.6094 7.25 19.3281 6.125 18.4141 5.21094C17.5 4.29688 16.375 4.01562 15.1094 3.94531C13.8086 3.875 9.90625 3.875 8.60547 3.94531C7.33984 4.01562 6.25 4.29688 5.30078 5.21094C4.38672 6.125 4.10547 7.25 4.03516 8.51562C3.96484 9.81641 3.96484 13.7188 4.03516 15.0195C4.10547 16.2852 4.38672 17.375 5.30078 18.3242C6.25 19.2383 7.33984 19.5195 8.60547 19.5898C9.90625 19.6602 13.8086 19.6602 15.1094 19.5898C16.375 19.5195 17.5 19.2383 18.4141 18.3242C19.3281 17.375 19.6094 16.2852 19.6797 15.0195C19.75 13.7188 19.75 9.81641 19.6797 8.51562ZM17.9922 16.3906C17.7461 17.0938 17.1836 17.6211 16.5156 17.9023C15.4609 18.3242 13 18.2188 11.875 18.2188C10.7148 18.2188 8.25391 18.3242 7.23438 17.9023C6.53125 17.6211 6.00391 17.0938 5.72266 16.3906C5.30078 15.3711 5.40625 12.9102 5.40625 11.75C5.40625 10.625 5.30078 8.16406 5.72266 7.10938C6.00391 6.44141 6.53125 5.91406 7.23438 5.63281C8.25391 5.21094 10.7148 5.31641 11.875 5.31641C13 5.31641 15.4609 5.21094 16.5156 5.63281C17.1836 5.87891 17.7109 6.44141 17.9922 7.10938C18.4141 8.16406 18.3086 10.625 18.3086 11.75C18.3086 12.9102 18.4141 15.3711 17.9922 16.3906Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="https://itunes.apple.com/us/app/acv-auctions-wholesale-handled/id969808943" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.216 0C15.3718 1.40661 14.8061 2.81783 13.9682 3.83274C13.1301 4.84617 11.7552 5.63578 10.409 5.53142C10.2246 4.15345 10.9052 2.71658 11.6811 1.8196C12.5478 0.804687 14.0089 0.0484537 15.216 0ZM19.5706 8.19205C19.3521 8.32555 16.962 9.78562 16.9886 12.751C17.0215 16.3346 20.0912 17.5588 20.2073 17.6051C20.2088 17.6057 20.2098 17.6061 20.2103 17.6063C20.2094 17.6093 20.2079 17.6142 20.2058 17.6209C20.1489 17.8067 19.6648 19.388 18.5496 21.0201C17.5483 22.4812 16.5107 23.9378 14.8756 23.9695C14.0902 23.9836 13.5651 23.7562 13.0193 23.5199C12.4477 23.2724 11.8536 23.0151 10.9143 23.0151C9.93063 23.0151 9.30898 23.2799 8.70986 23.5351C8.19055 23.7562 7.68817 23.9702 6.98166 23.9983C5.40257 24.0588 4.20162 22.4177 3.19275 20.9611C1.13267 17.9814 -0.443392 12.5408 1.67265 8.86987C2.72235 7.04575 4.59941 5.89168 6.63832 5.86143C7.51669 5.84427 8.36782 6.18175 9.11281 6.47714C9.68146 6.70261 10.1883 6.90356 10.5981 6.90356C10.9659 6.90356 11.4592 6.70916 12.0344 6.48244C12.9402 6.12543 14.0493 5.68832 15.1917 5.80395C15.9752 5.83722 18.1714 6.12007 19.5826 8.18468C19.5799 8.18636 19.5759 8.18882 19.5706 8.19205Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="https://play.google.com/store/apps/details?id=com.acvauctions.acvauctions" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.85365 0L14.7992 7.54891L11.7491 11.0372L2.85365 0ZM0.0742188 1.02985C0.0742188 0.737259 0.144679 0.473438 0.258475 0.243967L10.2964 12.6988L0.415133 23.9999C0.209762 23.7244 0.0742188 23.3759 0.0742188 22.9698V1.02985ZM13.8192 17.0702L3.88672 23.347L11.6876 14.4253L13.8192 17.0702ZM20.1304 10.9179L16.6678 8.72965L13.1406 12.7636L15.6693 15.9011L20.1304 13.0819C20.5362 12.8523 20.7602 12.4362 20.8047 11.9999C20.7602 11.5635 20.5362 11.1475 20.1304 10.9179Z" fill="currentColor"></path>
</svg></div></a></div></div><div id="w-node-_7b234055-ae3a-61fa-5a78-ad14593bf005-593befba" class="social-link_wrap tablet__show"><a aria-label="facebook" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8086 12.875L16.3008 9.64062H13.1719V7.53125C13.1719 6.61719 13.5938 5.77344 15 5.77344H16.4414V2.99609C16.4414 2.99609 15.1406 2.75 13.9102 2.75C11.3438 2.75 9.65625 4.33203 9.65625 7.14453V9.64062H6.77344V12.875H9.65625V20.75H13.1719V12.875H15.8086Z" fill="currentColor"></path>
</svg></div></a><a aria-label="LinkedIn" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.51562 18.5V7.98828H4.24609V18.5H7.51562ZM5.86328 6.58203C6.91797 6.58203 7.76172 5.70312 7.76172 4.64844C7.76172 3.62891 6.91797 2.78516 5.86328 2.78516C4.84375 2.78516 4 3.62891 4 4.64844C4 5.70312 4.84375 6.58203 5.86328 6.58203ZM19.7148 18.5H19.75V12.7344C19.75 9.92188 19.1172 7.74219 15.8125 7.74219C14.2305 7.74219 13.1758 8.62109 12.7188 9.42969H12.6836V7.98828H9.55469V18.5H12.8242V13.2969C12.8242 11.9258 13.0703 10.625 14.7578 10.625C16.4453 10.625 16.4805 12.1719 16.4805 13.4023V18.5H19.7148Z" fill="currentColor"></path>
</svg></div></a><a aria-label="twitter" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.1367 8.09375C19.8398 7.56641 20.4727 6.93359 20.9648 6.19531C20.332 6.47656 19.5938 6.6875 18.8555 6.75781C19.6289 6.30078 20.1914 5.59766 20.4727 4.71875C19.7695 5.14062 18.9609 5.45703 18.1523 5.63281C17.4492 4.89453 16.5 4.47266 15.4453 4.47266C13.4062 4.47266 11.7539 6.125 11.7539 8.16406C11.7539 8.44531 11.7891 8.72656 11.8594 9.00781C8.80078 8.83203 6.05859 7.35547 4.23047 5.14062C3.91406 5.66797 3.73828 6.30078 3.73828 7.00391C3.73828 8.26953 4.37109 9.39453 5.39062 10.0625C4.79297 10.0273 4.19531 9.88672 3.70312 9.60547V9.64062C3.70312 11.4336 4.96875 12.9102 6.65625 13.2617C6.375 13.332 6.02344 13.4023 5.70703 13.4023C5.46094 13.4023 5.25 13.3672 5.00391 13.332C5.46094 14.8086 6.83203 15.8633 8.44922 15.8984C7.18359 16.8828 5.60156 17.4805 3.87891 17.4805C3.5625 17.4805 3.28125 17.4453 3 17.4102C4.61719 18.4648 6.55078 19.0625 8.66016 19.0625C15.4453 19.0625 19.1367 13.4727 19.1367 8.58594C19.1367 8.41016 19.1367 8.26953 19.1367 8.09375Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.875 7.70703C9.625 7.70703 7.83203 9.53516 7.83203 11.75C7.83203 14 9.625 15.793 11.875 15.793C14.0898 15.793 15.918 14 15.918 11.75C15.918 9.53516 14.0898 7.70703 11.875 7.70703ZM11.875 14.3867C10.4336 14.3867 9.23828 13.2266 9.23828 11.75C9.23828 10.3086 10.3984 9.14844 11.875 9.14844C13.3164 9.14844 14.4766 10.3086 14.4766 11.75C14.4766 13.2266 13.3164 14.3867 11.875 14.3867ZM17.0078 7.56641C17.0078 7.03906 16.5859 6.61719 16.0586 6.61719C15.5312 6.61719 15.1094 7.03906 15.1094 7.56641C15.1094 8.09375 15.5312 8.51562 16.0586 8.51562C16.5859 8.51562 17.0078 8.09375 17.0078 7.56641ZM19.6797 8.51562C19.6094 7.25 19.3281 6.125 18.4141 5.21094C17.5 4.29688 16.375 4.01562 15.1094 3.94531C13.8086 3.875 9.90625 3.875 8.60547 3.94531C7.33984 4.01562 6.25 4.29688 5.30078 5.21094C4.38672 6.125 4.10547 7.25 4.03516 8.51562C3.96484 9.81641 3.96484 13.7188 4.03516 15.0195C4.10547 16.2852 4.38672 17.375 5.30078 18.3242C6.25 19.2383 7.33984 19.5195 8.60547 19.5898C9.90625 19.6602 13.8086 19.6602 15.1094 19.5898C16.375 19.5195 17.5 19.2383 18.4141 18.3242C19.3281 17.375 19.6094 16.2852 19.6797 15.0195C19.75 13.7188 19.75 9.81641 19.6797 8.51562ZM17.9922 16.3906C17.7461 17.0938 17.1836 17.6211 16.5156 17.9023C15.4609 18.3242 13 18.2188 11.875 18.2188C10.7148 18.2188 8.25391 18.3242 7.23438 17.9023C6.53125 17.6211 6.00391 17.0938 5.72266 16.3906C5.30078 15.3711 5.40625 12.9102 5.40625 11.75C5.40625 10.625 5.30078 8.16406 5.72266 7.10938C6.00391 6.44141 6.53125 5.91406 7.23438 5.63281C8.25391 5.21094 10.7148 5.31641 11.875 5.31641C13 5.31641 15.4609 5.21094 16.5156 5.63281C17.1836 5.87891 17.7109 6.44141 17.9922 7.10938C18.4141 8.16406 18.3086 10.625 18.3086 11.75C18.3086 12.9102 18.4141 15.3711 17.9922 16.3906Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.216 0C15.3718 1.40661 14.8061 2.81783 13.9682 3.83274C13.1301 4.84617 11.7552 5.63578 10.409 5.53142C10.2246 4.15345 10.9052 2.71658 11.6811 1.8196C12.5478 0.804687 14.0089 0.0484537 15.216 0ZM19.5706 8.19205C19.3521 8.32555 16.962 9.78562 16.9886 12.751C17.0215 16.3346 20.0912 17.5588 20.2073 17.6051C20.2088 17.6057 20.2098 17.6061 20.2103 17.6063C20.2094 17.6093 20.2079 17.6142 20.2058 17.6209C20.1489 17.8067 19.6648 19.388 18.5496 21.0201C17.5483 22.4812 16.5107 23.9378 14.8756 23.9695C14.0902 23.9836 13.5651 23.7562 13.0193 23.5199C12.4477 23.2724 11.8536 23.0151 10.9143 23.0151C9.93063 23.0151 9.30898 23.2799 8.70986 23.5351C8.19055 23.7562 7.68817 23.9702 6.98166 23.9983C5.40257 24.0588 4.20162 22.4177 3.19275 20.9611C1.13267 17.9814 -0.443392 12.5408 1.67265 8.86987C2.72235 7.04575 4.59941 5.89168 6.63832 5.86143C7.51669 5.84427 8.36782 6.18175 9.11281 6.47714C9.68146 6.70261 10.1883 6.90356 10.5981 6.90356C10.9659 6.90356 11.4592 6.70916 12.0344 6.48244C12.9402 6.12543 14.0493 5.68832 15.1917 5.80395C15.9752 5.83722 18.1714 6.12007 19.5826 8.18468C19.5799 8.18636 19.5759 8.18882 19.5706 8.19205Z" fill="currentColor"></path>
</svg></div></a><a aria-label="instagram" rel="noreferrer" href="#" class="social-link w-inline-block"><div class="social-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.85365 0L14.7992 7.54891L11.7491 11.0372L2.85365 0ZM0.0742188 1.02985C0.0742188 0.737259 0.144679 0.473438 0.258475 0.243967L10.2964 12.6988L0.415133 23.9999C0.209762 23.7244 0.0742188 23.3759 0.0742188 22.9698V1.02985ZM13.8192 17.0702L3.88672 23.347L11.6876 14.4253L13.8192 17.0702ZM20.1304 10.9179L16.6678 8.72965L13.1406 12.7636L15.6693 15.9011L20.1304 13.0819C20.5362 12.8523 20.7602 12.4362 20.8047 11.9999C20.7602 11.5635 20.5362 11.1475 20.1304 10.9179Z" fill="currentColor"></path>
</svg></div></a></div></div><div class="footer-bottom"><div class="footer-text">© <span class="current-year">2023</span> ACV Auctions Inc. All rights reserved.</div><div class="footer-text-link_wrap"><a href="/legal/terms-of-service" class="footer_text-link">Terms of Service</a><a href="/legal/privacy-policy" class="footer_text-link">Privacy Policy</a><a href="/sitemap.xml" class="footer_text-link mx-0">Sitemap</a></div></div></div></div></div><script src="js/jquery-3.5.1.min.dc5e7f18c8.js" type="text/javascript" crossorigin="anonymous"></script><script src="js/acv-2023.31a34e36b.js" type="text/javascript"></script><script src="js/jquery.inview.min.js"></script>
<script>
// Optimizes the navigation for dark headers
$('#custom-styles').on('inview', function(event, isInView) {
if (isInView) {
$('.nav-link').removeClass('is--sticky');
$('.burger-button').removeClass('is--sticky');
} else {
$('.nav-link').addClass('is--sticky');
$('.burger-button').addClass('is--sticky');
}
});
/*
$('.main').on('inview', function(event, mainInView) {
if (mainInView) {
$('.nav-link').addClass('is--sticky');
$('.burger-button').addClass('is--sticky');
} else {
}
});
*/
</script>
<script>
// Sent body to overflow hidden on first click of hamburger icon
$('.menu-button').click(function() {
var clicks = $(this).data('clicks');
if (clicks) {
$("body").css("overflow", "auto");
$('.right-nav-link').removeClass('is--open');
} else {
$("body").css("overflow", "hidden");
$('.right-nav-link').addClass('is--open');
}
$(this).data("clicks", !clicks);
});
// Click on the hamburger icon whenever you click on the greyed out part
$( ".mobile-nav-link" ).click(function() {
$( ".menu-button" ).click();
});
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "ACV Auctions",
"url": "https://www.acvauctions.com/",
"potentialAction":[{
"@type":"SearchAction",
"target":{"@type":"EntryPoint","urlTemplate":"https://www.acvauctions.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],
"inLanguage":"en-US"
}
</script>
<script src="js/manifest.js"></script>
<script src="js/vendor.js"></script>
<script src="js/site.js"></script>
<script type="text/javascript" src="js/slick.min.js"></script>
<!-- Start Testimonial Slider -->
<script>
$('.test-slider').slick({
infinite: false,
slidesToShow: 1,
slidesToScroll: 1,
arrows: true,
prevArrow: $('.test-prev'),
nextArrow: $('.test-next'),
dots: false,
swipeToSlide: true,
responsive: [
{
breakpoint: 991,
settings: {
slidesToShow: 1
}
}
]
});
</script>
<script>
(function () {
var deadline = '2022/10/01 00:00';
function pad(num, size) {
var s = "0" + num;
return s.substr(s.length - size);
}
// fixes "Date.parse(date)" on safari
function parseDate(date) {
const parsed = Date.parse(date);
if (!isNaN(parsed)) return parsed
return Date.parse(date.replace(/-/g, '/').replace(/[a-z]+/gi, ' '));
}
function getTimeRemaining(endtime) {
let total = parseDate(endtime) - Date.parse(new Date())
let seconds = Math.floor((total / 1000) % 60)
let minutes = Math.floor((total / 1000 / 60) % 60)
let hours = Math.floor((total / (1000 * 60 * 60)) % 24)
let days = Math.floor(total / (1000 * 60 * 60 * 24))
return { total, days, hours, minutes, seconds };
}
function clock(id, endtime) {
let days = document.getElementById(id + '-days')
let hours = document.getElementById(id + '-hours')
let minutes = document.getElementById(id + '-minutes')
let seconds = document.getElementById(id + '-seconds')
var timeinterval = setInterval(function () {
var time = getTimeRemaining(endtime);
if (time.total <= 0) {
clearInterval(timeinterval);
} else {
days.innerHTML = pad(time.days, 2);
hours.innerHTML = pad(time.hours, 2);
minutes.innerHTML = pad(time.minutes, 2);
seconds.innerHTML = pad(time.seconds, 2);
}
}, 1000);
}
clock('js-clock', deadline);
})();
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@id": "https://www.acvauctions.com/",
"@type": "Organization",
"name": "ACV Auctions",
"legalName" : "ACV Auctions, Inc. ",
"url": "https://www.acvauctions.com/",
"contactPoint": [
{
"@type": "ContactPoint",
"name": "Contact",
"telephone": "+1 (800) 553-4070",
"areaServed": "US"
}],
"description": "ACV Auctions is an online dealer auction platform with extensive vehicle inventory. It allows car dealers to buy and sell wholesale inventory.",
"logo": "https://assets-global.website-files.com/622762ff70941ce65ae7d712/622762ff70941ce7c2e7d850_ACVLogoGradient_DarkBKGD-p-500.png",
"foundingDate":"2014",
"founders": [{
"@type": "Person",
"name": "Joseph Neiman"}],
"Address":{
"@type":"PostalAddress",
"streetAddress":"640 Ellicott St #321",
"addressLocality":"Buffalo",
"addressRegion":"NY",
"postalCode":"14203",
"addressCountry":"US"
},
"award":[
"Stevie Award 2018 and 2019",
"43 North 2015",
"Great Place to Work certified 2021, 2022, 2023"
],
"sameAs":[
"https://www.facebook.com/venkykumar.5602/",
"https://www.linkedin.com/company/acv-auctions/",
"https://www.youtube.com/c/ACVAuctions/",
"https://twitter.com/venkykumar0006",
"https://www.instagram.com/venkykumar0607",
"https://vimeo.com/user102093975?embedded=true&source=owner_name&owner=102093975",
"https://www.crunchbase.com/organization/acv-auctions",
"https://www.bloomberg.com/profile/company/1493701D:US"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Proudly Serving 16,000+ Dealers Nationwide",
"description": "Dealer Testimonial: ‘ACV has become an integral part of our group's success. We're buying and selling hundreds of cars per month.",