-
Notifications
You must be signed in to change notification settings - Fork 593
Quick start tutorial
Welcome to this tutorial on Blueprint. It will give you a thorough intro to what you can do with the framework, and a few notes on what you shouldn’t do with it. Let’s get started.
Blueprint is a CSS framework, designed to cut down on your development time. It gives you a solid foundation to build your CSS on top of, including some sensible default typography, a customizable grid, a print stylesheet and much more.
However, BP is not a silver bullet, and it’s best suited for websites where each page may require its own design. Take a look at existing BP pages before deciding if the framework is right for you. You may also check out the test files in the tests directory, which demonstrates most of the features in Blueprint.
The word “framework” may be a bit misleading in this context, since BP does not make suggestions on how you should organize or write your CSS. It’s more like a “css toolbox” with helpful bits and pieces, from which you may pick and choose based on your needs.
From the bottom up, here are the CSS layers in Blueprint:
- CSS reset: Removes any default CSS rules set by each browser.
- Typography: Gives you some nice default typography and colors.
- Grid: Provides a set of CSS classes for making grid layouts.
The second part of Blueprint are the scripts, which let you customize most aspects of the framework, from column count and widths, to output paths and CSS class namespaces. We have two scripts:
Compressor: For compressing and customizing the source files.
Validator: For validating the Blueprint core files.
That’s the quick overview, so now we can finally get into the details. First, we’ll take
a look at the CSS in Blueprint. We’ll then move on to the scripts, where I’ll show you
how to customize the framework.
Setting Up Blueprint To use Blueprint, you must include three files in your HTML:
blueprint/screen.css: All CSS for screen, projection viewing. blueprint/print.css: A basic stylesheet for printing. blueprint/ie.css: A few needed corrections for Internet Explorer To include them, use the following HTML (make sure the href paths are correct):
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print">
<!--[if lt IE 8]>
<link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection">
<![endif]-->
Remember to add trailing slashes if you’re using XHTML (" />").
As mentioned before, there’s basically three layers of CSS in Blueprint. The first two layers, the browser CSS reset and the default typography, apply themselves by changing the CSS of standard HTML elements. In other words, you don’t need to change anything in these files. If you, for instance, want to change the font size, do this in your own stylesheet, so that it’s easy to upgrade Blueprint when new versions arrive.
While the typography of Blueprint mainly applies itself, there’s a few classes provided. Here’s a list of their names and what they do:
.small
Makes the text of this element smaller.
.large
Makes the text of this element larger.
.hide
Hides an element.
.quiet
Tones down the font color for this element.
.loud
Makes this elements text black.
.highlight
Adds a yellow background to the text.
.added
Adds green background to the text.
.removed
Adds red background to the text.
.first
Removes any left sided margin/padding from the element.
.last
Removes any right sided margin/padding from the element.
.top
Removes any top margin/padding from the element.
.bottom
Removes any bottom margin/padding from the element.
To make Blueprint style your input elements, each text input element should have the class .text, or .title, where .text is the normal size, and .title gives you an input field with larger text.
There’s also a few classes you may use for success and error messages:
div.error
Creates an error box (red).
div.notice
Creates a box for notices (yellow).
div.success
Creates a box for success messages (green).
The third layer is the grid CSS classes, which is the tool Blueprint gives you to create almost any kind of grid layout for your site. Keep in mind that most of the CSS behind the grid can be customized (explained below). In this section however, I’m using the default settings.
The default grid is made up of 24 columns, each spanning 30px, with a 10px margin between each column. The total width comes to 950px, which is a good width for 1024×768 resolution displays. If you’re interested in a narrower design, see the section on customizing the grid, below.
So how do you set up a grid? By using classes provided by Blueprint. To create a column, make a new <div/>
, and apply one of the .span-x classes to it. For instance, if you want a 3-column setup, with two narrow and one wide column, a header and a footer here’s how you do it:
<div class="container">
<div class="span-24">
The header
</div>
<div class="span-4">
The first column
</div>
<div class="span-16">
The center column
</div>
<div class="span-4 last">
The last column
</div>
<div class="span-24">
The footer
</div>
</div>
In addition to the spans, there are two important classes you need to know about. First of all, every Blueprint site needs to be wrapped in a div with the class .container, which is usually placed right after the body tag.
Second, the last column in a row (which by default has 24 columns), needs the class .last to remove its right hand margin. Note, however, that each .span-24 does not need the .last class, since these always span the entire width of the page.
To create basic grids, this is all you need to know. The grid CSS however, provides many more classes for more intricate designs. To see some of them in action, check out the files in tests/parts/. These files demonstrate what’s possible with the grid in Blueprint.
Here’s a quick overview of the other classes you can use in to make your grid:
.append-x
Appends x number of empty columns after a column.
.prepend-x
Prepends x number of empty columns before a column.
.push-x
Pushes a column x columns to the left. Can be used to swap columns.
.pull-x
Pulls a column x columns to the right. Can be used to swap columns.
.border
Applies a border to the right side of the column.
.colborder
Appends one empty column, with a border down the middle.
.clear
Makes a column drop below a row, regardless of space.
.showgrid
Add to container or column to see the grid and baseline.
In this list, x is a number from 1 through 23 for append/prepend and 1 through 24 for push/pull. These numbers will of course change if you set a new number of columns in the settings file.
Here’s another example where we have four columns of equal width, with a border between the two first and the two last columns, as well as a four column gap in the middle:
<div class="container">
<div class="span-5 border">
The first column
</div>
<div class="span-5 append-4">
The second column
</div>
<div class="span-5 border">
The third column
</div>
<div class="span-5 last">
The fourth (last) column
</div>
</div>
You may also nest columns to achieve the desired layout. Here’s a setup where we want four rectangles with two on top and two below on the first half of the page, and one single column spanning the second half of the page:
<div class="container">
<div class="span-12">
<div class="span-6">
Top left
</div>
<div class="span-6 last">
Top right
</div>
<div class="span-6">
Bottom left
</div>
<div class="span-6 last">
Bottom right
</div>
</div>
<div class="span-12 last">
Second half of page
</div>
</div>
Try this code in your browser if it is difficult to understand what it would look like. To see more examples on how to use these classes, check out /tests/parts/grid.html.
Blueprint comes with two scripts: one for compressing and customizing the CSS, and one for validating the core CSS files, which is handy if you’re making changes to these files.
The validator has a fairly simple job – validate the CSS in the core BP files. The script uses a bundled version of the W3C CSS validator to accomplish this. To run it, you’ll need to have Ruby installed on your machine. You can then run the script like so: $ ruby validate.rb.
Note that there are a few validation errors shipping with Blueprint. These are known, and comes from a few CSS hacks needed to ensure consistent rendering across the vast browser field.
As the files you’ll include in your HTML are the compressed versions of the core CSS files, you’ll have to recompress the core if you’ve made any changes. This is what the compressor script is for.
In addition this is where you customize the grid. To customize the grid, a special settings file is used, and the new CSS is generated once you run the compressor. The new compressed files will then reflect your settings file.
To recompress, you just have to run the script. This will parse the core CSS files and output new compressed files in the blueprint folder. As with the validator, Ruby has to be installed to use this script. In the lib directory, run: $ruby compress.rb
Calling this file by itself will pull files from blueprint/src and concatenate them into three files; ie.css, print.css, and screen.css. However, argument variables can be set to change how this works. Calling $ruby compress.rb -h will reveal basic arguments you can pass to the script.
To learn how to use custom settings, read through the documentation within lib/compress.rb
`<html lang="en-US" class="no-js wf-opensans-n4-active wf-roboto-n4-active wf-roboto-n5-active wf-active js_active vc_mobile vc_transform vc_transform "> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="author" content="potenzaglobalsolutions.com"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cardealer.potenzaglobalsolutions.com/xmlrpc.php"> <!-- 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-MRFCVLP');</script> <!-- End Google Tag Manager -→ <title>Home 2 - Car Dealer</title> <script> /* You can add more configuration options to webfontloader by previously defining the WebFontConfig with your options */ if ( typeof WebFontConfig === "undefined" ) { WebFontConfig = new Object(); } WebFontConfig['google'] = {families: ['Open+Sans:400', 'Roboto:400,500']};
(function() { var wf = document.createElement( 'script' ); wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.3/webfont.js'; wf.type = 'text/javascript'; wf.async = 'true'; var s = document.getElementsByTagName( 'script' )[0]; s.parentNode.insertBefore( wf, s ); })(); </script> <!-- This site is optimized with the Yoast SEO plugin v12.0 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://cardealer.potenzaglobalsolutions.com/home-2/"> <meta property="og:locale" content="en_US"> <meta property="og:type" content="article"> <meta property="og:title" content="Home 2 - Car Dealer"> <meta property="og:url" content="https://cardealer.potenzaglobalsolutions.com/home-2/"> <meta property="og:site_name" content="Car Dealer"> <meta property="article:author" content="https://www.fb.com"> <meta property="og:image" content="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/signature.png"> <meta property="og:image:secure_url" content="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/signature.png"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Home 2 - Car Dealer"> <meta name="twitter:image" content="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/signature.png"> <meta name="twitter:creator" content="@com"> <!-- / Yoast SEO plugin. --> <link rel="dns-prefetch" href="//fonts.googleapis.com"> <link rel="dns-prefetch" href="//s.w.org"> <link rel="alternate" type="application/rss+xml" title="Car Dealer » Feed" href="https://cardealer.potenzaglobalsolutions.com/feed/"> <link rel="alternate" type="application/rss+xml" title="Car Dealer » Comments Feed" href="https://cardealer.potenzaglobalsolutions.com/comments/feed/"> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11.2.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11.2.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/cardealer.potenzaglobalsolutions.com\/wp-includes\/js\/wp-emoji-release.min.js"}}; !function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel="stylesheet" id="cardealer-google-fonts-css" href="https://fonts.googleapis.com/css?family=Open+Sans%3A400%2C300%2C400italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C300italic%7CRoboto%3A400%2C300%2C400italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C300italic&subset=latin%2Clatin-ext&ver=1.0.0" type="text/css" media="all"> <link rel="stylesheet" id="font-awesome-theme-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/font-awesome.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-flaticon-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/flaticon.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="bootstrap-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/bootstrap.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-mega_menu-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/mega-menu/mega_menu.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-css-nice-select-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/nice-select.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-external-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/plugins-css.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-timepicker-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/timepicker/jquery.timepicker.css" type="text/css" media="all" defer> <link rel="stylesheet" id="jquery-ui-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/jquery-ui/jquery-ui.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="magnific-popup-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/magnific-popup/magnific-popup.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="photoswipe-css-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/photoswipe/photoswipe.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="default-skin-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/photoswipe/default-skin/default-skin.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="mediaelement-css" href="https://cardealer.potenzaglobalsolutions.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="wp-mediaelement-css" href="https://cardealer.potenzaglobalsolutions.com/wp-includes/js/mediaelement/wp-mediaelement.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-main-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/style.css" type="text/css" media="all" defer> <style id="cardealer-main-inline-css" type="text/css"> .site-layout-boxed #page,.site-layout-framed #page,.site-layout-rounded #page { max-width: 1240px; } .site-layout-boxed .vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"]) { padding-right: 35px !important; padding-left: 35px !important; } .site-layout-boxed .vc_row[data-vc-full-width="true"] { margin-left: -50px !important; margin-right: -50px !important; } h1,h2,h3,h4,h5,h6,body,html { font-family: Open Sans, Arial, Helvetica, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 22px; letter-spacing: 0px; } h1 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 400; text-transform: uppercase; font-size: 40px; line-height: 50px; letter-spacing: 0px; } h2 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; text-transform: uppercase; font-size: 36px; line-height: 46px; letter-spacing: 0px; } h3 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; text-transform: uppercase; font-size: 28px; line-height: 42px; letter-spacing: 0px; } h4 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; text-transform: uppercase; font-size: 24px; line-height: 36px; letter-spacing: 0px; } h5 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; text-transform: uppercase; font-size: 18px; line-height: 30px; letter-spacing: 0px; } h6 { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; text-transform: uppercase; font-size: 16px; line-height: 24px; letter-spacing: 0px; } .site-logo { height: 25px; } .woocommerce-page .site-logo, .woocommerce .site-logo { height: 25px; } .inner-intro { height: 320px; } .woocommerce-page .sticky-logo, .woocommerce .sticky-logo { height: 25px; } .sticky-logo { height: 25px; } .sticky-logo-text { color: #db2d2e; font-size: 32; } .header_intro_bg-image { background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/default/page-header-bg.jpg'); background-position: center center; background-attachment: inherit; background-size: cover; background-repeat: no-repeat; } .header_intro_opacity::before { background-color: rgba(0,0,0,0.7); } header .menu .desktopTopFixed .menu-list-items, header .menu .mobileTopFixed .menu-list-items { height: 68px; } .geo-bar { background-color: #db2d2e; } .social-full a, footer .widgettitle, .footer-box .box-content h6, footer .widget.widget_rss ul li .rss-date { color: #ffffff; } .social-full a i { color: rgba(255,255,255,0.5); } footer, footer a, .footer input, footer p, footer ul li a, footer .textwidget ul li a, footer .widget ul li a, footer span, footer footer .widget_recent_entries .recent-post-info a, footer .widget_recent_entries .recent-post-info span, footer .widget_recent_entries .recent-post-info a, footer ul li i { color: #c4c3c3; } footer cite, footer .address ul li i, footer .usefull-link ul li a i, footer .widget_recent_entries .recent-post-info i, footer .widget.widget_recent_comments ul li a, footer .widget.widget_rss ul li a, .widget ul li > a:hover, #footer .widget_recent_entries .recent-post-info a:hover, footer .widget ul li a:hover, footer .widget.widget_archive ul li:hover > a, .copyright-block a:hover { color: #db2d2e; } .footer_bg-image { background-repeat: no-repeat; background-size: cover; background-attachment: inherit; background-position: center center; background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/default/page-footer-bg.jpg'); } .footer_opacity::before { background-color: rgba(0,0,0,0.9); } .copyright-block { background-color: #000000; } .copyright-block, .copyright-block a { color: #c4c3c3; } .copyright-block::before { background-color: rgba(0,0,0,0.8); } a, button, input, .text-red, .car-item .car-content a, .custom-block-1 a, .counter i, #header .topbar a:hover, .testimonial-1 .testimonial-block .testimonial-avtar h6, .testimonial-1 .testimonial-block:hover .testimonial-content i, .owl-carousel .owl-nav i, .call-to-action .border, .counter.icon b, .call-to-action i, .play-video .video-info a i, .feature-box i, .feature-box.left-align .icon i:before, .feature-box.left-align .icon i:before, .blog-2 .blog-content .blog-meta ul li a, .news-letter-main h4, .testimonial-4 .testimonial-block i, .feature-box.right-align .icon i:before, .isotope-filters button.active, .isotope-filters button:hover, .isotope .car-item-3 .car-popup a, .team .team-social a, .car-item .car-overlay-banner ul li a:hover, .tab-vertical.tabs-left .nav-tabs > li > a:hover, .tab-vertical.tabs-left .nav-tabs > li.active > a, ul.list li > i, .accordion .accordion-title a:hover, .accordion .accordion-title a:hover:after, .widget.widget_archive ul li:hover > a, .widget.widget_categories ul li:hover > a, .widget.widget_recent_comments ul li a:hover, .widget_archive ul li:hover i, .widget.widget_pages ul li:hover > a, .car-details .car-price .new-price, ul.list-col-2 li i, ul.list-col-3 li i, .tab-isotope-2 .list-style-1 li i, .tab-isotope-2 div i, ul.list-col-4 li i, .entry-meta ul li i, .entry-meta i, .entry-title a:hover, .entry-meta ul li a:hover, .entry-meta a:hover, .comments-1 .comments-info a, .woocommerce .star-rating span:before, .widget.woocommerce ul.product_list_widget li a:hover, .widget.woocommerce ul.product_list_widget li ins .amount, .woocommerce .comment-form-rating p.stars a, .single-product .shipping-taxable .entry-summary .price ins .amount, .single-product .shipping-taxable .entry-summary .price ins .amount span, .woocommerce .cart-collaterals .cart_totals .order-total .amount, .woocommerce .woocommerce-checkout-review-order table tfoot .order-total .amount, .woocommerce .woocommerce-info:before, .woocommerce-MyAccount-navigation ul li.is-active a, .blog-2 .blog-description a:hover, .blog-1 .blog-content a.link:hover, .content-box-5 a:hover, .tab-vertical.tabs-left .nav-tabs > li.active > a:before, #tabs ul.tabs li.active, #tabs ul.tabs li.active:focus, #tabs ul.tabs li:hover, .widget_breadcrumb_navxt a, .product-listing .car-grid .car-title a:hover, .product-listing .car-grid .price span, .button.white, .mega-menu .menu-links > li.current-menu-item > a, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-item > a, #header #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-ancestor > ul.mega-sub-menu > li.mega-current-menu-item > a, .countdown li span, .topbar_item_type-woo_cart .drop-content .price, .feature-box.left-icon.box-hover:hover .content h6, .feature-box.right-icon.box-hover:hover .content h6, .social.style-1 a:hover i, .bbp-forums a, #buddypress a.activity-time-since, #header.transparent-fullwidth .mega-menu .menu-links > li.current-menu-ancestor > a, .sort-filters-box .stripe, .sidebar .cars_filters .cars-total-vehicles .stripe, .cars-top-filters-box-left #slider-amount, .widget.widget_rss ul li a, .widget.widget_recent_comments ul li a, .modal .close, .woocommerce table.order_details tfoot tr .amount, .woocommerce .product_cat-clothing p.price span, .error-page .error-content p a, .widget_breadcrumb_navxt a:hover, .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce-MyAccount-navigation ul li.is-active a, .table-scroll .compare-list .price .new-price, .blog .blog-2 .blog-description .read-more, cite, blockquote cite, #cancel-comment-reply-link, .comments-1 .comments-info .comment-date a:hover, .entry-title i, .widget ul li > a:hover, .widget_recent_entries .recent-post-info a:hover, .cd_maintenance .footer-widget a, ul.page-breadcrumb li:hover:before, ul.page-breadcrumb li:hover span, .item-listing > .item > .portfolio-item .portfolio-caption a:hover, .promocode-box h4, .feature-box.default-feature.box-hover:hover .content h6, #header.default-header #primary-menu > li.menu-item.current-menu-item > a, #header.default-header #primary-menu > li.menu-item > a:hover, #header.default-header #primary-menu > li > .menu-item-woocommerce-cart-wrapper > a:hover, #header.default-header #primary-menu > li > .searchform .search > a:hover, #header.default-header #primary-menu > li.current-menu-ancestor > a, .footer .layout_2 .social ul li a:hover i, .wpb-js-composer .vc_tta.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title:hover>a, .potenza-custom-menu.horizontal ul.menu li:hover, .potenza-custom-menu.horizontal ul.menu li.glyph-icon:hover, .potenza-custom-menu.horizontal ul.menu li.active, .potenza-custom-menu.horizontal ul.menu li:hover a, .potenza-custom-menu.horizontal ul.menu li.glyph-icon:hover:before, .potenza-custom-menu.horizontal ul.menu li.active a, .potenza-custom-menu.horizontal ul.menu li.glyph-icon.active:before, .potenza-custom-menu.vertical ul.menu li:hover a, .potenza-custom-menu.vertical ul.menu li.glyph-icon:hover:before, .modal .modal-body a.cd-policy-terms, .modal .modal-body a.cd-policy-terms:hover, .footer .widget .widget-menu li a:hover, .footer .widget_categories .widget-menu li a:hover span, .product-listing.lazyload .sidebar .cars_filters .widgettitle a, .pricing-title .pricing-prize h2, .blog-2 .blog-content .blog-admin span a:hover, #header .topbar .language a.cardealer-current-lang:hover, #header .topbar .language a.cardealer-current-lang:hover, .language .drop-content a:hover, #header.defualt-header.boxed .topbar .language a:hover, #header .topbar .language .drop-content a:hover, #header.light .topbar .language .drop-content a:hover, #header.light-fullwidth .topbar .language .drop-content a:hover, #header.logo-center .topbar .language .drop-content a:hover, #header.logo-right .topbar .language .drop-content a:hover, #header.boxed .topbar .language .drop-content a:hover, #header .topbar .language a.cardealer-current-lang:hover, #header .topbar .language a.cardealer-current-lang:hover, .language .drop-content a:hover, #header .topbar .language .drop-content a:hover, #header .topbar .language ul li a:hover .lang-label, #header .topbar .language.style-horizontal ul li a:hover .lang-label, #header.defualt .topbar .language ul li a:hover .lang-label, #header.transparent-fullwidth .topbar .language ul li a:hover .lang-label, #header.defualt .topbar .language.style-horizontal ul li a:hover .lang-label, #header.transparent-fullwidth .topbar .language.style-horizontal ul li a:hover .lang-label, .style-classic.car-grid .car-bottom .car-bottom-actions li a i, .style-classic.car-grid .car-bottom .car-bottom-actions li a:hover { color: #db2d2e; } .button, .button.black:before, .topbar_item_type-woo_cart .shop .badge, .section-title .separator:before, .section-title .separator:after, .feature-box.round-icon h6:before, .skills-2 .bar, .maintenance-progress-bar .progress-bar .rotate, .maintenance-progress-bar .progress-bar .right, .counter h6:before, .owl-carousel.owl-theme .owl-dots .owl-dot.active span, .widget .widgettitle:before, .button.border:before, .blog-1 .blog-content a.link:before, .owl-carousel .owl-nav i:hover, .owl-carousel.owl-theme .owl-dots .owl-dot:hover span, .feature-box.round-border.box-hover:hover .icon i, .timeline > li:hover > .timeline-panel, .timeline > li:hover > .timeline-badge, .timeline .timeline-heading h5:before, .car-item:hover .separator:before, .car-item:hover .separator:after, .testimonial-2 .testimonial-content, .call-to-action .border, .ui-slider .ui-widget-header, .woocommerce .widget_price_filter .ui-slider .ui-slider-range, .feature-box.left-align.box-hover:hover, .feature-box.right-align.box-hover:hover, .car-item-2 .price, .blog-2 .blog-image .date-box span, .blog-2 .blog-description .separator:before, .blog-2 .blog-description .separator:after, .testimonial-3 .testimonial-content, .q-link.box-hover:hover, .share .blog-social li a, .isotope .car-item-3 .car-overlay, .team:hover, .isotope .car-item-3 .car-popup a:hover, .team .team-social li a:hover, .search-block.red-bg, .feature-box.round-icon.box-hover:hover i, .opening-hours h6:before, .team-2 .team-social ul li a, .accordion .accordion-title a.active, .widget_calendar #wp-calendar td#today, .widget_tag_cloud ul li a:hover, .pagination li a:focus, .pagination li a:hover, .pagination li span:focus, .pagination li span:hover, .pagination li span.current, .details-nav ul li a:hover, .car-details-sidebar h5:before, .share .single-share-box li a, .fuel-efficiency-detail, .share .share-button, .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover, .woocommerce ul.products li.product .add_to_cart_button, .woocommerce div.product form.cart .single_add_to_cart_button, .woocommerce .woocommerce-message .button, .woocommerce-cart .cart_totals .checkout-button.alt, .related.products .owl-carousel .owl-item .item .button, .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current, .pagination ul li a:focus, .pagination ul li a:hover, .pagination ul li span.current, .woocommerce footer .button, .woocommerce .widget_shopping_cart_content .button, .woocommerce .sidebar .button, .woocommerce footer .button:hover, .woocommerce .widget_shopping_cart_content .button:hover, .woocommerce .sidebar .button:hover, .tagcloud a:hover, .widget.woocommerce input[type=submit], .woocommerce div.product .woocommerce-tabs ul.tabs li.active a, .woocommerce div.product .woocommerce-tabs .wc-tab h2:before, .woocommerce #review_form .comment-reply-title:before, .woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce #respond input#submit, .woocommerce div.product .woocommerce-tabs ul.tabs li.active:hover a, .woocommerce .woocommerce-message .button:hover, .woocommerce-cart table.shop_table.cart .button, .woocommerce-cart table.shop_table.cart .coupon + .button:hover, .woocommerce-cart .cart_totals .checkout-button.alt:hover, .woocommerce .woocommerce-checkout h3:before, #add_payment_method #payment div.form-row #place_order, .woocommerce-cart #payment div.form-row #place_order, .woocommerce-checkout #payment div.form-row #place_order, .woocommerce-account form .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-info .button:hover, .woocommerce-MyAccount-content table.my_account_orders td .button, .woocommerce-checkout .woocommerce form.login .button, .woocommerce-checkout .woocommerce form.checkout_coupon .button, .product-listing .car-grid .car-title a:before, .car-details .slider-for .slick-prev:hover, .car-details .slider-for .slick-prev:focus, .car-details .slider-for .slick-next:hover, .slider-for .slick-next:focus, .tags-2 ul li a:hover, .theme-bg, .custom-block-3 .title h3:before, .menu-item-woocommerce-cart-wrapper .woo-cart-details.count, .woocommerce-MyAccount-content table.my_account_orders td .button, .widget .widgettitle::before, .woocommerce .return-to-shop a.button, .woocommerce .return-to-shop a.button:hover, .mega-menu a.button.wc-forward, .mega-menu a.button.wc-forward:hover, .topbar_item_type-woo_cart .drop-content .checkout a, .button.gray:before, .social.style-2 a:hover i, .social.style-3 a i, #buddypress #item-nav .item-list-tabs#object-nav ul li.selected a, #buddypress #item-body .item-list-tabs#subnav ul li.selected a, .car-detail-post-option > ul li a i, .woocommerce-order-received .woocommerce h2:before, .title-underline:before, .widget .widgettitle::before, .woocommerce .woocommerce-info .button, .comments-info .reply .comment-reply-link, .footer h6:before, .ui-state-default.ui-state-active, .ui-widget-content .ui-state-default.ui-state-active, .cd_maintenance .footer-widget .footer-widget-social li a:hover, .sidebar-widget #searchsubmit, body.single-cars .car-details-sidebar .woocommerce.add_to_cart_inline .button, .topbar .top-promocode-box .button::before, .slider-content.vehicle-search-section .search-tab ul.tabs li.active, .slider-content.vehicle-search-section .search-tab ul.tabs li.active:focus, .slider-content.vehicle-search-section .search-tab ul.tabs li:hover, .search-logo ul.tabs li.active, .search-logo ul.tabs li.active:focus, .search-logo ul.tabs li:hover, .cars_condition_carousel-wrapper .cardealer-tabs .tabs li.active, .cars_condition_carousel-wrapper .cardealer-tabs .tabs li.active:focus, .cars_condition_carousel-wrapper .cardealer-tabs .tabs li:hover, .overview-share .share ul li a:hover, .wpb-js-composer .vc_tta.vc_general.vc_tta-tabs.vc_tta-style-flat li.vc_tta-tab.vc_active a, .wpb-js-composer .vc_tta.vc_general.vc_tta-tabs.vc_tta-style-flat li.vc_tta-tab:hover a, .wpb-js-composer .entry-content .vc_tta.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-title > a, .wpb-js-composer .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-flat .vc_tta-panel-heading:hover, .wpb-js-composer .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel-heading:hover, #header .menu .menu-inner div > .row #primary-menu > li.menu-item.cdfs-add-vehicle > a, #header .menu .menu-inner div > .row #mega-menu-primary-menu > li.menu-item.cdfs-add-vehicle > a, .slick_sider.video-slider .slick-prev, .slick_sider.video-slider .slick-next, .potenza-custom-menu.horizontal ul.menu li, .feature-box.feature-border.round-icon h6:before, .feature-box.feature-border.style-4 h6:before, .feature-box.feature-border.style-5 h6:before, .feature-box.feature-border.style-6 h6:before, .feature-box.feature-border.style-7 h6:before, .feature-box.feature-border.style-8 h6:before, .feature-box.feature-border.style-9 h6:before, .woocommerce-checkout .select2-dropdown .select2-results__option.select2-results__option--highlighted, .product-listing.lazyload .widget.widget_search #searchsubmit, .product-listing.default .widget.widget_search #searchsubmit, .pricing-table.active .pricing-title h2.text-bg, .pricing-table.active .pricing-order, .search-logo-box:hover span, .style-classic.car-item .car-content ul.car-bottom-actions.classic-grid li a:hover, .style-classic.car-item .car-content ul.car-bottom-actions.classic-grid li a.popup-youtube:hover, .widget_tag_cloud .tagcloud a:hover { background-color: #db2d2e; } .play-video .video-info:before, .car-item .car-overlay-banner { background: rgba(219,45,46,.8) !important; } #page .theme-bg, .theme-bg .vc_row-background-overlay, #header.default-header.boxed .topbar { background-color: #db2d2e !important; } #header .mega-menu .widget_shopping_cart_content, .button.border:hover, .button.border:focus, .button.border:active, .search-box, .owl-carousel .owl-nav i:hover, .menu-item-search .search .search-box input:focus, .feature-box.round-border.box-hover:hover .icon, .feature-box-3.box-hover:hover .icon i, .testimonial-2 .testimonial-info .testimonial-avatar img, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .form-group input:focus, .news-letter input:focus, .form-group textarea:focus, .wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form textarea:focus, .accordion .accordion-title a.active, .widget_search input:focus, .widget_tag_cloud ul li a:hover, .form-control:focus, .pagination li a:focus, .pagination li a:hover, .pagination li span:focus, .pagination li span:hover, .pagination li span.current, .details-nav ul li a:hover, .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover, .section-field input:focus, .section-field textarea:focus, .post-password-form input[type="password"]:focus, .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current, .pagination ul li a:focus, .pagination ul li a:hover, .pagination ul li span.current, .tagcloud a:hover, .widget.woocommerce input.search-field:focus, .woocommerce .comment-form input[type="text"]:focus, .woocommerce .comment-form input[type="email"]:focus, .woocommerce .comment-form textarea:focus, .woocommerce-account .woocommerce form .input-text:focus, .car-details .slider-for .slick-prev:hover, .car-details .slider-for .slick-prev:focus, .car-details .slider-for .slick-next:hover, .slider-for .slick-next:focus, .tags-2 ul li a:hover, .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce-MyAccount-navigation ul li.is-active a, .table-scroll .compare-list td .remove, .news-letter-main .news-letter-form input:focus, #inquiry-form .form-control:focus, #inquiry-form .form-controltextarea:focus, .footer .news-letter .form-control:focus, .wpcf7-form .contact-form.appointment-form.appointment-form-light input[type="text"]:focus, .wpcf7-form .contact-form.appointment-form.appointment-form-light input[type="email"]:focus, .wpcf7-form .contact-form.appointment-form.appointment-form-light textarea:focus, .product-listing.lazyload .widget.widget_search input:focus, .product-listing.default .widget.widget_search input:focus { border-color: #db2d2e; } .testimonial-2 .testimonial-content:before, .testimonial-3 .testimonial-content:before, .woocommerce .woocommerce-info, .mega-menu .drop-down-multilevel, #header #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item > ul.mega-sub-menu { border-top-color: #db2d2e; } .isotope-filters button.active, .isotope-filters button:hover, #tabs ul.tabs li.active, #tabs ul.tabs li.active:focus, #tabs ul.tabs li:hover { border-bottom-color: #db2d2e; } .timeline > li:hover > .timeline-panel:after, .tab-vertical.tabs-left .nav-tabs > li > a:hover, .tab-vertical.tabs-left .nav-tabs > li.active > a, .post.sticky { border-left-color: #db2d2e; } .timeline > li.timeline-inverted:hover > .timeline-panel:after, .timeline > li.timeline-item:hover > .timeline-panel:after { border-right-color: #db2d2e; } h1, h2, h3, h4, h5, h6, .blog-1 .blog-content a.link, .counter b, .car-item .price span.new-price, .button.border, .q-link i, .blog-2 .blog-description a, .content-box-5 a, .text-black, .tab-vertical.tabs-left .nav-tabs > li > a, .timeline > li > .timeline-badge h4, .opening-hours strong, #tabs .tabs li, .accordion .accordion-title a, .accordion .accordion-title a:after, .sorting-options-main .price-slide .price label, .sorting-options-main .price-search span, .product-listing .car-grid .car-title a, .car-details-sidebar .details-block ul li strong, .car-details .slider-for .slick-next:before, .entry-title a, .post-password-form input[type="password"], .product .price span, .woocommerce-cart table.shop_table.cart td.product-subtotal .amount, .woocommerce-cart table.shop_table.cart td.product-price .amount, .woocommerce-cart table.shop_table.cart td.product-quantity .qty, .woocommerce .woocommerce-checkout .form-row input.input-text, .woocommerce-checkout .woocommerce form.login .input-text, .woocommerce-checkout .woocommerce form.checkout_coupon .input-text, .woocommerce .woocommerce-checkout-review-order table tfoot .cart-subtotal th, .woocommerce .woocommerce-checkout-review-order table tfoot .order-total th, .woocommerce .woocommerce-checkout-review-order table tfoot .cart-subtotal .amount, .woocommerce-MyAccount-navigation ul li a, .woocommerce-account .woocommerce form .input-text, .mega-menu .widget_shopping_cart_content ul.product_list_widget li.empty, a.bbp-forum-title, li.bbp-forum-freshness a, li.bbp-reply-topic-title a, a.bbp-topic-permalink, li.bbp-topic-freshness a, a.favorite-toggle, a.subscription-toggle, a.bbp-author-name, .bbp-logged-in h4 a, #bbp-user-navigation ul li a, .car-detail-post-option > ul li a, .widget.widget_rss ul li a:hover, .widget.widget_recent_comments ul li a:hover, .widget.widget_rss ul li .rss-date, .woocommerce div.product .woocommerce-tabs .wc-tab .comment-reply-title, .item-listing > .item > .portfolio-item .portfolio-caption a, .search-logo .tabs li, .cars_condition_carousel-wrapper .cardealer-tabs .tabs li, .section-title.style_2 span, .wpb-js-composer .entry-content .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .vc_tta.vc_general.vc_tta-tabs.vc_tta-style-flat li.vc_tta-tab a, .overview-share .info a, .wpcf7-form .contact-form.appointment-form.appointment-form-light input[type="text"], .wpcf7-form .contact-form.appointment-form.appointment-form-light input[type="email"], .wpcf7-form .contact-form.appointment-form.appointment-form-light textarea, .wpb-js-composer .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel-heading a, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-title > a, .wpb-js-composer .entry-content .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-title > a, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title > a, #header .topbar .language .drop-content a, #header.default .topbar .language ul li a .lang-label, #header.transparent-fullwidth .topbar .language ul li a .lang-label, #header.boxed .topbar .language a.cardealer-current-lang:hover, #header.boxed .topbar .language.style-horizontal ul li a:hover .lang-label, .style-classic.car-item .car-content ul.car-bottom-actions.classic-grid li a, .style-classic.car-grid .car-bottom .car-bottom-actions li a { color: #363636; } body, .section-title span, .widget_search input, .form-group label, .feature-box.round-icon i, .call-to-action a, .counter.icon i:before, select, .price-slide .price input, .car-item .car-list li, .feature-box.round-border .icon i, .isotope-filters button, .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form textarea, .widget_recent_entries .recent-post-info span, caption, .widget ul li a, .widget_recent_entries .recent-post-info i, .sorting-options-main .price-slide .price input, .pagination li a, .pagination > li > a, .pagination > li > span, .product-listing .car-grid .price span.old-price, .car-details .car-price .old-price, .details-nav ul li a, .car-details .car-price .old-price, .car-details .slider-for .slick-prev:before, .entry-meta ul li a, .entry-meta a, .tags-2 ul li a, .woocommerce nav.woocommerce-pagination ul li a, .pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span, .pagination ul li span, .error-404 .error-content p, .countdown li p, #buddypress div#item-header div#item-meta, #buddypress .activity-list .activity-content .activity-header, #buddypress .activity-list .activity-content .comment-header, .nice-select, .cd_maintenance .mc4wp-form .form-control, .widget_recent_entries .recent-post-info a, .form-control, .section-field input, .section-field textarea, .section-title.style_2 h2, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .entry-content .vc_tta-color-grey.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-title > a { color: #999999; } .car-item .sold, .car-price .sold { background: url(https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/sold-img.png) no-repeat 0 0; }
</style> <link rel="stylesheet" id="cardealer-responsive-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/responsive.css" type="text/css" media="all" defer> <link rel="stylesheet" id="woocommerce-general-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-woocommerce-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/woocommerce.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-slick-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/slick/slick.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-slick-theme-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/css/slick/slick-theme.css" type="text/css" media="all" defer> <link rel="stylesheet" id="wp-block-library-css" href="https://cardealer.potenzaglobalsolutions.com/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="rs-plugin-settings-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/revslider/public/assets/css/settings.css" type="text/css" media="all" defer> <style id="rs-plugin-settings-inline-css" type="text/css"> #rs-demo-id {} #rev_slider_7_1 .uranus .tp-bullet{ border-radius: 50%; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); -webkit-transition: box-shadow 0.3s ease; transition: box-shadow 0.3s ease; background:transparent; width:15px; height:15px; } #rev_slider_7_1 .uranus .tp-bullet.selected, #rev_slider_7_1 .uranus .tp-bullet:hover { box-shadow: 0 0 0 2px rgba(255, 255, 255,1); border:none; border-radius: 50%; background:transparent; }
#rev_slider_7_1 .uranus .tp-bullet-inner { -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease; transition: background-color 0.3s ease, transform 0.3s ease; top: 0; left: 0; width: 100%; height: 100%; outline: none; border-radius: 50%; background-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0.3); text-indent: -999em; cursor: pointer; position: absolute; }
#rev_slider_7_1 .uranus .tp-bullet.selected .tp-bullet-inner, #rev_slider_7_1 .uranus .tp-bullet:hover .tp-bullet-inner{ transform: scale(0.4); -webkit-transform: scale(0.4); background-color:rgb(255, 255, 255); } </style> <link rel="stylesheet" id="woocommerce-layout-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css" type="text/css" media="all" defer> <link rel="stylesheet" id="woocommerce-smallscreen-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css" type="text/css" media="only screen and (max-width: 768px)" defer> <style id="woocommerce-inline-inline-css" type="text/css"> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel="stylesheet" id="dashicons-css" href="https://cardealer.potenzaglobalsolutions.com/wp-includes/css/dashicons.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="js_composer_front-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="cardealer-child-child-style-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer-child/style.css" type="text/css" media="all" defer> <link rel="stylesheet" id="wp-color-picker-css" href="https://cardealer.potenzaglobalsolutions.com/wp-admin/css/color-picker.min.css" type="text/css" media="all" defer> <link rel="stylesheet" id="pgs_customizser_style-css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/mu-plugins/potenzaglobal/theme-customizser/css/theme-customizser.css" type="text/css" media="all" defer> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400%7CRoboto:400,500"> <script type="text/javascript"> var mejsL10n = {"language":"en","strings":{"mejs.install-flash":"You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https:\/\/get.adobe.com\/flashplayer\/","mejs.fullscreen-off":"Turn off Fullscreen","mejs.fullscreen-on":"Go Fullscreen","mejs.download-video":"Download Video","mejs.fullscreen":"Fullscreen","mejs.time-jump-forward":["Jump forward 1 second","Jump forward %1 seconds"],"mejs.loop":"Toggle Loop","mejs.play":"Play","mejs.pause":"Pause","mejs.close":"Close","mejs.time-slider":"Time Slider","mejs.time-help-text":"Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds.","mejs.time-skip-back":["Skip back 1 second","Skip back %1 seconds"],"mejs.captions-subtitles":"Captions\/Subtitles","mejs.captions-chapters":"Chapters","mejs.none":"None","mejs.mute-toggle":"Mute Toggle","mejs.volume-help-text":"Use Up\/Down Arrow keys to increase or decrease volume.","mejs.unmute":"Unmute","mejs.mute":"Mute","mejs.volume-slider":"Volume Slider","mejs.video-player":"Video Player","mejs.audio-player":"Audio Player","mejs.ad-skip":"Skip ad","mejs.ad-skip-info":["Skip in 1 second","Skip in %1 seconds"],"mejs.source-chooser":"Source Chooser","mejs.stop":"Stop","mejs.speed-rate":"Speed Rate","mejs.live-broadcast":"Live Broadcast","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanian","mejs.arabic":"Arabic","mejs.belarusian":"Belarusian","mejs.bulgarian":"Bulgarian","mejs.catalan":"Catalan","mejs.chinese":"Chinese","mejs.chinese-simplified":"Chinese (Simplified)","mejs.chinese-traditional":"Chinese (Traditional)","mejs.croatian":"Croatian","mejs.czech":"Czech","mejs.danish":"Danish","mejs.dutch":"Dutch","mejs.english":"English","mejs.estonian":"Estonian","mejs.filipino":"Filipino","mejs.finnish":"Finnish","mejs.french":"French","mejs.galician":"Galician","mejs.german":"German","mejs.greek":"Greek","mejs.haitian-creole":"Haitian Creole","mejs.hebrew":"Hebrew","mejs.hindi":"Hindi","mejs.hungarian":"Hungarian","mejs.icelandic":"Icelandic","mejs.indonesian":"Indonesian","mejs.irish":"Irish","mejs.italian":"Italian","mejs.japanese":"Japanese","mejs.korean":"Korean","mejs.latvian":"Latvian","mejs.lithuanian":"Lithuanian","mejs.macedonian":"Macedonian","mejs.malay":"Malay","mejs.maltese":"Maltese","mejs.norwegian":"Norwegian","mejs.persian":"Persian","mejs.polish":"Polish","mejs.portuguese":"Portuguese","mejs.romanian":"Romanian","mejs.russian":"Russian","mejs.serbian":"Serbian","mejs.slovak":"Slovak","mejs.slovenian":"Slovenian","mejs.spanish":"Spanish","mejs.swahili":"Swahili","mejs.swedish":"Swedish","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turkish","mejs.ukrainian":"Ukrainian","mejs.vietnamese":"Vietnamese","mejs.welsh":"Welsh","mejs.yiddish":"Yiddish"}}; </script> <script type="text/javascript"> /* <![CDATA[ / var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/","classPrefix":"mejs-","stretching":"responsive"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/cardealer.potenzaglobalsolutions.com\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var aamLocal = {"nonce":"9bd7a971f3","ajaxurl":"https:\/\/cardealer.potenzaglobalsolutions.com\/wp-admin\/admin-ajax.php"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var pgs_customizer_l10n = {"ajaxurl":"https:\/\/cardealer.potenzaglobalsolutions.com\/wp-admin\/admin-ajax.php","primary_color":"#DB2E2D","secondary_color":"#363636","tertiary_color":"#999999","layout":"standard","layout_class":"site-layout-standard"}; / ]]> */ </script> <link rel="https://api.w.org/" href="https://cardealer.potenzaglobalsolutions.com/wp-json/"> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cardealer.potenzaglobalsolutions.com/xmlrpc.php?rsd"> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://cardealer.potenzaglobalsolutions.com/wp-includes/wlwmanifest.xml"> <link rel="shortlink" href="https://cardealer.potenzaglobalsolutions.com/?p=1705"> <link rel="alternate" type="application/json+oembed" href="https://cardealer.potenzaglobalsolutions.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcardealer.potenzaglobalsolutions.com%2Fhome-2%2F"> <link rel="alternate" type="text/xml+oembed" href="https://cardealer.potenzaglobalsolutions.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcardealer.potenzaglobalsolutions.com%2Fhome-2%2F&format=xml"> <noscript> <style>.woocommerce-product-gallery{ opacity: 1 !important; }</style> </noscript> <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."> <!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://cardealer.potenzaglobalsolutions.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]-→ <meta name="generator" content="Powered by Slider Revolution 5.4.8 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface."> <link rel="icon" href="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/05/favicon48x48.png" sizes="32x32"> <link rel="icon" href="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/05/favicon48x48.png" sizes="192x192"> <link rel="apple-touch-icon-precomposed" href="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/05/favicon48x48.png"> <meta name="msapplication-TileImage" content="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/05/favicon48x48.png"> <script type="text/javascript">function setREVStartSize(e){ try{ e.c=jQuery(e.c);var i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0; if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f}) }catch(d){console.log("Failure at Presize of Slider:"d)} };</script> <style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1496473590275{background-image: url(https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/04-5.jpg?id=2095) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485870607547{background-image: url(https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/01-7.jpg?id=1896) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486473618714{background-color: #f6f6f6 !important;}.vc_custom_1486033008921{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486033008921{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486530628902{margin-bottom: 30px !important;}.vc_custom_1486530667077{margin-bottom: 30px !important;}.vc_custom_1486530704809{margin-bottom: 30px !important;}.vc_custom_1486530747953{margin-bottom: 30px !important;}.vc_custom_1494505658624{background-color: #ffffff !important;}.vc_custom_1495173649316{padding-top: 20px !important;}.vc_custom_1495536403668{padding-top: 15px !important;}.vc_custom_1493979082446{padding-top: 15px !important;}.vc_custom_1495524651518{padding-bottom: 15px !important;}.vc_custom_1493979112655{padding-bottom: 15px !important;}.vc_custom_1493880049892{margin-bottom: 20px !important;}.vc_custom_1493879933584{margin-bottom: 30px !important;}.vc_custom_1493879942664{margin-bottom: 30px !important;}.vc_custom_1493879949905{margin-bottom: 30px !important;}.vc_custom_1493879960128{margin-bottom: 30px !important;}.vc_custom_1493879969072{margin-bottom: 30px !important;}.vc_custom_1493880026349{margin-bottom: 30px !important;}.vc_custom_1493880000054{margin-bottom: 30px !important;}.vc_custom_1493880020717{margin-bottom: 30px !important;}</style> <noscript> <style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style> </noscript> <style type="text/css">/** Thursday 9th January 2020 22:01:19 UTC (core) **//** THIS FILE IS AUTOMATICALLY GENERATED - DO NOT MAKE MANUAL EDITS! **//** Custom CSS should be added to Mega Menu > Menu Themes > Custom Styling **/#mega-menu-wrap-primary-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-row, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-column, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link {transition: none;-webkit-border-radius: 0 0 0 0;-moz-border-radius: 0 0 0 0;-ms-border-radius: 0 0 0 0;-o-border-radius: 0 0 0 0;border-radius: 0 0 0 0;-webkit-box-shadow: none;-moz-box-shadow: none;-ms-box-shadow: none;-o-box-shadow: none;box-shadow: none;background: none;border: 0;bottom: auto;box-sizing: border-box;clip: auto;color: #555;display: block;float: none;font-family: inherit;font-size: 14px;height: auto;left: auto;line-height: 1.7;list-style-type: none;margin: 0;min-height: auto;max-height: none;opacity: 1;outline: none;overflow: visible;padding: 0;position: relative;pointer-events: auto;right: auto;text-align: left;text-decoration: none;text-transform: none;transform: none;top: auto;vertical-align: baseline;visibility: inherit;width: auto;word-wrap: break-word;}#mega-menu-wrap-primary-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-row:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-column:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link:before, #mega-menu-wrap-primary-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-row:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-column:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link:after {display: none;}#mega-menu-wrap-primary-menu {-webkit-border-radius: 0px 0px 0px 0px;-moz-border-radius: 0px 0px 0px 0px;-ms-border-radius: 0px 0px 0px 0px;-o-border-radius: 0px 0px 0px 0px;border-radius: 0px 0px 0px 0px;}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu {background: rgba(0, 0, 0, 0);}}#mega-menu-wrap-primary-menu.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-primary-menu.mega-keyboard-navigation #mega-menu-primary-menu a:focus, #mega-menu-wrap-primary-menu.mega-keyboard-navigation #mega-menu-primary-menu input:focus {-webkit-box-shadow: inset 0px 0px 3px 1px #0ff;-moz-box-shadow: inset 0px 0px 3px 1px #0ff;-ms-box-shadow: inset 0px 0px 3px 1px #0ff;-o-box-shadow: inset 0px 0px 3px 1px #0ff;box-shadow: inset 0px 0px 3px 1px #0ff;}#mega-menu-wrap-primary-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {background: rgba(0, 0, 0, 0);color: #fff;font-weight: normal;text-decoration: none;border-color: #fff;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {color: #fff;background: rgba(0, 0, 0, 0);}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu {visibility: visible;text-align: right;padding: 0px 0px 0px 0px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link {cursor: pointer;display: inline;transition: background 200ms linear, color 200ms linear, border 200ms linear;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group {vertical-align: middle;display: inline-block;transition: none;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-description {transition: none;line-height: 1.5;display: block;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-description {font-style: italic;font-size: 0.8em;text-transform: none;font-weight: normal;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link {display: table-cell;vertical-align: middle;line-height: initial;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {display: block;margin: 0 0 6px 0;text-align: center;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {display: inline-block;transition: none;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link {display: block;line-height: 40px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {display: inline-block;margin: 0 6px 0 0;text-align: left;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {float: right;margin: 0 0 0 6px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-animating > ul.mega-sub-menu {pointer-events: none;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {cursor: default;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {cursor: pointer;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu p {margin-bottom: 10px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu input, #mega-menu-wrap-primary-menu #mega-menu-primary-menu img {max-width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item > ul.mega-sub-menu {display: block;visibility: hidden;opacity: 1;pointer-events: auto;}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {opacity: 0;transition: opacity 200ms ease-in, visibility 200ms ease-in;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {opacity: 1;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {opacity: 0;transform: translate(0, 10px);transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {opacity: 1;transform: translate(0, 0);}#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {transform: translate(0, 10px);transition: transform 200ms ease-in, visibility 200ms ease-in;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {transform: translate(0, 0);}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {visibility: visible;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {visibility: inherit;opacity: 1;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item a[class^='dashicons']:before {font-family: dashicons;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item a.mega-menu-link:before {display: inline-block;font: inherit;font-family: dashicons;position: static;margin: 0 6px 0 0px;vertical-align: top;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;color: inherit;background: transparent;height: auto;width: auto;top: auto;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-hide-text a.mega-menu-link:before {margin: 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {margin: 0 6px 0 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {-webkit-border-radius: 0px 0px 0 0;-moz-border-radius: 0px 0px 0 0;-ms-border-radius: 0px 0px 0 0;-o-border-radius: 0px 0px 0 0;border-radius: 0px 0px 0 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-right > ul.mega-sub-menu {right: 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {-webkit-border-radius: 0px 0px 0 0;-moz-border-radius: 0px 0px 0 0;-ms-border-radius: 0px 0px 0 0;-o-border-radius: 0px 0px 0 0;border-radius: 0px 0px 0 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-menu-item {position: static;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item {margin: 0 0px 0 0;display: inline-block;height: auto;vertical-align: middle;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {float: right;}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {margin: 0 0 0 0px;}}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-float-left {float: left;}}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link:hover {background: rgba(0, 0, 0, 0);color: #fff;font-weight: normal;text-decoration: none;border-color: #fff;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {background: rgba(0, 0, 0, 0);color: #fff;font-weight: normal;text-decoration: none;border-color: #fff;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {color: #fff;background: rgba(0, 0, 0, 0);}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {border-top: 0px solid #fff;border-left: 0px solid #fff;border-right: 0px solid #fff;border-bottom: 0px solid #fff;outline: none;text-decoration: none;padding: 0px 10px 0px 10px;line-height: inherit;font-weight: normal;height: inherit;vertical-align: baseline;text-align: left;width: auto;display: block;color: #fff;text-transform: uppercase;text-decoration: none;background: rgba(254, 0, 0, 0);-webkit-border-radius: 0px 0px 0px 0px;-moz-border-radius: 0px 0px 0px 0px;-ms-border-radius: 0px 0px 0px 0px;-o-border-radius: 0px 0px 0px 0px;border-radius: 0px 0px 0px 0px;font-family: inherit;font-size: 13px;}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link {line-height: inherit;display: table-cell;vertical-align: middle;}}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {display: none;}}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item {display: list-item;margin: 0;clear: both;border: 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {float: none;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {-webkit-border-radius: 0 0 0 0;-moz-border-radius: 0 0 0 0;-ms-border-radius: 0 0 0 0;-o-border-radius: 0 0 0 0;border-radius: 0 0 0 0;border: 0;margin: 0;line-height: 40px;height: 40px;padding: 0 10px;background: transparent;text-align: left;color: #fff;font-size: 13px;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {width: 100%;float: left;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {float: left;min-height: 1px;}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {width: 25%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {width: 75%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {width: 20%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {width: 40%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {width: 60%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {width: 80%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {width: 16.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {width: 83.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {width: 14.28571%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {width: 28.57143%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {width: 42.85714%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {width: 57.14286%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {width: 71.42857%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {width: 85.71429%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {width: 12.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {width: 25%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {width: 37.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {width: 62.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {width: 75%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {width: 87.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {width: 11.11111%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {width: 22.22222%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {width: 44.44444%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {width: 55.55556%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {width: 77.77778%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {width: 88.88889%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {width: 10%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {width: 20%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {width: 30%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {width: 40%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {width: 60%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {width: 70%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {width: 80%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {width: 90%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {width: 9.09091%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {width: 18.18182%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {width: 27.27273%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {width: 36.36364%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {width: 45.45455%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {width: 54.54545%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {width: 63.63636%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {width: 72.72727%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {width: 81.81818%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {width: 90.90909%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {width: 8.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {width: 16.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {width: 25%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {width: 41.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {width: 58.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {width: 75%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {width: 83.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {width: 91.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {width: 100%;}}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {width: 100%;clear: both;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {padding: 10px 10px 10px 10px;width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {z-index: 999;-webkit-border-radius: 0px 0px 0px 0px;-moz-border-radius: 0px 0px 0px 0px;-ms-border-radius: 0px 0px 0px 0px;-o-border-radius: 0px 0px 0px 0px;border-radius: 0px 0px 0px 0px;background: #fff;padding: 10px 10px 10px 10px;position: absolute;width: 100%;border-top: 5px solid #db2d2e;border-left: 0px solid #db2d2e;border-right: 0px solid #db2d2e;border-bottom: 0px solid #db2d2e;max-width: none;left: 0;-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {float: left;position: static;width: 100%;}}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {width: 25%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {width: 75%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {width: 20%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {width: 40%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {width: 60%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {width: 80%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {width: 16.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {width: 83.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {width: 14.28571%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {width: 28.57143%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {width: 42.85714%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {width: 57.14286%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {width: 71.42857%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {width: 85.71429%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {width: 12.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {width: 25%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {width: 37.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {width: 50%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {width: 62.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {width: 75%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {width: 87.5%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {width: 11.11111%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {width: 22.22222%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {width: 33.33333%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {width: 44.44444%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {width: 55.55556%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {width: 66.66667%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {width: 77.77778%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {width: 88.88889%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {width: 100%;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {margin: 5px 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {clear: both;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {margin-left: 10px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {margin-left: 10px;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {color: #555;font-family: inherit;font-size: 14px;display: block;float: left;clear: none;padding: 10px 10px 10px 10px;vertical-align: top;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {clear: left;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {color: #555;font-family: inherit;font-size: 14px;text-transform: none;text-decoration: none;font-weight: normal;margin: 0px 0px 0px 0px;padding: 0px 0px 5px 0px;vertical-align: top;display: block;visibility: inherit;border-top: 0px solid #fff;border-left: 0px solid #fff;border-right: 0px solid #fff;border-bottom: 0px solid #fff;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {/* Mega Menu > Menu Themes > Mega Menus > Second Level Menu Items */color: #555;font-family: inherit;font-size: 14px;text-transform: none;text-decoration: none;font-weight: normal;margin: 0px 0px 0px 0px;padding: 0px 0px 0px 0px;vertical-align: top;display: block;border-top: 0px solid #fff;border-left: 0px solid #fff;border-right: 0px solid #fff;border-bottom: 0px solid #fff;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {/* Mega Menu > Menu Themes > Mega Menus > Second Level Menu Items (Hover) */color: #db2d2e;font-weight: normal;text-decoration: none;background: rgba(0, 0, 0, 0);}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {/* Mega Menu > Menu Themes > Mega Menus > Third Level Menu Items */color: #666;font-family: inherit;font-size: 14px;text-transform: none;text-decoration: none;font-weight: normal;margin: 0;padding: 0px 0px 0px 0px;vertical-align: top;display: block;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {/* Mega Menu > Menu Themes > Mega Menus > Third Level Menu Items (Hover) */color: #db2d2e;font-weight: normal;text-decoration: none;background: rgba(0, 0, 0, 0);}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {border: 0;padding: 10px;-webkit-border-radius: 0 0 0 0;-moz-border-radius: 0 0 0 0;-ms-border-radius: 0 0 0 0;-o-border-radius: 0 0 0 0;border-radius: 0 0 0 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {width: 100%;clear: both;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {color: #666;font-family: inherit;font-size: 14px;text-transform: none;text-decoration: none;font-weight: normal;margin: 0;border: 0;padding: 0px 0px 0px 0px;vertical-align: top;display: block;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {color: #db2d2e;font-weight: normal;text-decoration: none;background: rgba(0, 0, 0, 0);}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu {z-index: 999;position: absolute;width: 200px;border-top: 5px solid #db2d2e;border-left: 0px solid #db2d2e;border-right: 0px solid #db2d2e;border-bottom: 0px solid #db2d2e;padding: 0px 0px 0px 0px;background: #fff;max-width: none;-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);-o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu {float: left;position: static;width: 100%;padding: 0;border: 0;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {/* Hide divider on last menu item */border-bottom: 1px solid #ededed;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child {border-bottom: 0;-webkit-box-shadow: none;-moz-box-shadow: none;-ms-box-shadow: none;-o-box-shadow: none;box-shadow: none;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {clear: both;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {display: block;background: #fff;color: #333;font-family: inherit;font-size: 13px;font-weight: normal;padding: 7px 12px 7px 12px;line-height: 24px;text-decoration: none;text-transform: none;vertical-align: baseline;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {border-top-left-radius: 0px;border-top-right-radius: 0px;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {border-top-left-radius: 0;border-top-right-radius: 0;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {border-bottom-right-radius: 0;border-bottom-left-radius: 0;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {background: #f6f6f6;font-weight: inherit;text-decoration: none;color: #db2d2e;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {position: absolute;left: 100%;top: 0;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {position: static;left: 0;width: 100%;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {padding-left: 20px;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link span.mega-indicator:after {content: '\f347';display: inline-block;font-family: dashicons;margin: 0 0 0 6px;vertical-align: top;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;transform: rotate(0);color: inherit;position: relative;background: transparent;height: auto;width: auto;right: auto;line-height: inherit;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {display: none;float: right;height: auto;width: auto;background: transparent;position: relative;pointer-events: auto;left: auto;min-width: auto;line-height: inherit;color: inherit;font-size: inherit;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {content: '\f343';}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children a.mega-menu-link:after {float: right;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after {display: none;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator {display: inline-block;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link:after {display: none;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after {display: none;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {content: '\f345';float: right;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {content: '\f347';}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {text-align: right;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {text-align: left;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {float: right;margin: 0 0 0 6px;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {float: left;margin: 0 6px 0 0;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {content: '\f341';float: left;margin: 0;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {content: '\f347';float: right;}}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {left: -100%;top: 0;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu li[class^='mega-lang-item'] > a.mega-menu-link > img {display: inline;}#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link > img.iclflag {display: inline;margin-right: 8px;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-hide-on-mobile, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {display: none;}}@media only screen and (min-width: 993px) {#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-hide-on-desktop, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {display: none;}}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu:after {content: "";display: table;clear: both;}}#mega-menu-wrap-primary-menu .mega-menu-toggle {display: none;z-index: 1;cursor: pointer;background: rgba(0, 0, 0, 0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;line-height: 40px;height: 40px;text-align: left;-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;-webkit-tap-highlight-color: transparent;outline: none;white-space: nowrap;}#mega-menu-wrap-primary-menu .mega-menu-toggle img {max-width: 100%;padding: 0;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu .mega-menu-toggle {display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;}}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right {display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-ms-flex-preferred-size: 33.33%;-webkit-flex-basis: 33.33%;flex-basis: 33.33%;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left {-webkit-box-flex: 1;-ms-flex: 1;-webkit-flex: 1;flex: 1;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;justify-content: flex-start;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {margin-left: 6px;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center {-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {margin-left: 3px;margin-right: 3px;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right {-webkit-box-flex: 1;-ms-flex: 1;-webkit-flex: 1;flex: 1;-webkit-box-pack: end;-ms-flex-pack: end;-webkit-justify-content: flex-end;justify-content: flex-end;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {margin-right: 6px;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block {display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;height: 100%;-webkit-align-self: center;-ms-flex-item-align: center;align-self: center;-ms-flex-negative: 0;-webkit-flex-shrink: 0;flex-shrink: 0;}@media only screen and (max-width: 992px) {#mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu {background: #333;padding: 0;display: none;}#mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-item > ul.mega-sub-menu {display: none;visibility: visible;opacity: 1;}#mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {display: block;}#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary-menu {display: block;}}#mega-menu-wrap-primary-menu .mega-menu-toggle {/** Push menu onto new line **/}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1:before {content: '\f333';font-family: 'dashicons';font-size: 24px;color: #fff;margin: 0 5px 0 0;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {color: #fff;font-size: 14px;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {display: none;}#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {display: inline;}#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:before {content: '\f153';}#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {display: inline;}#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {display: none;}#mega-menu-wrap-primary-menu {clear: both;}</style> <style id="iris-css">.iris-picker{display:block;position:relative}.iris-picker,.iris-picker *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input.iris-picker{margin-top:4px}.iris-error{background-color:#ffafaf}.iris-border{border-radius:3px;border:1px solid #aaa;width:200px;background-color:#fff}.iris-picker-inner{position:absolute;top:0;right:0;left:0;bottom:0}.iris-border .iris-picker-inner{top:10px;right:10px;left:10px;bottom:10px}.iris-picker .iris-square-inner{position:absolute;left:0;right:0;top:0;bottom:0}.iris-picker .iris-square,.iris-picker .iris-slider,.iris-picker .iris-square-inner,.iris-picker .iris-palette{border-radius:3px;box-shadow:inset 0 0 5px rgba(0,0,0,.4);height:100%;width:12.5%;float:left;margin-right:5%}.iris-only-strip .iris-slider{width:100%}.iris-picker .iris-square{width:76%;margin-right:10%;position:relative}.iris-only-strip .iris-square{display:none}.iris-picker .iris-square-inner{width:auto;margin:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-square-inner,.iris-ie-9 .iris-palette{box-shadow:none;border-radius:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-palette{outline:1px solid rgba(0,0,0,.1)}.iris-ie-lt9 .iris-square,.iris-ie-lt9 .iris-slider,.iris-ie-lt9 .iris-square-inner,.iris-ie-lt9 .iris-palette{outline:1px solid #aaa}.iris-ie-lt9 .iris-square .ui-slider-handle{outline:1px solid #aaa;background-color:#fff;-ms-filter:"alpha(Opacity=30)"}.iris-ie-lt9 .iris-square .iris-square-handle{background:0 0;border:3px solid #fff;-ms-filter:"alpha(Opacity=50)"}.iris-picker .iris-strip{margin-right:0;position:relative}.iris-picker .iris-strip .ui-slider-handle{position:absolute;background:0 0;margin:0;right:-3px;left:-3px;border:4px solid #aaa;border-width:4px 3px;width:auto;height:6px;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2);opacity:.9;z-index:5;cursor:ns-resize}.iris-strip-horiz .iris-strip .ui-slider-handle{right:auto;left:auto;bottom:-3px;top:-3px;height:auto;width:6px;cursor:ew-resize}.iris-strip .ui-slider-handle:before{content:" ";position:absolute;left:-2px;right:-2px;top:-3px;bottom:-3px;border:2px solid #fff;border-radius:3px}.iris-picker .iris-slider-offset{position:absolute;top:11px;left:0;right:0;bottom:-3px;width:auto;height:auto;background:transparent;border:0;border-radius:0}.iris-strip-horiz .iris-slider-offset{top:0;bottom:0;right:11px;left:-3px}.iris-picker .iris-square-handle{background:transparent;border:5px solid #aaa;border-radius:50%;border-color:rgba(128,128,128,.5);box-shadow:none;width:12px;height:12px;position:absolute;left:-10px;top:-10px;cursor:move;opacity:1;z-index:10}.iris-picker .ui-state-focus .iris-square-handle{opacity:.8}.iris-picker .iris-square-handle:hover{border-color:#999}.iris-picker .iris-square-value:focus .iris-square-handle{box-shadow:0 0 2px rgba(0,0,0,.75);opacity:.8}.iris-picker .iris-square-handle:hover::after{border-color:#fff}.iris-picker .iris-square-handle::after{position:absolute;bottom:-4px;right:-4px;left:-4px;top:-4px;border:3px solid #f9f9f9;border-color:rgba(255,255,255,.8);border-radius:50%;content:" "}.iris-picker .iris-square-value{width:8px;height:8px;position:absolute}.iris-ie-lt9 .iris-square-value,.iris-mozilla .iris-square-value{width:1px;height:1px}.iris-palette-container{position:absolute;bottom:0;left:0;margin:0;padding:0}.iris-border .iris-palette-container{left:10px;bottom:10px}.iris-picker .iris-palette{margin:0;cursor:pointer}.iris-square-handle,.ui-slider-handle{border:0;outline:0}</style> <style type="text/css">.cd-space-5e17a2af5c5df{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2af5c5df{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2af5c5df{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2af5c5df{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2af5c5df{ height:40px}}.cd-space-5e17a2af5dee5{ height:20px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2af5dee5{ height:20px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2af5dee5{ height:15px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2af5dee5{ height:10px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2af5dee5{ height:10px}}.cd-space-5e17a2af5ea00{ height:0px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2af5ea00{ height:0px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2af5ea00{ height:40px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2af5ea00{ height:30px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2af5ea00{ height:30px}}.cd-space-5e17a2af5f799{ height:410px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2af5f799{ height:50px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2af5f799{ height:50px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2af5f799{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2af5f799{ height:50px}}.cd-space-5e17a2af5fbf6{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2af5fbf6{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2af5fbf6{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2af5fbf6{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2af5fbf6{ height:40px}}.cd-space-5e17a2b0a209a{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a209a{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a209a{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a209a{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a209a{ height:40px}}.cd-space-5e17a2b0a2747{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a2747{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a2747{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a2747{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a2747{ height:40px}}.cd-space-5e17a2b0a465a{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a465a{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a465a{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a465a{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a465a{ height:40px}}.cd-space-5e17a2b0a4b81{ height:80px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a4b81{ height:70px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a4b81{ height:60px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a4b81{ height:50px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a4b81{ height:40px}}.cd-space-5e17a2b0a58c3{ height:50px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a58c3{ height:40px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a58c3{ height:30px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a58c3{ height:20px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a58c3{ height:10px}}.cd-space-5e17a2b0a5d3e{ height:60px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a5d3e{ height:50px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a5d3e{ height:40px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a5d3e{ height:30px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a5d3e{ height:30px}}.cd-space-5e17a2b0a77e2{ height:60px} @media only screen and (max-width: 1200px) {.cd-space-5e17a2b0a77e2{ height:50px}}@media only screen and (max-width: 992px) {.cd-space-5e17a2b0a77e2{ height:40px}}@media only screen and (max-width: 767px) {.cd-space-5e17a2b0a77e2{ height:30px}}@media only screen and (max-width: 479px) {.cd-space-5e17a2b0a77e2{ height:30px}}</style> </head> <body class="page-template page-template-templates page-template-page-vc_compatible page-template-templatespage-vc_compatible-php page page-id-1705 woocommerce-js mega-menu-primary-menu sidebar-right_sidebar is_vc_enabled device-type-mobile site-layout-standard wpb-js-composer js-comp-ver-5.5.2 vc_responsive" itemscope itemtype="http://schema.org/WebPage"> <link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900" rel="stylesheet"> <div class="header-preview"> <div class="preview-logo"> <a href="https://themeforest.net/item/car-dealer-automotive-responsive-wordpress-theme/20213334?ref=Potenzaglobalsolutions"><img width="152" src="https://cardealer.potenzaglobalsolutions.com/wp-content/mu-plugins/envato_market-logo.svg" alt="Envato Market Logo"></a> </div> <div class="preview-actions"> <div class="actions-buy"> <a class="primary-btn" href="https://themeforest.net/item/car-dealer-automotive-responsive-wordpress-theme/20213334?ref=Potenzaglobalsolutions&license=regular&open_purchase_for_item_id=20213334&purchasable=source">Buy Now $89</a> </div> <div class="actions-remove"> <a class="frame-close" href="javascript:void(0)"><span>Remove Frame</span></a> </div> </div> </div> <style> .header-preview {height: 55px; background-color:#262626; z-index: 99; line-height: 55px;} .preview-logo {margin-left:20px; float:left;} .preview-logo a{vertical-align: top;}
/*------------------------*/ /* Buy Button */ /*------------------------*/ .preview-actions{float:right;} .actions-buy{display: inline-block; padding: 0 20px;} .actions-buy .primary-btn{box-shadow:0 2px 0 #6f9a37; background-color:#82b440; position:relative; font-size:14px; padding:5px 20px; line-height:1.5; color: #ffffff; text-decoration:none !important; display:inline-block; margin:0; border:0; border-radius:4px; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; transition: all .25s ease;} .actions-buy .primary-btn:hover {background-color: #7aa93c;}
/*------------------------*/ /* Close Frame */ /*------------------------*/ .actions-remove{display: inline-block; padding: 0 20px; border-left: 1px solid #333;} .actions-remove a{position: relative; padding-left: 20px; color: #999; font-size:12px; text-decoration: none; font-weight:500; line-height:20px; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; transition: all .25s ease;} .actions-remove a:hover{color:#ffffff;}
.actions-remove a:before, .actions-remove a:after{position: absolute; left: 5px; top: 3px; content:""; height: 12px; width:3px; background-color:#ffffff;} .actions-remove a:before{transform: rotate(45deg);} .actions-remove a:after {transform: rotate(-45deg);}
/*------------------------*/ /* Responsive */ /*------------------------*/ @media (max-width: 600px) { .preview-logo a{width:130px; height:18px; background-size: 130px 18px;} .actions-buy, .actions-remove{padding: 0 10px;} .actions-buy .primary-btn{font-size: 12px; padding: 5px 10px;} .actions-remove a span{display:none !important;} } </style> <!-- Google Tag Manager (noscript) --> <noscript> <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MRFCVLP" height="0" width="0" style="display:none;visibility:hidden"></iframe> </noscript> <!-- End Google Tag Manager (noscript) --> <!-- Main Body Wrapper Element --> <div id="page" class="hfeed site page-wrapper "> <!-- preloader --> <div id="loading" style="opacity: 1;"> <div id="loading-center"> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/preloader_img/loader.gif" alt="Loader" title="loading..."> </div> </div> <!-- header --> <header id="header" class="transparent-fullwidth default-header"> <div class="topbar"> <div class="container-fluid"> <div class="row"> <div class="col-lg-6 col-sm-6"> <div class="topbar-left text-left"> <ul class="list-inline"> <li class="topbar_item topbar_item_type-contact_timing"><i class="fa fa-clock-o"></i> 10:00 AM To 5:00 PM</li> <li class="topbar_item topbar_item_type-email"><i class="fa fa-envelope-o"></i> <a href="mailto:[email protected]">[email protected]</a></li> </ul> </div> </div> <div class="col-lg-6 col-sm-6"> <div class="topbar-right text-right"> <ul class="list-inline"> <li class="topbar_item topbar_item_type-phone_number"><i class="fa fa-phone"></i> (007) 123 456 7890</li> <li class="topbar_item topbar_item_type-social_profiles"><a href="https://www.facebook.com"><i class="fa fa-facebook"></i></a></li> <li class="topbar_item topbar_item_type-social_profiles"><a href="https://www.twitter.com"><i class="fa fa-twitter"></i></a></li> <li class="topbar_item topbar_item_type-social_profiles"><a href="https://plus.google.com"><i class="fa fa-google-plus"></i></a></li> <li class="topbar_item topbar_item_type-social_profiles"><a href="http://www.youtube.com"><i class="fa fa-youtube"></i></a></li> <li class="topbar_item topbar_item_type-login"> <a href="https://cardealer.potenzaglobalsolutions.com/dealer-account/"> <i class="fa fa-lock"></i> Login </a> </li> </ul> </div> </div> </div> </div> </div> <div class="menu"> <!-- menu start --> <nav id="menu-1" class="mega-menu"> <!-- menu list items container --> <div class="menu-list-items"> <div class="menu-inner" style="height: 65px;"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12 col-md-12"> <!-- menu logo --> <ul class="menu-logo"> <li> <a href="https://cardealer.potenzaglobalsolutions.com/" rel="home"> <img class="site-logo" src="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/default/logo-light.png" alt="Car Dealer"> <img class="sticky-logo" src="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/default/logo-light.png" alt="Car Dealer"> </a> <div class="mobile-icons-trigger"> <div class="mobile-searchform-wrapper"> <div class="search"> <a class="search-btn not_click" href="javascript:void(0);"> </a> </div> </div> <div class="mobile-cart-wrapper"> <a class="cart-contents cart-mobile-content" href="https://cardealer.potenzaglobalsolutions.com/cart/"> <span class="woo-cart-items"><i class="fa fa-shopping-cart" aria-hidden="true"></i></span><span class="woo-cart-details count">0</span> </a> </div> <div class="menu-item menu-item-compare" style="display:none"> <a class="" href="javascript:void(0)"> <span class="compare-items"> <i class="fa fa-exchange"></i> </span> <span class="compare-details count">0</span> </a> </div> </div> <form role="search" method="get" id="mobile-searchform" name="searchform" class="searchform" action="https://cardealer.potenzaglobalsolutions.com/"> <div class="search"> <div class="search-box not-click"> <input type="text" value="" name="s" id="mobile-menu-s" placeholder="Search..." class="not-click ui-autocomplete-input" autocomplete="off"> <div class="cardealer-auto-compalte"> <ul></ul> </div> </div> </div> </form> <div class="widget_shopping_cart_content hidden-xs"> <p class="woocommerce-mini-cart__empty-message">No products in the cart.</p> </div> <div class="menu-mobile-collapse-trigger" style="display: none;"> <span></span> </div></li> </ul> <!-- menu links --> <div id="mega-menu-wrap-primary-menu" class="mega-menu-wrap"> <div class="mega-menu-toggle" tabindex="0"> <div class="mega-toggle-blocks-left"></div> <div class="mega-toggle-blocks-center"></div> <div class="mega-toggle-blocks-right"> <div class="mega-toggle-block mega-menu-toggle-block mega-toggle-block-1" id="mega-toggle-block-1"> <span class="mega-toggle-label"><span class="mega-toggle-label-closed"></span><span class="mega-toggle-label-open"></span></span> </div> </div> </div> <ul id="mega-menu-primary-menu" class="mega-menu max-mega-menu mega-menu-horizontal" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="disabled" data-effect-speed-mobile="200" data-mobile-force-width="false" data-second-click="close" data-document-click="collapse" data-vertical-behaviour="standard" data-breakpoint="992" data-unbind="true"> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-current-menu-ancestor mega-current-menu-parent mega-current_page_parent mega-current_page_ancestor mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-109 hoverTrigger" id="mega-menu-item-109"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-default/" aria-haspopup="true" tabindex="0">Home<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-first-item mega-first-item mega-menu-item-2853" id="mega-menu-item-2853"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-default/">Home 1</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-current-menu-item mega-page_item mega-page-item-1705 mega-current_page_item mega-menu-item-2825" id="mega-menu-item-2825"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-2/">Home 2</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2826" id="mega-menu-item-2826"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-3/">Home 3</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2827" id="mega-menu-item-2827"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-4/">Home 4</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2828" id="mega-menu-item-2828"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-5/">Home 5</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2829" id="mega-menu-item-2829"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-6/">Home 6</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3584" id="mega-menu-item-3584"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-7/">Home 7</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3583" id="mega-menu-item-3583"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-8/">Home 8</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3582" id="mega-menu-item-3582"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-9/">Home 9</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3581" id="mega-menu-item-3581"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-10/">Home 10</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-10208" id="mega-menu-item-10208"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?layout-style=lazyload">Home Inventory</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-8254" id="mega-menu-item-8254"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-11/">Home Directory</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-8253" id="mega-menu-item-8253"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/home-12/">Car landing</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-8275" id="mega-menu-item-8275"><a target="_blank" class="mega-menu-link" href="http://themes.potenzaglobalsolutions.com/cardealer-wp/service/">Car Services</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-megamenu mega-align-bottom-left mega-menu-megamenu mega-menu-item-2830 hoverTrigger" id="mega-menu-item-2830"><a class="mega-menu-link" href="#" aria-haspopup="true" tabindex="0">Pages<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-first-item mega-menu-item-2831" id="mega-menu-item-2831"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/about-1/">About 1</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2857" id="mega-menu-item-2857"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/team-01/">Team 01</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5030" id="mega-menu-item-5030"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/page-left-sidebar/">Page Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2833" id="mega-menu-item-2833"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/faq-01/">Faq 1</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-2832" id="mega-menu-item-2832"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/about-2/">About 2</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2858" id="mega-menu-item-2858"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/team-02/">Team 02</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5029" id="mega-menu-item-5029"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/page-both-sidebar/">Page Both Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2834" id="mega-menu-item-2834"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/faq-02/">Faq 2</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-2854" id="mega-menu-item-2854"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/service-01/">Service 1</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-columns-2-of-8 mega-menu-item-10231" id="mega-menu-item-10231"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/teams/paul-flavius/">Team Single</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-10221" id="mega-menu-item-10221"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/client-testimonials/">Testimonials</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2859" id="mega-menu-item-2859"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/contact-01/">Contact 01</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-2855" id="mega-menu-item-2855"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/service-02/">Service 2</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-columns-2-of-8 mega-menu-item-5028" id="mega-menu-item-5028"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/404">404</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5024" id="mega-menu-item-5024"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/typography/">Typography</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-2860" id="mega-menu-item-2860"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/contact-02/">Contact 02</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-5043" id="mega-menu-item-5043"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/privacy-policy/">Privacy Policy</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5031" id="mega-menu-item-5031"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/page-right-sidebar/">Page Right Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5044" id="mega-menu-item-5044"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/terms-and-conditions/">Terms and Conditions</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-columns-2-of-8 mega-last-item mega-menu-item-5027" id="mega-menu-item-5027"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/mntcs/coming-soon/">Coming Soon</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-274 hoverTrigger" id="mega-menu-item-274"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/" aria-haspopup="true" tabindex="0">Blog<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-first-item mega-menu-item-5032 hoverTrigger" id="mega-menu-item-5032"><a class="mega-menu-link" href="#" aria-haspopup="true">Blog Classic<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-first-item mega-menu-item-5034" id="mega-menu-item-5034"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=classic-left-sidebar">Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5035" id="mega-menu-item-5035"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=classic-right-sidebar">Right Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-5036" id="mega-menu-item-5036"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=classic-fullwidth">Fullwidth</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-last-item mega-menu-item-5037 hoverTrigger" id="mega-menu-item-5037"><a class="mega-menu-link" href="#" aria-haspopup="true">Masonry<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-first-item mega-menu-item-5038" id="mega-menu-item-5038"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=masonry-2-column">2 column</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5039" id="mega-menu-item-5039"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=masonry-3-column">3 column</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5040" id="mega-menu-item-5040"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=masonry-4-column">4 column</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5041" id="mega-menu-item-5041"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=masonry-left-sidebar">Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-5042" id="mega-menu-item-5042"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/blog/?layout=masonry-right-sidebar">Right Sidebar</a></li> </ul> </li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-8727 hoverTrigger" id="mega-menu-item-8727"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars?layout-style=default" aria-haspopup="true" tabindex="0">Cars<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-first-item mega-menu-item-5947 hoverTrigger" id="mega-menu-item-5947"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-left&layout-style=default" aria-haspopup="true">Cars Grid<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-first-item mega-menu-item-5957" id="mega-menu-item-5957"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-left&layout-style=default">Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5946" id="mega-menu-item-5946"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-right&layout-style=default">Right Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5948" id="mega-menu-item-5948"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-full&layout-style=default">Without Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-10209" id="mega-menu-item-10209"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-masonry-left&layout-style=default">Masonry Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-10210" id="mega-menu-item-10210"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-masonry-right&layout-style=default">Masonry Right Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-10211" id="mega-menu-item-10211"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-masonry-full&layout-style=default">Masonry Wthout Sidebar</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-last-item mega-menu-item-5949 hoverTrigger" id="mega-menu-item-5949"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=no&lay_style=view-list-left&layout-style=default" aria-haspopup="true">Cars List<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-first-item mega-menu-item-5950" id="mega-menu-item-5950"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=no&lay_style=view-list-left&layout-style=default">Left Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5951" id="mega-menu-item-5951"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=no&lay_style=view-list-right&layout-style=default">Right Sidebar</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-5952" id="mega-menu-item-5952"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/?cars_pp=12&cars_order=asc&cars_grid=no&lay_style=view-list-full&layout-style=default">Without Sidebar</a></li> </ul> </li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-5953 hoverTrigger" id="mega-menu-item-5953"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/2009-porsche-911-turbo-cabriole?layout=layout-01" aria-haspopup="true" tabindex="0">Car Details<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-first-item mega-menu-item-5954" id="mega-menu-item-5954"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/2007-ford-mustang-deluxe/?layout=layout-01">Detail Style 1</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-5955" id="mega-menu-item-5955"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/2007-ford-mustang-deluxe/?layout=layout-02">Detail Style 2</a></li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-last-item mega-menu-item-5956" id="mega-menu-item-5956"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cars/2007-ford-mustang-deluxe/?layout=layout-03">Detail Style 3</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-megamenu mega-align-bottom-left mega-menu-megamenu mega-menu-item-5014 hoverTrigger" id="mega-menu-item-5014"><a class="mega-menu-link" href="#" aria-haspopup="true" tabindex="0">Shortcodes<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-first-item mega-menu-item-5022" id="mega-menu-item-5022"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/carousel-slider/">Carousel Slider</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5016" id="mega-menu-item-5016"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/testimonial/">Testimonial</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5023" id="mega-menu-item-5023"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/buttons/">Buttons</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5021" id="mega-menu-item-5021"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/columns/">Columns</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-5020" id="mega-menu-item-5020"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/content-box/">Content Box</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5019" id="mega-menu-item-5019"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/counter/">Counter</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5017" id="mega-menu-item-5017"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/post-style/">Post Style</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5018" id="mega-menu-item-5018"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/lists-style/">Lists Style</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-5015" id="mega-menu-item-5015"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/team-style/">Team-Style</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5025" id="mega-menu-item-5025"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/feature-box/">Feature Box</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5026" id="mega-menu-item-5026"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/social-icon/">Social Icon</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5894" id="mega-menu-item-5894"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/quick-link/">Quick Link</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-clear mega-menu-item-5895" id="mega-menu-item-5895"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/call-to-action/">Call to Action</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-menu-item-5896" id="mega-menu-item-5896"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/multitab/">Multitab</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-columns-2-of-8 mega-last-item mega-menu-item-5897" id="mega-menu-item-5897"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/timeline/">Timeline</a></li> </ul> </li> <li class="mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-last-item mega-menu-item-8168 hoverTrigger" id="mega-menu-item-8168"><a class="mega-menu-link" href="#" aria-haspopup="true" tabindex="0">Shop<span class="mega-indicator"></span> <div class="mobileTriggerButton"></div></a> <ul class="mega-sub-menu effect-fade" style="transition: all 400ms ease 0s;"> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-first-item mega-menu-item-8142" id="mega-menu-item-8142"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/shop/">Shop Listing</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-8139" id="mega-menu-item-8139"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/cart/">Cart</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-8140" id="mega-menu-item-8140"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/checkout/">Checkout</a></li> <li class="mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-last-item mega-menu-item-8141" id="mega-menu-item-8141"><a class="mega-menu-link" href="https://cardealer.potenzaglobalsolutions.com/my-account/">My Account</a></li> </ul> </li> <li class="menu-item menu-item-type-cart menu-item-type-woocommerce-cart"> <div class="menu-item-woocommerce-cart-wrapper"> <a class="cart-contents cart-mobile-content" href="https://cardealer.potenzaglobalsolutions.com/cart/"> <span class="woo-cart-items"><i class="fa fa-shopping-cart" aria-hidden="true"></i></span><span class="woo-cart-details count">0</span> </a> </div></li> <li class="menu-item menu-item-search"> <form role="search" method="get" id="menu-searchform" name="searchform" class="searchform" action="https://cardealer.potenzaglobalsolutions.com/"> <div class="search"> <a class="search-btn not_click" href="javascript:void(0);"> </a> <div class="search-box not-click"> <input type="hidden" name="post_type" value="cars"> <input type="text" value="" name="s" id="menu-s" placeholder="Search..." class="not-click ui-autocomplete-input" autocomplete="off"> <i class="fa fa-search"></i> <div class="cardealer-auto-compalte"> <ul></ul> </div> </div> </div> </form></li> </ul> </div> </div> </div> </div> </div> </div> </nav> <!-- menu end --> </div> </header> <div class="wrapper" id="main"> <div class="site-content container" id="primary"> <div role="main" id="content"> <article id="post-1705" class="entry-content post-1705 page type-page status-publish hentry"> <div data-vc-full-width="true" data-vc-full-width-init="true" class="vc_row wpb_row vc_row-fluid row-background-light" style="position: relative; left: 9.53674e-07px; box-sizing: border-box; width: 485px; padding-left: 0px; padding-right: 0px;"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill"> <div class="vc_column-inner vc_custom_1486033008921"> <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element "> <div class="wpb_wrapper"> <div class="forcefullwidth_wrapper_tp_banner" id="rev_slider_7_1_forcefullwidth" style="position:relative;width:100%;height:auto;margin-top:0px;margin-bottom:0px"> <div id="rev_slider_7_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" data-source="gallery" style="margin: 0px auto; background: transparent; padding: 0px; height: 306px; position: absolute; overflow: visible; width: 485px; left: -15px;"> <!-- START REVOLUTION SLIDER 5.4.8 fullwidth mode --> <div id="rev_slider_7_1" class="rev_slider fullwidthabanner revslider-initialised tp-simpleresponsive rev_redraw_on_blurfocus" style="max-height: 800px; margin-top: 0px; margin-bottom: 0px; height: 306px;" data-version="5.4.8" data-slideactive="rs-15"> <ul class="tp-revslider-mainul" style="visibility: visible; display: block; overflow: hidden; width: 100%; height: 100%; max-height: none;"> <!-- SLIDE --> <li data-index="rs-15" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/010f2-75b06-bg-1-100x50.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="" class="tp-revslider-slidesli active-revslide" style="width: 100%; height: 100%; overflow: hidden; z-index: 20; visibility: inherit; opacity: 1; background-color: rgba(255, 255, 255, 0);"> <!-- MAIN IMAGE --> <div class="slotholder" style="position: absolute; top: 0px; left: 0px; z-index: 0; width: 100%; height: 100%; visibility: inherit; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);"> <!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/010f2-75b06-bg-1.jpg" alt="" title="Home 2" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg defaultimg" data-no-retina="">--> <div class="tp-bgimg defaultimg " data-bgcolor="undefined" style="background-repeat: no-repeat; background-image: url("https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/010f2-75b06-bg-1.jpg"); background-size: cover; background-position: center center; width: 100%; height: 100%; opacity: 1; visibility: inherit; z-index: 20;" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/010f2-75b06-bg-1.jpg"></div> </div> <!-- LAYERS --> <!-- LAYER NR. 1 --> <div class="tp-parallax-wrap tp-parallax-container" style="position: absolute; display: block; visibility: visible; left: 19px; top: 120px; z-index: 5; transform: translate3d(-0.815406px, -1.53091px, 0px);"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-4" id="slide-15-layer-2" data-x="50" data-y="center" data-voffset="-40" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":1500,"speed":1000,"frame":"0","from":"x:left;","to":"o:1;","ease":"Power1.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 5; white-space: nowrap; font-size: 39px; line-height: 39px; font-weight: 900; color: rgb(255, 255, 255); font-family: Roboto; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -130.67, 0, 0, 1); transform-origin: 50% 50% 0px;"> ROAD & </div> </div> </div> </div> <!-- LAYER NR. 2 --> <div class="tp-parallax-wrap tp-parallax-container" style="position: absolute; display: block; visibility: hidden; left: 370px; top: 100px; z-index: 6; transform: translate3d(-0.489244px, -0.918545px, 0px);"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-2" id="slide-15-layer-5" data-x="right" data-hoffset="130" data-y="center" data-voffset="-13" data-width="['none','none','none','none']" data-height="['none','none','none','none']" data-type="image" data-responsive_offset="on" data-frames="[{"delay":3230,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 6; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; line-height: 0px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 400; font-size: 4px; white-space: nowrap; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 0.0001; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 19.0945, 0, 1);"> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/738fa-2bd73-logo.jpg" alt="" data-ww="auto" data-hh="auto" width="170" height="250" data-no-retina="" style="width: 64.9213px; height: 95.4724px; transition: none 0s ease 0s; text-align: inherit; line-height: 0px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 400; font-size: 1px;"> </div> </div> </div> </div> <!-- LAYER NR. 3 --> <div class="tp-parallax-wrap" style="position: absolute; display: block; visibility: visible; left: -29px; top: 117px; z-index: 7;"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption tp-resizeme" id="slide-15-layer-1" data-x="center" data-hoffset="" data-y="bottom" data-voffset="120" data-width="['none','none','none','none']" data-height="['none','none','none','none']" data-type="image" data-responsive_offset="on" data-frames="[{"delay":500,"speed":1000,"frame":"0","from":"x:right;","to":"o:1;","ease":"Power1.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 7; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; line-height: 0px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 400; font-size: 4px; white-space: nowrap; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform-origin: 50% 50% 0px;"> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/58762-a34db-car-01.png" alt="" data-ww="1422px" data-hh="371px" width="1422" height="371" data-no-retina="" style="width: 543.047px; height: 141.681px; transition: none 0s ease 0s; text-align: inherit; line-height: 0px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 400; font-size: 1px;"> </div> </div> </div> </div> <!-- LAYER NR. 4 --> <div class="tp-parallax-wrap tp-parallax-container" style="position: absolute; display: block; visibility: hidden; left: 19px; top: 88px; z-index: 8; transform: translate3d(-0.326162px, -0.612363px, 0px);"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-1" id="slide-15-layer-3" data-x="50" data-y="center" data-voffset="-150" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":2250,"speed":1000,"frame":"0","from":"y:top;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 8; white-space: nowrap; font-size: 16px; line-height: 16px; font-weight: 700; color: rgb(255, 255, 255); font-family: Roboto; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 1; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -101, 0, 1);"> 2017 nsx </div> </div> </div> </div> <!-- LAYER NR. 5 --> <div class="tp-parallax-wrap tp-parallax-container" style="position: absolute; display: block; visibility: hidden; left: 339px; top: 253px; z-index: 9; transform: translate3d(-0.815406px, -1.53091px, 0px);"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-4" id="slide-15-layer-4" data-x="right" data-hoffset="100" data-y="bottom" data-voffset="50" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":2250,"speed":1000,"frame":"0","from":"y:bottom;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 9; white-space: nowrap; font-size: 39px; line-height: 39px; font-weight: 900; color: rgb(255, 255, 255); font-family: Roboto; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 1; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 53, 0, 1);"> TRACK </div> </div> </div> </div> <!-- LAYER NR. 6 --> <div class="tp-parallax-wrap tp-parallax-container" style="position: absolute; display: block; visibility: hidden; left: 19px; top: 257px; z-index: 10; transform: translate3d(-0.489244px, -0.918545px, 0px);"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"> <div class="tp-caption rev-btn rs-parallaxlevel-2 rs-hover-ready" id="slide-15-layer-6" data-x="50" data-y="bottom" data-voffset="50" data-width="['auto']" data-height="['auto']" data-type="button" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":3400,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(0,0,0,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[10,10,10,10]" data-paddingright="[30,30,30,30]" data-paddingbottom="[10,10,10,10]" data-paddingleft="[30,30,30,30]" style="z-index: 10; white-space: nowrap; font-size: 11px; line-height: 11px; font-weight: 500; color: rgb(255, 255, 255); font-family: Roboto; background-color: rgba(0, 0, 0, 0.75); border-color: rgb(0, 0, 0); outline: none; box-shadow: none; box-sizing: border-box; cursor: pointer; visibility: inherit; transition: none 0s ease 0s; text-align: inherit; border-width: 0px; margin: 0px; padding: 10px 30px; letter-spacing: 0px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 0.0001; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 19.0945, 0, 1);"> Explore now </div> </div> </div> </div> </li> <!-- SLIDE --> <li data-index="rs-16" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/281ed-1b65c-bg-2-100x50.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="" class="tp-revslider-slidesli" style="width: 100%; height: 100%; overflow: hidden;"> <!-- MAIN IMAGE --> <div class="slotholder" style="position:absolute; top:0px; left:0px; z-index:0;width:100%;height:100%;"> <!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/281ed-1b65c-bg-2.jpg" alt="" title="Home 2" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg defaultimg" data-no-retina="">--> <div class="tp-bgimg defaultimg " data-bgcolor="undefined" style="background-repeat: no-repeat; background-image: url("https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/281ed-1b65c-bg-2.jpg"); background-size: cover; background-position: center center; width: 100%; height: 100%; opacity: 0;" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/281ed-1b65c-bg-2.jpg"></div> </div> <!-- LAYERS --> <div id="rrzt_16" class="rev_row_zone rev_row_zone_top" style="z-index: 11;"> <!-- LAYER NR. 7 --> <div class="tp-parallax-wrap rev_row_wrap" style=" position:relative;;visibility:hidden"> <div class="tp-loop-wrap" style="position:relative;;"> <div class="tp-mask-wrap" style="position:relative;;"> <div class="tp-caption rev_row" id="slide-16-layer-8" data-x="100" data-y="100" data-width="['auto']" data-height="['auto']" data-type="row" data-columnbreak="3" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":0,"speed":300,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-margintop="[0,0,0,0]" data-marginright="[0,0,0,0]" data-marginbottom="[0,0,0,0]" data-marginleft="[0,0,0,0]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 11; white-space: nowrap; font-size: 20px; line-height: 22px; font-weight: 400; color: rgb(255, 255, 255); font-family: "Open Sans"; visibility: hidden;"> <!-- LAYER NR. 8 --> <div class="tp-parallax-wrap rev_column" style=" vertical-align:top; position:relative;;visibility:hidden"> <div class="tp-loop-wrap" style="position:relative;;"> <div class="tp-mask-wrap" style="position:relative;;"> <div class="tp-caption rev_column_inner" id="slide-16-layer-9" data-x="100" data-y="100" data-width="['auto']" data-height="['auto']" data-type="column" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":0,"speed":300,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-columnwidth="50%" data-verticalalign="top" data-margintop="[0,0,0,0]" data-marginright="[0,0,0,0]" data-marginbottom="[0,0,0,0]" data-marginleft="[0,0,0,0]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 12; width: auto; font-family: "Open Sans"; visibility: hidden;"> <div class="rev_column_bg rev_column_bg_man_sized" style="visibility:hidden"></div> </div> </div> </div> <div class="rev_column_bg rev_column_bg_auto_sized"></div> </div> <!-- LAYER NR. 9 --> <div class="tp-parallax-wrap rev_column" style=" vertical-align:top; position:relative;;visibility:hidden"> <div class="tp-loop-wrap" style="position:relative;;"> <div class="tp-mask-wrap" style="position:relative;;"> <div class="tp-caption rev_column_inner" id="slide-16-layer-10" data-x="100" data-y="100" data-width="['auto']" data-height="['auto']" data-type="column" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":0,"speed":300,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-columnwidth="50%" data-verticalalign="top" data-margintop="[0,0,0,0]" data-marginright="[0,0,0,0]" data-marginbottom="[0,0,0,0]" data-marginleft="[0,0,0,0]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 13; width: auto; font-family: "Open Sans"; visibility: hidden;"> <div class="rev_column_bg rev_column_bg_man_sized" style="visibility:hidden"></div> </div> </div> </div> <div class="rev_column_bg rev_column_bg_auto_sized"></div> </div> </div> </div> </div> </div> </div> <!-- LAYER NR. 10 --> <div class="tp-parallax-wrap tp-parallax-container" style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-4" id="slide-16-layer-2" data-x="51" data-y="center" data-voffset="-40" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":1500,"speed":1000,"frame":"0","from":"x:left;","to":"o:1;","ease":"Power1.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 5; white-space: nowrap; font-size: 100px; line-height: 150px; font-weight: 900; color: rgb(255, 255, 255); font-family: Roboto; visibility: hidden;"> DRIVE ME </div> </div> </div> </div> <!-- LAYER NR. 11 --> <div class="tp-parallax-wrap tp-parallax-container" style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-2" id="slide-16-layer-5" data-x="right" data-hoffset="111" data-y="center" data-voffset="-29" data-width="['none','none','none','none']" data-height="['none','none','none','none']" data-type="image" data-responsive_offset="on" data-frames="[{"delay":3230,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 6; visibility: hidden;"> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/738fa-2bd73-logo.jpg" alt="" data-ww="auto" data-hh="auto" width="170" height="250" data-no-retina=""> </div> </div> </div> </div> <!-- LAYER NR. 12 --> <div class="tp-parallax-wrap " style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption tp-resizeme" id="slide-16-layer-7" data-x="center" data-hoffset="" data-y="bottom" data-voffset="120" data-width="['none','none','none','none']" data-height="['none','none','none','none']" data-type="image" data-responsive_offset="on" data-frames="[{"delay":500,"speed":1000,"frame":"0","from":"x:right;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 7; visibility: hidden;"> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/revslider/cardealer-slider2/8515e-6a297-car-02.png" alt="" data-ww="1195px" data-hh="380px" width="1195" height="380" data-no-retina=""> </div> </div> </div> </div> <!-- LAYER NR. 13 --> <div class="tp-parallax-wrap tp-parallax-container" style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-1" id="slide-16-layer-3" data-x="50" data-y="center" data-voffset="-150" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":2250,"speed":1000,"frame":"0","from":"y:top;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 8; white-space: nowrap; font-size: 50px; line-height: 50px; font-weight: 700; color: rgb(255, 255, 255); font-family: Roboto; visibility: hidden;"> Ferrari </div> </div> </div> </div> <!-- LAYER NR. 14 --> <div class="tp-parallax-wrap tp-parallax-container" style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption tp-resizeme rs-parallaxlevel-4" id="slide-16-layer-4" data-x="right" data-hoffset="50" data-y="bottom" data-voffset="50" data-width="['auto']" data-height="['auto']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":2250,"speed":1000,"frame":"0","from":"y:bottom;","to":"o:1;","ease":"Power1.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 9; white-space: nowrap; font-size: 100px; line-height: 100px; font-weight: 900; color: rgb(255, 255, 255); font-family: Roboto; visibility: hidden;"> BUT FAST! </div> </div> </div> </div> <!-- LAYER NR. 15 --> <div class="tp-parallax-wrap tp-parallax-container" style=" position:absolute;display:block;;visibility:hidden"> <div class="tp-loop-wrap" style="position:absolute;display:block;;"> <div class="tp-mask-wrap" style="position:absolute;display:block;;"> <div class="tp-caption rev-btn rs-parallaxlevel-2" id="slide-16-layer-6" data-x="49" data-y="bottom" data-voffset="51" data-width="['auto']" data-height="['auto']" data-type="button" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":3400,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(0,0,0,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]" data-textalign="['inherit','inherit','inherit','inherit']" data-paddingtop="[10,10,10,10]" data-paddingright="[30,30,30,30]" data-paddingbottom="[10,10,10,10]" data-paddingleft="[30,30,30,30]" style="z-index: 10; white-space: nowrap; font-size: 14px; line-height: 14px; font-weight: 500; color: rgb(255, 255, 255); font-family: Roboto; background-color: rgba(0, 0, 0, 0.75); border-color: rgb(0, 0, 0); outline: none; box-shadow: none; box-sizing: border-box; cursor: pointer; visibility: hidden;"> Discover More </div> </div> </div> </div> </li> </ul> <script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss=""; if(htmlDiv) { htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss; }else{ var htmlDiv = document.createElement("div"); htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>"; document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]); } </script> <div class="tp-bannertimer tp-bottom" style="visibility: hidden; width: 0%;"></div> <div class="tp-loader spinner0" style="display: none;"> <div class="dot1"></div> <div class="dot2"></div> <div class="bounce1"></div> <div class="bounce2"></div> <div class="bounce3"></div> </div> <div class="tp-bullets uranus horizontal nav-pos-hor-right nav-pos-ver-bottom nav-dir-horizontal noSwipe tp-forcenotvisible" style="width: 38px; height: 15px; top: 100%; transform: matrix(1, 0, 0, 1, -78, -55); left: 100%;"> <div class="tp-bullet selected" style="left: 0px; top: 0px;"> <span class="tp-bullet-inner"></span> </div> <div class="tp-bullet" style="left: 23px; top: 0px;"> <span class="tp-bullet-inner"></span> </div> </div> </div> <script> var htmlDivCss = unescape("%23rev_slider_7_1%20.uranus%20.tp-bullet%7B%0A%20%20border-radius%3A%2050%25%3B%0A%20%20box-shadow%3A%200%200%200%202px%20rgba%28255%2C%20255%2C%20255%2C%200%29%3B%0A%20%20-webkit-transition%3A%20box-shadow%200.3s%20ease%3B%0A%20%20transition%3A%20box-shadow%200.3s%20ease%3B%0A%20%20background%3Atransparent%3B%0A%20%20width%3A15px%3B%0A%20%20height%3A15px%3B%0A%7D%0A%23rev_slider_7_1%20.uranus%20.tp-bullet.selected%2C%0A%23rev_slider_7_1%20.uranus%20.tp-bullet%3Ahover%20%7B%0A%20%20box-shadow%3A%200%200%200%202px%20rgba%28255%2C%20255%2C%20255%2C1%29%3B%0A%20%20border%3Anone%3B%0A%20%20border-radius%3A%2050%25%3B%0A%20%20background%3Atransparent%3B%0A%7D%0A%0A%23rev_slider_7_1%20.uranus%20.tp-bullet-inner%20%7B%0A%20%20-webkit-transition%3A%20background-color%200.3s%20ease%2C%20-webkit-transform%200.3s%20ease%3B%0A%20%20transition%3A%20background-color%200.3s%20ease%2C%20transform%200.3s%20ease%3B%0A%20%20top%3A%200%3B%0A%20%20left%3A%200%3B%0A%20%20width%3A%20100%25%3B%0A%20%20height%3A%20100%25%3B%0A%20%20outline%3A%20none%3B%0A%20%20border-radius%3A%2050%25%3B%0A%20%20background-color%3A%20rgb%28255%2C%20255%2C%20255%29%3B%0A%20%20background-color%3A%20rgba%28255%2C%20255%2C%20255%2C%200.3%29%3B%0A%20%20text-indent%3A%20-999em%3B%0A%20%20cursor%3A%20pointer%3B%0A%20%20position%3A%20absolute%3B%0A%7D%0A%0A%23rev_slider_7_1%20.uranus%20.tp-bullet.selected%20.tp-bullet-inner%2C%0A%23rev_slider_7_1%20.uranus%20.tp-bullet%3Ahover%20.tp-bullet-inner%7B%0A%20transform%3A%20scale%280.4%29%3B%0A%20-webkit-transform%3A%20scale%280.4%29%3B%0A%20background-color%3Argb%28255%2C%20255%2C%20255%29%3B%0A%7D%0A"); var htmlDiv = document.getElementById('rs-plugin-settings-inline-css'); if(htmlDiv) { htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss; } else{ var htmlDiv = document.createElement('div'); htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>'; document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]); } </script> </div> <div class="tp-fullwidth-forcer" style="width: 100%; height: 306px;"></div> </div> <!-- END REVOLUTION SLIDER --> </div> </div> </div> </div> </div> </div> <div class="vc_row-full-width vc_clearfix"></div> <div data-vc-full-width="true" data-vc-full-width-init="true" class="vc_row wpb_row vc_row-fluid row-background-light" style="position: relative; left: 9.53674e-07px; box-sizing: border-box; width: 485px; padding-left: 0px; padding-right: 0px;"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill"> <div class="vc_column-inner vc_custom_1486033008921"> <div class="wpb_wrapper"> <div id="cd_space_5e17a2af5c5d8" class="cd-space cd-space-5e17a2af5c5df" data-id="5e17a2af5c5d6" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> <div class="vc_row wpb_row vc_inner vc_row-fluid"> <div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-3 vc_col-md-3"> <div class="vc_column-inner vc_custom_1486530628902"> <div class="wpb_wrapper"> <div id="cd_call_to_action_5e17a2af5cc98" class="call-to-action text-center"> <div class="action-info"> <i class="glyph-icon flaticon-beetle"></i> <h5>New Vehicles</h5> <p>Get yourself nice and relaxed and settled. Concentrate on your breathing, engage in the</p> </div> <a href="http://themes.potenzaglobalsolutions.com/cardealer-wp/cars/?cars_pp=12&cars_order=asc&cars_grid=yes&lay_style=view-grid-right">Read more</a> <div style="background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/01-4.jpg');" class="action-img"></div> <span class="border"></span> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-3 vc_col-md-3"> <div class="vc_column-inner vc_custom_1486530667077"> <div class="wpb_wrapper"> <div id="cd_call_to_action_5e17a2af5d32e" class="call-to-action text-center"> <div class="action-info"> <i class="glyph-icon flaticon-car-repair"></i> <h5>Vehicles Service</h5> <p>About something that you know you need to be doing, but are not. Then with that thing</p> </div> <a href="http://themes.potenzaglobalsolutions.com/cardealer-wp/service-01/">Read more</a> <div style="background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2013/06/02.jpg');" class="action-img"></div> <span class="border"></span> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-3 vc_col-md-3"> <div class="vc_column-inner vc_custom_1486530704809"> <div class="wpb_wrapper"> <div id="cd_call_to_action_5e17a2af5d88e" class="call-to-action text-center"> <div class="action-info"> <i class="glyph-icon flaticon-reparation"></i> <h5>Vehicles Parts</h5> <p>You will begin to realise why this exercise is called the Dickens Pattern reference</p> </div> <a href="http://themes.potenzaglobalsolutions.com/cardealer-wp/service-02/">Read more</a> <div style="background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2013/06/03.jpg');" class="action-img"></div> <span class="border"></span> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-3 vc_col-md-3"> <div class="vc_column-inner vc_custom_1486530747953"> <div class="wpb_wrapper"> <div id="cd_call_to_action_5e17a2af5ddf6" class="call-to-action text-center"> <div class="action-info"> <i class="glyph-icon flaticon-car"></i> <h5>Old Vehicles</h5> <p>Scrooge some different futures as you notice that the idea of this exercise is hypnotize</p> </div> <a href="http://themes.potenzaglobalsolutions.com/cardealer-wp/cars/?cars_pp=12&cars_order=asc&cars_grid=no&lay_style=view-list-right">Read more</a> <div style="background-image: url('https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2013/06/03.jpg');" class="action-img"></div> <span class="border"></span> </div> </div> </div> </div> </div> <div id="cd_space_5e17a2af5dedf" class="cd-space cd-space-5e17a2af5dee5" data-id="5e17a2af5dede" data-tablet="20" data-tablet-portrait="15" data-mobile="10" data-mobile-portrait="10" data-desktop="20" style="clear:both; display:block;"></div> </div> </div> </div> </div> <div class="vc_row-full-width vc_clearfix"></div> <section data-vc-full-width="true" data-vc-full-width-init="true" class="vc_section bg-cover-bottom sm-bg-hide vc_custom_1496473590275 vc_section-has-fill" style="position: relative; left: 9.53674e-07px; box-sizing: border-box; width: 485px; padding-left: 0px; padding-right: 0px;"> <div data-vc-full-width="true" data-vc-full-width-init="true" class="vc_row wpb_row vc_row-fluid row-background-light" style="position: relative; left: 0px; box-sizing: border-box; width: 485px; padding-left: 0px; padding-right: 0px;"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12 vc_col-lg-6 vc_col-md-6"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element "> <div class="wpb_wrapper"> <div class="custom-block-2"> <h4>Welcome to the Car dealer</h4> <p>Everything you need to build an amazing dealership website</p> <p>Being developed on Visual Composer Drag and Drop Page Builder, It is fully responsive on any device. Unique designs, captivating sliders, and innovative website building tools work seamlessly to <em><strong>boost your business online</strong></em>.</p> <div class="ceo"> <img class="img-responsive alignnone size-full wp-image-2093" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/signature.png" alt=""> <strong class="text-red">Car Dealer founder</strong> <br> Kevin walsh </div> </div> </div> </div> <div id="cd_space_5e17a2af5e9fb" class="cd-space cd-space-5e17a2af5ea00" data-id="5e17a2af5e9f9" data-tablet="0" data-tablet-portrait="40" data-mobile="30" data-mobile-portrait="30" data-desktop="0" style="clear:both; display:block;"></div> </div> </div> </div> <div class="box-border wpb_column vc_column_container vc_col-sm-12 vc_col-lg-offset-1 vc_col-lg-5 vc_col-md-6 vc_col-has-fill"> <div class="vc_column-inner vc_custom_1494505658624"> <div class="wpb_wrapper"> <div class="vc_row wpb_row vc_inner vc_row-fluid"> <div class="col-xx-12 wpb_column vc_column_container vc_col-sm-6 vc_col-lg-6 vc_col-md-6 vc_col-xs-6"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div class="counter clearfix counter-style-3 vc_custom_1495536403668 icon right"> <div class="icon"> <i class="glyph-icon flaticon-transport-3"></i> </div> <div class="content"> <h6>Vehicles Stock</h6> <b class="timer" data-to="400" data-speed="10000"></b> </div> </div> </div> </div> </div> <div class="col-xx-12 wpb_column vc_column_container vc_col-sm-6 vc_col-lg-6 vc_col-md-6 vc_col-xs-6"> <div class="vc_column-inner vc_custom_1495173649316"> <div class="wpb_wrapper"> <div class="counter clearfix counter-style-2 vc_custom_1493979082446 icon left"> <div class="icon"> <i class="glyph-icon flaticon-interface"></i> </div> <div class="content"> <h6>Dealer Reviews</h6> <b class="timer" data-to="1000" data-speed="10000"></b> </div> </div> </div> </div> </div> </div> <div class="vc_row wpb_row vc_inner vc_row-fluid"> <div class="col-xx-12 wpb_column vc_column_container vc_col-sm-6 vc_col-lg-6 vc_col-md-6 vc_col-xs-6"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div class="counter clearfix counter-style-3 vc_custom_1495524651518 icon right"> <div class="icon"> <i class="glyph-icon flaticon-circle"></i> </div> <div class="content"> <h6>Happy Customer</h6> <b class="timer" data-to="1500" data-speed="10000"></b> </div> </div> </div> </div> </div> <div class="col-xx-12 wpb_column vc_column_container vc_col-sm-6 vc_col-lg-6 vc_col-md-6 vc_col-xs-6"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div class="counter clearfix counter-style-2 vc_custom_1493979112655 icon left"> <div class="icon"> <i class="glyph-icon flaticon-cup"></i> </div> <div class="content"> <h6>Awards</h6> <b class="timer" data-to="450" data-speed="10000"></b> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="vc_row-full-width vc_clearfix"></div> <div class="vc_row wpb_row vc_row-fluid row-background-light"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_space_5e17a2af5f794" class="cd-space cd-space-5e17a2af5f799" data-id="5e17a2af5f792" data-tablet="50" data-tablet-portrait="50" data-mobile="50" data-mobile-portrait="50" data-desktop="410" style="clear:both; display:block;"></div> </div> </div> </div> </div> </section> <div class="vc_row-full-width vc_clearfix"></div> <div class="vc_row wpb_row vc_row-fluid row-background-light"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_space_5e17a2af5fbf0" class="cd-space cd-space-5e17a2af5fbf6" data-id="5e17a2af5fbef" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> <div class="section-title text-center style_1"> <span>Check out our recent cars</span> <h2>Feature Car</h2> <div class="separator"></div> </div> <div class="pgs_cars_carousel-wrapper"> <div class="pgs_cars_carousel-items owl-carousel pgs-cars-carousel owl-theme owl-loaded" data-nav-arrow="true" data-nav-dots="false" data-items="4" data-md-items="4" data-sm-items="3" data-xs-items="2" data-xx-items="1" data-space="25" data-autoplay="true" data-loop="true" data-lazyload=""> <div class="owl-stage-outer"> <div class="owl-stage" style="transform: translate3d(-480px, 0px, 0px); transition: all 0s ease 0s; width: 2400px;"> <div class="owl-item cloned" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3992dce7d2_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-audi-a4/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8421" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3992dce7d2_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bcf17eb139_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3605838b84_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/37b6ffc5e8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/84152e86a5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5375625767_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/29159c922c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/aa7d2c1981_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b8f785ce5a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a97f208910_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/94b21cc405_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d53198b6d7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/35f2d8b68f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/decdc2f16c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e0a6c83349_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/896e3f936c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/45c62953fb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93f9581211_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/71312e5dfe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/79dac27180_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c5200253d3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8829a4f9d8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9fe854f85f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1503356ce5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/225b3cdb5c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/aeaafa07c4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/08b818eb91_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3fd0c0a2a8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5c1bd45f9a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/747d16cd56_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2b53ad4891_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/96352cb788_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3e018b0681_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6ef4dd3ebb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5bcca2ee3f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f66094335f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b94f8d6241_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/daa4d5796a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6d83cf3d95_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3035b705ca_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/67ef8def80_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e9d4248f06_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bedb048264_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/17588c7e4d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f2e4937c45_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/92e555e3ee_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/167331520e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ee8300ed15_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d5bd3d5adf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e8927ae8e4_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2013</li> <li><i class="glyph-icon flaticon-gas-station"></i> 60766</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-audi-a4/">2013 Audi A4</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $17,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=WAUFFAFL5DN004650" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax-1-owner.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fc1a689af4_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2007-lexus-es/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8472" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fc1a689af4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/42574996dc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/30bfe7446f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/71ae73e921_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a2ef63b593_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3034e016bf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7c859ff8ff_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/36a4eeee18_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/66542c309f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2dc8047719_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4a8da61a29_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/481f448cac_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/eeaaa29fda_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b684ec4ed0_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/25dd278874_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/741045542a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/44eea87464_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a7394bdce_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1b889a89c3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/51263a7063_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2c6a0f0010_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1c9bb53835_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/15f41f9f95_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6461d66c76_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0af6574ffd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f1ee9caf62_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1fdb625daa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2da1502e94_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ec45452ede_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/47f90a7927_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1c72d363b6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/899579d78a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f1a712ac84_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ebd65c5e20_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a702f06051_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/27114bcc42_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/02f24dfea7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3304bbda22_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bf073fab1f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/357a6786ef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f33be90acc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a1a02aeed_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93e3535ffa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a578b2376f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/14dd3e1e51_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/63cad57716_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0b7c6789ba_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4091e635fd_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2007</li> <li><i class="glyph-icon flaticon-gas-station"></i> 115364</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2007-lexus-es/">2007 Lexus ES</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $9,200.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=JTHBJ46G372004848" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item active" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/359e94dff8_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-toyota-tacoma-double-cab-trd-sport-4x4/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8670" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/359e94dff8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f6bdabee1f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c74416dbc6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d963e713f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7eb49d05bf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2a9b3d86cb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e9f6245aa3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/eb3077dedf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3905e908d8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fa1c4b36ef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/979aba7320_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/891f456709_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/978249423b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b7891e5984_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8bc974d17c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d04c8be1d1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d9fdabafe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/96fdf82fd9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0005f67f32_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/43d5db1f00_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0a957b99b9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/07368aff3b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/dfba699ca5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a44b7948db_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6f8c1d0bf7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/58ff0f66e1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b693624edf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a99c79a8ec_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0f8453a16a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3655237ca5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5820df1d02_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1a7d448d74_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4ae6e4b836_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f35ec241bd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9d94d2c939_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ae0dd455dd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9e3b8edb72_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c9ee08066d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/560f5080f7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7e46b5d636_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f0fab0e705_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/03653d1976_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e1a4e21357_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1517b3d078_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/72f8177d4a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/18a52a320f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5bd5ddc1c5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/57361db43d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/34e6ebd2cc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ee548a7e54_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/212bfe8dfa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3dad257a1c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f02d56d5c5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/651b49e64b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/06b9455627_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2013</li> <li><i class="glyph-icon flaticon-gas-station"></i> 82684</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-toyota-tacoma-double-cab-trd-sport-4x4/">2013 Toyota Tacoma</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $23,900.00</span> </div> </div> </div> </div> </div> <div class="owl-item active" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3eca27c26a_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2011-lexus-rx-awd/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8620" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3eca27c26a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0d92a69d1b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1395285a67_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d5206aa6b6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/16a09cb9b8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/59ed1ed0e3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/52eec9b805_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b7c8e85dbb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ad116e18c3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2c3cbea202_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2a753df0a4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/48144e5814_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/282b4f2c63_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c9074f28aa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4659ca2c59_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f9027f305d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/35432a8fd6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/197efbe04e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/80ff741946_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b3ef8c5828_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bfabdd8537_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0c4c566fd4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5ff129c19b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bc1300ddee_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b31f60762c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3aaedea654_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2df4224812_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5610d01f33_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fa393c978b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/697df21409_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/129914b914_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1a3eeedb1a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/85f856653e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/22df49e5f6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e530114484_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1b38901556_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bf9fe7e40e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93a201386e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/87c4de4a0c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6210cb1059_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5089e290ce_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a05943b23_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8832d0055d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d7ee1ec27_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d3d30b5793_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e82a257130_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/98a794f864_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/319306d21a_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2011</li> <li><i class="glyph-icon flaticon-gas-station"></i> 89827</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2011-lexus-rx-awd/">2011 Lexus RX</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $19,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=JTJBK1BA2B2010872" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax-1-owner.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/51b31d9e35_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-volkswagen-eos/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8521" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/51b31d9e35_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3cd9065c11_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b6920b599b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/cf92cae07e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9d6a9ae10e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d0c42957c5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2bf40eda39_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/77b8b60dc1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0c39fbe926_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8a00331a48_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e146415584_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e88b27d230_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e05d35dc47_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5308f713e4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/67e1911cd8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a35870540e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b9f3d4e2e3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0fe5bed7c1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/675a13ff22_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e722b280fd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6693456ff4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f0c2597352_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/300c251d91_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/cb09f992f7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c40a63a075_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/71c9df8b24_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9c8a40c315_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/85c37d8548_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/051fa552b2_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/42d51ead2c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9a655a5f74_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/34141fd472_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7bcfe41d68_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5648fb3963_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/06df73cbb4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/470944b9a4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d9d350dc1a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6c63df1cb4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ff791122ef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d264e36630_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9fa5678c8f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e40082297f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0b1027c839_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9f00593060_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/26f5f80040_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/193517b633_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2013</li> <li><i class="glyph-icon flaticon-gas-station"></i> 45246</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-volkswagen-eos/">2013 Volkswagen Eos</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $18,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=WVWBW8AH0DV005279" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e470adaf32_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2012-mercedes-benz-m-class/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8568" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e470adaf32_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d398a8cda8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/be52fd4507_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f33616b58b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ca38fb9615_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/764103785f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c623186adc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ec2dab5ad3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5729ed5131_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/faf5e06e66_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8cf391f9ae_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/86727df712_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9bf0f346ad_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8f15b95091_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a44b32efc9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c6870f3d78_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5963f0ffad_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7114c2642c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/aae799fbd1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9efe7e7530_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6f2d50256d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9eece36814_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5fafe6e14e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/01a2c5b362_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d4cafe4927_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/24c036e101_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1ca53ae73e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e2299aebbe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/55df7878b1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a71a0cf7e4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e436ec65fb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ce4f1f12f8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b2d9a448d4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b9ac6e6ba4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8eaa7b6b97_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9952f2cf17_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/040e2b54e7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/562046eb1e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c991c9e374_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/459642cb4a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/08d4eeedb9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b9925fc87e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9233b54307_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0ab6fa5fee_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9075723fef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0997714dfe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/24321bf632_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/be706c8518_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8a1482599c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7f9f368035_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2012</li> <li><i class="glyph-icon flaticon-gas-station"></i> 75449</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2012-mercedes-benz-m-class/">2012 Mercedes-Benz M-Class</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $22,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=4JGDA5HB2CA006345" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3992dce7d2_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-audi-a4/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8421" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3992dce7d2_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bcf17eb139_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3605838b84_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/37b6ffc5e8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/84152e86a5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5375625767_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/29159c922c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/aa7d2c1981_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b8f785ce5a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a97f208910_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/94b21cc405_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d53198b6d7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/35f2d8b68f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/decdc2f16c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e0a6c83349_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/896e3f936c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/45c62953fb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93f9581211_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/71312e5dfe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/79dac27180_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c5200253d3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8829a4f9d8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9fe854f85f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1503356ce5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/225b3cdb5c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/aeaafa07c4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/08b818eb91_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3fd0c0a2a8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5c1bd45f9a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/747d16cd56_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2b53ad4891_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/96352cb788_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3e018b0681_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6ef4dd3ebb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5bcca2ee3f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f66094335f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b94f8d6241_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/daa4d5796a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6d83cf3d95_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3035b705ca_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/67ef8def80_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e9d4248f06_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bedb048264_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/17588c7e4d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f2e4937c45_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/92e555e3ee_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/167331520e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ee8300ed15_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d5bd3d5adf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e8927ae8e4_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2013</li> <li><i class="glyph-icon flaticon-gas-station"></i> 60766</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-audi-a4/">2013 Audi A4</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $17,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=WAUFFAFL5DN004650" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax-1-owner.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fc1a689af4_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2007-lexus-es/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8472" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fc1a689af4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/42574996dc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/30bfe7446f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/71ae73e921_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a2ef63b593_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3034e016bf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7c859ff8ff_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/36a4eeee18_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/66542c309f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2dc8047719_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4a8da61a29_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/481f448cac_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/eeaaa29fda_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b684ec4ed0_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/25dd278874_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/741045542a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/44eea87464_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a7394bdce_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1b889a89c3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/51263a7063_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2c6a0f0010_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1c9bb53835_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/15f41f9f95_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6461d66c76_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0af6574ffd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f1ee9caf62_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1fdb625daa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2da1502e94_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ec45452ede_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/47f90a7927_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1c72d363b6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/899579d78a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f1a712ac84_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ebd65c5e20_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a702f06051_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/27114bcc42_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/02f24dfea7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3304bbda22_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bf073fab1f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/357a6786ef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f33be90acc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a1a02aeed_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93e3535ffa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a578b2376f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/14dd3e1e51_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/63cad57716_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0b7c6789ba_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4091e635fd_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2007</li> <li><i class="glyph-icon flaticon-gas-station"></i> 115364</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2007-lexus-es/">2007 Lexus ES</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $9,200.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=JTHBJ46G372004848" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/359e94dff8_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-toyota-tacoma-double-cab-trd-sport-4x4/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8670" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/359e94dff8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f6bdabee1f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c74416dbc6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d963e713f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7eb49d05bf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2a9b3d86cb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e9f6245aa3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/eb3077dedf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3905e908d8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fa1c4b36ef_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/979aba7320_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/891f456709_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/978249423b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b7891e5984_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8bc974d17c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d04c8be1d1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d9fdabafe_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/96fdf82fd9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0005f67f32_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/43d5db1f00_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0a957b99b9_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/07368aff3b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/dfba699ca5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a44b7948db_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6f8c1d0bf7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/58ff0f66e1_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b693624edf_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/a99c79a8ec_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0f8453a16a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3655237ca5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5820df1d02_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1a7d448d74_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4ae6e4b836_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f35ec241bd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9d94d2c939_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ae0dd455dd_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/9e3b8edb72_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c9ee08066d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/560f5080f7_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/7e46b5d636_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f0fab0e705_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/03653d1976_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e1a4e21357_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1517b3d078_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/72f8177d4a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/18a52a320f_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5bd5ddc1c5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/57361db43d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/34e6ebd2cc_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ee548a7e54_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/212bfe8dfa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3dad257a1c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f02d56d5c5_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/651b49e64b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/06b9455627_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2013</li> <li><i class="glyph-icon flaticon-gas-station"></i> 82684</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2013-toyota-tacoma-double-cab-trd-sport-4x4/">2013 Toyota Tacoma</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $23,900.00</span> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 215px; margin-right: 25px;"> <div class="item"> <div class="car-item text-center grey-bg" style="min-height: 341px;"> <div class="car-image"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3eca27c26a_1024-265x190.jpg" alt="" width="265" height="190"> <div class="car-overlay-banner"> <ul> <li><a href="https://cardealer.potenzaglobalsolutions.com/cars/2011-lexus-rx-awd/" data-toggle="tooltip" title="" data-original-title="View"><i class="fa fa-link"></i></a></li> <li><a href="javascript:void(0)" data-toggle="tooltip" title="" class="compare_pgs " data-id="8620" data-original-title="Compare"><i class="fa fa-exchange"></i></a></li> <li class="pssrcset"><a href="javascript:void(0)" data-toggle="tooltip" title="" class="psimages" data-image="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3eca27c26a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0d92a69d1b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1395285a67_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d5206aa6b6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/16a09cb9b8_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/59ed1ed0e3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/52eec9b805_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b7c8e85dbb_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/ad116e18c3_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2c3cbea202_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2a753df0a4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/48144e5814_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/282b4f2c63_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/c9074f28aa_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/4659ca2c59_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/f9027f305d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/35432a8fd6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/197efbe04e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/80ff741946_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b3ef8c5828_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bfabdd8537_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/0c4c566fd4_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5ff129c19b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bc1300ddee_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/b31f60762c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3aaedea654_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/2df4224812_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5610d01f33_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/fa393c978b_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/697df21409_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/129914b914_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1a3eeedb1a_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/85f856653e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/22df49e5f6_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e530114484_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/1b38901556_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/bf9fe7e40e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/93a201386e_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/87c4de4a0c_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/6210cb1059_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/5089e290ce_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/3a05943b23_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8832d0055d_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/8d7ee1ec27_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/d3d30b5793_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/e82a257130_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/98a794f864_1024.jpg, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/319306d21a_1024.jpg" data-original-title="Gallery"><i class="fa fa-expand"></i></a></li> </ul> </div> <div class="car-list"> <ul class="list-inline"> <li><i class="fa fa-calendar"></i> 2011</li> <li><i class="glyph-icon flaticon-gas-station"></i> 89827</li> </ul> </div> </div> <div class="car-content"> <a href="https://cardealer.potenzaglobalsolutions.com/cars/2011-lexus-rx-awd/">2011 Lexus RX</a> <div class="separator"></div> <div class="price car-price "> <span class="new-price"> $19,900.00</span> </div> <div class="car-vehicle-review-stamps"> <a href="https://www.carfax.com/cfm/ccc_DisplayHistoryRpt.cfm?partner=AMG_1&VIN=JTJBK1BA2B2010872" target="_blank"><img src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/07/carfax-1-owner.jpg" alt="carfax"></a> </div> </div> </div> </div> </div> </div> </div> <div class="owl-controls"> <div class="owl-nav"> <div class="owl-prev" style=""> <i class="fa fa-angle-left fa-2x"></i> </div> <div class="owl-next" style=""> <i class="fa fa-angle-right fa-2x"></i> </div> </div> <div class="owl-dots" style="display: none;"></div> </div> </div> </div> <!-- .pgs_cars_carousel-wrapper --> <div id="cd_space_5e17a2b0a208f" class="cd-space cd-space-5e17a2b0a209a" data-id="5e17a2b0a208e" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> </div> </div> </div> </div> <div data-vc-full-width="true" data-vc-full-width-init="true" data-vc-stretch-content="true" class="vc_row wpb_row vc_row-fluid vc_custom_1485870607547 row-background-dark vc_row-has-fill" style="position: relative; left: 9.53674e-07px; box-sizing: border-box; width: 485px;"> <div class="vc_row-background-overlay" style="background-color: #0c0c0c;opacity: 0.7;"></div> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_space_5e17a2b0a2741" class="cd-space cd-space-5e17a2b0a2747" data-id="5e17a2b0a273f" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> <div class="section-title text-center style_1"> <span>What Our Happy Clients say about us </span> <h2>Our Testimonial</h2> <div class="separator"></div> </div> <div class="vc_row wpb_row vc_inner vc_row-fluid"> <div class="wpb_column vc_column_container vc_col-sm-10 vc_col-lg-offset-2 vc_col-lg-8 vc_col-sm-offset-1"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_testimonials_cd_testimonials_5e17a2b0a2acb" class="testimonial testimonial-2 page bg-1 bg-overlay-black-70"> <div class="testimonial-center"> <div class="owl-carousel owl-theme owl-loaded" data-nav-arrow="false" data-nav-dots="true" data-items="1" data-md-items="1" data-sm-items="1" data-xs-items="1" data-xx-items="1" data-space="20" data-autoplay="true" data-loop="true" data-lazyload=""> <div class="owl-stage-outer"> <div class="owl-stage" style="transform: translate3d(-950px, 0px, 0px); transition: all 0s ease 0s; width: 3800px;"> <div class="owl-item cloned" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> The first thing to remember about success is that it is a process – nothing more, nothing less. There is really no magic to it and it’s not reserved only for a select</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/09-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Michael bean</h6> <span> |Auto Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> For those of you who are serious about having more, doing more, giving more and being more, success is achievable with some understanding really no magic</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/10-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Joanna williams</h6> <span> |Car Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item active" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> Making a decision to do something – this is the first step. We all know that nothing moves until someone makes a decision. The first action is always</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/07-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Felicia queen</h6> <span> |Auto Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> There are basically six key areas to higher achievement. Some people will tell you there are four while others may tell you there are eight. One thing</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/08-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Melissa doe</h6> <span> |Customer</span> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> The first thing to remember about success is that it is a process – nothing more, nothing less. There is really no magic to it and it’s not reserved only for a select</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/09-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Michael bean</h6> <span> |Auto Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> For those of you who are serious about having more, doing more, giving more and being more, success is achievable with some understanding really no magic</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/10-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Joanna williams</h6> <span> |Car Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> Making a decision to do something – this is the first step. We all know that nothing moves until someone makes a decision. The first action is always</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/07-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Felicia queen</h6> <span> |Auto Dealer</span> </div> </div> </div> </div> </div> <div class="owl-item cloned" style="width: 455px; margin-right: 20px;"> <div class="item"> <div class="testimonial-block"> <div class="testimonial-content"> <i class="fa fa-quote-left"></i> <p> There are basically six key areas to higher achievement. Some people will tell you there are four while others may tell you there are eight. One thing</p> </div> <div class="testimonial-info"> <div class="testimonial-avatar"> <img class="img-responsive" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2018/08/08-150x150.jpg" alt="" width="150" height="150"> </div> <div class="testimonial-name"> <h6 class="text-white">Melissa doe</h6> <span> |Customer</span> </div> </div> </div> </div> </div> </div> </div> <div class="owl-controls"> <div class="owl-nav"> <div class="owl-prev" style="display: none;"> <i class="fa fa-angle-left fa-2x"></i> </div> <div class="owl-next" style="display: none;"> <i class="fa fa-angle-right fa-2x"></i> </div> </div> <div class="owl-dots" style=""> <div class="owl-dot active"> <span></span> </div> <div class="owl-dot"> <span></span> </div> <div class="owl-dot"> <span></span> </div> <div class="owl-dot"> <span></span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="cd_space_5e17a2b0a4653" class="cd-space cd-space-5e17a2b0a465a" data-id="5e17a2b0a4651" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> </div> </div> </div> </div> <div class="vc_row-full-width vc_clearfix"></div> <div class="vc_row wpb_row vc_row-fluid row-background-light"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_space_5e17a2b0a4b7b" class="cd-space cd-space-5e17a2b0a4b81" data-id="5e17a2b0a4b7a" data-tablet="70" data-tablet-portrait="60" data-mobile="50" data-mobile-portrait="40" data-desktop="80" style="clear:both; display:block;"></div> <div class="section-title text-center style_1"> <span>Because We are ultra creative agency</span> <h2>Why Choose us</h2> <div class="separator"></div> </div> <div class="vc_row wpb_row vc_inner vc_row-fluid vc_custom_1493880049892"> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493879933584"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a4ecc" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-beetle"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a4ecc"> <h6>ALL BRANDS</h6> </a> <p>Printin lorem Ipsum is simply dummy text of the k a galley of type and</p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493879942664"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a5064" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-interface-1"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a5064"> <h6>Free Support</h6> </a> <p>Aliquid illo similique minima magni quidem sequi corporis fugiat type and</p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493879949905"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a5196" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-key"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a5196"> <h6>DEALERSHIP</h6> </a> <p>Similique minima magni quidem aliquid illo sequi corporis fugiat type and </p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493879960128"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a52bd" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-wallet"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a52bd"> <h6>AFFORDABLE</h6> </a> <p>Magni quidem aliquid illo sequi similique minima corporis fugiat type </p> </div> </div> </div> </div> </div> </div> <div class="vc_row wpb_row vc_inner vc_row-fluid"> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493879969072"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a5507" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-gas-station"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a5507"> <h6>OIL CHANGES</h6> </a> <p>The printin lorem Ipsum is simply dummy text of k a galley of type and</p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493880026349"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a562f" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-air-conditioning"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a562f"> <h6>AIR CONDITIONING</h6> </a> <p>Galley of type lorem Ipsum is simply dummy text of the printin k a type</p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493880000054"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a574f" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-electrical-service"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a574f"> <h6>AUTO ELECTRIC</h6> </a> <p>Simply dummy lorem Ipsum is text of the printin k a galley of type and</p> </div> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-3"> <div class="vc_column-inner vc_custom_1493880020717"> <div class="wpb_wrapper"> <div id="cd_feature_box_cd_feature_box_5e17a2b0a5882" class="feature-box feature-border style-1 round-icon no-image"> <div class="icon"> <i class="glyph-icon flaticon-gearstick"></i> </div> <div class="content"> <a id="cd_feature_box_5e17a2b0a5882"> <h6>TRANSMISSION</h6> </a> <p>Dolorem voluptates is simply dummy text of the printin k a galley of type</p> </div> </div> </div> </div> </div> </div> <div id="cd_space_5e17a2b0a58bf" class="cd-space cd-space-5e17a2b0a58c3" data-id="5e17a2b0a58be" data-tablet="40" data-tablet-portrait="30" data-mobile="20" data-mobile-portrait="10" data-desktop="50" style="clear:both; display:block;"></div> </div> </div> </div> </div> <div data-vc-full-width="true" data-vc-full-width-init="true" class="vc_row wpb_row vc_row-fluid vc_custom_1486473618714 row-background-light vc_row-has-fill" style="position: relative; left: 9.53674e-07px; box-sizing: border-box; width: 485px; padding-left: 0px; padding-right: 0px;"> <div class="vc_row-background-overlay" style="opacity: 0.8;"></div> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner "> <div class="wpb_wrapper"> <div id="cd_space_5e17a2b0a5d38" class="cd-space cd-space-5e17a2b0a5d3e" data-id="5e17a2b0a5d37" data-tablet="50" data-tablet-portrait="40" data-mobile="30" data-mobile-portrait="30" data-desktop="60" style="clear:both; display:block;"></div> <div id="cd_clients_5e17a2b0a5d6d" class="our-clients"> <div class="col-lg-12 col-md-12"> <div class="owl-carousel owl-theme owl-loaded" data-nav-arrow="false" data-nav-dots="false" data-items="5" data-md-items="5" data-sm-items="3" data-xs-items="2" data-xx-items="1" data-space="20" data-autoplay="true" data-loop="true" data-lazyload=""> <div class="owl-stage-outer"> <div class="owl-stage" style="transform: translate3d(-445px, 0px, 0px); transition: all 0s ease 0s; width: 2670px;"> <div class="owl-item cloned" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/02-1.png" alt=""> </div> </div> <div class="owl-item cloned" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/01-1.png" alt=""> </div> </div> <div class="owl-item active" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/08-1.png" alt=""> </div> </div> <div class="owl-item active" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/07-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/06-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/05-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/04-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/03-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/02-1.png" alt=""> </div> </div> <div class="owl-item" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/01-1.png" alt=""> </div> </div> <div class="owl-item cloned" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/08-1.png" alt=""> </div> </div> <div class="owl-item cloned" style="width: 202.5px; margin-right: 20px;"> <div class="item"> <img class="center-block" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2017/01/07-1.png" alt=""> </div> </div> </div> </div> <div class="owl-controls"> <div class="owl-nav"> <div class="owl-prev" style="display: none;"> <i class="fa fa-angle-left fa-2x"></i> </div> <div class="owl-next" style="display: none;"> <i class="fa fa-angle-right fa-2x"></i> </div> </div> <div class="owl-dots" style="display: none;"></div> </div> </div> </div> </div> <div id="cd_space_5e17a2b0a77da" class="cd-space cd-space-5e17a2b0a77e2" data-id="5e17a2b0a77d9" data-tablet="50" data-tablet-portrait="40" data-mobile="30" data-mobile-portrait="30" data-desktop="60" style="clear:both; display:block;"></div> </div> </div> </div> </div> <div class="vc_row-full-width vc_clearfix"></div> </article> <!-- #post --> </div> </div> </div> <!-- #main .wrapper --> <footer id="footer" class="footer bg-2 bg-overlay-black-90 footer_bg-image footer_opacity footer_opacity-custom"> <div class="container"> <div class="cd-social-footer social-full layout_1"> <a class="facebook" href="https://www.facebook.com" target="_blank">Facebook<i class="fa fa-facebook"></i> </a> <a class="twitter" href="https://www.twitter.com" target="_blank">Twitter<i class="fa fa-twitter"></i> </a> <a class="dribbble" href="" target="_blank">Dribbble<i class="fa fa-dribbble"></i> </a> <a class="google_plus" href="https://plus.google.com" target="_blank">Google Plus<i class="fa fa-google-plus"></i> </a> <a class="vimeo" href="" target="_blank">Vimeo<i class="fa fa-vimeo"></i> </a> <a class="pinterest" href="" target="_blank">Pinterest<i class="fa fa-pinterest"></i> </a> <a class="behance" href="" target="_blank">Behance<i class="fa fa-behance"></i> </a> <a class="linkedin" href="" target="_blank">Linkedin<i class="fa fa-linkedin"></i> </a> </div> <div class="row"> <div class="col-lg-3 col-md-3 col-sm-6"> <div id="text-2" class="widget widget_text"> <div class="textwidget"> <div class="about-content"> <p>We provide everything you need to build an amazing dealership website developed especially for car sellers dealers or auto motor retailers.</p> </div> <div class="address"> <ul> <li><i class="fa fa-map-marker"></i><span>220E Front St. Burlington NC 27215</span></li> <li><i class="fa fa-phone"></i><span>(007) 123 456 7890</span></li> <li><i class="fa fa-envelope-o"></i><span>[email protected]</span></li> </ul> </div> </div> </div> </div> <div class="col-lg-3 col-md-3 col-sm-6"> <div id="text-3" class="widget widget_text"> <h6 class="text-white widgettitle">Useful Links</h6> <div class="textwidget"> <ul> <li><a href="#"><i class="fa fa-angle-double-right"></i> Change Oil and Filter</a></li> <li><a href="#"><i class="fa fa-angle-double-right"></i> Brake Pads Replacement</a></li> <li><a href="#"><i class="fa fa-angle-double-right"></i> Timing Belt Replacement</a></li> <li><a href="#"><i class="fa fa-angle-double-right"></i> Pre-purchase Car Inspection</a></li> <li><a href="#"><i class="fa fa-angle-double-right"></i> Starter Replacement</a></li> </ul> </div> </div> </div> <div class="col-lg-3 col-md-3 col-sm-6"> <div id="recent-posts-4" class="widget widget_recent_entries"> <h6 class="text-white widgettitle">recent posts</h6> <div class="recent-post"> <div class="recent-post-image"> <img width="50" height="50" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/10/car-dealer-listing-50x50.png" class="img-responsive wp-post-image" alt="car listing template" srcset="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/10/car-dealer-listing-50x50.png 50w, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/10/car-dealer-listing-150x150.png 150w, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/10/car-dealer-listing-700x700.png 700w, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/10/car-dealer-listing-100x100.png 100w" sizes="(max-width: 50px) 100vw, 50px"> </div> <div class="recent-post-info"> <a href="https://cardealer.potenzaglobalsolutions.com/best-car-listing-template-for-car-dealer/">Best Car Listing Template For Car Dealer</a> <span class="post-date"><i class="fa fa-calendar"></i>October 10, 2019</span> </div> </div> <div class="recent-post"> <div class="recent-post-image"> <img width="50" height="50" src="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/09/auto-2179077_960_720-50x50.jpg" class="img-responsive wp-post-image" alt="car dealer wordpress theme" srcset="https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/09/auto-2179077_960_720-50x50.jpg 50w, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/09/auto-2179077_960_720-150x150.jpg 150w, https://cardealer.potenzaglobalsolutions.com/wp-content/uploads/2019/09/auto-2179077_960_720-100x100.jpg 100w" sizes="(max-width: 50px) 100vw, 50px"> </div> <div class="recent-post-info"> <a href="https://cardealer.potenzaglobalsolutions.com/buy-the-best-car-dealer-wordpress-theme-for-automobile-business/">Buy the best Car Dealer WordPress Theme For Automobile Business</a> <span class="post-date"><i class="fa fa-calendar"></i>September 20, 2019</span> </div> </div> </div> </div> <div class="col-lg-3 col-md-3 col-sm-6"> <div id="newsletter_widget-5" class="widget mailchimp_newsletter"> <div class="news-letter"> <h6 class="text-white widgettitle">subscribe Our Newsletter </h6> <p>Keep up on our always evolving products features and technology. Enter your e-mail and subscribe to our newsletter.</p> <form class="news-letter" id="form_newsletter_widget-5"> <input type="hidden" class="news-nonce" name="news_nonce" value="016d38b880"> <input type="email" class="form-control newsletter-email placeholder" name="name" placeholder="Enter your Email"> <a class="button red newsletter-mailchimp" href="#" data-form-id="form_newsletter_widget-5">Subscribe</a> <span class="spinimg-form_newsletter_widget-5"></span> <p class="newsletter-msg" style="display:none;"></p> </form> </div> </div> </div> </div> <div class="row"> <div id="text-4" class="widget col-sm-6 widget_text"> <div class="textwidget"> <div class="footer-box"> <div class="box-content"> <h6 class="text-white">ARE YOU LOOKING FOR A CAR?</h6> <p>Search Our Inventory With Thousands Of Cars And More Cars Are Adding On Daily Basis</p> </div> <div class="box-link"> <a class="button" href="https://cardealer.potenzaglobalsolutions.com/cardealer-wp/cars/">read more</a> </div> </div> </div> </div> <div id="text-5" class="widget col-sm-6 widget_text"> <div class="textwidget"> <div class="footer-box"> <div class="box-content"> <h6 class="text-white">DO YOU WANT TO SELL A CAR?</h6> <p>Search Our Inventory With Thousands Of Cars And More Cars Are Adding On Daily Basis</p> </div> <div class="box-link"> <a class="button" href="https://cardealer.potenzaglobalsolutions.com/cardealer-wp/cars/">read more</a> </div> </div> </div> </div> </div> </div> <!-- BOOTOM COPYRIGHT SECTION START --> <div class="copyright-block"> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-6 pull-left"> ©Copyright 2020 <a href="https://cardealer.potenzaglobalsolutions.com" target="_blank">Car Dealer</a> </div> <div class="col-lg-6 col-md-6 pull-right"> <div class="menu-footer-menu-container"> <ul id="menu-footer-menu" class="list-inline text-right"> <li id="menu-item-5443" class="menu-item menu-item-type-post_type menu-item-object-page first-item menu-item-5443"><a href="https://cardealer.potenzaglobalsolutions.com/privacy-policy/">Privacy Policy</a></li> <li id="menu-item-5444" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5444"><a href="https://cardealer.potenzaglobalsolutions.com/terms-and-conditions/">Terms and Conditions</a></li> <li id="menu-item-5442" class="menu-item menu-item-type-post_type menu-item-object-page last-item menu-item-5442"><a href="https://cardealer.potenzaglobalsolutions.com/contact-01/">Contact Us</a></li> </ul> </div> </div> </div> </div> </div> <!-- BOOTOM COPYRIGHT SECTION END --> </footer> <div class="car-top"> <span> <img src="https://cardealer.potenzaglobalsolutions.com/wp-content/themes/cardealer/images/car.png" alt="Top" title="Back to top"> </span> </div> </div> <!-- #page --> <div class="style-customizer closed" style=""> <div class="style-customizer-inner"> <div class="buy-button style-customizer-header"> <a class="opener" href="#"><i class="fa fa-cog fa-spin"></i></a> <a class="button button-border" href="https://themeforest.net/item/car-dealer-automotive-responsive-wordpress-theme/20213334?ref=Potenzaglobalsolutions">Buy Car Dealer now!</a> </div> <div class="clearfix content-chooser style-customizer-content" style="height: 717.002px;"> <div class="fieldset-wrapper"> <h4 class="fieldset-label">Site Layout</h4> <select class="style-customizer-layout" name="style-customizer-layout" id="style_customizer_layout"> <option value="boxed" data-class="site-layout-boxed">Boxed</option> <option value="framed" data-class="site-layout-framed">Framed</option> <option value="standard" data-class="site-layout-standard">Standard</option> </select> </div> <div class="fieldset-wrapper"> <h3>Color Schemes</h3> <h4>Primary Color</h4> <p>Select primary color.</p> <div class="wp-picker-container"> <button type="button" class="button wp-color-result" aria-expanded="false" style="background-color: rgb(219, 46, 45);"><span class="wp-color-result-text">Select Color</span></button> <span class="wp-picker-input-wrap hidden"><label><span class="screen-reader-text"></span><input type="text" value="" class="style-customizer-color-scheme-primary wp-color-picker" data-default-color="#ffffff"></label><input type="button" class="button button-small wp-picker-default" value="Default"></span> <div class="wp-picker-holder"> <div class="iris-picker iris-border" style="display: none; width: 255px; height: 202.125px; padding-bottom: 23.2209px;"> <div class="iris-picker-inner"> <div class="iris-square" style="width: 182.125px; height: 182.125px;"> <a class="iris-square-value ui-draggable ui-draggable-handle" href="#" style="left: 0px; top: 25.4975px;"><span class="iris-square-handle ui-slider-handle"></span></a> <div class="iris-square-inner iris-square-horiz" style="background-image: -webkit-linear-gradient(left, rgb(255, 51, 51), rgb(255, 153, 51), rgb(255, 255, 51), rgb(153, 255, 51), rgb(51, 255, 51), rgb(51, 255, 153), rgb(51, 255, 255), rgb(51, 153, 255), rgb(51, 51, 255), rgb(153, 51, 255), rgb(255, 51, 255), rgb(255, 51, 153), rgb(255, 51, 51));"></div> <div class="iris-square-inner iris-square-vert" style="background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0));"></div> </div> <div class="iris-slider iris-strip" style="height: 205.346px; width: 28.2px; background-image: -webkit-linear-gradient(top, rgb(219, 0, 0), rgb(219, 219, 219));"> <div class="iris-slider-offset ui-slider ui-slider-vertical ui-widget ui-widget-content ui-corner-all"> <span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="bottom: 79%;"></span> </div> </div> </div> <div class="iris-palette-container"> <a class="iris-palette" tabindex="0" style="background-color: rgb(0, 0, 0); height: 19.5784px; width: 19.5784px; margin-left: 0px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(255, 255, 255); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 51, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 153, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(238, 238, 34); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(129, 215, 66); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(30, 115, 190); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(130, 36, 227); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> </div> </div> </div> </div> <h4>Secondary Color</h4> <p>Select secondary color.</p> <div class="wp-picker-container"> <button type="button" class="button wp-color-result" aria-expanded="false" style="background-color: rgb(54, 54, 54);"><span class="wp-color-result-text">Select Color</span></button> <span class="wp-picker-input-wrap hidden"><label><span class="screen-reader-text"></span><input type="text" value="" class="style-customizer-color-scheme-secondary wp-color-picker"></label><input type="button" class="button button-small wp-picker-default" value="Default"></span> <div class="wp-picker-holder"> <div class="iris-picker iris-border" style="display: none; width: 255px; height: 202.125px; padding-bottom: 23.2209px;"> <div class="iris-picker-inner"> <div class="iris-square" style="width: 182.125px; height: 182.125px;"> <a class="iris-square-value ui-draggable ui-draggable-handle" href="#" style="left: 0px; top: 143.879px;"><span class="iris-square-handle ui-slider-handle"></span></a> <div class="iris-square-inner iris-square-horiz" style="background-image: -webkit-linear-gradient(left, rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255));"></div> <div class="iris-square-inner iris-square-vert" style="background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0));"></div> </div> <div class="iris-slider iris-strip" style="height: 205.346px; width: 28.2px; background-image: -webkit-linear-gradient(top, rgb(51, 0, 0), rgb(54, 54, 54));"> <div class="iris-slider-offset ui-slider ui-slider-vertical ui-widget ui-widget-content ui-corner-all"> <span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="bottom: 0%;"></span> </div> </div> </div> <div class="iris-palette-container"> <a class="iris-palette" tabindex="0" style="background-color: rgb(0, 0, 0); height: 19.5784px; width: 19.5784px; margin-left: 0px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(255, 255, 255); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 51, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 153, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(238, 238, 34); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(129, 215, 66); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(30, 115, 190); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(130, 36, 227); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> </div> </div> </div> </div> <h4>Tertiary Color</h4> <p>Select tertiary color.</p> <div class="wp-picker-container"> <button type="button" class="button wp-color-result" aria-expanded="false" style="background-color: rgb(153, 153, 153);"><span class="wp-color-result-text">Select Color</span></button> <span class="wp-picker-input-wrap hidden"><label><span class="screen-reader-text"></span><input type="text" value="" class="style-customizer-color-scheme-tertiary wp-color-picker"></label><input type="button" class="button button-small wp-picker-default" value="Default"></span> <div class="wp-picker-holder"> <div class="iris-picker iris-border" style="display: none; width: 255px; height: 202.125px; padding-bottom: 23.2209px;"> <div class="iris-picker-inner"> <div class="iris-square" style="width: 182.125px; height: 182.125px;"> <a class="iris-square-value ui-draggable ui-draggable-handle" href="#" style="left: 0px; top: 72.85px;"><span class="iris-square-handle ui-slider-handle"></span></a> <div class="iris-square-inner iris-square-horiz" style="background-image: -webkit-linear-gradient(left, rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255));"></div> <div class="iris-square-inner iris-square-vert" style="background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0));"></div> </div> <div class="iris-slider iris-strip" style="height: 205.346px; width: 28.2px; background-image: -webkit-linear-gradient(top, rgb(153, 0, 0), rgb(153, 153, 153));"> <div class="iris-slider-offset ui-slider ui-slider-vertical ui-widget ui-widget-content ui-corner-all"> <span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="bottom: 0%;"></span> </div> </div> </div> <div class="iris-palette-container"> <a class="iris-palette" tabindex="0" style="background-color: rgb(0, 0, 0); height: 19.5784px; width: 19.5784px; margin-left: 0px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(255, 255, 255); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 51, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(221, 153, 51); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(238, 238, 34); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(129, 215, 66); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(30, 115, 190); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> <a class="iris-palette" tabindex="0" style="background-color: rgb(130, 36, 227); height: 19.5784px; width: 19.5784px; margin-left: 3.6425px;"></a> </div> </div> </div> </div> </div> </div> <div class="style-customizer-footer"> <ul class="style-customizer-actions"> <li><a class="pgs_btn pgs_btn_style_3 pgs_btn_md button-apply" href="#"><span>Apply</span></a></li> <li><a class="pgs_btn pgs_btn_style_3 pgs_btn_md button-reset" href="#"><span>Reset</span></a></li> </ul> </div> </div> <div class="style-customizer-overlay"> <div class="style-customizer-loader"></div> </div> </div> <script> </script> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <div class="pswp__bg"></div> <div class="pswp__scroll-wrap"> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"> </button> <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"> </button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> <script type="text/javascript"> var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; </script> <script type="text/javascript"> function revslider_showDoubleJqueryError(sliderID) { var errorMessage = "Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include."; errorMessage += "<br> This includes make eliminates the revolution slider libraries, and make it not work."; errorMessage += "<br><br> To fix it you can:<br> 1. In the Slider Settings -> Troubleshooting set option: <strong><b>Put JS Includes To Body</b></strong> option to true."; errorMessage += "<br> 2. Find the double jquery.js include and remove it."; errorMessage = "<span style='font-size:16px;color:#BC0C06;'>" + errorMessage + "</span>"; jQuery(sliderID).show().html(errorMessage); } </script> <script type="text/javascript"> jQuery(document).ready(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); </script> <script type="text/javascript"> /* <![CDATA[ */ var cardealer_obj = {"site_url":"https:\/\/cardealer.potenzaglobalsolutions.com","cars_url":"https:\/\/cardealer.potenzaglobalsolutions.com\/cars\/","lay_style":"view-grid-left","cars_grid":"yes","default_sort_by":"date","default_order_by":"desc","is_vehicle_cat":"","vehicle_cat":"","vehicle_location":""}; var cardealer_js = {"ajaxurl":"https:\/\/cardealer.potenzaglobalsolutions.com\/wp-admin\/admin-ajax.php","sticky_topbar":"","sticky_header_mobile":"1","sticky_header_desktop":"1"}; var goole_captcha_api_obj = {"google_captcha_site_key":"6LdjkUgUAAAAALEP6V0WGGQefh7ej5JnzAyRICfB"}; /* ]]> */ </script> <script type="text/javascript"> jQuery(document).ready(function($){
}); </script> <script type="text/javascript"> /* <![CDATA[ / var uiAutocompleteL10n = {"noResults":"No results found.","oneResult":"1 result found. Use up and down arrow keys to navigate.","manyResults":"%d results found. Use up and down arrow keys to navigate.","itemSelected":"Item selected."}; / ]]> / </script> <noscript> <img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=319674328552704&ev=PageView&noscript=1"> </noscript> <script type="text/javascript"> / <![CDATA[ / var cars_price_slider_params = {"currency_symbol":"$","currency_pos":"left","decimal_places":"2","decimal_separator_symbol":".","thousand_seperator_symbol":",","min_price":"","max_price":"","cars_form_url":"https:\/\/cardealer.potenzaglobalsolutions.com\/cars\/"}; var cars_year_range_slider_params = {"is_year_range_active":"","min_year":"","max_year":""}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var cars_filter_methods = {"cars_filter_with":"yes","geofenc":"0"}; var cdhl_obj = {"geofenc":"0"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var wpColorPickerL10n = {"clear":"Clear","defaultString":"Default","pick":"Select Color","current":"Current Color"}; / ]]> / </script> <script type="text/javascript"> / <![CDATA[ / var megamenu = {"timeout":"300","interval":"100"}; / ]]> */ </script> <script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss=""; if(htmlDiv) { htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss; }else{ var htmlDiv = document.createElement("div"); htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>"; document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]); } </script> <script type="text/javascript"> if (setREVStartSize!==undefined) setREVStartSize( {c: '#rev_slider_7_1', gridwidth: [1270], gridheight: [800], sliderLayout: 'fullwidth'});
var revapi7, tpj; (function() { if (!/loaded|interactive|complete/.test(document.readyState)) document.addEventListener("DOMContentLoaded",onLoad); else onLoad(); function onLoad() { if (tpj===undefined) { tpj = jQuery; if("off" == "on") tpj.noConflict();} if(tpj("#rev_slider_7_1").revolution == undefined){ revslider_showDoubleJqueryError("#rev_slider_7_1"); }else{ revapi7 = tpj("#rev_slider_7_1").show().revolution({ sliderType:"standard", jsFileLocation:"//cardealer.potenzaglobalsolutions.com/wp-content/plugins/revslider/public/assets/js/", sliderLayout:"fullwidth", dottedOverlay:"none", delay:9000, navigation: { keyboardNavigation:"off", keyboard_direction: "horizontal", mouseScrollNavigation:"off", mouseScrollReverse:"default", onHoverStop:"off", touch:{ touchenabled:"on", touchOnDesktop:"off", swipe_threshold: 75, swipe_min_touches: 1, swipe_direction: "horizontal", drag_block_vertical: false } , bullets: { enable:true, hide_onmobile:true, hide_under:767, style:"uranus", hide_onleave:false, direction:"horizontal", h_align:"right", v_align:"bottom", h_offset:40, v_offset:40, space:8, tmp:'<span class="tp-bullet-inner"></span>' } }, visibilityLevels:[1240,1024,778,480], gridwidth:1270, gridheight:800, lazyType:"none", parallax: { type:"mouse", origo:"enterpoint", speed:400, speedbg:0, speedls:0, levels:[2,3,4,5,6,7,8,9,10,46,47,48,49,50,51,55], }, shadow:0, spinner:"spinner0", stopLoop:"off", stopAfterLoops:-1, stopAtSlide:-1, shuffle:"off", autoHeight:"off", disableProgressBar:"on", hideThumbsOnMobile:"off", hideSliderAtLimit:0, hideCaptionAtLimit:0, hideAllCaptionAtLilmit:0, debugModel: true, fallbacks: { simplifyAll:"on", nextSlideOnWindowFocus:"off", disableFocusListener:false, } }); }; /* END OF revapi call */
}; /* END OF ON LOAD FUNCTION */ }()); /* END OF WRAPPING FUNCTION */ </script> <script> jQuery( document ).ready(function() { jQuery.ajax({ url: cardealer_js.ajaxurl, type: 'post', //dataType: 'json', data:'action=pgs_cardealer_top_bar&theme=cardealer-wp', success: function(response){ jQuery('body').prepend(response); },
}); }); jQuery(document).on('click','a.frame-close', function(e){ jQuery('.header-preview').slideUp(); }); </script> <ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none;"></ul> <span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span> <ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none;"></ul> <span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span> <div id="wp-a11y-speak-polite" aria-live="polite" aria-relevant="additions text" aria-atomic="true" class="screen-reader-text wp-a11y-speak-region"></div> <div id="wp-a11y-speak-assertive" aria-live="assertive" aria-relevant="additions text" aria-atomic="true" class="screen-reader-text wp-a11y-speak-region"></div> </body> </html>```