-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-barber.html
697 lines (635 loc) · 50.2 KB
/
demo-barber.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
<!DOCTYPE html>
<html>
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Demo Barber | Porto - Responsive HTML5 Template</title>
<meta name="keywords" content="HTML5 Template" />
<meta name="description" content="Porto - Responsive HTML5 Template">
<meta name="author" content="okler.net">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
<link id="googleFonts" href="https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700%7CPoppins:200,300,400,500,600,700,800%7CPlayfair+Display:400,700,900&display=swap" rel="stylesheet" type="text/css">
<!-- Vendor CSS --> <link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="vendor/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="vendor/animate/animate.compat.css"> <link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.min.css"> <link rel="stylesheet" href="vendor/owl.carousel/assets/owl.carousel.min.css"> <link rel="stylesheet" href="vendor/owl.carousel/assets/owl.theme.default.min.css"> <link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/theme-elements.css">
<link rel="stylesheet" href="css/theme-blog.css">
<link rel="stylesheet" href="css/theme-shop.css">
<!-- Demo CSS --> <link rel="stylesheet" href="css/demos/demo-barber.css"> <!-- Skin CSS --> <link id="skinCSS" rel="stylesheet" href="css/skins/skin-barber.css">
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<!-- Head Libs -->
<script src="vendor/modernizr/modernizr.min.js"></script>
</head>
<body data-target="#header" data-spy="scroll" data-offset="100">
<div class="body">
<header id="header" class="header-transparent header-transparent-dark-bottom-border header-transparent-dark-bottom-border-1 header-effect-shrink" data-plugin-options="{'stickyEnabled': true, 'stickyEffect': 'shrink', 'stickyEnableOnBoxed': true, 'stickyEnableOnMobile': true, 'stickyChangeLogo': true, 'stickyStartAt': 30, 'stickyHeaderContainerHeight': 70}">
<div class="header-body border-top-0 bg-dark box-shadow-none">
<div class="header-container container">
<div class="header-row">
<div class="header-column d-lg-none">
<div class="header-row">
<h1 class="font-weight-semibold text-7 mb-0"><a href="demo-barber.html" class="text-decoration-none text-color-light custom-primary-font">BARBER SHOP</a></h1>
</div>
</div>
<div class="header-column">
<div class="header-row justify-content-end">
<div class="header-nav header-nav-links header-nav-dropdowns-dark header-nav-light-text justify-content-center">
<div class="header-nav-main header-nav-main-mobile-dark header-nav-main-square header-nav-main-dropdown-no-borders header-nav-main-effect-2 header-nav-main-sub-effect-1">
<nav class="collapse">
<ul class="nav nav-pills" id="mainNav">
<li>
<a data-hash class="dropdown-item active" href="#home">Home</a>
</li>
<li>
<a class="dropdown-item" data-hash data-hash-offset="68" href="#aboutus">About Us</a>
</li>
<li>
<a class="dropdown-item" data-hash data-hash-offset="68" href="#ourservices">Our Services</a>
</li>
<li>
<a class="dropdown-item" data-hash data-hash-offset="68" href="#hours">Hours</a>
</li>
<li>
<a class="dropdown-item" data-hash data-hash-offset="68" href="#prices">Prices</a>
</li>
<li>
<a class="dropdown-item" data-hash data-hash-offset="68" href="#footer">Contact Us</a>
</li>
</ul>
</nav>
</div>
<button class="btn header-btn-collapse-nav" data-toggle="collapse" data-target=".header-nav-main nav">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div role="main" class="main">
<div class="bg-dark">
<section id="home" class="section overlay overlay-show overlay-op-7 animated fadeIn border-0 m-0" style="background-image: url(img/demos/barber/slides/slide-1.jpg); background-size: cover; background-position: center; height: 100vh;">
<div class="container position-relative z-index-3 h-100">
<div class="row justify-content-center align-items-center h-100">
<div class="col-lg-7 text-center">
<div class="d-flex flex-column align-items-center justify-content-center h-100">
<h2 class="position-relative text-color-light text-5 line-height-5 font-weight-light ls-0 px-3 mb-2 appear-animation" data-appear-animation="blurIn" data-plugin-options="{'minWindowWidth': 0}">
<span class="position-absolute right-100pct top-50pct transform3dy-n50 opacity-7">
<img src="img/demos/barber/bar.png" class="w-auto appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="1000" data-plugin-options="{'minWindowWidth': 0}" alt="" />
</span>
PORTO'S AMAZING
<span class="position-absolute left-100pct top-50pct transform3dy-n50 opacity-7">
<img src="img/demos/barber/bar.png" class="w-auto appear-animation" data-appear-animation="fadeInLeftShorter" data-appear-animation-delay="1000" data-plugin-options="{'minWindowWidth': 0}" alt="" />
</span>
</h2>
<h1 class="text-color-light font-weight-extra-bold text-15 line-height-2 mb-3 appear-animation" data-appear-animation="blurIn" data-appear-animation-delay="1100" data-plugin-options="{'minWindowWidth': 0}">BARBER SHOP</h1>
<p class="position-relative bg-primary text-color-light line-height-5 font-weight-light text-3 ls-0 py-2 px-4 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="1500" data-plugin-options="{'minWindowWidth': 0}">
<span class="position-absolute right-100pct top-50pct transform3dy-n50">
<span class="d-block custom-slider-dot bg-primary mr-3 appear-animation" data-appear-animation="fadeInLeftShorter" data-appear-animation-delay="1800" data-plugin-options="{'minWindowWidth': 0}"></span>
</span>
<span class="text-color-light custom-primary-font">LOS ANGELES / CA</span>
<span class="vertical-divider mx-3 border-color-light opacity-3 my-1"></span>
<span class="text-color-light custom-primary-font">EST 1999</span>
<span class="position-absolute left-100pct top-50pct transform3dy-n50">
<span class="d-block custom-slider-dot bg-primary ml-3 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="1800" data-plugin-options="{'minWindowWidth': 0}"></span>
</span>
</p>
</div>
</div>
</div>
<div class="position-absolute bottom-0 left-50pct transform3dx-n50">
<a href="#aboutus" data-hash data-hash-offset="68" class="d-block text-decoration-none text-color-light appear-animation" data-appear-animation="fadeIn" data-appear-animation-delay="3000" data-plugin-options="{'minWindowWidth': 0, 'forceAnimation': true, 'accY': 200}">
<i class="icons icon-arrow-down p-events-none"></i>
</a>
</div>
</div>
</section>
</div>
<div id="aboutus" class="container py-5 my-5">
<div class="row my-sm-5">
<div class="col-lg-6 d-flex align-items-center justify-content-center mb-5 mb-lg-0 pb-sm-5 pb-lg-0 mt-sm-5 mt-lg-0">
<div class="custom-images-position-1 position-relative d-flex align-items-center justify-content-center custom-mobile-scale-1 mb-sm-5 mb-lg-0">
<svg height="100%" width="100%" class="svg-primary opacity-2 position-absolute overflow-visible top-0 left-0">
<circle cx="50%" cy="50%" r="80%" stroke="#CCC" stroke-width="7" fill="#CCC" class="appear-animation" data-appear-animation="lineProgressAndFill" data-appear-animation-duration="5.5s" />
</svg>
<div class="overflow-hidden position-relative top-0 left-0">
<img src="img/demos/barber/others/others-1.jpg" class="img-fluid appear-animation" data-appear-animation="maskRight" data-appear-animation-delay="1100" data-appear-animation-duration="1.5s" alt="" />
</div>
<div class="overflow-hidden position-absolute top-0 left-0">
<img src="img/demos/barber/others/others-2.jpg" class="img-fluid appear-animation" data-appear-animation="maskUp" data-appear-animation-delay="500" data-appear-animation-duration="1.5s" alt="" />
</div>
<div class="overflow-hidden position-absolute top-0 left-0">
<img src="img/demos/barber/others/others-3.jpg" class="img-fluid appear-animation" data-appear-animation="maskLeft" data-appear-animation-delay="800" data-appear-animation-duration="1.5s" alt="" />
</div>
</div>
</div>
<div class="col-lg-6">
<div class="overflow-hidden mb-1">
<h2 class="text-color-primary font-weight-bold text-7 custom-side-dots custom-side-dots-rm-right negative-ls-05 mb-0 appear-animation" data-appear-animation="maskUp" data-appear-animation-delay="500">ABOUT US</h2>
</div>
<p class="font-weight-semibold text-3 mb-4 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="700">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. Sed in nunc nec ligula consectetur mollis in vel justo.<p>
<p class="font-weight-semibold text-2 pr-5 mb-5 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="900">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. Sed in nunc nec ligula consectetur mollis in vel justo.<p>
<blockquote class="custom-blockquote-style-1 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="1100">
<p class="pr-5 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="1250">Lorem ipsum dolor sit amet, consetetur adipiscing elit massa.</p>
<footer><img src="img/demos/barber/author-signature.png" class="img-fluid appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="1400" alt="John Doe Signature" /></footer>
</blockquote>
</div>
</div>
</div>
<section class="section section-parallax section-height-4 overlay overlay-show overlay-op-7 border-0 m-0 appear-animation" data-appear-animation="fadeIn" data-plugin-parallax data-plugin-options="{'speed': 1.5, 'parallaxHeight': '129%'}" data-image-src="img/demos/barber/backgrounds/background-1.jpg">
<div class="container mb-4">
<div class="row justify-content-center">
<div class="col col-lg-9">
<div class="testimonial testimonial-style-2 custom-testimonial-style-1 mb-0">
<div class="custom-testimonial-quote text-center appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="200">
<span class="text-color-primary">“</span>
</div>
<blockquote>
<p class="font-weight-semibold text-color-light text-7 line-height-8 mb-0 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="400">“ Lorem ipsum dolor sit amet, consetetur adipiscing elit. Phasellus blandit massa. ”</p>
</blockquote>
<div class="testimonial-author appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="600">
<p><strong class="font-weight-light text-color-light text-3 opacity-7">- Josh Doe -</strong></p>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="ourservices" class="container py-5 my-5">
<div class="row mt-4 mb-5">
<div class="col text-center text-md-left">
<div class="overflow-hidden mb-1">
<h2 class="text-color-primary font-weight-bold text-7 negative-ls-05 custom-side-dots custom-side-dots-rm-right mb-0 appear-animation" data-appear-animation="maskUp">OUR SERVICES</h2>
</div>
<div class="overflow-hidden mb-3">
<p class="font-weight-semibold text-3 mb-0 appear-animation" data-appear-animation="maskUp" data-appear-animation-delay="200">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
</div>
</div>
<div class="row justify-content-center mb-4">
<div class="col-md-4 text-center mb-md-5">
<img src="img/demos/barber/icons/scissors.png" class="img-fluid mb-3" alt="" />
<h2 class="font-weight-semibold text-5 line-height-3 mb-3">Basic Haircut</h2>
<p class="px-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
<div class="col-md-4 text-center custom-side-dots custom-side-dots-big custom-side-dots-at-top custom-side-dots-rm-sm mb-md-5">
<img src="img/demos/barber/icons/blade.png" class="img-fluid mb-3" alt="" />
<h2 class="font-weight-semibold text-5 line-height-3 mb-3">Classic Shave</h2>
<p class="px-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
<div class="col-md-4 text-center mb-md-5">
<img src="img/demos/barber/icons/hair-dryer.png" class="img-fluid mb-3" alt="" />
<h2 class="font-weight-semibold text-5 line-height-3 mb-3">Hair Wash</h2>
<p class="px-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
<div class="col-md-4 text-center">
<img src="img/demos/barber/icons/bottle.png" class="img-fluid mb-3" alt="" />
<h2 class="font-weight-semibold text-5 line-height-3 mb-3">Hair Repair</h2>
<p class="px-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
<div class="col-md-4 text-center custom-side-dots custom-side-dots-big custom-side-dots-rm-right custom-side-dots-at-top custom-side-dots-rm-sm">
<img src="img/demos/barber/icons/beard.png" class="img-fluid mb-3" alt="" />
<h2 class="font-weight-semibold text-5 line-height-3 mb-3">Beard Shave</h2>
<p class="px-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
</div>
</div>
<section class="section section-parallax section-height-5 overlay overlay-show overlay-op-7 border-0 m-0 appear-animation" data-appear-animation="fadeIn" data-plugin-parallax data-plugin-options="{'speed': 1.5, 'parallaxHeight': '138%'}" data-image-src="img/demos/barber/backgrounds/background-2.jpg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-9 text-center">
<h2 class="text-color-light font-weight-bold custom-tertiary-font ls-0 mb-4 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="200">Looking good, lorem ipsum dolor sit amet, consetetur adipiscing elit. Phasellus blandit massa.</h2>
<p class="text-color-light opacity-7 text-3 px-5 mx-5 mb-0 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="400">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur imperdiet hendrerit volutpat. </p>
</div>
</div>
</div>
</section>
<section id="hours" class="section section-height-4 bg-light position-relative border-0 m-0">
<div class="container">
<div class="row mb-5">
<div class="col">
<div class="overflow-hidden mb-1">
<h2 class="text-color-primary font-weight-bold text-7 negative-ls-05 custom-side-dots custom-side-dots-rm-right mb-0 appear-animation" data-appear-animation="maskUp">WORKING HOURS</h2>
</div>
<div class="overflow-hidden mb-3">
<p class="font-weight-semibold text-3 mb-0 appear-animation" data-appear-animation="maskUp" data-appear-animation-delay="200">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
</div>
</div>
<div class="row mb-5 pb-4">
<div class="col">
<div class="custom-working-hours appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="400">
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">MON</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">TUE</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">WED</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">THU</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">FRI</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">SAT</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">10:00 AM</span> <span class="opacity-6">TO</span> <span class="d-block text-color-dark">8:00 PM</span></p>
</div>
<div class="custom-working-hours-item">
<h3 class="text-color-dark font-weight-bold text-6 mb-4">SUN</h3>
<p class="font-weight-normal mb-0"><span class="d-block text-color-dark">CLOSED</span></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card bg-dark border-0 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="600">
<div class="card-body d-flex flex-column flex-lg-row align-items-center justify-content-center py-5 my-3">
<span class="custom-tertiary-font text-color-light font-weight-bold line-height-1 text-7 mr-lg-5 mb-3 mb-lg-0 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="800">RESERVATION? CALL US</span>
<a href="tel:+0123456789" class="custom-primary-font text-decoration-none text-color-light font-weight-bold text-12 line-height-1 mb-1 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="1000">123-456-7890</a>
</div>
</div>
</div>
</div>
</div>
<div class="custom-circle-pos-2 position-absolute z-index-1 bottom-0 right-0 appear-animation" data-appear-animation="fadeInLeftShorter" data-plugin-options="{'accY': -600}">
<svg height="456" width="456" class="svg-primary opacity-1 overflow-visible">
<circle cx="228" cy="228" r="228" stroke="#CCC" stroke-width="12" fill="#CCC" />
</svg>
</div>
</section>
<section class="section section-parallax section-height-4 overlay overlay-show overlay-op-7 border-0 m-0 appear-animation" data-appear-animation="fadeIn" data-plugin-parallax data-plugin-options="{'speed': 1.5, 'parallaxHeight': '129%'}" data-image-src="img/demos/barber/backgrounds/background-3.jpg">
<div class="container mb-4">
<div class="row justify-content-center">
<div class="col col-lg-9">
<div class="testimonial testimonial-style-2 custom-testimonial-style-1 mb-0">
<div class="custom-testimonial-quote text-center appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="200">
<span class="text-color-primary">“</span>
</div>
<blockquote>
<p class="font-weight-semibold text-color-light text-7 line-height-8 mb-0 appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="400">“ Lorem ipsum dolor sit amet, consetetur adipiscing elit. Phasellus blandit massa. ”</p>
</blockquote>
<div class="testimonial-author appear-animation" data-appear-animation="fadeInUpShorter" data-appear-animation-delay="600">
<p><strong class="font-weight-light text-color-light text-3 opacity-7">- Josh Doe -</strong></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="prices" class="section section-height-4 bg-light border-0 position-relative m-0">
<div class="custom-circle-pos-1 position-absolute z-index-1 top-0 left-0 appear-animation" data-appear-animation="fadeInRightShorter" data-plugin-options="{'accY': -500}">
<svg height="362" width="362" class="svg-primary opacity-1">
<circle cx="0" cy="181" r="181" stroke="#CCC" stroke-width="12" fill="#CCC" />
</svg>
</div>
<div class="container">
<div class="row pb-2 mb-4">
<div class="col">
<div class="overflow-hidden mb-1">
<h2 class="text-color-primary font-weight-bold text-7 negative-ls-05 custom-side-dots custom-side-dots-rm-right mb-0 appear-animation" data-appear-animation="maskUp">OUR PRICES</h2>
</div>
<div class="overflow-hidden mb-3">
<p class="font-weight-semibold text-3 mb-0 appear-animation" data-appear-animation="maskUp" data-appear-animation-delay="200">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="400">
<h3 class="text-color-light font-weight-semibold bg-dark text-4 d-inline-block custom-padding-1">HAIRCUT</h3>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Haircut</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 20</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Clipper Cut</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 10</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Skin Fade</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 15</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Hot Towel Head Shave</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 25</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
<div class="col-md-6 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="600">
<h3 class="text-color-light font-weight-semibold bg-dark text-4 d-inline-block custom-padding-1">SHAVE</h3>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Hot Towel Face Shave</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 30</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Beard Trim</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 35</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Beard Styling</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 12</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="custom-menu-item">
<div class="custom-menu-item-details">
<div class="custom-menu-item-title"><h3 class="custom-secondary-font text-transform-none font-weight-semibold text-4 mb-0">Line Up</h3></div>
<div class="custom-menu-item-line mx-3 mb-2 opacity-4"></div>
<div class="custom-menu-item-price"><strong class="custom-tertiary-font text-color-dark"><span class="custom-tertiary-font">$</span> 18</strong></div>
</div>
<div class="custom-menu-item-desc">
<p class="text-2 line-height-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<hr>
<div class="container">
<div class="row text-center py-5 my-3">
<div class="owl-carousel owl-theme carousel-center-active-item mb-0" data-plugin-options="{'responsive': {'0': {'items': 1}, '476': {'items': 1}, '768': {'items': 5}, '992': {'items': 7}, '1200': {'items': 7}}, 'autoplay': true, 'autoplayTimeout': 3000, 'dots': false}">
<div>
<img class="img-fluid" src="img/logos/logo-1.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-2.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-3.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-4.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-5.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-6.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-4.png" alt="">
</div>
<div>
<img class="img-fluid" src="img/logos/logo-2.png" alt="">
</div>
</div>
</div>
</div>
<div class="container-fluid px-0">
<div class="row">
<div class="col">
<div class="custom-instagram-feed bg-dark">
<div class="custom-instagram-feed-title">
<h2 class="text-color-light font-weight-bold line-height-5 text-4 mb-2">FOLLOW US ON INSTAGRAM</h2>
<a href="#" class="font-weight-semibold text-3">@oklerportobarber</a>
</div>
<div class="custom-intagram-feed-content">
<div class="custom-instagram-feed-carousel owl-carousel owl-instagram manual" data-items-number="12"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer" class="border-0 bg-dark mt-0">
<div class="container-fluid px-0">
<div class="row">
<div class="col-lg-4 px-0">
<div id="googlemaps" class="google-map h-100 m-0" style="min-height: 450px;"></div>
</div>
<div class="col-m-6 col-lg-4 px-0">
<div class="card bg-secondary border-0 h-100">
<div class="card-body text-center p-5 my-3">
<img src="img/demos/barber/bar-sm.png" class="img-fluid position-relative bottom-2 d-none d-xl-inline-block" alt="" />
<span class="text-color-light font-weight-semibold text-4 mx-2">PORTO'S AMAZING</span>
<img src="img/demos/barber/bar-sm.png" class="img-fluid position-relative bottom-2 d-none d-xl-inline-block" alt="" />
<h2 class="font-weight-semibold text-color-light line-height-1 custom-fs-2 ls-0 mb-3">BARBER SHOP</h2>
<div class="bg-primary d-inline-flex custom-side-dots custom-side-dots-outside py-2 px-4">
<span class="text-color-light">LOS ANGELES / CA</span>
<span class="vertical-divider mx-3 border-color-light opacity-3 my-1"></span>
<span class="text-color-light">EST 1999</span>
</div>
<hr class="bg-primary mt-5 mb-4">
<ul class="list list-unstyled text-color-light font-weight-semibold custom-fs-1 py-2 m-0">
<li>123, Porto Blvd</li>
<li>Los Angeles, CA</li>
<li class="mb-0"><a href="mailto:[email protected]" class="text-color-light">[email protected]</a></li>
</ul>
<hr class="bg-primary mt-4 mb-4">
<h3 class="text-color-dark font-weight-bold custom-tertiary-font text-5 mb-3">RESERVATION? CALL US</h3>
<a href="tel:+0123456789" class="text-color-light custom-primary-font font-weight-bold text-12">123-456-7890</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 d-flex align-items-center">
<div class="w-100 p-5 mx-3 my-5">
<h3 class="text-color-primary font-weight-bold negative-ls-05 custom-side-dots custom-side-dots-rm-right text-8 mb-3">CONTACT US</h3>
<p class="font-weight-semibold text-3 pb-3 mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
<form class="contact-form form-style-4 form-errors-light custom-form-style-1" action="php/contact-form.php" method="POST">
<input type="hidden" value="Contact Form" name="subject" id="subject">
<div class="form-group col-lg-12 ml-auto my-0">
<div class="contact-form-success alert alert-success d-none">
Message has been sent to us.
</div>
<div class="contact-form-error alert alert-danger d-none">
Error sending your message.
<span class="mail-error-message text-1 d-block"></span>
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-6">
<input type="text" value="" data-msg-required="Please enter your name." maxlength="100" class="form-control py-2" placeholder="Name" name="name" id="name" required>
</div>
<div class="form-group col-lg-6">
<input type="text" value="" data-msg-required="Please enter your phone number." maxlength="100" class="form-control py-2" placeholder="Phone" name="phone" id="phone" required>
</div>
</div>
<div class="form-row">
<div class="form-group col">
<input type="email" value="" data-msg-required="Please enter your email address." data-msg-email="Please enter a valid email address." maxlength="100" class="form-control py-2" placeholder="E-mail" name="email" id="email" required>
</div>
</div>
<div class="form-row">
<div class="form-group col">
<textarea maxlength="5000" data-msg-required="Please enter your message." rows="4" class="form-control" placeholder="Message" name="message" id="message" required></textarea>
</div>
</div>
<input type="submit" value="SEND" class="custom-btn-style-1 btn btn-dark font-weight-bold text-uppercase btn-px-5 py-3" data-loading-text="Loading...">
</form>
</div>
</div>
</div>
</div>
<div class="footer-copyright bg-dark py-5">
<div class="container py-2">
<div class="row py-4">
<div class="col-12 text-center">
<ul class="social-icons social-icons-clean social-icons-icon-light mb-2">
<li class="social-icons-facebook"><a href="http://www.facebook.com/" target="_blank" title="Facebook"><i class="fab fa-facebook-f"></i></a></li>
<li class="social-icons-twitter mx-3"><a href="http://www.twitter.com/" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a></li>
<li class="social-icons-linkedin"><a href="http://www.linkedin.com/" target="_blank" title="Linkedin"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
<div class="col-12 text-center">
<p class="text-color-light font-weight-light opacity-4 mb-0">Copyrights © 2021 All Rights Reserved by Okler</p>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- Vendor --> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/jquery.appear/jquery.appear.min.js"></script> <script src="vendor/jquery.easing/jquery.easing.min.js"></script> <script src="vendor/jquery.cookie/jquery.cookie.min.js"></script> <script src="vendor/popper/umd/popper.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.min.js"></script> <script src="vendor/jquery.validation/jquery.validate.min.js"></script> <script src="vendor/jquery.easy-pie-chart/jquery.easypiechart.min.js"></script> <script src="vendor/jquery.gmap/jquery.gmap.min.js"></script> <script src="vendor/lazysizes/lazysizes.min.js"></script> <script src="vendor/isotope/jquery.isotope.min.js"></script> <script src="vendor/owl.carousel/owl.carousel.min.js"></script> <script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script> <script src="vendor/vide/jquery.vide.min.js"></script> <script src="vendor/vivus/vivus.min.js"></script> <script src="vendor/jquery.instagramfeed/jquery.instagramFeed.min.js"></script>
<!-- Theme Base, Components and Settings --> <script src="js/theme.js"></script>
<!-- Current Page Vendor and Views -->
<!-- Current Page Vendor and Views -->
<script src="js/views/view.contact.js"></script>
<!-- Demo -->
<script src="js/demos/demo-barber.js"></script>
<!-- Theme Custom --> <script src="js/custom.js"></script>
<!-- Theme Initialization Files -->
<script src="js/theme.init.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
<script>
/*
Map Settings
Find the Latitude and Longitude of your address:
- https://www.latlong.net/
- http://www.findlatitudeandlongitude.com/find-address-from-latitude-and-longitude/
*/
function initializeGoogleMaps() {
// Map Markers
var mapMarkers = [{
address: "New York, NY 10017",
html: "<strong>New York Office</strong><br>New York, NY 10017",
icon: {
image: "img/pin-light.png",
iconsize: [26, 46],
iconanchor: [12, 46]
},
popup: false
}];
// Map Initial Location
var initLatitude = 40.75198;
var initLongitude = -73.96978;
// Map Extended Settings
var mapSettings = {
controls: {
draggable: (($.browser.mobile) ? false : true),
panControl: false,
zoomControl: false,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false
},
scrollwheel: false,
markers: mapMarkers,
latitude: initLatitude,
longitude: initLongitude,
zoom: 12
};
var map = $('#googlemaps').gMap(mapSettings),
mapRef = $('#googlemaps').data('gMap.reference');
// Map text-center At
var mapCenterAt = function(options, e) {
e.preventDefault();
$('#googlemaps').gMap("centerAt", options);
}
// Styles from https://snazzymaps.com/
var styles = [{"featureType":"all","elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#000000"},{"lightness":40}]},{"featureType":"all","elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#000000"},{"lightness":16}]},{"featureType":"all","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#000000"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#000000"},{"lightness":17},{"weight":1.2}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":20}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":21}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#000000"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#000000"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":16}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":19}]},{"featureType":"water","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":17}]}];
var styledMap = new google.maps.StyledMapType(styles, {
name: 'Styled Map'
});
mapRef.mapTypes.set('map_style', styledMap);
mapRef.setMapTypeId('map_style');
}
// Initialize Google Maps when element enter on browser view
theme.fn.intObs( '.google-map', 'initializeGoogleMaps()', {} );
</script>
</body>
</html>