-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1037 lines (1033 loc) · 84.6 KB
/
index.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
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luxury Travel Agency - Private Travel Designer - Bespoke Tours</title>
<link rel="icon" href="./asset/img/brand/icon/favicon.png">
<link rel="apple-touch-icon" href="./asset/img/brand/icon/favicon.png">
<link rel="stylesheet" href="./asset/css/swiper-bundle.min.css">
<link rel="stylesheet" href="./asset/font/themify/themify-icons/themify-icons.css">
<link rel="stylesheet" href="./asset/lib/intl-tel-input/build/css/intlTelInput.css">
<link rel="stylesheet" href="./asset/css/resetcss.css">
<link rel="stylesheet" href="./asset/css/grid.css">
<link rel="stylesheet" href="./asset/css/base.css">
<link rel="stylesheet" href="./asset/css/style.css">
<link rel="stylesheet" href="./asset/css/responsive.css">
</head>
<body>
<main class="main">
<header class="header">
<div class="header-container-unfixed hide-on-mobile-tablet">
<nav class="header-unfixed">
<a href="#" class="header-unfixed__logo">
<svg class="header-unfixed__logo-img" xmlns="http://www.w3.org/2000/svg" width="360.924" height="377.662" viewBox="0 0 360.924 377.662">
<g id="Group_1" data-name="Group 1" transform="translate(-780 -352)">
<path id="Path_1" data-name="Path 1" d="M430.02,451.951a17.843,17.843,0,0,0-12.232-4.277,19.964,19.964,0,0,0-8.957,1.936,6.417,6.417,0,0,0-3.918,6.139,5.257,5.257,0,0,0,1.874,4.339,6.65,6.65,0,0,0,4.327,1.515,6.9,6.9,0,0,0,4.624-1.635,5.158,5.158,0,0,0,1.931-4.094,6.355,6.355,0,0,0-.877-3.1,5.242,5.242,0,0,0-2.4-2.284c.388-.706,1.561-1.053,3.508-1.053a14.206,14.206,0,0,1,9.544,3.456,10.614,10.614,0,0,1,4.037,8.365,9.152,9.152,0,0,1-2.226,5.968q-2.221,2.7-7.841,5.267a82.335,82.335,0,0,1-8.542,3.286q-4.689,1.512-11.708,3.508l-8.314,2.46q-8.071,2.81-12.117,6.964a13.981,13.981,0,0,0-4.038,10.125q0,6.79,4.391,10.244a15.933,15.933,0,0,0,10.13,3.457,17.824,17.824,0,0,0,9.6-2.694,8.311,8.311,0,0,0,4.334-7.38,6.328,6.328,0,0,0-1.7-4.567,6,6,0,0,0-4.51-1.754,6.639,6.639,0,0,0-4.624,1.64,5.705,5.705,0,0,0-1.817,4.448,5.083,5.083,0,0,0,1.64,4.094A8.455,8.455,0,0,0,398,508.194c-.233.781-1.127,1.413-2.688,1.88a15.216,15.216,0,0,1-4.327.7,12.027,12.027,0,0,1-7.323-2.58,8.063,8.063,0,0,1-3.451-6.782A7.612,7.612,0,0,1,382.9,495.5a24.57,24.57,0,0,1,7.613-4.271q4.33-1.64,13.462-4.453,6.909,2.7,9.367,7.494a20.661,20.661,0,0,1,2.454,9.481,16.861,16.861,0,0,1-4.151,11.3,26.7,26.7,0,0,1-11.241,7.494,43.884,43.884,0,0,1-15.4,2.631,41.17,41.17,0,0,1-16.036-2.984,25.523,25.523,0,0,1-11.241-8.718,22.109,22.109,0,0,1-4-11.19c-.063-.78-.1-1.577-.1-2.392q0-14.631,15.221-19.2c1.794.786,3.354,1.406,4.681,1.873a11.481,11.481,0,0,0,3.866.712,4.269,4.269,0,0,0,2.4-.592,1.853,1.853,0,0,0,.877-1.64,2.195,2.195,0,0,0-1.293-1.993,7.053,7.053,0,0,0-3.388-.7,43.69,43.69,0,0,0-7.26.7,17.462,17.462,0,0,1-5.968-13.337q0-6.56,3.747-10.244a13.4,13.4,0,0,1,9.828-3.69,13.975,13.975,0,0,1,5.917,1.116,5.37,5.37,0,0,1,2.984,2.625,6.805,6.805,0,0,0-4.453,2.056,6.083,6.083,0,0,0-1.754,4.39,5.366,5.366,0,0,0,1.816,4.266,6.283,6.283,0,0,0,4.277,1.588,6.8,6.8,0,0,0,4.561-1.7,5.631,5.631,0,0,0,1.993-4.51,9.137,9.137,0,0,0-1.116-4.152,12.738,12.738,0,0,0-3.217-3.923q-4.339-3.51-12.175-3.508a25.685,25.685,0,0,0-10.711,2.05,15.961,15.961,0,0,0-6.788,5.381,12.472,12.472,0,0,0-2.289,7.2,14.1,14.1,0,0,0,3.046,8.542,20.827,20.827,0,0,0,8.781,6.56,37.833,37.833,0,0,0-9.128,3.8,27.048,27.048,0,0,0-8.724,8.074,21.874,21.874,0,0,0-3.8,13.058,24.326,24.326,0,0,0,5.148,15.392A32.911,32.911,0,0,0,364.58,530.26a49.322,49.322,0,0,0,18.911,3.571,42.945,42.945,0,0,0,18.957-3.918,30.72,30.72,0,0,0,12.413-10.358,24.114,24.114,0,0,0,4.328-13.7,22.837,22.837,0,0,0-3.1-11.879,19.939,19.939,0,0,0-9.657-8.017q12.872-3.981,17.322-6.088a21.465,21.465,0,0,0,8.08-6.617,16.1,16.1,0,0,0,3.041-9.777Q434.877,456.225,430.02,451.951Z" transform="translate(592.898 157.092)" fill="#fff"></path>
<path id="Path_2" data-name="Path 2" d="M526.194,390.13c-11.139-13.6-25.383-23.437-47.512-29.849-.553-.143-2.178-.55-3.628-.9-2.739-.649-3.316-.825-6.215-1.389-4.458-1.054-9.133-1.976-14.059-2.773l-.2-.017v-.536q38.257-11.607,55.953-33.893a78.969,78.969,0,0,0,17.676-50.39q0-34.4-26.394-55.23c-17.618-13.883-42.161-20.244-75.1-20.244-7.756,0-2.505.057-8.61,0l-65.417.376L231.524,427.343c-15.745,24.276-24.412,41.7-44.422,41.7v9.589c9.584-.962,23.33-.325,37.709-.325,16.365,0,31.23.052,47.041.052,7.822,0,10.615,5.244,13.792,9.6,15.694,21.531,29.554,57.588,72.781,74.085v.017c15.568,6.9,43.978,12,64.671,10.113,36.575-3.325,54.769-11,71.488-19.987s30.983-26.36,39.975-42.492q13.461-24.182,13.467-55.526Q548.026,416.792,526.194,390.13ZM391.15,245.19q0-17.433,2.9-26.16t10.421-12.124q7.508-3.374,22.532-3.388c23.889,0,31.132,7.323,39.366,17.79,9.9,12.59,15.335,30.169,15.335,54.4q0,35.857-15.745,57.406c-10.495,14.372-15.882,21.547-42.349,21.547h-2.4v-.005H391.15Zm-36.438-19.2V354.66H285.758Zm55.742,330.487c-.654,0-1.412.006-2.243.012-90.6-4.186-81.225-83.161-75.656-88.731-7.289.023-44.678.188-66.722.188-5.726,0-7.952-2.4-11.526-5.207-6.443-5.07-7.767-11.91-7.767-21.813,0-12.755,5.057-21.992,13.286-37.873l21.485-40.089h73.4v80.143c15.881-6.042,22.584-6.212,36.438-4.664V363.463h29.258q43.2,0,62.941,22.544t19.748,65.97C503.1,516.114,468.361,556.481,410.454,556.481Z" transform="translate(592.898 157.092)" fill="#fff"></path>
</g>
</svg>
</a>
<ul class="header-unfixed__list">
<li class="header-unfixed__list-item">
<a href="./test.html" class="header-unfixed__item-link">Tailored Experiences</a>
</li>
<li class="header-unfixed__list-item">
<a href="#" class="header-unfixed__item-link">Destinations</a>
</li>
<li class="header-unfixed__list-item">
<a href="#" class="header-unfixed__item-link">Private Rentals</a>
</li>
<li class="header-unfixed__list-item">
<a href="#" class="header-unfixed__item-link">About us</a>
</li>
<li class="header-unfixed__list-item">
<a href="#" class="header-unfixed__item-link">Blog & press</a>
</li>
<li class="header-unfixed__list-item">
<a href="#" class="header-unfixed__item-link">Contact Us</a>
</li>
</ul>
<ul class="header-unfixed__search">
<li class="header-unfixed__search-item">
<a href="#" class="header-unfixed__search-item-link">
<i class="header-unfixed__search-icon ti-search"></i>
</a>
</li>
<li class="header-unfixed__search-item">
<a href="#" class="header-unfixed__search-item-link">
<i class="header-unfixed__search-icon ti-heart"></i>
</a>
</li>
</ul>
</nav>
</div>
<div class="header-container-fixed">
<nav class="header-fixed">
<a class="header-fixed__logo">
<svg class="header-fixed__logo-img" xmlns="http://www.w3.org/2000/svg" width="360.924" height="377.662" viewBox="0 0 360.924 377.662">
<g id="Group_1" data-name="Group 1" transform="translate(-780 -352)">
<path id="Path_1" data-name="Path 1" d="M430.02,451.951a17.843,17.843,0,0,0-12.232-4.277,19.964,19.964,0,0,0-8.957,1.936,6.417,6.417,0,0,0-3.918,6.139,5.257,5.257,0,0,0,1.874,4.339,6.65,6.65,0,0,0,4.327,1.515,6.9,6.9,0,0,0,4.624-1.635,5.158,5.158,0,0,0,1.931-4.094,6.355,6.355,0,0,0-.877-3.1,5.242,5.242,0,0,0-2.4-2.284c.388-.706,1.561-1.053,3.508-1.053a14.206,14.206,0,0,1,9.544,3.456,10.614,10.614,0,0,1,4.037,8.365,9.152,9.152,0,0,1-2.226,5.968q-2.221,2.7-7.841,5.267a82.335,82.335,0,0,1-8.542,3.286q-4.689,1.512-11.708,3.508l-8.314,2.46q-8.071,2.81-12.117,6.964a13.981,13.981,0,0,0-4.038,10.125q0,6.79,4.391,10.244a15.933,15.933,0,0,0,10.13,3.457,17.824,17.824,0,0,0,9.6-2.694,8.311,8.311,0,0,0,4.334-7.38,6.328,6.328,0,0,0-1.7-4.567,6,6,0,0,0-4.51-1.754,6.639,6.639,0,0,0-4.624,1.64,5.705,5.705,0,0,0-1.817,4.448,5.083,5.083,0,0,0,1.64,4.094A8.455,8.455,0,0,0,398,508.194c-.233.781-1.127,1.413-2.688,1.88a15.216,15.216,0,0,1-4.327.7,12.027,12.027,0,0,1-7.323-2.58,8.063,8.063,0,0,1-3.451-6.782A7.612,7.612,0,0,1,382.9,495.5a24.57,24.57,0,0,1,7.613-4.271q4.33-1.64,13.462-4.453,6.909,2.7,9.367,7.494a20.661,20.661,0,0,1,2.454,9.481,16.861,16.861,0,0,1-4.151,11.3,26.7,26.7,0,0,1-11.241,7.494,43.884,43.884,0,0,1-15.4,2.631,41.17,41.17,0,0,1-16.036-2.984,25.523,25.523,0,0,1-11.241-8.718,22.109,22.109,0,0,1-4-11.19c-.063-.78-.1-1.577-.1-2.392q0-14.631,15.221-19.2c1.794.786,3.354,1.406,4.681,1.873a11.481,11.481,0,0,0,3.866.712,4.269,4.269,0,0,0,2.4-.592,1.853,1.853,0,0,0,.877-1.64,2.195,2.195,0,0,0-1.293-1.993,7.053,7.053,0,0,0-3.388-.7,43.69,43.69,0,0,0-7.26.7,17.462,17.462,0,0,1-5.968-13.337q0-6.56,3.747-10.244a13.4,13.4,0,0,1,9.828-3.69,13.975,13.975,0,0,1,5.917,1.116,5.37,5.37,0,0,1,2.984,2.625,6.805,6.805,0,0,0-4.453,2.056,6.083,6.083,0,0,0-1.754,4.39,5.366,5.366,0,0,0,1.816,4.266,6.283,6.283,0,0,0,4.277,1.588,6.8,6.8,0,0,0,4.561-1.7,5.631,5.631,0,0,0,1.993-4.51,9.137,9.137,0,0,0-1.116-4.152,12.738,12.738,0,0,0-3.217-3.923q-4.339-3.51-12.175-3.508a25.685,25.685,0,0,0-10.711,2.05,15.961,15.961,0,0,0-6.788,5.381,12.472,12.472,0,0,0-2.289,7.2,14.1,14.1,0,0,0,3.046,8.542,20.827,20.827,0,0,0,8.781,6.56,37.833,37.833,0,0,0-9.128,3.8,27.048,27.048,0,0,0-8.724,8.074,21.874,21.874,0,0,0-3.8,13.058,24.326,24.326,0,0,0,5.148,15.392A32.911,32.911,0,0,0,364.58,530.26a49.322,49.322,0,0,0,18.911,3.571,42.945,42.945,0,0,0,18.957-3.918,30.72,30.72,0,0,0,12.413-10.358,24.114,24.114,0,0,0,4.328-13.7,22.837,22.837,0,0,0-3.1-11.879,19.939,19.939,0,0,0-9.657-8.017q12.872-3.981,17.322-6.088a21.465,21.465,0,0,0,8.08-6.617,16.1,16.1,0,0,0,3.041-9.777Q434.877,456.225,430.02,451.951Z" transform="translate(592.898 157.092)" fill="#fff"></path>
<path id="Path_2" data-name="Path 2" d="M526.194,390.13c-11.139-13.6-25.383-23.437-47.512-29.849-.553-.143-2.178-.55-3.628-.9-2.739-.649-3.316-.825-6.215-1.389-4.458-1.054-9.133-1.976-14.059-2.773l-.2-.017v-.536q38.257-11.607,55.953-33.893a78.969,78.969,0,0,0,17.676-50.39q0-34.4-26.394-55.23c-17.618-13.883-42.161-20.244-75.1-20.244-7.756,0-2.505.057-8.61,0l-65.417.376L231.524,427.343c-15.745,24.276-24.412,41.7-44.422,41.7v9.589c9.584-.962,23.33-.325,37.709-.325,16.365,0,31.23.052,47.041.052,7.822,0,10.615,5.244,13.792,9.6,15.694,21.531,29.554,57.588,72.781,74.085v.017c15.568,6.9,43.978,12,64.671,10.113,36.575-3.325,54.769-11,71.488-19.987s30.983-26.36,39.975-42.492q13.461-24.182,13.467-55.526Q548.026,416.792,526.194,390.13ZM391.15,245.19q0-17.433,2.9-26.16t10.421-12.124q7.508-3.374,22.532-3.388c23.889,0,31.132,7.323,39.366,17.79,9.9,12.59,15.335,30.169,15.335,54.4q0,35.857-15.745,57.406c-10.495,14.372-15.882,21.547-42.349,21.547h-2.4v-.005H391.15Zm-36.438-19.2V354.66H285.758Zm55.742,330.487c-.654,0-1.412.006-2.243.012-90.6-4.186-81.225-83.161-75.656-88.731-7.289.023-44.678.188-66.722.188-5.726,0-7.952-2.4-11.526-5.207-6.443-5.07-7.767-11.91-7.767-21.813,0-12.755,5.057-21.992,13.286-37.873l21.485-40.089h73.4v80.143c15.881-6.042,22.584-6.212,36.438-4.664V363.463h29.258q43.2,0,62.941,22.544t19.748,65.97C503.1,516.114,468.361,556.481,410.454,556.481Z" transform="translate(592.898 157.092)" fill="#fff"></path>
</g>
</svg>
</a>
<ul class="header-fixed__list hide-on-mobile-tablet">
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">Tailored Experiences</a>
</li>
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">Destinations</a>
</li>
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">Private Rentals</a>
</li>
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">About us</a>
</li>
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">Blog & press</a>
</li>
<li class="header-fixed__list-item">
<a href="#" class="header-fixed__item-link">Contact Us</a>
</li>
</ul>
<ul class="header-fixed__search">
<li class="header-fixed__search-item">
<a href="#" class="header-fixed__search-item-link">
<i class="header-fixed__search-icon ti-search"></i>
</a>
</li>
<li class="header-fixed__search-item hide-on-mobile-tablet">
<a href="#" class="header-fixed__search-item-link">
<i class="header-fixed__search-icon ti-heart"></i>
</a>
</li>
<li class="header-fixed__search-item">
<label for="mobile-menu-input" class="header-fixed__search-item-link">
<i class="header-fixed__search-icon ti-menu"></i>
</label>
<input type="checkbox" id="mobile-menu-input">
<div class="mobile-menu">
<label for="mobile-menu-input" class="mobile-menu-close">
<i class="ti-close mobile-menu-close__icon"></i>
</label>
<div class="mobile-menu-container">
<ul class="mobile-menu-list">
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Home</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Tailored Experiences</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Destinations</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Private Rentals</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">About us</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Blog & press</a>
</li>
<li class="mobile-menu-list__item">
<a href="#" class="mobile-menu-list__item-link">Contact Us</a>
</li>
</ul>
<ul class="mobile-menu-social">
<li class="mobile-menu-social__item">
<a href="#" class="mobile-menu-social__item-link">
<i class="ti-facebook mobile-menu-social__item-icon"></i>
</a>
<a href="#" class="mobile-menu-social__item-link">
<i class="ti-twitter mobile-menu-social__item-icon"></i>
</a>
<a href="#" class="mobile-menu-social__item-link">
<i class="ti-instagram mobile-menu-social__item-icon"></i>
</a>
<a href="#" class="mobile-menu-social__item-link">
<i class="ti-linkedin mobile-menu-social__item-icon"></i>
</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
</nav>
</div>
<button class="scroll-top-button">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 19 10.9" style="enable-background:new 0 0 19 10.9;" xml:space="preserve" class="">
<style>
.st0{
fill:none;
stroke:#FFFFFF;
stroke-width:1.5;
}
</style>
<g id="Group_16" transform="translate(9.778 18.493) rotate(180)">
<path id="Path_13" class="st0" d="M-8.7,8.2l9.2,9.2l8.7-9.2"></path>
</g>
</svg>
</button>
<label for="close-checkbox" class="btn chat-with-us hide-on-mobile-tablet">Chat with us</label>
<input id="close-checkbox" class="close-input" type="checkbox">
<div class="header-chat-form hide-on-mobile">
<div class="chat-form-close">
<label for="close-checkbox" class="chat-form-close__label">
Close
<div class="chat-form-close__icon">
<i class="ti-close"></i>
</div>
</label>
</div>
<div class="chat-form-group">
<h4 class="chat-form__heading chat-form-animation">Have a chat with our team</h4>
<div class="chat-form__phone chat-form-animation">
<a href="tel:1-800-894-5712" class="chat-form__phone-link">US Toll Free: 1-800-894-5712</a>
<a href="tel:1-800-764-042" class="chat-form__phone-link">Australia Toll Free:1-800-764-042</a>
<a href="tel:+353-1-288-9355" class="chat-form__phone-link">Ireland: +353-1-288-9355</a>
</div>
<span class="chat-form__introduction chat-form-animation">Or fill in the form below and we'll be in touch</span>
<form action="" class="chat-form__form chat-form-animation">
<div class="form-input-group">
<input type="text" placeholder="First Name" class="form-input form-input--first-name">
<input type="text" placeholder="Last Name" class="form-input form-input--last-name">
</div>
<div class="form-input-group">
<input type="email" placeholder="Email" class="form-input form-email">
</div>
<div class="form-input-group form-input-group--dark-text">
<input id="phone" class="form-input form-input--phone" name="phone" type="tel" autocomplete="off" data-intl-tel-input-id="0" placeholder="Phone">
</div>
<div class="form-input-group">
<textarea name="" id="" class="form-input form-input--message" cols="30" rows="10" placeholder="Where do you like to go?"></textarea>
</div>
<div class="form-input-group">
<input id="form-input-agreement" type="checkbox" class="form-input--agree">
<label class="form-input__agree-text" for="form-input-agreement">Sign up to receive travel inspiration, exclusive offers & our latest news.</label>
</div>
<div class="form-input--recapcha">
<div>
<iframe title="reCAPTCHA" src="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Lcwd9wZAAAAAOY6Kvt50j4iOOele826OztQ7LTA&co=aHR0cHM6Ly93d3cuYWRhbXNhbmRidXRsZXIuY29tOjQ0Mw..&hl=en&v=Eyd0Dt8h04h7r-D86uAD1JP-&theme=light&size=normal&cb=q3vo33l02pxy" width="304" height="78" role="presentation" name="a-s3ql7135gxk0" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox" tabindex="7">
</iframe>
</div>
</div>
<div class="form-input--submit">
<buttom href="#" class="btn form-btn-submit">
Submit
</buttom>
</div>
</form>
</div>
</div>
</header>
<div class="content">
<section class="content-heading">
<div class="content-heading-group">
<div class="content-heading__background">
<video id="content-heading__video" width="100%" height="100%" playsinline="" muted="" autoplay="" loop="">
<source src="./asset/img/videos/intro-Vid-V2-No-Sound-copy.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="content-heading__foreground">
<div class="grid wide">
<div class="row">
<div class="col l-12 m-12 s-12 slow-appear">
<h1 class="content-heading__brand">Natalie & Charlie</h1>
</div>
<div class="col l-12 m-12 s-12 slow-appear">
<h3 class="content-heading__slogan">Hallmark of Luxury Travel</h3>
</div>
</div>
<div class="row no-gutters mt-34">
<div class="col l-12 m-12 s-12">
<div class="content-heading__nav slow-appear">
<a href="#" class="content-heading__link">
<span class="content-heading-link__name">Our experiences</span>
<span class="content-heading-link__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="7.325" height="12.173" viewBox="0 0 7.325 12.173" class="">
<g id="Group_16" data-name="Group 16" transform="translate(9.248 11.643) rotate(180)">
<path id="Path_13" data-name="Path 13" d="M5.718,0,0,5.718,5.718,11.1" transform="translate(3 0)" fill="none" stroke="#fff" stroke-width="1.5"></path>
</g>
</svg>
</span>
</a>
<a href="#" class="content-heading__link">
<span class="content-heading-link__name">Plan your journey</span>
<span class="content-heading-link__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="7.325" height="12.173" viewBox="0 0 7.325 12.173" class="">
<g id="Group_16" data-name="Group 16" transform="translate(9.248 11.643) rotate(180)">
<path id="Path_13" data-name="Path 13" d="M5.718,0,0,5.718,5.718,11.1" transform="translate(3 0)" fill="none" stroke="#fff" stroke-width="1.5"></path>
</g>
</svg>
</span>
</a>
<a href="#" class="content-heading__link">
<span class="content-heading-link__name">Live Webinars</span>
<span class="content-heading-link__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="7.325" height="12.173" viewBox="0 0 7.325 12.173" class="">
<g id="Group_16" data-name="Group 16" transform="translate(9.248 11.643) rotate(180)">
<path id="Path_13" data-name="Path 13" d="M5.718,0,0,5.718,5.718,11.1" transform="translate(3 0)" fill="none" stroke="#fff" stroke-width="1.5"></path>
</g>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
<div class="grid">
<div class="row">
<div class="col l-4 ml-4 m-12 s-12 slow-appear content-heading-member__group">
<a href="#" class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--virtuoso" src="./asset/img/members/virtuoso_member_logo_hero.svg" alt="Virtuoso Member">
</a>
</div>
<div class="col l-8 ml-8 m-12 s-12 slow-appear content-heading-member__group content-heading-member__group--flex-right">
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--iata" src="./asset/img/members/IATAlogo.svg" alt="IATA Member">
</span>
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--alist" src="./asset/img/members/a-list.svg" alt="AList Member">
</span>
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--luxury-travel" src="./asset/img/members/luxury_travel_logo-400x144.png" alt="Luxury Travel Member">
</span>
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--condenast" src="./asset/img/members/Condé_Nast_logo.svg" alt="Conde Nast Member">
</span>
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--thenewyorktimes" src="./asset/img/members/The-New-York-Times-logo-white-1.svg" alt="The New York Times Member">
</span>
<span class="content-heading__member">
<img class="content-heading__member-logo content-heading__member--ustravel" src="./asset/img/members/US-TRAVELSPECIALISTS-2021-SEAL-with-wm-01.svg" alt="US Travel Special list Member">
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="content-intro">
<div class="grid wide">
<div class="row mobile-tablet-flex-reverse">
<div class="col l-6 m-12 s-12">
<img src="./asset/img/content/bryan-walker-unsplash-768x960.jpg" alt="" class="content-intro__main-img">
</div>
<div class="col l-6 m-12 s-12">
<div class="content-intro__group">
<h3 class="content-section__heading content-intro__heading">
Magical memories,
<br>
Bespoke experiences
</h3>
<p class="content-section__disc content-intro__disc">
Once you have travelled the voyage never ends. Natalie & Charlie will open a world of wonders and create magical memories that will stay with you far beyond your travels.
<br>
<br>
Diverge from the typical tourist destinations in favour of unique, authentic experiences. Experiences designed in the most inspiring surroundings that will be yours, and yours only. Journeys that create memorable moments and Natalie & Charlie’s bespoke itineraries will make this happen. The wonders of the world are within your reach.
</p>
<a href="#" class="link-to">Meet our team</a>
<div class="content-intro__secondary hide-on-mobile-tablet">
<img src="./asset/img/content/mylon-ollila-unsplash-768x508.jpg" alt="" class="content-intro__secondary-img">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="content-exp">
<div class="grid wide">
<div class="row">
<div class="col l-6 m-12 s-12">
<h3 class="content-section__heading content-exp__heading">
Tailor Made Journeys
</h3>
</div>
<div class="col l-6 m-12 s-12">
<div class="content-exp__group">
<p class="content-section__disc content-exp__disc">
N&C design itineraries for our clients that others simply cannot, whether around a theme or a private experience. Our team of highly experienced consultants listen, understand and then create a tailor-made journey for you. We believe that travel should not only enrich your perception, understanding, and appreciation of the World, but that it should also allow you to support the local communities you visit. We enable you to explore with purpose, enthusiasm, and a new-found appreciation for the art of travel. Experience diverse cultures; immerse yourself in authentic experiences; take back the moment and reconnect with a joyous attitude towards life.
</p>
<a href="#" class="link-to">Our experiences</a>
</div>
</div>
</div>
</div>
<div class="content-exp-container">
<div class="content-exp-slide__control">
<div class="btn-primary content-exp-slide__btn swiper-button-next-exp">
<i class="btn-primary__icon ti-angle-right"></i>
</div>
<div class="btn-primary content-exp-slide__btn swiper-button-prev-exp">
<i class="btn-primary__icon ti-angle-left"></i>
</div>
</div>
<div class="grid wide">
<div class="row">
<div class="col l-12 m-12 s-12 ">
<div class="content-exp-slide__group">
<div class="content-exp-slide__slider swiper-exp">
<div class="swiper-wrapper">
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/jamie-haughton.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Strange Creatures of Madagascar & South Africa
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/okonjima_sunset-2000x1333.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Enchanting Namibia
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/rsz_irish_ruins_wow_.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Gay Ireland
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/sean-unsplash-2000x1330.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Wild Romance in Madagascar
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/rsz-unsplash.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Flavours of Scotland
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/istock.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Gorillas in the Mist in Rwanda
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/magda-v.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Quintessential England: From London to the Cotswolds
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="content-exp-slide__item swiper-slide">
<a href="#" class="content-exp-slide__item-link">
<img src="./asset/img/content/linmiao-xu.jpg" alt="" class="content-exp-slide__img">
<span class="content-exp-slide__item-infor">
<h5 class="content-exp-slide__text">
Iceland Westfjords – Self-drive adventure
</h5>
</span>
<div class="gradient-overlay"></div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="content-destination">
<div class="grid wide">
<div class="content-destination__content">
<div class="row">
<div class="col l-12 m-12 s-12">
<h3 class="content-section__heading content-destination__heading">
Luxury Destinations
</h3>
<p class="content-section__disc content-destination__disc">
Let Natalie & Charlie open up a world of wonders and create magical memories that will stay with you far beyond your travels. Whatever your travel preference may be, whether you are looking for a cultural city break, a child friendly family holiday, unlimited adventure, a romantic getaway or just to escape and uncover, we are here to create a seamless experience while handcrafting your bespoke journey.
</p>
</div>
</div>
</div>
</div>
<div class="grid wide">
<div class="row s-gutters">
<div class="col l-6 m-6 s-6">
<a class="content-destination__card">
<img src="./asset/img/content/Cliffs-of-Moher.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Ireland</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-6 m-6 s-6">
<a class="content-destination__card">
<img src="./asset/img/content/connor-mollison.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">UK</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-4 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/jack-ward.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Classic Europe</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-4 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/rsz_loisaba_tented_camp.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Africa</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-4 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/ryk-porras.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">The Americas</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-3 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/sorasak-_UIN-pFfJ7c-unsplash-3.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Asia</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-3 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/lieselot-dalle.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Exotic Islands</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-3 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/hans-jurgen-mager.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Polar Regions</h5>
<div class="gradient-overlay"></div>
</a>
</div>
<div class="col l-3 m-6 s-6">
<a href="#" class="content-destination__card">
<img src="./asset/img/content/ian-badenhorst.jpg" alt="" class="content-destination__img">
<h5 class="content-destination__card-heading">Oceania</h5>
<div class="gradient-overlay"></div>
</a>
</div>
</div>
</div>
</section>
<section class="content-about">
<div class="grid wide">
<div class="row no-gutters">
<div class="col l-6 m-0 s-0 relative">
<div class="content-about__left-img hide-on-mobile-tablet">
<img src="./asset/img/content/about_square_bigger@2x.jpg" alt="" class="content-about__main-img">
</div>
<div class="content-about__right-img hide-on-mobile-tablet">
<img src="./asset/img/content/about_square_smaller@2x.jpg" alt="" class="content-about__secondary-img">
</div>
</div>
<div class="col l-6 m-12 s-12">
<span class="content-about__sub-heading">Made to measure</span>
<h3 class="content-section__heading content-about__heading">
We are Experience
<br>
Designers
</h3>
<div class="content-about__right">
<p class="content-section__disc content-about__disc">
Our team of highly experienced travel designers will guide you from beginning to end as you embark on a tailor-made journey of distinction, enjoying truly exclusive and authentic cultural experiences. We can fulfil your bucket-list dreams.
</p>
<a href="#" class="link-to">Speak to us</a>
</div>
</div>
</div>
</div>
</section>
<section class="content-news">
<div class="content-news__container">
<div class="grid wide">
<div class="content-news__heading">
<h3 class="content-section__heading">News & Press</h3>
<a href="#" class="link-to hide-on-mobile">View All</a>
</div>
<div class="row sm-gutter">
<div class="col l-4 m-6 s-12">
<a href="#" class="content-news__item">
<div class="content-news__img-box">
<img src="./asset/img/content/8-min-2000x1333.jpg" alt="" class="content-news__img">
</div>
<div class="content-news__info">
<span class="content-news__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" class="">
<g id="external-link" transform="translate(-2 -2)">
<path id="Path_948" data-name="Path 948" d="M18,14v5c0,2.036.02,2-2,2H5c-2.1,0-2,.08-2-2V8c0-2.136-.036-2,2-2h5m5-3h6V9M10,14,20.2,3.8" fill="none" stroke="#613842" stroke-linecap="square" stroke-width="2" fill-rule="evenodd"></path>
</g>
</svg>
</span>
<div class="content-news__cat">N&C Press</div>
<div class="content-news__title">How to Plan the Perfect European Villa Vacation (Video)</div>
</div>
</a>
</div>
<div class="col l-4 m-6 s-12">
<a href="#" class="content-news__item">
<div class="content-news__img-box">
<img src="./asset/img/content/7.jpg" alt="" class="content-news__img">
</div>
<div class="content-news__info">
<span class="content-news__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" class="">
<g id="external-link" transform="translate(-2 -2)">
<path id="Path_948" data-name="Path 948" d="M18,14v5c0,2.036.02,2-2,2H5c-2.1,0-2,.08-2-2V8c0-2.136-.036-2,2-2h5m5-3h6V9M10,14,20.2,3.8" fill="none" stroke="#613842" stroke-linecap="square" stroke-width="2" fill-rule="evenodd"></path>
</g>
</svg>
</span>
<div class="content-news__cat">N&C Press</div>
<div class="content-news__title">Seven Great Irish Escapes to Rent</div>
</div>
</a>
</div>
<div class="col l-4 m-6 s-12">
<a href="#" class="content-news__item">
<div class="content-news__img-box">
<img src="./asset/img/content/6-min-2000x1333.jpg" alt="" class="content-news__img">
</div>
<div class="content-news__info">
<span class="content-news__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" class="">
<g id="external-link" transform="translate(-2 -2)">
<path id="Path_948" data-name="Path 948" d="M18,14v5c0,2.036.02,2-2,2H5c-2.1,0-2,.08-2-2V8c0-2.136-.036-2,2-2h5m5-3h6V9M10,14,20.2,3.8" fill="none" stroke="#613842" stroke-linecap="square" stroke-width="2" fill-rule="evenodd"></path>
</g>
</svg>
</span>
<div class="content-news__cat">N&C Press</div>
<div class="content-news__title">With Covid-19 hitting face-to-face interactions, selling the new normal</div>
</div>
</a>
</div>
<div class="col l-0 m-0 s-12">
<a href="#" class="link-to hide">View All</a>
</div>
</div>
<div class="gradient-overlay content-news__overlay"></div>
</div>
</div>
</section>
<section class="content-says">
<div class="grid wide">
<div class="row">
<div class="col l-12 m-12 s-12">
<div class="content-says-container">
<h3 class="content-section__heading content-says__heading">
What our clients say
</h3>
<div class="content-says-group">
<div class="content-says-slide swiper-says">
<div class="swiper-wrapper">
<div class="content-says-slide__item swiper-slide">
<div class="content-section__disc content-says-slide__item-text">
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(0 69)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
<p class="content-says-slide__item-disc">
Natalie and Charlie provided drivers who were both charming and knowledgeable hosts and great drivers on the (very) narrow roads of Ireland and Scotland. Our city accommodations were wonderful, and some of the countryside hotels were truly outstanding. Thanks to them we gained a true understanding of the culture and sites of Ireland and Scotland.
</p>
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(35 20) rotate(180)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
</div>
<span class="content-says__item-client">Candy</span>
</div>
<div class="content-says-slide__item swiper-slide">
<div class="content-section__disc content-says-slide__item-text">
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(0 69)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
<p class="content-says-slide__item-disc">
This company is top notch! Our check in to all the hotels, as well as to the various venues we attended was like clockwork. Our guide was one of the most professional guides in the business and exceeded our expectations. She was extremely knowledgeable, courteous, prompt, and a pleasure to be with each day. Our friends asked us what was our favourite part of our trip, and we truthfully said, "All of it." This is due in part to being in such capable hands. We highly recommend this company.
</p>
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(35 20) rotate(180)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
</div>
<span class="content-says__item-client">Elaine</span>
</div>
<div class="content-says-slide__item swiper-slide">
<div class="content-section__disc content-says-slide__item-text">
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(0 69)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
<p class="content-says-slide__item-disc">
It was a wonderful trip, we all loved Scotland, and Fiona! Thank you for everything, it was perfectly planned, and timed!!
</p>
<span class="content-says-slide__item-quote">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="89" viewBox="0 0 35 89" class="">
<text id="_" data-name="“" transform="translate(35 20) rotate(180)" fill="#613842" font-size="89" font-family="Helvetica-Light, Helvetica" font-weight="300"><tspan x="0" y="0">“</tspan></text>
</svg>
</span>
</div>
<span class="content-says__item-client">Lloyd Family</span>
</div>
</div>
</div>
</div>
<div class="content-says__control">
<div class="btn-primary content-says-slide__btn swiper-button-prev-says">
<i class="btn-primary__icon ti-angle-left"></i>
</div>
<div class="btn-primary content-says-slide__btn swiper-button-next-says">
<i class="btn-primary__icon ti-angle-right"></i>
</div>
</div>
</div>
<img src="./asset/img/content/home_bottom_image.jpg" alt="" class="content-says__background-img hide-on-mobile">
</div>
</div>
</div>
</section>
<section class="content-signup">
<div class="content-signup__content">
Get the latest from Natalie & Charlie:
<span class="content-signup__content-underline">Sign up to our Newsletter</span>
</div>
</section>
</div>
<footer class="footer">
<section class="footer-top">
<div class="grid wide">
<div class="row">
<div class="col l-12 m-12 s-12">
<div class="footer-top-slide">
<div class="footer-top-slide__prev swiper-button-prev-footer">
<svg xmlns="http://www.w3.org/2000/svg" width="10.856" height="19.024" viewBox="0 0 10.856 19.024" class="">
<g id="Group_532" data-name="Group 532" transform="translate(10.325 18.478) rotate(180)">
<g id="Group_16" data-name="Group 16" transform="translate(9.248 17.947) rotate(180)">
<path id="Path_13" data-name="Path 13" d="M9.248,0,0,9.248l9.248,8.7" transform="translate(0)" fill="none" stroke="#fff" stroke-width="1.5"></path>
</g>
</g>
</svg>
</div>
<div class="footer-top-slide-group">
<div class="footer-top-slide__slider swiper-footer">
<div class="swiper-wrapper">
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/virtuoso_logo_footer.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/select_logo.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/itaa_logo.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/a-list.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/green_award_logo.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/about_logo_list_5_2x.svg" alt="" class="footer-top-slide__img">
</div>
<div class="footer-top-slide__slide-item swiper-slide">
<img src="./asset/img/members/Founding-member-badge-01-1-1.png" alt="" class="footer-top-slide__img">
</div>
</div>
</div>
</div>
<div class="footer-top-slide__next swiper-button-next-footer">
<svg xmlns="http://www.w3.org/2000/svg" width="10.856" height="19.024" viewBox="0 0 10.856 19.024" class="">
<g id="Group_533" data-name="Group 533" transform="translate(0.531 0.546)">
<g id="Group_16" data-name="Group 16" transform="translate(9.248 17.947) rotate(180)">
<path id="Path_13" data-name="Path 13" d="M9.248,0,0,9.248l9.248,8.7" transform="translate(0)" fill="none" stroke="#fff" stroke-width="1.5"></path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="footer-main">
<div class="grid wide">
<div class="row">
<div class="col l-9 ml-9 m-0 s-0">
<div class="footer-nav">
<div class="footer-nav-item">
<h4 class="footer-nav-item__heading">Tailored Experiences</h4>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Adventure</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Celebration</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Culinary</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Family</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Ultraluxe</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Voyages</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Speciality</a>
</li>
</ul>
</div>
<div class="footer-nav-item">
<h4 class="footer-nav-item__heading">Destinations</h4>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Ireland</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">UK</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Africa</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Classic Europe</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Asia</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">The Americas</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Exotic Islands</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Polar Regions</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Oceania</a>
</li>
</ul>
</div>
<div class="footer-nav-item">
<h4 class="footer-nav-item__heading">Private rentals</h4>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Castles</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Estates</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Villas & Houses</a>
</li>
</ul>
</div>
<div class="footer-nav-item">
<h4 class="footer-nav-item__heading">News & Press</h4>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">All</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Press</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">News</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Newsletter</a>
</li>
</ul>
</div>
<div class="footer-nav-item">
<h4 class="footer-nav-item__heading">About Us</h4>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Why choose N&C</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Our Team</a>
</li>
<li class="footer-nav-item-list__item">
<a href="#" class="footer-nav-item-list__item-link">Work with us</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col l-3 ml-3 m-12 s-12">
<div class="footer-brand-info">
<div class="footer-brand-info__logo">
<svg xmlns="http://www.w3.org/2000/svg" width="947.269" height="377.662" viewBox="0 0 947.269 377.662" class="">
<g id="Group_3" data-name="Group 3" transform="translate(-187.102 -194.908)">
<g id="Group_2" data-name="Group 2">
<path id="Path_3" data-name="Path 3" d="M430.02,451.951a17.843,17.843,0,0,0-12.232-4.277,19.964,19.964,0,0,0-8.957,1.936,6.417,6.417,0,0,0-3.918,6.139,5.257,5.257,0,0,0,1.874,4.339,6.65,6.65,0,0,0,4.327,1.515,6.9,6.9,0,0,0,4.624-1.635,5.158,5.158,0,0,0,1.931-4.094,6.355,6.355,0,0,0-.877-3.1,5.242,5.242,0,0,0-2.4-2.284c.388-.706,1.561-1.053,3.508-1.053a14.206,14.206,0,0,1,9.544,3.456,10.614,10.614,0,0,1,4.037,8.365,9.152,9.152,0,0,1-2.226,5.968q-2.221,2.7-7.841,5.267a82.335,82.335,0,0,1-8.542,3.286q-4.689,1.512-11.708,3.508l-8.314,2.46q-8.071,2.81-12.117,6.964a13.981,13.981,0,0,0-4.038,10.125q0,6.79,4.391,10.244a15.933,15.933,0,0,0,10.13,3.457,17.824,17.824,0,0,0,9.6-2.694,8.311,8.311,0,0,0,4.334-7.38,6.328,6.328,0,0,0-1.7-4.567,6,6,0,0,0-4.51-1.754,6.639,6.639,0,0,0-4.624,1.64,5.705,5.705,0,0,0-1.817,4.448,5.083,5.083,0,0,0,1.64,4.094A8.455,8.455,0,0,0,398,508.194c-.233.781-1.127,1.413-2.688,1.88a15.216,15.216,0,0,1-4.327.7,12.027,12.027,0,0,1-7.323-2.58,8.063,8.063,0,0,1-3.451-6.782A7.612,7.612,0,0,1,382.9,495.5a24.57,24.57,0,0,1,7.613-4.271q4.33-1.64,13.462-4.453,6.909,2.7,9.367,7.494a20.661,20.661,0,0,1,2.454,9.481,16.861,16.861,0,0,1-4.151,11.3,26.7,26.7,0,0,1-11.241,7.494,43.884,43.884,0,0,1-15.4,2.631,41.17,41.17,0,0,1-16.036-2.984,25.523,25.523,0,0,1-11.241-8.718,22.109,22.109,0,0,1-4-11.19c-.063-.78-.1-1.577-.1-2.392q0-14.631,15.221-19.2c1.794.786,3.354,1.406,4.681,1.873a11.481,11.481,0,0,0,3.866.712,4.269,4.269,0,0,0,2.4-.592,1.853,1.853,0,0,0,.877-1.64,2.195,2.195,0,0,0-1.293-1.993,7.053,7.053,0,0,0-3.388-.7,43.69,43.69,0,0,0-7.26.7,17.462,17.462,0,0,1-5.968-13.337q0-6.56,3.747-10.244a13.4,13.4,0,0,1,9.828-3.69,13.975,13.975,0,0,1,5.917,1.116,5.37,5.37,0,0,1,2.984,2.625,6.805,6.805,0,0,0-4.453,2.056,6.083,6.083,0,0,0-1.754,4.39,5.366,5.366,0,0,0,1.816,4.266,6.283,6.283,0,0,0,4.277,1.588,6.8,6.8,0,0,0,4.561-1.7,5.631,5.631,0,0,0,1.993-4.51,9.137,9.137,0,0,0-1.116-4.152,12.738,12.738,0,0,0-3.217-3.923q-4.339-3.51-12.175-3.508a25.685,25.685,0,0,0-10.711,2.05,15.961,15.961,0,0,0-6.788,5.381,12.472,12.472,0,0,0-2.289,7.2,14.1,14.1,0,0,0,3.046,8.542,20.827,20.827,0,0,0,8.781,6.56,37.833,37.833,0,0,0-9.128,3.8,27.048,27.048,0,0,0-8.724,8.074,21.874,21.874,0,0,0-3.8,13.058,24.326,24.326,0,0,0,5.148,15.392A32.911,32.911,0,0,0,364.58,530.26a49.322,49.322,0,0,0,18.911,3.571,42.945,42.945,0,0,0,18.957-3.918,30.72,30.72,0,0,0,12.413-10.358,24.114,24.114,0,0,0,4.328-13.7,22.837,22.837,0,0,0-3.1-11.879,19.939,19.939,0,0,0-9.657-8.017q12.872-3.981,17.322-6.088a21.465,21.465,0,0,0,8.08-6.617,16.1,16.1,0,0,0,3.041-9.777Q434.877,456.225,430.02,451.951Z" fill="#fff"></path>
<path id="Path_4" data-name="Path 4" d="M526.194,390.13c-11.139-13.6-25.383-23.437-47.512-29.849-.553-.143-2.178-.55-3.628-.9-2.739-.649-3.316-.825-6.215-1.389-4.458-1.054-9.133-1.976-14.059-2.773l-.2-.017v-.536q38.257-11.607,55.953-33.893a78.969,78.969,0,0,0,17.676-50.39q0-34.4-26.394-55.23c-17.618-13.883-42.161-20.244-75.1-20.244-7.756,0-2.505.057-8.61,0l-65.417.376L231.524,427.343c-15.745,24.276-24.412,41.7-44.422,41.7v9.589c9.584-.962,23.33-.325,37.709-.325,16.365,0,31.23.052,47.041.052,7.822,0,10.615,5.244,13.792,9.6,15.694,21.531,29.554,57.588,72.781,74.085v.017c15.568,6.9,43.978,12,64.671,10.113,36.575-3.325,54.769-11,71.488-19.987s30.983-26.36,39.975-42.492q13.461-24.182,13.467-55.526Q548.026,416.792,526.194,390.13ZM391.15,245.19q0-17.433,2.9-26.16t10.421-12.124q7.508-3.374,22.532-3.388c23.889,0,31.132,7.323,39.366,17.79,9.9,12.59,15.335,30.169,15.335,54.4q0,35.857-15.745,57.406c-10.495,14.372-15.882,21.547-42.349,21.547h-2.4v-.005H391.15Zm-36.438-19.2V354.66H285.758Zm55.742,330.487c-.654,0-1.412.006-2.243.012-90.6-4.186-81.225-83.161-75.656-88.731-7.289.023-44.678.188-66.722.188-5.726,0-7.952-2.4-11.526-5.207-6.443-5.07-7.767-11.91-7.767-21.813,0-12.755,5.057-21.992,13.286-37.873l21.485-40.089h73.4v80.143c15.881-6.042,22.584-6.212,36.438-4.664V363.463h29.258q43.2,0,62.941,22.544t19.748,65.97C503.1,516.114,468.361,556.481,410.454,556.481Z" fill="#fff"></path>
</g>
</g>
</svg>
</div>
<ul class="footer-nav-item-list">
<li class="footer-nav-item-list__item">
<a href="mailto:sales@natalieandcharlie.com" class="footer-nav-item-list__item-link">sales@natalieandcharlie.com</a>
</li>
<li class="footer-nav-item-list__item">
<a href="tel:1-800-894-5712" class="footer-nav-item-list__item-link">US Toll Free: 1-800-894-5712</a>
</li>
<li class="footer-nav-item-list__item">
<a href="tel:1-800-764-042" class="footer-nav-item-list__item-link">Australia Toll Free:1-800-764-042</a>
</li>
<li class="footer-nav-item-list__item">
<a href="tel:+353-1-288-9355" class="footer-nav-item-list__item-link">Ireland: +353-1-288-9355</a>
</li>
</ul>
<div class="footer-brand-info__social">
<a href="#" class="footer-brand-info__social-link">
<i class="footer-brand-info__social-icon ti-facebook"></i>
</a>
<a href="#" class="footer-brand-info__social-link">
<i class="footer-brand-info__social-icon ti-twitter-alt"></i>
</a>
<a href="#" class="footer-brand-info__social-link">
<i class="footer-brand-info__social-icon ti-instagram"></i>
</a>
<a href="#" class="footer-brand-info__social-link">
<i class="footer-brand-info__social-icon ti-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="footer-bottom">
<div class="grid wide">
<div class="row">
<div class="footer-bottom-container">
<div class="footer-bottom-licence">
<img src="./asset/img/brand/logo/licenced_footer.svg" alt="" class="footer-bottom-licence__img">
<span class="footer-bottom-licence__text">Licenced by the Commission for Aviation Regulation, TA 0792</span>
</div>
<ul class="footer-bottom-legal">
<li class="footer-bottom-legal__item">
<a href="#" class="footer-bottom-legal__item-link">Terms & Conditions</a>
</li>
<li class="footer-bottom-legal__item">
<a href="#" class="footer-bottom-legal__item-link">Sustainability Policy</a>
</li>
<li class="footer-bottom-legal__item">
<a href="#" class="footer-bottom-legal__item-link">Privacy Policy</a>
</li>
<li class="footer-bottom-legal__item">
<p class="footer-bottom-legal__item-link">Copyright ©2022</p>
</li>
<li class="footer-bottom-legal__item">
<p class="footer-bottom-legal__item-link">Site by</p>
<a href="https://www.facebook.com/profile.php?id=100045406261491" class="footer-bottom-legal__item-link">LTP</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</footer>
</main>
<script src="./asset/js/main.js"></script>
<script src="./asset/js/swiper-bundle.min.js"></script>
<script src="./asset/js/swiper-bundle.esm.browser.min.js"></script>
<script src="./asset/lib/intl-tel-input/build/js/intlTelInput.js"></script>
<script>
var input = document.querySelector("#phone");
window.intlTelInput(input, {
utilsScript: "build/js/utils.js",
});
</script>
<script type="module">
import Swiper from 'https://unpkg.com/swiper@7/swiper-bundle.esm.browser.min.js'
const swiperExp = new Swiper('.swiper-exp', {
// Optional parameters