-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
449 lines (436 loc) · 20.3 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=AW-11193323869"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'AW-11193323869')
</script>
<!-- Call Conversion tag -->
<script>
gtag('config', 'AW-11193323869/EC_oCMb0wcgZEN2istkp', {
phone_conversion_number: '+1(865) 350-2700',
})
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Discover Next Level Complete Auto Care Center for top-notch auto repair, diesel upgrades, performance enhancements, camshaft upgrades, and dyno testing. Our expert team ensures your vehicle runs at its best."
/>
<title>About | Next Level Complete Auto Care Center</title>
<!-- CSS -->
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/custom.css" />
<link rel="stylesheet" href="css/dark.css" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<!-- ============================================ -->
<!-- Navigation -->
<!-- ============================================ -->
<header id="cs-navigation">
<div class="cs-container">
<!--Nav Logo-->
<a href="index.html" class="cs-logo" aria-label="back to home">
<img
src="img/logo.webp"
alt="logo"
width="3858"
height="956"
aria-hidden="true"
decoding="async"
/>
</a>
<!--Navigation List-->
<nav class="cs-nav">
<!--Mobile Nav Toggle-->
<div class="cs-toggle" aria-label="mobile menu toggle">
<div class="cs-box" aria-hidden="true">
<span class="cs-line cs-line1" aria-hidden="true"></span>
<span class="cs-line cs-line2" aria-hidden="true"></span>
<span class="cs-line cs-line3" aria-hidden="true"></span>
</div>
</div>
<!-- We need a wrapper div so we can set a fixed height on the cs-ul in case the nav list gets too long from too many dropdowns being opened and needs to have an overflow scroll. This wrapper acts as the background so it can go the full height of the screen and not cut off any overflowing nav items while the cs-ul stops short of the bottom of the screen, which keeps all nav items in view no matter how mnay there are-->
<div class="cs-ul-wrapper">
<ul id="cs-expanded" class="cs-ul" aria-expanded="false">
<li class="cs-li">
<a href="index.html" class="cs-li-link"> Home </a>
</li>
<li class="cs-li">
<a href="about.html" class="cs-li-link"> About </a>
</li>
<li class="cs-li">
<a href="services.html" class="cs-li-link"> Services </a>
</li>
<li class="cs-li">
<a href="gallery.html" class="cs-li-link"> Gallery</a>
</li>
<li class="cs-li">
<a href="blog.html" class="cs-li-link"> Blog</a>
</li>
</ul>
</div>
</nav>
<a href="contact.html" class="cs-button-solid cs-nav-button"
>CONTACT US</a
>
<!--Dark Mode toggle, uncomment button code if you want to enable a dark mode toggle-->
<button id="dark-mode-toggle" aria-label="dark mode toggle">
<svg
class="cs-sun"
xmlns="http://www.w3.org/2000/svg"
height="24px"
viewBox="0 -960 960 960"
width="24px"
fill="#fff"
>
<path
d="M479.96-144Q340-144 242-242t-98-238q0-140 97.93-238t237.83-98q13.06 0 25.65 1 12.59 1 25.59 3-39 29-62 72t-23 92q0 85 58.5 143.5T648-446q49 0 92-23t72-62q2 13 3 25.59t1 25.65q0 139.9-98.04 237.83t-238 97.93Zm.04-72q82 0 148.78-47.07Q695.55-310.15 727-386q-20 5-39.67 8.5Q667.67-374 648-374q-113.86 0-193.93-80.07Q374-534.14 374-648q0-19.67 3.5-39.33Q381-707 386-727q-75.85 31.45-122.93 98.22Q216-562 216-480q0 110 77 187t187 77Zm-14-250Z"
/>
</svg>
<svg
class="cs-moon"
xmlns="http://www.w3.org/2000/svg"
height="24px"
viewBox="0 -960 960 960"
width="24px"
fill="#fff"
>
<path
d="M480-360q50 0 85-35t35-85q0-50-35-85t-85-35q-50 0-85 35t-35 85q0 50 35 85t85 35Zm-.23 72Q400-288 344-344.23q-56-56.22-56-136Q288-560 344.23-616q56.22-56 136-56Q560-672 616-615.77q56 56.22 56 136Q672-400 615.77-344q-56.22 56-136 56ZM216-444H48v-72h168v72Zm696 0H744v-72h168v72ZM444-744v-168h72v168h-72Zm0 696v-168h72v168h-72ZM269-642 166-742l51-55 102 104-50 51Zm474 475L642-268l49-51 103 101-51 51ZM640-691l102-101 51 49-100 103-53-51ZM163-217l105-99 49 47-98 104-56-52Zm317-263Z"
/>
</svg>
</button>
</div>
</header>
<!-- ============================================ -->
<!-- Banner -->
<!-- ============================================ -->
<div id="banner-1106">
<div class="cs-container">
<h1 class="cs-int-title">About Us</h1>
</div>
<!--Background Image-->
<div class="cs-background"></div>
</div>
<!-- ============================================ -->
<!-- Side By Side -->
<!-- ============================================ -->
<section id="about">
<div class="cs-container">
<img src="img/about.webp" alt="about" class="about-img" />
<div class="cs-content">
<p class="cs-text">
At Next Level Complete Auto Care Center, we're more than just
mechanics – we're performance enthusiasts. Our journey began in 2015
when our founder, Charity & German Aguilar, decided to turn their
passion for speed into a mission to help others experience the
thrill of actual automotive performance.
</p>
<ul class="cs-list">
<li class="cs-li">
<picture class="cs-li-picture">
<svg
xmlns="http://www.w3.org/2000/svg"
height="40px"
viewBox="0 -960 960 960"
width="40px"
fill="#D11900"
>
<path
d="M42-120v-92q0-34 16-56.5t45-36.5q54-26 115.5-43T358-365q78 0 139.5 17T613-305q29 14 45 36.5t16 56.5v92H42Zm60-60h512v-32q0-15-8.5-24.5T585-251q-43-19-96-36.5T358-305q-78 0-131 17.5T131-251q-12 5-20.5 14.5T102-212v32Zm256-245q-66 0-108-43t-42-107h-10q-8 0-14-6t-6-14q0-8 6-14t14-6h10q0-40 20-72t52-52v39q0 6 4.5 10.5T295-685q7 0 11-4.5t4-10.5v-52q8-2 22-3.5t27-1.5q13 0 27 1.5t22 3.5v52q0 6 4 10.5t11 4.5q6 0 10.5-4.5T438-700v-39q32 20 51 52t19 72h10q8 0 14 6t6 14q0 8-6 14t-14 6h-10q0 64-42 107t-108 43Zm0-60q42 0 66-25t24-65H268q0 40 24 65t66 25Zm302 124-2-29q-7-4-14.5-9T630-409l-26 14-22-32 26-19q-2-4-2-7.5v-15q0-3.5 2-7.5l-26-19 22-32 26 14 14-10q7-5 14-9l2-29h40l2 29q7 4 14 9l14 10 26-14 22 32-26 19q2 4 2 7.5v15q0 3.5-2 7.5l26 19-22 32-26-14q-6 5-13.5 10t-14.5 9l-2 29h-40Zm20-62q16 0 27-11t11-27q0-16-11-27t-27-11q-16 0-27 11t-11 27q0 16 11 27t27 11Zm88-155-9-35q-10-4-20.5-11T721-639l-44 16-20-35 35-28q-2-5-3.5-11t-1.5-12q0-6 1.5-12t3.5-11l-35-28 20-35 44 16q7-8 17.5-15.5T759-805l9-35h38l9 35q10 3 20.5 10.5T853-779l44-16 20 35-35 28q2 5 3.5 11t1.5 12q0 6-1.5 12t-3.5 11l35 28-20 35-44-16q-7 8-17.5 15T815-613l-9 35h-38Zm19-73q25 0 41.5-16.5T845-709q0-25-16.5-41.5T787-767q-25 0-41.5 16.5T729-709q0 25 16.5 41.5T787-651ZM358-180Z"
/>
</svg>
</picture>
<div class="cs-flex">
<h3 class="cs-h3">
Comprehensive Maintenance & Preventative Services
</h3>
<p class="cs-li-text">
We don't just focus on performance upgrades. Our team excels
in providing thorough maintenance and preventative services to
keep your vehicle running at its best. We ensure your car
stays in top condition, preventing costly breakdowns and
extending its lifespan.
</p>
</div>
</li>
<li class="cs-li">
<picture class="cs-li-picture">
<svg
xmlns="http://www.w3.org/2000/svg"
height="40px"
viewBox="0 -960 960 960"
width="40px"
fill="#D11900"
>
<path
d="M163.67-120v-102.67h126L185-575.33q-30.33-15-48.17-41.67Q119-643.67 119-682.67q0-48 34.67-82.66Q188.33-800 236.33-800q42.34 0 71.84 23.17 29.5 23.16 40.16 60.83h140v-52.67q0-13.66 9.84-23.5Q508-802 521.67-802q10.33 0 18.16 7 7.84 7 9.84 17l72.66-69.33q8.34-8.34 20.84-10.84t25.16 3.5L825.67-780q10 5.33 13.83 15.17 3.83 9.83-1.17 20.16Q833-734 822.83-731.5 812.67-729 803-734l-151.33-72L555-710.67v53.34L651.67-560 803-632.67q10.33-5 20.33-2 10 3 15 13.34 5.34 10.66 1.34 21-4 10.33-14.67 15.66L671-512q-13.33 6.67-26.17 5.5-12.83-1.17-22.5-10.83l-72.66-69.34q-2 11.34-9.84 17.67-7.83 6.33-18.16 6.33-13.67 0-23.5-9.83-9.84-9.83-9.84-23.5v-53.33H347q-1 10.66-6.5 21.33-5.5 10.67-13.5 18.67l203.33 386.66h153.34V-120h-520Zm72.66-512q21.67 0 36.17-14.5t14.5-36.17q0-21.66-14.5-36.16-14.5-14.5-36.17-14.5-21.66 0-36.16 14.5-14.5 14.5-14.5 36.16 0 21.67 14.5 36.17t36.16 14.5ZM361-222.67h94L271.67-574q-2 1.33-7.34 2.67-5.33 1.33-8 2L361-222.67Zm94 0Z"
/>
</svg>
</picture>
<div class="cs-flex">
<h3 class="cs-h3">Newest Tools and Machines</h3>
<p class="cs-li-text">
At Next Level Complete Auto Care Center, we use the latest
equipment. Our shop has modern dynos, advanced computers, and
precision tools. This allows us to work effectively on all
types of cars, ensuring great results every time.
</p>
</div>
</li>
<li class="cs-li">
<picture class="cs-li-picture">
<svg
xmlns="http://www.w3.org/2000/svg"
height="40px"
viewBox="0 -960 960 960"
width="40px"
fill="#D11900"
>
<path
d="M186.67-80q-27 0-46.84-19.83Q120-119.67 120-146.67v-600q0-27 19.83-46.83 19.84-19.83 46.84-19.83h56.66V-880h70v66.67h333.34V-880h70v66.67h56.66q27 0 46.84 19.83Q840-773.67 840-746.67v600q0 27-19.83 46.84Q800.33-80 773.33-80H186.67Zm0-66.67h586.66v-420H186.67v420Zm0-486.66h586.66v-113.34H186.67v113.34Zm0 0v-113.34 113.34ZM480-400q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm-160 0q-17 0-28.5-11.5T280-440q0-17 11.5-28.5T320-480q17 0 28.5 11.5T360-440q0 17-11.5 28.5T320-400Zm320 0q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM480-240q-17 0-28.5-11.5T440-280q0-17 11.5-28.5T480-320q17 0 28.5 11.5T520-280q0 17-11.5 28.5T480-240Zm-160 0q-17 0-28.5-11.5T280-280q0-17 11.5-28.5T320-320q17 0 28.5 11.5T360-280q0 17-11.5 28.5T320-240Zm320 0q-17 0-28.5-11.5T600-280q0-17 11.5-28.5T640-320q17 0 28.5 11.5T680-280q0 17-11.5 28.5T640-240Z"
/>
</svg>
</picture>
<div class="cs-flex">
<h3 class="cs-h3">Custom Plans for Every Car</h3>
<p class="cs-li-text">
We don't use one-size-fits-all solutions. We listen to your
goals and budget, then make a plan just for you. We tailor our
work to your needs, from minor upgrades to complete rebuilds.
</p>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- Mobile Call -->
<!-- ============================================ -->
<a href="tel:+1-865-350-2700">
<section class="mobile-call">
<img
class="cs-icon"
aria-hidden="true"
loading="lazy"
decoding="async"
src="https://csimg.nyc3.digitaloceanspaces.com/Contact-Page/phone-stroke.svg"
alt="phone"
width="24"
height="24"
/>
</section>
</a>
<!-- ============================================ -->
<!-- Footer -->
<!-- ============================================ -->
<footer id="cs-footer-1104">
<div class="cs-container">
<!-- Logo Group -->
<div class="cs-logo-group">
<a aria-label="go back to home" class="cs-logo" href="">
<img
class="cs-logo-img"
aria-hidden="true"
loading="lazy"
decoding="async"
src="img/logo.webp"
alt="logo"
width="197"
height="43"
/>
</a>
</div>
<!-- Links -->
<ul class="cs-nav">
<li class="cs-nav-li">
<span class="cs-header">Social Links</span>
</li>
<li class="cs-nav-li">
<a
class="cs-nav-link"
href="https://www.facebook.com/Nextlevelcompleteautocarecenter/?paipv=0&eav=AfYxMm5kECQbXTfZhAvtOhrNAOiM0IanRHCR5CnsV7f2OsWcpB8l4PB_-AutF2z9QhI&_rdr"
target="_blank"
>Facebook</a
>
</li>
<li class="cs-nav-li">
<a
class="cs-nav-link"
href="https://www.instagram.com/nextlevelcompleteauto/"
target="_blank"
>Instagram</a
>
</li>
</ul>
<ul class="cs-nav">
<li class="cs-nav-li">
<span class="cs-header">Services</span>
</li>
<li class="cs-nav-li">
<a class="cs-nav-link" href="#" style="pointer-events: none"
>Auto Repair/Maintenance
</a>
</li>
<li class="cs-nav-li">
<a class="cs-nav-link" href="#" style="pointer-events: none"
>Performance Upgrades
</a>
</li>
<li class="cs-nav-li">
<a class="cs-nav-link" href="#" style="pointer-events: none"
>Dyno Testing/Pull
</a>
</li>
<li class="cs-nav-li">
<a class="cs-nav-link" href="#" style="pointer-events: none"
>Inboard Marine Repair
</a>
</li>
<li class="cs-nav-li">
<a class="cs-nav-link" href="#" style="pointer-events: none"
>Diesel Upgrades/Maintenance
</a>
</li>
</ul>
<!-- Contact Info -->
<ul class="cs-nav">
<li class="cs-nav-li">
<span class="cs-header">Contact</span>
</li>
<li class="cs-nav-li">
<svg
class="cs-icon"
xmlns="http://www.w3.org/2000/svg"
height="20px"
viewBox="0 -960 960 960"
width="20px"
fill="#fafbfc"
>
<path
d="M763-145q-121-9-229.5-59.5T339-341q-86-86-135.5-194T144-764q-2-21 12.29-36.5Q170.57-816 192-816h136q17 0 29.5 10.5T374-779l24 106q2 13-1.5 25T385-628l-97 98q20 38 46 73t57.97 65.98Q422-361 456-335.5q34 25.5 72 45.5l99-96q8-8 20-11.5t25-1.5l107 23q17 5 27 17.5t10 29.5v136q0 21.43-16 35.71Q784-143 763-145ZM255-600l70-70-17.16-74H218q5 38 14 73.5t23 70.5Zm344 344q35.1 14.24 71.55 22.62Q707-225 744-220v-90l-75-16-70 70ZM255-600Zm344 344Z"
/>
</svg>
<a class="cs-nav-link cs-phone" href="tel:+1-865-350-2700"
>+1(865) 350-2700
</a>
</li>
<li class="cs-nav-li">
<svg
class="cs-icon"
xmlns="http://www.w3.org/2000/svg"
height="20px"
viewBox="0 -960 960 960"
width="20px"
fill="#fafbfc"
>
<path
d="M168-192q-29.7 0-50.85-21.16Q96-234.32 96-264.04v-432.24Q96-726 117.15-747T168-768h624q29.7 0 50.85 21.16Q864-725.68 864-695.96v432.24Q864-234 842.85-213T792-192H168Zm312-240L168-611v347h624v-347L480-432Zm0-85 312-179H168l312 179Zm-312-94v-85 432-347Z"
/>
</svg>
<a
class="cs-nav-link cs-email"
href="mailto:info@nextlevelcompleteauto.com"
>info@nextlevelcompleteauto.com
</a>
</li>
<li class="cs-nav-li">
<svg
class="cs-icon"
xmlns="http://www.w3.org/2000/svg"
height="20px"
viewBox="0 -960 960 960"
width="20px"
fill="#fafbfc"
>
<path
d="M480.21-480Q510-480 531-501.21t21-51Q552-582 530.79-603t-51-21Q450-624 429-602.79t-21 51Q408-522 429.21-501t51 21ZM480-191q119-107 179.5-197T720-549q0-105-68.5-174T480-792q-103 0-171.5 69T240-549q0 71 60.5 161T480-191Zm0 95Q323.03-227.11 245.51-339.55 168-452 168-549q0-134 89-224.5T479.5-864q133.5 0 223 90.5T792-549q0 97-77 209T480-96Zm0-456Z"
/>
</svg>
<a
class="cs-nav-link cs-address"
href="#"
target="_blank"
rel="noopener"
style="pointer-events: none"
>
911 E Hwy 11 E, <br />Jefferson City, TN 37760
</a>
</li>
<li class="cs-nav-li">
<svg
class="cs-icon"
xmlns="http://www.w3.org/2000/svg"
height="20px"
viewBox="0 -960 960 960"
width="20px"
fill="#fafbfc"
>
<path
d="m614-310 51-51-149-149v-210h-72v240l170 170ZM480-96q-79.38 0-149.19-30T208.5-208.5Q156-261 126-330.96t-30-149.5Q96-560 126-630q30-70 82.5-122t122.46-82q69.96-30 149.5-30t149.55 30.24q70 30.24 121.79 82.08 51.78 51.84 81.99 121.92Q864-559.68 864-480q0 79.38-30 149.19T752-208.5Q700-156 629.87-126T480-96Zm0-384Zm.48 312q129.47 0 220.5-91.5Q792-351 792-480.48q0-129.47-91.02-220.5Q609.95-792 480.48-792 351-792 259.5-700.98 168-609.95 168-480.48 168-351 259.5-259.5T480.48-168Z"
/>
</svg>
<a class="cs-nav-link" href="#" style="pointer-events: none">
Opening Hours: Mon - Fri 8am to 5pm
</a>
</li>
</ul>
</div>
<div class="cs-bottom">
<span class="cs-copyright"
>© <span id="current-year"></span> Next Level Complete Auto Care
Center x Powered by
<a
class="cs-copyright-link"
href="https://webtamin.co/"
target="_blank"
>Webtamin</a
></span
>
</div>
<!--Background Image-->
<picture class="cs-background">
<!--Mobile Image-->
<source
media="(max-width: 600px)"
srcset="
https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/MISC/wheels.jpg
"
/>
<!--Tablet and above Image-->
<source
media="(min-width: 601px)"
srcset="
https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/MISC/wheels.jpg
"
/>
<img
loading="lazy"
decoding="async"
src="https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/MISC/wheels.jpg"
alt="wheels"
width="1280"
height="568"
/>
</picture>
</footer>
<script src="js/script.js"></script>
</body>
</html>