-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_old.html
975 lines (772 loc) · 51.9 KB
/
index_old.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#2E305E">
<link rel="shortcut icon" href="./favicon.ico" />
<title>CCE | Cultural Connoisseurs Experience</title>
<link rel="stylesheet" href="https://use.typekit.net/scc6wwx.css">
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap" rel="stylesheet">
<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">
<link rel="stylesheet" href="assets/vendors/liquid-icon/liquid-icon.min.css" />
<link rel="stylesheet" href="assets/vendors/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/theme-vendors.min.css" />
<link rel="stylesheet" href="assets/css/theme.min.css" />
<link rel="stylesheet" href="assets/css/themes/seo.css" />
<meta property="og:description" content="Embark on a journey through time with The Grand Monarch’s Tales, an exclusive collection of immersive audio tours that bring history to life. Each tour offers a unique blend of royal storytelling, cultural insights, and architectural wonders, designed to transport you to Lisbon’s golden age" />
<!-- Head Libs -->
<script async src="assets/vendors/modernizr.min.js"></script>
</head>
<body data-mobile-nav-trigger-alignment="right" data-mobile-nav-align="left" data-mobile-nav-style="modern" data-mobile-nav-shceme="gray" data-mobile-header-scheme="gray" data-mobile-nav-breakpoint="1199">
<div id="wrap">
<header class="main-header main-header-overlay">
<div class="mainbar-wrap">
<div class="megamenu-hover-bg"></div><!-- /.megamenu-hover-bg -->
<div class="container-fluid mainbar-container">
<div class="mainbar">
<div class="row mainbar-row align-items-lg-stretch px-4">
<div class="col-auto">
<div class="navbar-header">
<a class="navbar-brand" href="index.html" rel="home">
<span class="navbar-brand-inner">
<img class="logo-dark" style="width: 90%;" src="./logo.png" alt="CCE | Cultural Connoisseurs Experience">
<img class="logo-sticky" style="width: 90%;" src="./logo.png" alt="CCE | Cultural Connoisseurs Experience">
<img class="mobile-logo-default" style="width: 90%;" src="./logo.png" alt="CCE | Cultural Connoisseurs Experience">
<img class="logo-default" style="width: 50%;" src="./logo.png" alt="CCE | Cultural Connoisseurs Experience">
</span>
</a>
<!-- button menu <button type="button" class="navbar-toggle collapsed nav-trigger style-mobile" data-toggle="collapse" data-target="#main-header-collapse" aria-expanded="false" data-changeclassnames='{ "html": "mobile-nav-activated overflow-hidden" }'>
<span class="sr-only">Toggle navigation</span>
<span class="bars">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</span>
</button> -->
</div><!-- /.navbar-header -->
</div><!-- /.col -->
<div class="col">
<div class="collapse navbar-collapse" id="main-header-collapse">
<!--<ul id="primary-nav" class="main-nav nav align-items-lg-stretch justify-content-lg-start" data-submenu-options='{ "toggleType":"fade", "handler":"mouse-in-out" }' data-localscroll="true">
<li>
<a href="#wrap">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt">
Home
<span class="submenu-expander">
<i class="fa fa-angle-down"></i>
</span>
</span>
</span>
</a>
</li>
<li>
<a href="#about">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt">
About
<span class="submenu-expander">
<i class="fa fa-angle-down"></i>
</span>
</span>
</span>
</a>
</li>
<li>
<a href="#services">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt">
Services
<span class="submenu-expander">
<i class="fa fa-angle-down"></i>
</span>
</span>
</span>
</a>
</li>
<li>
<a href="#works">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt">
Works
<span class="submenu-expander">
<i class="fa fa-angle-down"></i>
</span>
</span>
</span>
</a>
</li>
<li>
<a href="#pricing">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt">
Pricing
<span class="submenu-expander">
<i class="fa fa-angle-down"></i>
</span>
</span>
</span>
</a>
</li>
</ul> /#primary-nav -->
</div><!-- /#main-header-collapse -->
</div><!-- /.col -->
<!--<div class="col text-right">
<div class="header-module">
<p>CALL US 24/7: <span style="color: var(--color-primary);">+0093 1468 09 03</span></p>
</div>/.header-module -->
<!-- <div class="header-module">
<a href="#" class="btn btn-default text-uppercase btn-sm circle btn-bordered border-thin px-2">
<span>
<span class="btn-txt">Purchase now</span>
</span>
</a>
</div> /.header-module -->
<!--</div> /.col -->
</div><!-- /.mainbar-row -->
</div><!-- /.mainbar -->
</div><!-- /.mainbar-container -->
</div><!-- /.mainbar-wrap -->
</header><!-- /.main-header -->
<main id="content" class="content">
<section class="vc_row bg-no-repeat fullheight d-flex align-items-center py-5" style="background-image: url(./assets/bg-75.svg); background-position: 170% 110%;">
<!-- Video for mobile only -->
<div class="video-container">
<!-- Mobile Video -->
<div class="mobile-video-container d-block d-md-none">
<video id="mobile-bg-video" autoplay loop muted playsinline class="mobile-bg-video" style="min-width: 650px; width: 100%;">
<source src="./assets/site_jose.mp4" type="video/mp4">
</video>
</div>
<!-- Desktop Video -->
<div class="desktop-video-container d-none d-md-block">
<video id="desktop-bg-video" autoplay loop muted playsinline class="desktop-bg-video" style="width: 100%;">
<source src="./assets/jose_desktop.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="lqd-particles-bg-wrap">
<div class="ld-particles-container">
<div class="ld-particles-inner" id="particles-1559739661542-e9d04c39-a9eb" data-particles="true" data-particles-options='{"particles":{"number":{"value":4}, "color":{"value":["#2D2F61", "#2D2F61", "#2C152D"]}, "shape":{"type":["circle"]}, "opacity":{"random":true, "anim":{"enable":true, "opacity_min":0.80000000000000004, "speed":1, "sync":true}}, "size":{"value":5, "random":true, "anim":{"enable":true, "size_min":52}}, "move":{"enable":true,"direction":"none", "speed":1, "random":true, "out_mode":"out"}}, "interactivity":[]}'></div><!-- /.ld-particles-inner -->
</div><!-- /.ld-particles-container -->
</div><!-- /.lqd-particles-bg-wrap -->
<div class="container" style="width: 90%;">
<div class="row d-flex flex-wrap align-items-center">
<div class="lqd-column col-lg-5 col-md-6">
<div class="ld-fancy-heading mask-text text-uppercase">
<h6 class=" font-size-20 ltr-sp-01" data-split-text="true" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview", "animationTarget":".split-inner", "duration":"1600", "delay":100, "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":60}, "animations":{"translateY":0}}' data-split-options='{"type":"lines"}'>
<span class="ld-fh-txt" style="color: #fff !important; font-weight: bold;">CCE</span>
</h6>
</div><!-- /.ld-fancy-heading -->
<div class="ld-fancy-heading mask-text">
<h2 style="background-color: rgba(45, 47, 97, 0.4); padding: 10px; border-radius: 5px;" data-fittext="true" data-fittext-options='{"compressor":0.55,"maxFontSize":"60", "minFontSize":"48"}' data-split-text="true" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview", "animationTarget":".split-inner", "duration":"1600", "startDelay":"200", "delay":"160", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":150}, "animations":{"translateY":0}}' data-split-options='{"type":"lines"}'>
<span class="ld-fh-txt font-size-48" style="color: #fff !important">Cultural Connoisseurs Experience</span>
</h2>
</div>
<!--<div class="ld-fancy-heading mask-text mb-4">
<p class="font-size-18 lh-165" data-split-text="true" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview","animationTarget":".split-inner","duration":"1600","startDelay":"650","delay":"160","easing":"easeOutQuint","direction":"forward","initValues":{"translateY":60},"animations":{"translateY":0}}' data-split-options='{"type":"lines"}'>
<span class="ld-fh-txt" style="color: #ffffff; font-weight: bold;">
Discover a mystery thematic tours through the city of Lisbon!
</span>
</p>
</div>
/.ld-fancy-heading -->
<div class="row">
<div class="lqd-column col-md-12" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1600", "startDelay":"1300", "delay":"160", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":40, "opacity":0}, "animations":{"translateY":0, "opacity":1}}'>
<a href="#" class="btn btn-solid text-uppercase btn-md circle btn-bordered border-thin btn-gradient px-2" data-localscroll="true" data-localscroll-options='{"scrollBelowSection":true}'>
<span>
<span class="btn-gradient-bg"></span>
<span class="btn-txt">Discover the tours</span>
<span class="btn-gradient-bg btn-gradient-bg-hover"></span>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" class="btn-gradient-border" width="100%" height="100%">
<defs>
<linearGradient id="svg-border-1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%"></stop>
<stop offset="100%"></stop>
</linearGradient>
</defs>
<rect x="0.5" y="0.5" rx="29.5" ry="29.5" width="100%" height="100%" stroke="url(#svg-border-1)"></rect>
</svg>
</span>
</a>
</div><!-- /.lqd-column col-md-12 -->
</div><!-- /.row -->
</div><!-- /.lqd-column col-lg-5 col-md-6 -->
<div class="lqd-column col-lg-7 col-md-6 visible-md visible-lg">
<div class="liquid-img-group-container lqd-parallax-images-7" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview", "animationTarget":".liquid-img-group-single", "duration":"1600", "startDelay":"1150", "delay":"200", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateX":40, "translateY":191, "rotateZ":7, "opacity":0}, "animations":{"translateX":0, "translateY":0, "rotateZ":0, "opacity":1}}'>
<div class="liquid-img-group-inner">
<div class="liquid-img-group-single">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true" data-parallax-from='{"translateY":2}' data-parallax-to='{"translateY":120}' data-parallax-options='{"overflowHidden":false,"easing":"linear"}'>
<!--<figure>
<img src="./assets/demo/misc/phone-1.png" alt="Mobile Phone" />
</figure>-->
</div><!-- /.liquid-img-container-inner -->
</div><!-- /.liquid-img-group-img-container -->
</div><!-- /.liquid-img-group-single -->
<div class="liquid-img-group-single">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true" data-parallax-from='{"translateY":30}' data-parallax-to='{"translateY":70}' data-parallax-options='{"overflowHidden":false,"easing":"linear"}'>
<!--<figure>
<img src="./assets/demo/misc/laptop-1.png" alt="Laptop" />
</figure>-->
</div><!-- /.liquid-img-container-inner -->
</div><!-- /.liquid-img-group-img-container -->
</div><!-- /.liquid-img-group-single -->
</div><!-- /.liquid-img-group-inner -->
</div><!-- /.liquid-img-group-container -->
</div><!-- /.lqd-column col-lg-7 col-md-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section>
<style>
/* Shared styles for video containers */
.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.mobile-video-container,
.desktop-video-container {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Mobile-specific styles */
@media (max-width: 991px) {
.desktop-video-container {
display: none; /* Hide desktop video on mobile */
}
}
/* Desktop-specific styles */
@media (min-width: 992px) {
.mobile-video-container {
display: none; /* Hide mobile video on desktop */
}
}
</style>
<section class="vc_row">
<div class="container">
<div class="row">
<div class="carousel-container carousel-shadow-active carousel-nav-left carousel-nav-md carousel-dots-style1">
<div class="carousel-items row" data-lqd-flickity='{"wrapAround": true}'>
<div class="lqd-column w-20 text-center px-2">
<figure>
</figure>
</div><!-- /.lqd-column w-20 text-center px-2 -->
</div><!-- /.carousel-items -->
</div><!-- /.carousel-container -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.vc_row -->
<section id="about" class="vc_row bg-no-repeat pb-150" style="background-image: url(./assets/demo/bg/bg-76.svg); background-position: -90% 80%;">
<div class="container">
<div
class="row"
data-custom-animations="true"
data-ca-options='{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1600", "delay":"160", "easing":"easeOutQuint", "initValues":{"translateY": 100, "opacity":0}, "animations":{"translateY": 0, "opacity":1}}'>
<style>
@media (max-width: 991px) {
#mystic-tour-section {
display: block !important;
}
}
</style>
<div class="lqd-column col-md-12" style="display: none;" id="mystic-tour-section">
<header class="fancy-title">
<h6 style="color: #fff; font-weight: bold;" class="text-uppercase">Experience </h6>
<h2 style="color: #fff; font-weight: bold;"><strong>Lisbon</strong> Through Royal Eyes</h2>
</header>
</div><!-- /.lqd-column col-md-12 -->
<div class="lqd-column col-md-12">
<div style="background-color: #2D2F61;" class="iconbox text-left iconbox-xl iconbox-icon-image iconbox-shadow border-radius-5 px-5 pt-40 pb-55 mr-md-4">
<div class="iconbox-icon-wrap">
<span class="iconbox-icon-container mb-35">
<img src="./assets/icon_praca.png" width="80">
</span>
</div><!-- /.iconbox-icon-wrap -->
<div class="contents">
<h3 style="color: #fff;">Walk with Greatness: Royal Tales of Lisboa</h3>
<p><span style="color: #fff; font-size: 18px;line-height: 30px">
Get to know Lisbon and spend your time in a fun and fulfilling way!
</span></p>
<br>
<div class="audio-preview">
<audio controls>
<source src="https://firebasestorage.googleapis.com/v0/b/travel-app-qgmk9c.firebasestorage.app/o/intro%2FLissbon_excursion_intro.mp3?alt=media&token=4d91b8c5-c7b5-4215-a320-e7be625959ec" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<p><span style="color: #fff; font-size: 18px;line-height: 30px"><br>
The foundation of this experience is a meticulously planned, carefully thought-out real tour, transformed by a team of professionals into an immersive theatrical performance.
<br><br>
With humor, ease, and authenticity, the resurrected King José will share spicy stories about the lives of aristocrats and commoners. You'll feel like an active participant in this theatrical spectacle—a medieval fairytale brought to life through headphones. The tour boasts excellent voice acting by professional actors, a rich musical score, and special effects.
<br><br>
Thanks to the unique format of this tour, you have complete mobility. You can pause at any time to enjoy a hearty meal at a charming restaurant along the carefully planned route or take memorable photos of unique locations.
<br><br>
Our performance is designed for individual use, meaning you won’t depend on anyone else—just your own preferences and pace.
<br><br>
Explore the city at your own rhythm, combining fun and discovery!
</span></p>
</div><!-- /.contants -->
</div><!-- /.iconbox -->
</div><!-- /.lqd-column col-md-4 -->
</div><!-- /.row -->
<div class="lqd-space visible-lg visible-md" style="height: 200px;"></div>
<div class="row d-flex flex-wrap align-items-center">
<div class="lqd-column col-md-6">
<div
class="liquid-img-group-container lqd-parallax-images-8"
data-custom-animations="true"
data-ca-options='{"triggerHandler":"inview", "animationTarget":".liquid-img-group-single", "duration":"1600", "delay":"160", "easing":"easeOutQuint", "direction":"backward", "initValues":{"translateX":-85, "opacity":0}, "animations":{"translateX":0, "opacity":1}}'>
<div class="liquid-img-group-inner">
<div
class="liquid-img-group-single"
data-shadow-style="4"
data-roundness="8"
data-inview="true"
data-animate-shadow="true">
<div class="liquid-img-group-img-container">
<div
class="liquid-img-container-inner"
data-parallax="true"
data-parallax-from='{"translateY":78}'
data-parallax-to='{"translateY":-78}'
data-parallax-options='{"overflowHidden":false, "easing":"linear"}'>
<figure class="w-90">
<img src="./assets/luis.jpg" alt="Lisbon tour with Luís" />
</figure>
</div><!-- /.liquid-img-container-inner -->
</div><!-- /.liquid-img-group-img-container -->
</div><!-- /.liquid-img-group-single -->
<div
class="liquid-img-group-single"
data-shadow-style="4"
data-roundness="8" data-inview="true" data-animate-shadow="true">
<div class="liquid-img-group-img-container">
<div class="liquid-img-group-content content-floated-mid">
</div><!-- /.liquid-img-group-content -->
<div
class="liquid-img-container-inner"
data-parallax="true"
data-parallax-from='{"translateY":107}'
data-parallax-to='{"translateY":-134}'
data-parallax-options='{"overflowHidden":false,"easing":"linear"}'>
<figure>
<img src="./assets/jose.jpg" alt="Lisbon tour with José" />
</figure>
</div><!-- /.liquid-img-container-inner -->
</div><!-- /.liquid-img-group-img-container -->
</div><!-- /.liquid-img-group-single -->
</div><!-- /.liquid-img-group-inner -->
</div><!-- /.liquid-img-group-container -->
</div><!-- /.lqd-column col-md-6 -->
<div
data-custom-animations="true"
data-ca-options='{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1600", "delay":"160", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}'
class="lqd-column col-md-5 col-md-offset-1">
<header class="fancy-title mb-50">
<h6 class="text-uppercase">What is in the tour</h6>
<h2 class="lh-1 mb-0" data-fittext="true" data-fittext-options='{"compressor":0.65, "maxFontSize":"72", "minFontSize":"48"}'><strong>Time</strong> travel</h2>
<h2 class="lh-1 mb-0" data-fittext="true" data-fittext-options='{"compressor":0.65, "maxFontSize":"72", "minFontSize":"48"}'><strong>Mystic</strong> tour</h2>
</header>
<p class="font-size-30 lh-105"><i>Route Overview</i></p>
<p class="font-size-18 lh-30 mb-55">
<span style="color: #2E305E;">
We’ll begin our journey in a square haunted by the restless souls of beautiful young women executed for witchcraft.
Discover who watches over Lisbon and who gifted Brazil its independence.
<br><br>
José will guide you to the finest examples of an architectural style born in Portugal during the Age of Discovery—magnificent facades adorned with stone lacework that will transport you centuries back in time.
<br><br>
Our ghostly guide will unveil the secret of a popular Portuguese dessert, still guarded by monks away from prying eyes.
He’ll show you a remarkable spot that perfectly illustrates the influence of the Arab world on local culture.
<br><br>
There’s so much to say about Lisbon and Portugal as a whole, but José has handpicked the most intriguing and fascinating moments to share with you during this two-hour tour.
</span>
</p>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.vc_row -->
<section id="services" class="vc_row pt-90 pb-90 bg-no-repeat" style="background-image: url(./assets/bg-77.svg); background-position: 500% 0%;">
<div class="container">
<div class="row d-flex flex-wrap align-items-center">
<div
class="lqd-column col-md-5 mb-30"
data-custom-animations="true"
data-ca-options='{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1600", "delay":"160", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}'>
<header class="fancy-title pr-md-4">
<h6 class="text-uppercase">On your phone</h6>
<h2><strong>PREMIUM</strong> DIGITAL EXPERIENCE</h2>
</header>
<p class="font-size-18 lh-15 mb-55">
Control your own experience on your phone
</p>
<div class="liquid-img-container-inner will-change">
<figure>
<img src="./assets/screen.png" style="border-radius: 10px;" alt="Screen">
</figure>
</div>
</div><!-- /.lqd-column col-md-5 -->
<div
class="lqd-column col-md-3 col-md-offset-1"
>
<div
class="lqd-column-inner"
data-parallax="true"
data-parallax-from='{"translateY":-30}'
data-parallax-to='{"translateY":120}'
data-parallax-options='{"duration":"2000", "easing":"linear", "reverse":true, "triggerHook":"onEnter", "overflowHidden": false}'>
<div class="iconbox text-left iconbox-round iconbox-lg iconbox-filled iconbox-filled iconbox-filled-hover iconbox-icon-image iconbox-shadow pt-50 pb-40">
<div class="iconbox-icon-wrap">
<span class="iconbox-icon-container mb-35">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="42.375" height="45.188" viewBox="0 0 42.375 45.188">
<defs>
<filter id="filter-seo-icon-4" x="0.813" y="0" width="42.375" height="45.188" filterUnits="userSpaceOnUse">
<feImage preserveAspectRatio="none" x="0.8125" y="0" width="42.375" height="45.188" result="image" xlink:href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDIuMzc1IiBoZWlnaHQ9IjQ1LjE4OCIgdmlld0JveD0iMCAwIDQyLjM3NSA0NS4xODgiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6IHVybCgjbGluZWFyLWdyYWRpZW50KTsKICAgICAgfQogICAgPC9zdHlsZT4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGluZWFyLWdyYWRpZW50IiB5MT0iMjIuNTk0IiB4Mj0iNDIuMzc1IiB5Mj0iMjIuNTk0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2ZlNTA2YyIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmYzZhMmEiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxyZWN0IGNsYXNzPSJjbHMtMSIgd2lkdGg9IjQyLjM3NSIgaGVpZ2h0PSI0NS4xODgiLz4KPC9zdmc+Cg==" />
<feComposite result="composite" operator="in" in2="SourceGraphic" />
<feBlend result="blend" in2="SourceGraphic" />
</filter>
</defs>
<path filter="" d="
m7.53 5.33-.54-.81c-.49.33-.94.7-1.35 1.12l.68.69h.01c.38-.39.78-.72 1.2-1ZM4.14 13.57l-.97.19c.11.58.28 1.14.51 1.69l.89-.37c-.19-.48-.34-.98-.43-1.51ZM5.32 7.54l-.8-.53c-.31.46-.58.95-.81 1.48-.01.02-.02.05-.03.07l.89.36c.2-.49.45-.94.75-1.38ZM4 11.97l.02-.47c0-.11 0-.23.03-.34.01-.25.04-.49.08-.72l-.96-.19C3.05 10.82 3 11.4 3 12h1v-.03ZM4.52 17c.32.5.7.95 1.11 1.37l.69-.69a7.56 7.56 0 0 1-1-1.21l-.8.53ZM8.92 4.57c.48-.19.98-.34 1.51-.43l-.19-.97c-.58.11-1.14.29-1.69.52l.37.88ZM20.83 10.25c-.11-.58-.29-1.15-.52-1.69-.01-.02-.02-.05-.03-.07-.23-.53-.5-1.03-.8-1.49A9.1 9.1 0 0 0 17 4.52c-.46-.3-.96-.57-1.49-.8-.02-.01-.05-.02-.07-.03-.54-.23-1.11-.41-1.69-.52A9.19 9.19 0 0 0 12 3v1.02h.5c.37.01.72.05 1.06.12.53.09 1.03.24 1.51.43.49.2.95.45 1.39.76.43.28.83.62 1.21 1s.72.78 1 1.21c.31.44.56.89.76 1.38.19.49.34.99.43 1.52.07.34.11.69.12 1.06v1c-.01.37-.05.72-.12 1.07-.09.53-.24 1.03-.43 1.51-.2.49-.45.95-.76 1.39-.28.42-.61.82-1 1.2-.38.39-.78.73-1.21 1.01l-.01.01c-.43.3-.89.55-1.38.74-.35.14-.71.25-1.08.33-.14.05-.28.08-.43.11-.09.02-.19.03-.29.04l-.23.03c-.34.05-.69.07-1.05.07-.36 0-.69-.02-1.03-.07a7.22 7.22 0 0 1-.49-.07.355.355 0 0 0-.1-.02c-.51-.09-.99-.24-1.45-.42-.16-.06-.3-.16-.46-.24l1.31-.5-.36-.93-2.04.78-.82.31 1.1 2.85.93-.35-.48-1.25c.13.06.25.14.38.19.02.01.05.02.07.03.55.23 1.11.4 1.69.51.57.12 1.16.17 1.76.17.6 0 1.18-.05 1.75-.17.58-.1 1.15-.28 1.69-.5 0 0 .05-.03.07-.04a8.41 8.41 0 0 0 1.48-.8c.5-.33.95-.71 1.37-1.12a9.1 9.1 0 0 0 1.12-1.36c.3-.46.57-.96.8-1.49.01-.03.02-.05.03-.08.23-.54.41-1.1.52-1.68a9.19 9.19 0 0 0 0-3.51Z
" transform="scale(2.3, 2.3) translate(-2, -2)" fill="#2D2F61" />
</svg>
</span>
</div><!-- /.iconbox-icon-wrap -->
<div class="contents">
<h3>Duration</h3>
<p class="font-size-16 lh-165">Audio tour is designed for 2 hours</p>
</div><!-- /.contents -->
</div><!-- /.iconbox -->
<div class="iconbox text-left iconbox-round iconbox-lg iconbox-filled iconbox-filled iconbox-filled-hover iconbox-icon-image iconbox-shadow pt-50 pb-40">
<div class="iconbox-icon-wrap">
<span class="iconbox-icon-container mb-35">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="42.375" viewBox="0 0 48 42.375">
<defs>
<filter id="filter-seo-icon-6" x="0" y="0.813" width="48" height="42.375" filterUnits="userSpaceOnUse">
<feImage preserveAspectRatio="none" x="0" y="0.8125" width="48" height="42.375" result="image" xlink:href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDgiIGhlaWdodD0iNDIuMzc1IiB2aWV3Qm94PSIwIDAgNDggNDIuMzc1Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiB1cmwoI2xpbmVhci1ncmFkaWVudCk7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhci1ncmFkaWVudCIgeTE9IjIxLjE4OCIgeDI9IjQ4IiB5Mj0iMjEuMTg4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2ZlNTA2YyIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmYzZhMmEiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxyZWN0IGNsYXNzPSJjbHMtMSIgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQyLjM3NSIvPgo8L3N2Zz4K" />
<feComposite result="composite" operator="in" in2="SourceGraphic" />
<feBlend result="blend" in2="SourceGraphic" />
</filter>
</defs>
<path filter=""
d="
M9 20.5a3.372 3.372 0 0 1-2.475-1.025A3.372 3.372 0 0 1 5.5 17V8.475a3.399 3.399 0 0 1-1.438-.988A2.238 2.238 0 0 1 3.5 6c0-.7.242-1.292.725-1.775C4.708 3.742 5.3 3.5 6 3.5s1.292.242 1.775.725C8.258 4.708 8.5 5.3 8.5 6c0 .55-.187 1.046-.562 1.487a3.399 3.399 0 0 1-1.438.988V17c0 .683.246 1.27.738 1.762A2.403 2.403 0 0 0 9 19.5c.683 0 1.27-.246 1.762-.738A2.403 2.403 0 0 0 11.5 17V7c0-.967.342-1.792 1.025-2.475A3.372 3.372 0 0 1 15 3.5c.967 0 1.792.342 2.475 1.025A3.372 3.372 0 0 1 18.5 7v8.525a3.403 3.403 0 0 1 1.438.987c.375.442.562.938.562 1.488 0 .7-.242 1.292-.725 1.775-.483.483-1.075.725-1.775.725s-1.292-.242-1.775-.725C15.742 19.292 15.5 18.7 15.5 18c0-.55.187-1.05.562-1.5.375-.45.855-.775 1.438-.975V7c0-.683-.246-1.271-.737-1.763A2.408 2.408 0 0 0 15 4.5c-.683 0-1.27.246-1.762.737A2.406 2.406 0 0 0 12.5 7v10c0 .967-.342 1.792-1.025 2.475A3.372 3.372 0 0 1 9 20.5Zm-3-13c.417 0 .77-.146 1.062-.438.292-.291.438-.645.438-1.062 0-.417-.146-.77-.438-1.062A1.444 1.444 0 0 0 6 4.5c-.417 0-.77.146-1.062.438A1.444 1.444 0 0 0 4.5 6c0 .417.146.77.438 1.062.291.292.645.438 1.062.438Zm12 12c.417 0 .77-.146 1.062-.438.292-.291.438-.645.438-1.062 0-.417-.146-.77-.438-1.062A1.444 1.444 0 0 0 18 16.5c-.417 0-.77.146-1.062.438A1.444 1.444 0 0 0 16.5 18c0 .417.146.77.438 1.062.291.292.645.438 1.062.438Z
" transform="scale(2.3, 2.3) translate(-2, -2)" fill="#2D2F61" />
</svg>
</span>
</div><!-- /.iconbox-icon-wrap -->
<div class="contents">
<h3>Route</h3>
<p class="font-size-16 lh-165">Route lenth of historical mystic tour is 5 km</p>
</div><!-- /.contents -->
</div><!-- /.iconbox -->
</div><!-- /.lqd-column-inner -->
</div><!-- /.lqd-column col-md-3 -->
<div class="lqd-column col-md-3">
<div
class="lqd-column-inner"
data-parallax="true"
data-parallax-from='{"translateY":50}'
data-parallax-to='{"translateY":-130}'
data-parallax-options='{"duration":"2000", "easing":"linear", "reverse":true, "triggerHook":"onEnter", "overflowHidden": false}'>
<div class="iconbox text-left iconbox-round iconbox-lg iconbox-filled iconbox-filled iconbox-filled-hover iconbox-icon-image iconbox-shadow pt-50 pb-40">
<div class="iconbox-icon-wrap">
<span class="iconbox-icon-container mb-35">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="31.219" height="48" viewBox="0 0 31.219 48">
<defs>
<filter id="filter-seo-icon-5" x="0.344" y="0" width="31.219" height="48" filterUnits="userSpaceOnUse">
<feImage preserveAspectRatio="none" x="0.34375" y="0" width="31.219" height="48" result="image" xlink:href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzEuMjE5IiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMzEuMjE5IDQ4Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiB1cmwoI2xpbmVhci1ncmFkaWVudCk7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhci1ncmFkaWVudCIgeTE9IjI0IiB4Mj0iMzEuMjE5IiB5Mj0iMjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmU1MDZjIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZjNmEyYSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICA8L2RlZnM+CiAgPHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iMzEuMjE5IiBoZWlnaHQ9IjQ4Ii8+Cjwvc3ZnPgo=" />
<feComposite result="composite" operator="in" in2="SourceGraphic" />
<feBlend result="blend" in2="SourceGraphic" />
</filter>
</defs>
<path filter="" d="
M21 15.535v2c0 .4-.1.8-.4 1.1-.3.3-.7.4-1.1.4H19v-6c0-1-.2-1.9-.5-2.7 0-.1-.1-.2-.1-.3.1.9.1 2.3-1 1.5-1.1-.8-2-3.6-2-3.6-1 1.3-5.5 2.1-7.6 2.5-.8.1-1.5-.2-2-.7-.1.2-.2.3-.2.5-.4.9-.6 1.8-.6 2.7v6h-.5c-.4 0-.8-.2-1.1-.4-.3-.3-.4-.6-.4-1v-2c0-.3.1-.5.3-.8.2-.2.4-.5.7-.6v-1.3c0-1.1.3-2.1.7-3 .1-.3.3-.6.5-.9-.1-.2-.1-.4-.1-.6v-.7c0-1.2 2-1.6 2.8-1.7.1 0 .1-.1 0-.1-1.3-.4-1.6-1.1-1.6-1.1s2-2 7.4.6c.1.1.2.1.4.2 0 0 .1 0 .1-.1-.1-.2-.2-.5.1-.6.3-.2.5.4.6.6 0 .1.1.1.2 0 .3-.3.9-1 .7-.3-.2.6-.4.7-.5.8.5.2.9.5 1.3.8l.7.7c.7.7 1.3 1.5 1.7 2.5.4.9.7 2 .7 3v1.3c.3.2.5.4.7.6.5.1.6.4.6.7Z
" transform="scale(2, 2) translate(-2, -2)" fill="#2D2F61"/>
</svg>
</span>
</div><!-- /.iconbox-icon-wrap -->
<div class="contents">
<h3>Full control</h3>
<p class="font-size-16 lh-165">Tour is designed to do in your own rythm</p>
</div><!-- /.contents -->
</div><!-- /.iconbox -->
<div class="iconbox text-left iconbox-round iconbox-lg iconbox-filled iconbox-filled iconbox-filled-hover iconbox-icon-image iconbox-shadow pt-50 pb-40">
<div class="iconbox-icon-wrap">
<span class="iconbox-icon-container mb-35">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="36.75" viewBox="0 0 48 36.75">
<defs>
<filter id="filter-seo-icon-7" x="0" y="0.625" width="48" height="36.75" filterUnits="userSpaceOnUse">
<feImage preserveAspectRatio="none" x="0" y="0.625" width="48" height="36.75" result="image" xlink:href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDgiIGhlaWdodD0iMzYuNzUiIHZpZXdCb3g9IjAgMCA0OCAzNi43NSI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogdXJsKCNsaW5lYXItZ3JhZGllbnQpOwogICAgICB9CiAgICA8L3N0eWxlPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHkxPSIxOC4zNzUiIHgyPSI0OCIgeTI9IjE4LjM3NSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZTUwNmMiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmM2YTJhIi8+CiAgICA8L2xpbmVhckdyYWRpZW50PgogIDwvZGVmcz4KICA8cmVjdCBjbGFzcz0iY2xzLTEiIHdpZHRoPSI0OCIgaGVpZ2h0PSIzNi43NSIvPgo8L3N2Zz4K" />
<feComposite result="composite" operator="in" in2="SourceGraphic" />
<feBlend result="blend" in2="SourceGraphic" />
</filter>
</defs>
<path filter="" d="
m17.7 14.475-.725-.725c.267-.217.483-.475.65-.775.167-.3.25-.625.25-.975s-.083-.675-.25-.975a2.645 2.645 0 0 0-.65-.775l.725-.725c.35.333.633.708.85 1.125.217.417.325.867.325 1.35 0 .483-.108.933-.325 1.35a4.26 4.26 0 0 1-.85 1.125Zm2.15 2.125-.725-.7a5.362 5.362 0 0 0 1.187-1.787c.275-.675.413-1.38.413-2.113 0-.733-.138-1.438-.413-2.113A5.362 5.362 0 0 0 19.125 8.1l.725-.7c.6.6 1.063 1.3 1.388 2.1.325.8.487 1.633.487 2.5s-.162 1.7-.487 2.5c-.325.8-.788 1.5-1.388 2.1ZM7.625 22c-.45 0-.833-.158-1.15-.475A1.566 1.566 0 0 1 6 20.375V3.625c0-.45.158-.833.475-1.15.317-.317.7-.475 1.15-.475h8.75c.45 0 .833.158 1.15.475.317.317.475.7.475 1.15v3.3h-1V5.5H7v13h10v-1.425h1v3.3c0 .45-.158.833-.475 1.15-.317.317-.7.475-1.15.475h-8.75ZM7 19.5v.875c0 .167.063.312.188.437s.27.188.437.188h8.75a.597.597 0 0 0 .437-.188.597.597 0 0 0 .188-.437V19.5H7Zm0-15h10v-.875a.597.597 0 0 0-.188-.437.597.597 0 0 0-.437-.188h-8.75a.597.597 0 0 0-.437.188.597.597 0 0 0-.188.437V4.5Zm0 15V21v-1.5Z
" transform="scale(2, 2) translate(-2, -2)" fill="#2D2F61" />
</svg>
</span>
</div><!-- /.iconbox-icon-wrap -->
<div class="contents">
<h3>Personal tour on your smartphone</h3>
<p class="font-size-16 lh-165">Audio tour on your smartphone</p>
</div><!-- /.contents -->
</div><!-- /.iconbox -->
</div><!-- /.lqd-column-inner -->
</div><!-- /.lqd-column col-md-3 -->
</div><!-- /.row -->
<div class="lqd-space visible-lg visible-md- mb-200"></div>
<div id="works" class="row">
<div class="lqd-column col-md-12">
<div class="liquid-portfolio-list">
<div class="row d-flex flex-wrap align-items-end mb-40">
<div class="col-md-6">
<header class="fancy-title mb-0">
<h6 class="text-uppercase">Spots</h6>
<h2><strong>From the</strong> tour</h2>
</header>
</div><!-- /.col-md-6 -->
</div><!-- /.row -->
<div
class="row liquid-portfolio-list-row"
data-liquid-masonry="true"
data-masonry-options='{ "filtersID": "#seo-pf-grid" }'
data-custom-animations="true"
data-ca-options='{"triggerHandler":"inview","animationTarget":".ld-pf-item","animateTargetsWhenVisible":"true","duration":"1600","delay":"160","easing":"easeOutQuint","initValues":{"translateY":65,"opacity":0},"animations":{"translateY":0,"opacity":1}}'>
<div class="col-md-4 col-sm-6 col-xs-12 masonry-item branding digital-design grid-hover-overlay">
<article class="ld-pf-item ld-pf-dark pf-bg-shadow pf-details-visible pf-details-boxed pf-details-pull-right pf-details-pull-up-half title-size-24 pf-details-h-str pf-details-v-end post-2021 liquid-portfolio type-liquid-portfolio status-publish format-gallery has-post-thumbnail hentry post_format-post-format-gallery liquid-portfolio-category-branding liquid-portfolio-category-digital-design liquid-portfolio-category-grid-hover-overlay">
<div class="ld-pf-inner">
<div class="ld-pf-image">
<figure data-responsive-bg="true" data-parallax="true" data-parallax-options='{ "parallaxBG": true }'>
<img src="./assets/photos/photo_1.jpg" alt="Oblivision" />
</figure>
</div><!-- /.ld-pf-image -->
<div class="ld-pf-details py-3">
<div class="ld-pf-bg" style="background-color: #fff;" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": "this", "easing": "easeInOutCirc", "duration": 850, "offDuration": 700, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
</div>
<div class="ld-pf-details-inner" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": ".split-inner", "easing": "easeOutQuint", "duration": 850, "offDuration": 750, "startDelay": 280, "offDelay": 280, "delay": 60, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
<p data-split-text="true" data-split-options='{ "type": "lines" }'>Commerce square</p>
</div>
</div>
<a href="#" class="liquid-overlay-link"></a>
</div><!-- /.ld-pf-inner -->
</article>
</div><!-- /.col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 masonry-item branding custom-print grid-hover-overlay">
<article class="ld-pf-item ld-pf-dark pf-bg-shadow pf-details-visible pf-details-boxed pf-details-pull-right pf-details-pull-up-half title-size-24 pf-details-h-str pf-details-v-end post-2021 liquid-portfolio type-liquid-portfolio status-publish format-gallery has-post-thumbnail hentry post_format-post-format-gallery liquid-portfolio-category-branding liquid-portfolio-category-digital-design liquid-portfolio-category-grid-hover-overlay">
<div class="ld-pf-inner">
<div class="ld-pf-image">
<figure data-responsive-bg="true" data-parallax="true" data-parallax-options='{ "parallaxBG": true }'>
<img src="./assets/photos/photo_2.jpg" alt="Lisbon Cathedral" />
</figure>
</div><!-- /.ld-pf-image -->
<div class="ld-pf-details py-3">
<div class="ld-pf-bg" style="background-color: #fff;" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": "this", "easing": "easeInOutCirc", "duration": 850, "offDuration": 700, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
</div>
<div class="ld-pf-details-inner" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": ".split-inner", "easing": "easeOutQuint", "duration": 850, "offDuration": 750, "startDelay": 280, "offDelay": 280, "delay": 60, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
<!--<h3 class="ld-pf-title h4" data-split-text="true" data-split-options='{ "type": "lines" }'>Lisbon Cathedral</h3>-->
<p data-split-text="true" data-split-options='{ "type": "lines" }'>Lisbon Cathedral</p>
</div>
</div>
<a href="#" class="liquid-overlay-link"></a>
</div><!-- /.ld-pf-inner -->
</article>
</div><!-- /.col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 masonry-item ecommerce grid-hover-overlay">
<article class="ld-pf-item ld-pf-dark pf-bg-shadow pf-details-visible pf-details-boxed pf-details-pull-right pf-details-pull-up-half title-size-24 pf-details-h-str pf-details-v-end post-2021 liquid-portfolio type-liquid-portfolio status-publish format-gallery has-post-thumbnail hentry post_format-post-format-gallery liquid-portfolio-category-branding liquid-portfolio-category-digital-design liquid-portfolio-category-grid-hover-overlay">
<div class="ld-pf-inner">
<div class="ld-pf-image">
<figure data-responsive-bg="true" data-parallax="true" data-parallax-options='{ "parallaxBG": true }'>
<img src="./assets/photos/photo_3.jpg" alt="Oblivision" />
</figure>
</div><!-- /.ld-pf-image -->
<div class="ld-pf-details py-3">
<div class="ld-pf-bg" style="background-color: #fff;" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": "this", "easing": "easeInOutCirc", "duration": 850, "offDuration": 700, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
</div>
<div class="ld-pf-details-inner" data-custom-animations="true"
data-ca-options='{ "triggerHandler": "mouseenter", "triggerTarget": ".ld-pf-item", "triggerRelation": "closest", "offTriggerHandler": "mouseleave", "animationTarget": ".split-inner", "easing": "easeOutQuint", "duration": 850, "offDuration": 750, "startDelay": 280, "offDelay": 280, "delay": 60, "initValues": { "translateY": 0 }, "animations": { "translateY": -70 } }'>
<p data-split-text="true" data-split-options='{ "type": "lines" }'>Alfama</p>
</div>
</div>
<a href="#" class="liquid-overlay-link"></a>
</div><!-- /.ld-pf-inner -->
</article>
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div><!-- /.liquid-portfolio-list -->
</div><!-- /.lqd-column col-md-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.vc_row pt-90 pb-90 -->
<section class="vc_row pt-200 pb-100" id="testimonials">
<div class="container">
<div class="row">
<div class="lqd-column col-lg-4 col-md-12" data-custom-animations="true" data-ca-options='{"triggerHandler":"inview","animationTarget":"all-childs","duration":1200,"delay":160,"initValues":{"translateY":50,"opacity":0},"animations":{"translateY":0,"opacity":1}}'>
<header class="fancy-title mb-130">
<h6 class="text-uppercase">Feedback</h6>
<h2 class="mt-4 mb-4">What our tourists said</h2>
<p>We’re humbled to be working with such a great variety of clients that range from early stage startups to Fortune 500 companies.</p>
</header><!-- /.fancy-title -->
</div><!-- /.col-lg-4 col-md-12 -->
<div class="lqd-column col-lg-7 col-lg-offset-1 col-xs-12 mb-7 mb-md-0">
<div class="carousel-container carousel-vertical-3d">
<div class="carousel-items">
<div class="carousel-item is-active">
<div class="testimonial testimonial-whole-filled testimonial-whole-shadowed text-left testimonial-details-sm testimonial-avatar-sm">
<div class="testimonial-quote">
<blockquote>
<p class="font-size-16 lh-185">“Original, creative and with an innate understanding of their customer’s needs, the team at Ave Agency are always a pleasure to work with.”</p>
</blockquote>
</div><!-- /.testimonial-quote -->
<div class="testimonial-details">
<figure class="avatar ">
<img src="./assets/demo/testimonials/testi-3.png" alt="Suke Tran">
</figure>
<div class="testimonial-info">
<h5>Suke Tran</h5>
<h6 class="font-weight-normal">Sumo Founder</h6>
</div><!-- /.testimonial-info -->
<time datetime="2017-07-07" class="text-uppercase">Now</time>
</div><!-- /.testimonial-details -->
</div><!-- /.testimonial -->
</div><!-- /.carousel-item -->
<div class="carousel-item">
<div class="testimonial testimonial-whole-filled testimonial-whole-shadowed text-left testimonial-details-sm testimonial-avatar-sm">
<div class="testimonial-quote">
<blockquote>
<p class="font-size-16 lh-185">“Original, creative and with an innate understanding of their customer’s needs, the team at Ave Agency are always a pleasure to work with.”</p>
</blockquote>
</div><!-- /.testimonial-quote -->
<div class="testimonial-details">
<figure class="avatar ">
<img src="./assets/demo/testimonials/testi-4.png" alt="Suke Tran">
</figure>
<div class="testimonial-info">
<h5>Suke Tran</h5>
<h6 class="font-weight-normal">Sumo Founder</h6>
</div><!-- /.testimonial-info -->
<time datetime="2017-07-07" class="text-uppercase">Now</time>
</div><!-- /.testimonial-details -->
</div><!-- /.testimonial -->
</div><!-- /.carousel-item -->
<div class="carousel-item">
<div class="testimonial testimonial-whole-filled testimonial-whole-shadowed text-left testimonial-details-sm testimonial-avatar-sm">
<div class="testimonial-quote">
<blockquote>
<p class="font-size-16 lh-185">“Original, creative and with an innate understanding of their customer’s needs, the team at Ave Agency are always a pleasure to work with.”</p>
</blockquote>
</div><!-- /.testimonial-quote -->
<div class="testimonial-details">
<figure class="avatar">
<img src="./assets/demo/testimonials/testi-5.png" alt="Suke Tran">
</figure>
<div class="testimonial-info">
<h5>Suke Tran</h5>
<h6 class="font-weight-normal">Sumo Founder</h6>
</div><!-- /.testimonial-info -->
<time datetime="2017-07-07" class="text-uppercase">Now</time>
</div><!-- /.testimonial-details -->
</div><!-- /.testimonial -->
</div><!-- /.carousel-item -->
</div><!-- /.carousel-items -->
</div><!-- /.carousel-container -->
</div><!-- /.col-lg-7 col-lg-offset-1 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section>
<section id="pricing" class="vc_row bg-cover pt-60 pb-100" style="background-image: url(./assets/bg-79.svg); background-position: center top;">
<div class="container">
<div class="row">
<div class="lqd-column col-md-12">
<header class="fancy-title text-center mb-90">
<h6 class="text-uppercase">Audio tour</h6>
<h2><strong>ROYAL EXPERIENCE PACKAGE</strong> </h2>
</header>
</div><!-- /.lqd-column col-md-12 -->
</div><!-- /.row -->
<div class="row mx-md-0">
<div class="lqd-column col-md-12 px-md-0">
<div class="pricing-table pricing-table-agency featured">
<span class="pricing-table-featured-label font-weight-bold text-uppercase ltr-sp-25"><span>Prices</span></span>
<div class="pricing-table-header">
<figure class="mb-7 loaded">
<img src="./assets/audio_guide.svg" style="width: 200px; height: auto;" alt="Audio guide prices" />
</figure>
<h5>Tour price</h5>
<p class="pricing"><sup>€</sup>24.99</p>
</div><!-- /.pricing-table-header -->
<div class="pricing-table-body">
<ul>
<li>Premium audio narration</li>
<li>Historical reference materials</li>
<li>Curated photography locations</li>
<li>Exclusive historical insights</li>
<li>Flexible scheduling</li>
</ul>
</div><!-- /.pricing-table-body -->
<div class="pricing-table-footer">
<a href="https://app.ccetours.com/" class="btn btn-default text-uppercase btn-sm circle btn-solid border-thin font-size-14 font-weight-bold ltr-sp-05 px-2">
<span>
<span class="btn-txt">Get started now</span>
</span>
</a>
</div><!-- /.pricing-table-footer -->
</div><!-- /.pricing-table -->
</div><!-- /.lqd-column col-md-4 px-md-0 -->
</div><!-- /.row mx-md-0 -->
<div class="lqd-space visible-lg visible-md" style="height: 100px;"></div>
</div><!-- /.container -->
</section><!-- /.vc_row pt-50 pb-100 -->
</main><!-- /#content.content -->
<footer class="main-footer pb-70">
<section class="vc_row pt-60">
<div class="container">
<div class="row d-flex flex-wrap align-items-center">
<div class="lqd-column col-md-6 d-flex flex-wrap align-items-center">
<figure class="mr-3">
<img style="height: 40px;" src="./logo.png" alt="Walk and Logo">
</figure>
<p class="font-size-16 my-0">© 2024 <span class="text-secondary font-weight-bold">CCE | Cultural Connoisseurs Experience</span>.</p>
</div><!-- /.lqd-column col-md-6 -->
<div class="lqd-column col-md-5 text-md-right">
<ul class="social-icon social-icon-md mb-25">
<li><a href="#" target="_blank"><i class="fa fa-facebook"></i></a></li>
</ul>
</div><!-- /.lqd-column col-md-5 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.vc_row -->
</footer><!-- /.main-footer -->
</div><!-- /#wrap -->
<script src="./assets/vendors/jquery.min.js"></script>
<script src="./assets/js/theme-vendors.js"></script>
<script src="./assets/js/theme.min.js"></script>
<script src="./assets/js/liquidAjaxMailchimp.min.js"></script>
</body>
</html>