-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepk.html
More file actions
1011 lines (982 loc) · 58.3 KB
/
Copy pathepk.html
File metadata and controls
1011 lines (982 loc) · 58.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<!--
Hi, you're looking at a web page built with love by:
Ricardo
/$$$$$$ /$$ /$$
/$$__ $$ |__/ | $$
| $$ \ $$ /$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$
| $$ | $$| $$ | $$| $$| $$__ $$|_ $$_/ |____ $$ /$$_____/
| $$ | $$| $$ | $$| $$| $$ \ $$ | $$ /$$$$$$$| $$$$$$
| $$/$$ $$| $$ | $$| $$| $$ | $$ | $$ /$$ /$$__ $$ \____ $$
| $$$$$$/| $$$$$$/| $$| $$ | $$ | $$$$/| $$$$$$$ /$$$$$$$/
\____ $$$ \______/ |__/|__/ |__/ \___/ \_______/|_______/
\__/
http://www.ricardoquintas.com
June/2023
-->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R49G5Y633V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R49G5Y633V');
</script>
<meta charset="utf-8" />
<!-- Title block allowing child pages to override -->
<title>The Invisible Tuba</title>
<link rel="shortcut icon" type="image/ico" href="favicon.png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="
The Invisible Tuba is a Lisbon-based Dixieland band with a mission to entertain, uplift, and connect with audiences.
Expect memorable moments, interactive theatrical stunts, and a wide range of lively genres." />
<meta name="keywords" content="trad jazz,swing,dixieland,new orleans,jazz,blues,clarinet,tuba,the invisible tuba,captain farms,mattia corda,trumpet,washboard,trombone,banjo,busking,ragtime,music band,lisbon,portugal" />
<meta name="author" content="Ricardo Quintas" />
<!-- <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> -->
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Style block allowing child pages to inject their own styles -->
<link href="assets/css/revolution5.min.css" rel="stylesheet" type="text/css" media="all" />
<!-- Styles -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all" />
<!-- <link href="assets/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all" /> -->
<link rel="stylesheet" href="assets/css/grt-youtube-popup.css">
<link href="assets/css/main.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="assets/css/cookie-banner.css" rel="stylesheet" type="text/css" media="all" />
<link href="assets/css/zrq.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 9]>
<link href="assets/css/shave-ie9-styles.min.css" rel="stylesheet" type="text/css" media="all"/>
<![endif]-->
<script>
// this is just a dummy password logic ;o)
// if (document.location.host !== "127.0.0.1:5500") {
// var pwd = prompt("Password:", "");
// if (!pwd || pwd.toLowerCase() !== "tuba") {
// alert("Access Denied");
// window.stop();
// }
// }
</script>
<script src="assets/scripts/jquery.min.js"></script>
<!-- Script block allowing child pages to inject their own scripts -->
<script src="assets/scripts/jquery.themepunch.tools.min.js"></script>
<script src="assets/scripts/jquery.themepunch.revolution.min.js"></script>
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS (Load Extensions only on Local File Systems ! The following part can be removed on Server for On Demand Loading) -->
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.carousel.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="assets/scripts/extensions/revolution.extension.video.min.js"></script>
<script src="https://kit.fontawesome.com/0c3372b073.js" crossorigin="anonymous"></script>
</head>
<body class="loading zrq-page-epk">
<!--
#################################
- Header Section -
#################################
-->
<div class="loader-wrapper">
<span class="loader"><span class="loader-inner"></span></span>
</div>
<header id="header" class="nav-shadow">
<!--company name-->
<a id="sv__logo" href="index.html" class="zrq-header">
<div class="sv__logo--img zrq-logo">
<!-- replace with white logo png version -->
<img class="img-responsive logo-white" src="/assets/img/logo_transp_v00.png" alt="The Invisible Tuba" />
<!-- replace with black logo png version -->
<img class="img-responsive logo-black" src="/assets/img/logo_transp_v00.png" alt="The Invisible Tuba" />
</div>
<!-- <h1>The Invisible Tuba</h1> -->
</a>
<!-- Dropdown Nav -->
<div class="cd-dropdown-wrapper open-to-left">
<!-- Menu -->
<a href="#" class="cd-dropdown-trigger">Menu</a>
<nav class="cd-dropdown">
<!-- Barbershop name -->
<h2>Menu</h2>
<a href="#0" class="cd-close">Close</a>
<!-- Nav content -->
<ul class="cd-dropdown-content">
<!-- Search input -->
<!-- <li>
<form class="cd-search">
<input type="search" placeholder="Search...">
</form>
</li> -->
<!-- Book now btn for mobile -->
<li class="mobile-modal book-now-m">
<a data-toggle="modal" data-target="#bookNowModal">Contact Us</a>
</li>
<!-- ZRQ <li class="has-children">
<a href="service-shave.html">Our Services</a>
<ul class="cd-dropdown-icons is-hidden">
<li class="go-back"><a href="#0">Menu</a></li>
<li class="see-all"><a href="about.html">Why Choose Us?</a></li>
<li>
<a class="cd-dropdown-item item-1" href="service-shave.html">
<div class="icon-wrapper sv-icon">
<i class="icon-sv-razor"></i>
</div>
<h3>The Shave</h3>
<p>Simple way to hold data</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-2" href="service-haircuts.html">
<div class="icon-wrapper sv-icon">
<i class="icon-sv-scissors"></i>
</div>
<h3>Haircuts</h3>
<p>1000+ Free Icons included</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-3" href="service-beards.html">
<div class="icon-wrapper sv-icon">
<i class="icon-sv-mustache"></i>
</div>
<h3>Beards & Mustaches</h3>
<p>Add your own location easily</p>
</a>
</li>
</ul>
</li>
<li class="has-children">
<a href="full-gallery.html">Gallery</a>
<ul class="cd-dropdown-gallery is-hidden">
<li class="go-back"><a href="#0">Menu</a></li>
<li class="see-all"><a href="features.html">Browse all features</a></li>
<li class="plus-effect">
<a class="cd-dropdown-item" href="full-gallery.html">
<div class="hover-container">
<div class="plus-hover hidden-xs hidden-sm">
<i class="fa fa-plus-circle"></i>
</div>
<img src="http://placehold.co/300x227" alt="Product Image">
</div>
<h3>Masonry Gallery</h3>
</a>
</li>
<li class="plus-effect">
<a class="cd-dropdown-item" href="gallery-3-grid.html">
<div class="hover-container">
<div class="plus-hover hidden-xs hidden-sm">
<i class="fa fa-plus-circle"></i>
</div>
<img src="http://placehold.co/300x227" alt="Product Image">
</div>
<h3>3 Column grid</h3>
</a>
</li>
<li class="plus-effect">
<a class="cd-dropdown-item" href="gallery-4-grid.html">
<div class="hover-container">
<div class="plus-hover hidden-xs hidden-sm">
<i class="fa fa-plus-circle"></i>
</div>
<img src="http://placehold.co/300x227" alt="Product Image">
</div>
<h3>4 Column grid</h3>
</a>
</li>
<li class="plus-effect">
<a class="cd-dropdown-item" href="gallery-5-grid.html">
<div class="hover-container">
<div class="plus-hover hidden-xs hidden-sm">
<i class="fa fa-plus-circle"></i>
</div>
<img src="http://placehold.co/300x227" alt="Product Image">
</div>
<h3>5 Column grid</h3>
</a>
</li>
</ul>
</li>
<li class="has-children">
<a href="index.html">Prices & Options</a>
<ul class="cd-secondary-dropdown is-hidden">
<li class="go-back"><a href="#0">Menu</a></li>
<li class="see-all"><a href="prices.html">View All Prices</a></li>
<li class="has-children">
<a href="service-shave.html">Get a haircut</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Haircuts</a></li>
<li class="see-all">
</li>
<li class="has-children">
<a href="#0">Mens Cuts</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Go back</a></li>
<li><a href="prices.html#tab=haircuts">Classic Cut</a></li>
<li><a href="prices.html#tab=haircuts">Buzz Cut</a></li>
<li><a href="prices.html#tab=haircuts">Cut & Shave</a></li>
<li><a href="prices.html#tab=haircuts">Color</a></li>
<li><a href="prices.html#tab=haircuts">Shampoo</a></li>
</ul>
</li>
<li class="has-children">
<a href="#0">Kids Cuts</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Kids Cuts</a></li>
<li><a href="prices.html#tab=haircuts">Kids Cut</a></li>
<li><a href="prices.html#tab=haircuts">Full style</a></li>
<li><a href="prices.html#tab=haircuts">Shampoo</a></li>
</ul>
</li>
<li><a href="contact.html">Get a consultation</a></li>
<li><a href="team.html">Find a barber</a></li>
</ul>
</li>
<li class="has-children">
<a href="service-shave.html">The Shave</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Shave</a></li>
<li class="see-all">
</li>
<li><a href="prices.html#tab=shave">The Signature Shave</a></li>
<li><a href="prices.html#tab=shave">The Royal Shave</a></li>
<li><a href="prices.html#tab=shave">Traditional Shave</a></li>
<li><a href="prices.html#tab=shave">Razor edging</a></li>
<li><a href="prices.html#tab=shave">Head Shave</a></li>
</ul>
</li>
<li class="has-children">
<a href="service-shave.html">Mustaches</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Mustaches</a></li>
<li class="see-all">
</li>
<li><a href="prices.html#tab=beard-mustache">Mustache Trim</a></li>
<li><a href="prices.html#tab=beard-mustache">Mustache Wax</a></li>
<li><a href="prices.html#tab=beard-mustache">Style the Stash</a></li>
</ul>
</li>
<li class="has-children">
<a href="service-shave.html">Beards</a>
<ul class="is-hidden">
<li class="go-back"><a href="#0">Beards</a></li>
<li class="see-all">
</li>
<li><a href="prices.html#tab=beard-mustache">Beard Trim</a></li>
<li><a href="prices.html#tab=beard-mustache">Beard Waxing</a></li>
<li><a href="prices.html#tab=beard-mustache">Goatee Trim</a></li>
<li><a href="prices.html#tab=beard-mustache">Beard Sculpt</a></li>
<li><a href="prices.html#tab=beard-mustache">Beard Coloring</a></li>
</ul>
</li>
</ul>
</li>
<li class="has-children">
<a href="features.html">Features & options</a>
<ul class="cd-dropdown-icons is-hidden">
<li class="go-back"><a href="#0">Menu</a></li>
<li class="see-all"><a href="features.html">Browse All Features</a></li>
<li>
<a class="cd-dropdown-item item-1" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-diamond"></i>
</div>
<h3>Revolution Slider</h3>
<p>#1 Selling slider plugin</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-10" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-star-o"></i>
</div>
<h3>Hero / Parallax headers</h3>
<p>Strong page headers</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-8" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-code"></i>
</div>
<h3>Development</h3>
<p>Code crafted to perfection</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-7" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-columns"></i>
</div>
<h3>Stylish Layouts</h3>
<p>Sleek page layouts</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-9" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-toggle-off"></i>
</div>
<h3>Niche Theme</h3>
<p>Designed to perfection</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-4" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-picture-o"></i>
</div>
<h3>Beautiful Gallery</h3>
<p>Isotope Gallery looks amazing</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-5" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-television"></i>
</div>
<h3>Fully Responsive</h3>
<p>Looks good on every device</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-3" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-map-marker"></i>
</div>
<h3>Google Map Service</h3>
<p>Add your own location easily</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-2" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-flag-o"></i>
</div>
<h3>Font Awesome Icons</h3>
<p>500+ Free Icons included</p>
</a>
</li>
<li>
<a class="cd-dropdown-item item-6" href="features.html">
<div class="icon-wrapper">
<i class="fa fa-object-ungroup"></i>
</div>
<h3>Retina quality</h3>
<p>Looks amazing on all devices</p>
</a>
</li>
</ul>
</li> -->
<li class="single-item"><a href="index.html">Home</a></li>
<!-- <li class="single-item"><a href="theband.html">The Band</a></li> -->
<li class="single-item"><a href="pictures.html">Photos/Videos</a></li>
<li class="single-item"><a href="audio.html">Audio</a></li>
<!-- <li class="single-item"><a href="epk.html">Press Kit | EPK</a></li> -->
<li class="single-item"><a href="http://eepurl.com/ivF4Zc">Newsletter <i class="zrq-red fa fa-heart"></i></a></li>
<li class="single-item"><a href="contact.html">Contacts</a></li>
<li class="single-item"><a href="index_pt.html">Português</a></li>
</ul>
</nav>
<!-- end nav -->
</div>
<!-- end cd-wrapper -->
<!-- Book now button -->
<div class="nav__book hidden-xs">
<!-- ZRQ <div id="phone" class="quick-link white"><a href="#"><i class="fa fa-phone"></i></a></div> -->
<!-- ZRQ <div id="hours" class="quick-link white"><a href="#"><i class="fa fa-clock-o"></i></a></div> -->
<!-- <a href="index.html" class="book__nav white">PT</a> -->
<a href="#" class="book__nav" data-toggle="modal" data-target="#bookNowModal">Contact us</a>
</div>
</header>
<main class="sv__main--content">
<div id="feature-skr" class="section sv__container--fluid hero-container">
<div class="hero-background hero-parallax" data-top-top="background-position: 50% 0px;" data-top-bottom="background-position: 50% -100px;" data-anchor-target="#feature-skr" style="background-image: url(/assets/img/2560_1250_v00.png);">
<div class="hero-spacer"></div>
</div>
<div class="hero-wrapper">
<div class="hero-content header">
<h2 class="hero-title">Modern Design + User Experience</h2>
<h3>Packed with stunning features and great design</h3>
</div>
</div>
</div>
<div class="section container-fluid white-bg reverse-angle">
<div class="angle-top" style="color: #fff; border-right-color:#fff"></div>
<div class="inner-lg">
<div class="sv__container--md col3__module">
<div class="col3__container">
<div class="row wrapper">
<div class="headline-intro">
<h3>we are The Shave</h3>
<h4>The Shave has a striking balance of modern design and user experience focus. Easily edit, manipulate, and customize quickly.</h4>
</div>
<div class="">
<div class="col-sm-3">
<a href="/assets/img/650_650_v00.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v00.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v08.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v08.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v02.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v02.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v03.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v03.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v16.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v16.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v17.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v17.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v06.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v06.png" alt="featured barber products">
</a>
</div>
<div class="col-sm-3">
<a href="/assets/img/650_650_v10.png">
<img class="img-responsive space-sm" src="/assets/img/650_650_v10.png" alt="featured barber products">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section container-fluid no-padding black-bg">
<div class="inner-md">
<div class="row no-margin">
<div class="col-xs-12">
<div class="text-center white">
<h4>Our EPK is also available to download in PDF format.</h4>
<a href="/docs/epk_v1.0.pdf" class="btn book-now-btn btn-white">Download EPK</a>
</div>
</div>
</div>
</div>
</div>
<div class="section container-fluid no-padding grey-bg zrq-videos">
<div class="inner-lg">
<div class="sv__container--sm">
<div class="row no-margin">
<div class="sv-wrapper">
<div class="col-sm-12 col-md-6 mobile-space-sm">
<img class="img-responsive img-center active" src="http://placehold.it/457x558" alt="Mobile Phone">
</div>
<div class="col-sm-12 col-md-6 col-half margin-left-5 mobile-space-sm">
<div class="headline-sm">
<h2 class="text-left black">Stunning Design + Focus on Functionality</h2>
</div>
<div class="content black">
<p>The Shave theme is built with an eye on design and a focus on functionality, perfect for the shop owner who wants to make a statement.</p>
</div>
<div class="approach-list inner-sm">
<div class="approach-item">
<a href="#" class="youtube-link" youtubeid="hKEJP85aBqg">
<div class="approach-icon-wrapper">
<i class="fa fa-youtube-play"></i>
</div>
<div class="approach-content black">
<h6 class="title">Video 1</h6>
<p>Recorded live.</p>
</div>
</a>
</div>
<div class="approach-item">
<a href="#" class="youtube-link" youtubeid="hKEJP85aBqg">
<div class="approach-icon-wrapper">
<i class="fa fa-youtube-play"></i>
</div>
<div class="approach-content black">
<h6 class="title">Video 2</h6>
<p>Recorded live.</p>
</div>
</a>
</div>
<div class="approach-item">
<a href="#" class="youtube-link" youtubeid="hKEJP85aBqg">
<div class="approach-icon-wrapper">
<i class="fa fa-youtube-play"></i>
</div>
<div class="approach-content black">
<h6 class="title">Video 3</h6>
<p>Recorded live.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section container-fluid no-padding white-bg">
<div class="inner-lg">
<div class="sv__container--sm">
<div class="row no-margin">
<div class="sv-wrapper">
<div class="col-sm-12 col-md-6 mobile-space-sm">
<div class="headline-sm">
<h2 class="text-left">Classy & On Trend</h2>
</div>
<div class="content">
<p><span class="subtext">This theme was built for those who love style. It's an easy to use theme with many considerations:</span></p>
</div>
<div class="approach-list space-sm">
<ul>
<li><i class="fa fa-check"></i><span>Clean, spacious design based on modern web trends</span></li>
<li><i class="fa fa-check"></i><span>Slick gallery styles to keep the client browsing</span></li>
<li><i class="fa fa-check"></i><span>Revolution Slider plugin included with the theme</span></li>
</ul>
</div>
</div>
<div class="col-sm-12 col-md-6 margin-left-5 col-half mobile-space-tb">
<img class="img-responsive img-center active" src="http://placehold.it/575x626" alt="Mobile Phone">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="design-skr" class="section sv__container--fluid no-padding">
<div class="parallax__background" data-center="background-position: 50% 0px;" data-bottom-top="background-position: 50% 300px;" data-top-bottom="background-position: 50% -250px;" style="background-image: url(http://placehold.it/2560x1199);">
<div class="inner-lg">
<div class="buy__container sv__container--md">
<div class="buy__content">
<h2>Download PDF</h2>
<p>Our EPK is also available to download in PDF format.</p>
<a href="#" class="btn book-now-btn btn-white">Go Get it</a>
</div>
</div>
</div>
</div>
</div>
<div class="section container-fluid sv-col-block-wrapper grey-bg">
<div class="headline-intro text-center space-lg">
<h3>we are The Shave</h3>
<h4>A full service barbershop theme packed with features and an eye on design.</h4>
</div>
<div class="inner-lg">
<div class="sv__container--md">
<div class="row clearfix no-margin">
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-bolt icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Modern Web Design</h6>
<p>Clean, spacious design based on modern web trends. Lots of functionality to keep users clicking.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-line-chart icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Powerful Features</h6>
<p>Packed with easy to use, stylish options and clean code.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-star icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Scaleable</h6>
<p>Fully responsive HTML theme built with modular components to be swapped and switched for endless possibilities.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-rocket icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Parallax Backgrounds</h6>
<p>Extra details to get noticed and keeps users browsing. Easy to add to new pages or existing ones.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-envelope-o icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Top Support</h6>
<p>Free support, bug fixes, updates, and new content additions with every purchase.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 sv-col-block one-third">
<div class="sv-block-content">
<i class="fa fa-code icon-headline gold"></i>
<div class="sv-block-with-icon">
<h6>Clean Code</h6>
<p>Highly detailed and organized files, coded to perfection.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section container-fluid white-bg no-padding">
<div class="space-lg">
<div class="sv__container--md col3__module">
<div class="col-sm-12 no-padding">
<div class="intro">
<h2>A Cut, Trim + Shave Above the rest</h2>
<p class="small-headline">The Shave theme is a one stop shop for stunning design, layout, and user experience.</p>
</div>
</div>
<div class="col-sm-12">
<img class="img-responsive space-lg" src="http://placehold.it/1097x695" alt="featured barber products">
</div>
</div>
</div>
</div>
<div class="section container-fluid no-padding gold-bg">
<div class="inner-md">
<div class="row no-margin">
<div class="buy__container">
<div class="col-xs-12 buy-theme-sm">
<h4 class="text-center white">Become a Master of the Blade. Own the Shave theme today!</h4>
<a href="#" class="btn book-now-btn btn-white">Go Get It</a>
</div>
</div>
</div>
</div>
</div>
</main>
<!--
#################################
- Footer -
#################################
-->
<div id="zrq-footer"></div>
<footer class="loading zrq-footer">
<div class="sv__container--md">
<!-- Footer Wrapper -->
<div class="footer__wrapper">
<div class="row footer__row">
<!-- Footer Logo -->
<div class="footer__logo no-padding">
<div class="logo__container">
<a href="index.html">
<div class="footer__logo--img zrq-logo">
<img class="img-responsive logo-white" src="/assets/img/logo_transp_v00.png" alt="The Invisible Tuba" />
</div>
</a>
<ul class="zrq-cookies" style="text-align: left;">
<li>
<a class="book__nav" href="/docs/TheInvisibleTuba_EN.pdf">Press Kit EPK - PDF</a>
</li>
<li>
<!-- <a class="book__nav" href="https://www.facebook.com/theinvisibletuba/">Pricing</a> -->
</li>
<!-- <li>
<a style="color: white;" href="https://www.facebook.com/theinvisibletuba/">zrq</a>
</li> -->
<!-- <li>
<a style="color: white;" href="https://www.facebook.com/theinvisibletuba/">zrq</a>
</li> -->
</ul>
<!-- <h3>The Invisible Tuba</h3>
<h4>Band</h4> -->
</div>
</div>
<!-- Footer Description -->
<div class="footer__desc">
<div class="email__wrapper">
<div class="email__form form-group">
<form action="https://theinvisibletuba.us9.list-manage.com/subscribe/post?u=faa7d3e5930173b885252ce6b&id=a353b42d02&f_id=009e17e1f0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
<h2>Newsletter</h2>
<input id="mce-EMAIL" type="email" class="form-control email__form--input" id="footer-email" name="EMAIL" required placeholder="Your Email Address">
<div class="email__offers">
<p>Stay updated. Get our Newsletter.</p>
</div>
<button name="subscribe" id="mc-embedded-subscribe" type="submit" class="btn book-now-btn form-btn">Subscribe</button>
</form>
</div>
</div>
<div class="row footer__contact">
<div class="col-xs-12 col-sm-6 footer__address no-padding">
<p>We're from Lisbon</p>
<p>Portugal</p>
</div>
<div class="col-xs-12 col-sm-6 contact no-padding">
<a class="email" href="mailto:info@theinvisibletuba.com">info@theinvisibletuba.com</a>
<a class="phone" href="tel:(+351)920 308 182">(+351)920 308 182 | Simone</a>
</div>
</div>
<div class="row social-footer">
<div class="col-xs-12 col-sm-6 col-md-8">
<ul>
<li><a href="https://www.facebook.com/theinvisibletuba/"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="https://www.instagram.com/theinvisibletuba/"><i class="fa fa-instagram fa-2x"></i></a></li>
<li><a href="https://www.youtube.com/@theinvisibletuba4630"><i class="fa fa-youtube-play fa-2x"></i></a></li>
<li><a href="https://www.tiktok.com/@theinvisibletuba"><i class="fa-brands fa-tiktok fa-2x"></i></a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="copyright">
<p>© The Invisible Tuba
<script>document.write( new Date().getFullYear() );</script>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="zrq-cookies">
<p><a class="book__nav" href="https://www.cookiesandyou.com">Cookies</a> and
<a class="book__nav" href="/privacy.html">Privacy Policy</a>
</p>
</div>
</footer>
<!--
#################################
- Modal Popups -
#################################
-->
<!-- Contact-Us Modal -->
<div class="zrq-footer modal fade" id="bookNowModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="row">
<div class="col-xs-12 no-padding modal-info">
<button type="button" class="modal-close" aria-label="Close"><i class="fa fa-times"></i>
</button>
<div class="modal-bookNow" style="background-image: url(/assets/img/492_250_v00.png);">
<h3>Book today</h3>
<h5>And get ready to dance</h5>
</div>
</div>
<div class="col-xs-12 no-padding">
<div class="modal-form">
<ul class="book-list">
<li>
<a href="">
<div class="list-content">
<i class="fa fa-phone fa-2x"></i>
<span>Call us</span>
<p>(+351)920 308 182 <br> Simone</p>
<p class="zrq-left-margin">(+351)967 285 043 <br> Ricardo</p>
</div>
</a>
</li>
<!-- <li>
<a href="contact.html">
<div class="list-content">
<i class="fa fa-map-marker fa-2x"></i>
<span>Walk-ins welcome</span>
<p>2020 Wilabee way, Atlanta Ga 30030</p>
</div>
</a>
</li> -->
<li>
<a href="">
<div class="list-content">
<i class="fa fa-paper-plane fa-2x"></i>
<span>Say Hello</span>
<p>info@theinvisibletuba.com</p>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="zrq-footer sv-toast" data-toast="phone">
<div class="alert alert-success sv-phone" role="alert">
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button>
<h2>Still using a phone?</h2>
<p>Feel free to call us.</p>
<img class="img-responsive" src="http://placehold.co/200x238" alt="The Shave Phone Number" />
<a href="" class="tele">303-303-3030</a>
</div>
</div>
<div class="zrq-footer sv-toast" data-toast="hours">
<div class="alert alert-success sv-hours" role="alert">
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button>
<div class="toast-title">
<h2>The Shop hours</h2>
<h6>We're open</h6>
</div>
<div class="toast-hours">
<p><span>Mon - Fri :</span> 9:00 AM - 9:00 PM</p>
<p><span>Sat :</span> 9:00 AM - 2:00 PM</p>
</div>
</div>
</div>
<script src="assets/scripts/jquery.menu-aim.js"></script>
<script src="assets/scripts/modernizr.min.js"></script>
<script src="assets/scripts/bootstrap.min.js"></script>
<script src="assets/scripts/skrollr.min.js"></script>
<script src="assets/scripts/imagesloaded.min.js"></script>
<script src="assets/scripts/jquery-placeholder.min.js"></script>
<script src="assets/scripts/jquery.prefetch.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.5/ScrollMagic.min.js"></script>
<script src="assets/scripts/debug.addIndicators.min.js"></script>
<!-- Settings -->
<script src="assets/scripts/window-settings.min.js"></script>
<script src="assets/scripts/nav-settings.min.js"></script>
<script src="assets/scripts/main-settings.min.js"></script>
<script src="assets/scripts/grt-youtube-popup.js"></script>
<script src="assets/scripts/zrq.js"></script>
<script>
(function($) {
'use strict';
// Revolution Slider Settings
// ==========================================================================
var tpj = jQuery;
var sliderId = "#rev_slider_46_1";
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
sliderId = "#rev_slider_46_1_mobile";
}
var revapi46;
tpj(document).ready(function() {
if (tpj(sliderId).revolution == undefined) {
revslider_showDoubleJqueryError(sliderId);
} else {
revapi46 = tpj(sliderId).show().revolution({
sliderType: "standard",
jsFileLocation: "assets/scripts/",
sliderLayout: "fullscreen",
dottedOverlay: "none",
delay: 4500,
navigation: {
keyboardNavigation: "off",
keyboard_direction: "horizontal",
mouseScrollNavigation: "off",
onHoverStop:"false",
touch: {
touchenabled: "on",
swipe_threshold: 75,
swipe_min_touches: 1,
swipe_direction: "horizontal",
drag_block_vertical: false
},
arrows: {
style: "erinyen",
enable: true,
hide_onmobile: false,
hide_under: 600,
hide_onleave: false,
hide_delay: 200,
hide_delay_mobile: 1200,
// tmp: '<div class="tp-title-wrap"> <div class="tp-arr-imgholder"></div> <div class="tp-arr-img-over"> </div><span class="tp-arr-titleholder"></span> </div>',
left: {
h_align: "left",
v_align: "center",
h_offset: 30,
v_offset: 0
},
right: {
h_align: "right",
v_align: "center",
h_offset: 30,
v_offset: 0
}
},
thumbnails: {
style: "gyges",
enable: true,
width: 100,
height: 60,
min_width: 60,
wrapper_padding: 0,
wrapper_color: "transparent",
wrapper_opacity: "1",
// tmp: '<span class="tp-thumb-img-wrap"> <span class="tp-thumb-image"></span></span>',
visibleAmount: 0,
hide_onmobile: true,
hide_under: 800,
hide_onleave: false,
direction: "horizontal",
span: false,
position: "inner",
space: 0,
h_align: "center",
v_align: "bottom",
h_offset: 0,
v_offset: 20
}
},
responsiveLevels: [1300, 1186, 977, 778, 480],
gridwidth: [1400, 1186, 977, 778, 480],
gridheight: [960, 868, 768, 960, 720],
lazyType: "none",
parallax: {
type: "mouse",
origo: "slidercenter",
speed: 2000,
levels: [2, 3, 4, 5, 6, 7, 12, 16, 10, 50],
disable_onmobile: "on"
},
shadow: 0,
spinner: "off",
stopLoop: "off",
stopAfterLoops: 3,
shuffle: "off",
autoHeight: "off",
fullScreenAlignForce: "off",
fullScreenOffsetContainer: "",
fullScreenOffset: "0px",
disableProgressBar: "on",
hideThumbsOnMobile: "off",
hideSliderAtLimit: 0,
hideCaptionAtLimit: 0,
hideAllCaptionAtLilmit: 0,
debugMode: false,
fallbacks: {
simplifyAll: "off",
nextSlideOnWindowFocus: "off",
disableFocusListener: false,
}
});
}
}); /*ready*/
$(window).bind('resizeEnd', function() {
$(sliderId).revredraw();
});
$(window).on('resize', function() {
if (this.resizeTO) clearTimeout(this.resizeTO);
this.resizeTO = setTimeout(function() {
$(this).trigger('resizeEnd');
}, 500);
});
})(jQuery);
</script>
<!-- Cookie Banner -->
<div class="nk-cookie-banner alert alert-warning text-center mb-0" role="alert">
🍪 This website uses cookies to ensure you get the best experience on our website.