-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1119 lines (1078 loc) · 60.1 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, shrink-to-fit=no">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css"
type="text/css" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon" />
<title>Holiday Planner</title>
</head>
<body>
<!--SPINNER-LOADER-->
<div id="spinner-overlay-wrapper">
<div id="globe-spinner">
<img src="assets/images/globe.gif" alt="Globe loader">
<h2 class="loading-heading">Loading...</h2>
</div>
</div>
<!--BACK TO TOP BUTTON-->
<div class="btt-button shadow-sm border border-black" id="back-to-top-btn">
<a class="btt-link d-flex h-100" title="Back to Top">
<i class="fas fa-arrow-up text-black mx-auto my-auto"></i>
</a>
</div>
<header>
<!--NAVBAR-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top scrolling-navbar" id="navbar">
<!-- Logo -->
<a class="navbar-brand" id="logo" href="#">
HolidayPlanner<i class="fas fa-globe-europe"></i>
</a>
<!-- Collapse button-->
<button class="navbar-toggler collapsed"
type="button" data-toggle="collapse" data-target="#main-nav"
aria-controls="main-nav" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="main-nav">
<ul class="navbar-nav text-center ml-auto">
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#about-section-wrapper">
<i class="fas fa-question mr-2"></i> How it works</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#map-section">
<i class="fas fa-map-marked-alt mr-2"></i>Map</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#travel-packages-section">
<i class="fas fa-suitcase-rolling mr-2"></i>Travel packages</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#contact-section">
<i class="far fa-envelope mr-2"></i>Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<!--HERO SECTION-->
<section class="hero-container container-fluid">
<div class="hero-heading-wrapper text-center">
<h1 class="hero-heading">Holiday Planner</h1>
<p class="hero-paragraph">Find your best holiday destination</p>
<div class="text-center">
<a href="#map-section" class="button btn-yellow uppercase" id="submitButton">
Search now
</a>
</div>
</div>
</section>
<!--HOW IT WORKS / ABOUT SECTION-->
<section class="container" id="about-section-wrapper">
<div class=" d-flex justify-content-center">
<div class="about-heading-wrapper text-center mb-md-5">
<h2 class="uppercase primary-heading mb-0">
<i class="fas fa-question mr-2"></i> How it works
</h2>
</div>
</div>
<!--Instructions for using the website-->
<div class="row mb-5 about-heading-mobile-center">
<div class="col-12 mb-5 col-lg-6 planning-images-container">
<img src="assets/images/planning.jpg"
alt="PLanning travel image"
class="img-fluid d-none d-md-block planning-image">
<img src="assets/images/planning2.jpg"
alt="PLanning travel image"
class="img-fluid d-none d-md-block planning-image planning-image-2">
</div>
<div class="col-12 col-lg-6 d-flex align-items-center flex-column">
<h3 class="about-heading">
Plan it yourself
</h3>
<img src="assets/images/planning2.jpg"
alt="PLanning travel image"
class="img-fluid d-block my-3 d-md-none about-mobile-only-image">
<p class="about-paragraphs shadow-lg p-4 mb-5 rounded-lg">
If you prefer planning your own journey by yourself,
go to the Map section, where you can find accommodation, places to eat, tourist attractions and stores.<br/>
→ First, simply input the city you're travelling to into the search box.<br/>
→ Then, select a category you are interested in:<br/>
Hotels, Restaurants, Attractions or Shopping by clicking the
corresponding button. <br/>
→ Click on the marker to get detailed information about the place and useful links.</p>
<i class="fas fa-plane-departure text-center d-block d-lg-none"></i>
</div>
</div>
<div class="row mb-md-5 about-heading-mobile-center">
<div class="col-12 col-lg-6 d-flex align-items-center flex-column">
<h3 class="about-heading">
Travel with us
</h3>
<img src="assets/images/travelwithus.jpg"
alt="Traveller image"
class="img-fluid d-block my-3 d-md-none about-mobile-only-image">
<p class="about-paragraphs shadow-lg p-4 mb-5 rounded-lg text-center">
Love more comfort and don't want to spend time for planning? <br/>
We have done it for you!<br/>
Have a look at our regularly updated Travel packages,<br/>
book it now by filling the Contact form<br/>
and get unforgetable experience!
</p>
</div>
<div class="col-12 mb-md-5 col-lg-6 planning-images-container">
<img src="assets/images/travelwithus2.jpg"
alt="Traveller image"
class="img-fluid d-none d-md-block travelwithus-image">
<img src="assets/images/travelwithus.jpg"
alt="Traveller image"
class="img-fluid d-none d-md-block travelwithus-image travelwithus-image2">
</div>
</div>
<!--BENIFITS-->
<div class="row mt-2 mt-md-5 pt-4">
<div class="col-12 text-center mb-3">
<h3 class="uppercase">Our benifits</h3>
</div>
</div>
<div class="row text-center mt-4 px-lg-5">
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Adventure</h5>
<i class="fas fa-hiking icon-about"></i>
<p class="benefit-paragraph">
We design not just a travel, but a real adventure
for the bravest and the most curious ones! <br/>
Are you ready for it? Let's do it together!
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Comfort</h5>
<i class="fas fa-bed icon-about"></i>
<p class="benefit-paragraph">
Dream about relaxing holidays in 5-star hotels?<br/>
Or love exploring nature sleeping in a tent? <br/>
We will organise either!
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Guides</h5>
<i class="fas fa-user-check icon-about"></i>
<p class="benefit-paragraph">
You will be accompanied by our guides who know
their regions throughout, speak local languages
and take care of all your needs and preferences.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Transfer</h5>
<i class="fas fa-car icon-about"></i>
<p class="benefit-paragraph">
You don't need to think about transport!
From planes and cars to camels and donkeys
- everything will be organised
at the very top level.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Price</h5>
<i class="fas fa-euro-sign icon-about"></i>
<p class="benefit-paragraph">
HolidayPlanner is created by people passionate about travel.
All packages are carefully designed to reduce
your spending but increase enjoyment.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-3 shadow p-3 rounded">
<div class="card card-benefit mx-2">
<div class="card-body">
<h5 class="uppercase">Custom-design</h5>
<i class="fas fa-hand-holding-heart icon-about"></i>
<p class="benefit-paragraph">
Even at the most touristy places we will bring
you off beaten path based on our personal travel experience.
We always choose the best for you!
</p>
</div>
</div>
</div>
</div>
</section>
<!--MAP SEARCH SECTION-->
<section class="container" id="map-section">
<div class="row mb-4">
<div class="col-12 px-0 text-center mb-3">
<h2 class="uppercase map-heading">
<i class="fas fa-map-marked-alt mr-3"></i>Map search
</h2>
<div id="locationField" class="my-5">
<h5 class="d-flex justify-content-center mb-4">
<span class="number-circle">1</span>
Enter a city you're going to
</h5>
<input id="searchPlace" type="text" placeholder="Enter a city">
</div>
<div class="d-flex flex-column align-items-center">
<h5 class="d-flex mb-4">
<span class="number-circle">2</span>
Select a category
</h5>
<div class="btn-group" id="filter-buttons">
<button type="button" id="accommodation" class="btn btn-main py-3 border border-dark">
<i class="fas fa-bed"></i> <br/> Hotels
</button>
<button type="button" id="restaurant" class="btn btn-main py-3 border border-dark">
<i class="fas fa-utensils"></i> <br/> Restaurants
</button>
<button type="button" id="attraction" class="btn btn-main py-3 border border-dark">
<i class="fas fa-landmark"></i><br/>Attractions
</button>
<button type="button" id="store" class="btn btn-main py-3 border border-dark">
<i class="fas fa-shopping-cart"></i><br/>Shopping
</button>
</div>
</div>
<div class="col-12 mt-5">
<div id="map"></div>
</div>
</div>
</div>
</section>
<!--TRAVEL PACKAGES SECTION-->
<section id="travel-packages-section" class="container">
<h2 class="uppercase packages-heading">
<i class="fas fa-suitcase-rolling mr-2"></i>Travel Packages
</h2>
<div class="text-center my-4">
<p class="travel-packages-paragraph">Have a look at our regularly updated custom Travel packages, choose one and book it through the
<a href="" class="contact-link">Contact form</a>.<br/>
Our manager will contact you soon to discuss details and proceed the booking.<br/>
Experience the best holidays in your life with us!
</p>
</div>
<div class="row mt-5">
<!--Morocco Desert card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="Morocco">
<img src="assets/images/morocco.jpg"
class="card-img-top"
alt="Sahara">
</div>
<div class="content-img">
<h6>7 days</h6>
<p class="bottom-right">€ 699 pps</p>
</div>
<!--Modal Morocco carousel-->
<div class="modal fade text-center" id="MoroccoModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsMorocco" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/morocco.jpg"
class="d-block img-fluid" alt="Sahara">
</div>
<div class="carousel-item">
<img src="assets/images/marrakesh.jpg"
class="d-block img-fluid" alt="Marrakesh">
</div>
<div class="carousel-item">
<img src="assets/images/chefchaouen.jpg"
class="d-block img-fluid" alt="Chefchaouen">
</div>
</div>
<a class="carousel-control-prev"
href="#carouselControlsMorocco"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsMorocco"
role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="pr-4 heading-card-packages">
Explore Morocco
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
7 days from the endless Atlantic Ocean to hot sands of Sahara.
Agadir, busy Marrakech, beauty of plains and desert
at the east of the county, friendly monkeys, ancient Fes,
blue Chefchaouen and many more.
Comfort drives in luxury van, camels, donkeys.
Stay in beautiful riads and under the stars.
</p>
</div>
</div>
</div>
</div>
<!--Morocco mountains card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="MoroccoMountain">
<img src="assets/images/morocco_mountains.jpg"
class="card-img-top"
alt="Atlas mountains">
</div>
<div class="content-img">
<h6>5 days</h6>
<p class="bottom-right">€ 550 pps</p>
</div>
<!--Modal Morocco mountains carousel-->
<div class="modal fade text-center" id="MoroccoMountainsModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsMoroccoMountain" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/morocco_mountains.jpg"
class="d-block img-fluid"
alt="Atlas mountains">
</div>
<div class="carousel-item">
<img src="assets/images/Toubkal.jpg"
class="d-block img-fluid"
alt="Toubkal mountain">
</div>
<div class="carousel-item">
<img src="assets/images/Marrakesh2.jpg"
class="d-block img-fluid"
alt="Marrakesh view">
</div>
</div>
<a class="carousel-control-prev"
href="#carouselControlsMoroccoMountain"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next"
href="#carouselControlsMoroccoMountain" role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Moroccan mountains
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Explore Atlas Mountains by trekking. 5 days on the road with
the most experienced hiking guides in the area.
Valleys, traditional villages and mountains.
Climb the 4167m mount Toubkal.
All the trekking and camping gear provided.
After your climb, catch breath in the hot and bright Marrakesh.
</p>
</div>
</div>
</div>
</div>
<!--Sicily card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="Sicily">
<img src="assets/images/sicily.jpg"
class="card-img-top"
alt="Palermo, cathedral">
</div>
<div class="content-img">
<h6>7 days</h6>
<p class="bottom-right">€ 500 pps</p>
</div>
<!--Modal Sicily carousel-->
<div class="modal fade text-center" id="SicilyModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsSicily"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/sicily.jpg"
class="d-block img-fluid"
alt="Palermo, cathedral">
</div>
<div class="carousel-item">
<img src="assets/images/sicily2.jpg"
class="d-block img-fluid"
alt="Catania, beach">
</div>
<div class="carousel-item">
<img src="assets/images/etna.jpg"
class="d-block img-fluid"
alt="Etna Volcano">
</div>
</div>
<a class="carousel-control-prev"
href="#carouselControlsSicily"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsSicily"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Sicily, Italy
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
7 days on this spectacular island.
Arrive at Palermo and admire this city and its suburbs
that include clear water beaches, Byzantine churches and hills.
Transfer to the second city of Catania that is a baroque masterpiece
and a busy market. Climb Europe's most active volcano - Etna.
Enjoy multiple baroque towns and tranquil warm sea.
</p>
</div>
</div>
</div>
</div>
<!--Russia, North card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="russianNorth">
<img src="assets/images/russian_north.jpg"
class="card-img-top"
alt="Russian church, Kizhi">
</div>
<div class="content-img">
<h6>10 days</h6>
<p class="bottom-right">€ 800 pps</p>
</div>
<!--Modal Russia, North carousel-->
<div class="modal fade text-center" id="RussiaNorthModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsNorth"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/russian_north.jpg"
class="d-block img-fluid"
alt="Russian church, Kizhi">
</div>
<div class="carousel-item">
<img src="assets/images/solovki.jpg"
class="d-block img-fluid"
alt="Solovki islands">
</div>
<div class="carousel-item">
<img src="assets/images/saint-petersburg.jpg"
class="d-block img-fluid"
alt="Saint-Petersburg">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsNorth"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsNorth"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Russian North
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Arrive at St. Petersbourg and be amazed by the palaces,
parks and canals of the “Northern Venice”.
From there take a train to the Russian north
and visit sacred Solovki islands,
wooden churches of Onega regions, the northern port of Arkhangelsk.
Take a helicopter to tundra seeing worlds largest herds of reindeer.
</p>
</div>
</div>
</div>
</div>
<!--Russia, Transsiberian card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="russiaTranssiberian">
<img src="assets/images/transsib.jpg"
class="card-img-top"
alt="Transsiberian">
</div>
<div class="content-img">
<h6>8-12days</h6>
<p class="bottom-right">€ 769 pps</p>
</div>
<!--Modal Russia, Transsiberian carousel-->
<div class="modal fade text-center" id="russiaTranssiberianNorthModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsTranssib"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/transsib.jpg"
class="d-block img-fluid"
alt="Transsiberian">
</div>
<div class="carousel-item">
<img src="assets/images/baikal-lake.jpg"
class="d-block img-fluid"
alt="Baikal Lake">
</div>
<div class="carousel-item">
<img src="assets/images/vladivostok.jpg"
class="d-block img-fluid"
alt="Vladivostok">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsTranssib"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsTranssib"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Transsiberian, Russia
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Take the world’s longest train route from Moscow to Vladivostok.
You will make stops on route to explore Kazan, Ekaterinburg,
try fishing in the Western Siberia, Krasnoyarsk,
Lake Baikal and Olkhon island, Ulan-Ude
and Vladivostok. Route can be adjusted to your need
as well as number of days.
</p>
</div>
</div>
</div>
</div>
<!--Russia, Urals card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="russiaUrals">
<img src="assets/images/ural.jpg"
class="card-img-top"
alt="Ural mountains">
</div>
<div class="content-img">
<h6>5 days</h6>
<p class="bottom-right">€ 850 pps</p>
</div>
<!--Modal Russia, Urals carousel-->
<div class="modal fade text-center" id="russiaUralsModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsrussiaUrals"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/ural.jpg"
class="d-block img-fluid"
alt="Ural mountains">
</div>
<div class="carousel-item">
<img src="assets/images/ekaterinburg.jpg"
class="d-block img-fluid"
alt="Ekaterinburg">
</div>
<div class="carousel-item">
<img src="assets/images/reindeer.jpg"
class="d-block img-fluid"
alt="Reindeer">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsrussiaUrals"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsrussiaUrals"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Urals, Russia
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Arrive at Ekaterinburg – the industrial centre and city of crafts.
Go for trekking or scenic drive in the Middle Urals mountains.
Get to know traditions of Udmurts – people from Uralic language family,
go by train to Salekhard – city in Polar Urals
to see reindeer keepers and Stalin’s Dead Road build by GULAG prisoners.
Luxury vans, trains, ferries, fishing, trekking and many more.
</p>
</div>
</div>
</div>
</div>
<!--Ireland, Drinks card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="IrelandDrinks">
<img src="assets/images/guinness.jpg"
class="card-img-top"
alt="Guinness">
</div>
<div class="content-img">
<h6>4 days</h6>
<p class="bottom-right">€ 300 pps</p>
</div>
<!--Modal Ireland, Drinks carousel-->
<div class="modal fade text-center" id="IrelandDrinksModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsIrelandDrinks"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/guinness.jpg"
class="d-block img-fluid"
alt="Guinness">
</div>
<div class="carousel-item">
<img src="assets/images/pub.jpg"
class="d-block img-fluid"
alt="Irish Pub">
</div>
<div class="carousel-item">
<img src="assets/images/Smithwicks.jpg"
class="d-block img-fluid"
alt="Smithwicks">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsIrelandDrinks"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsIrelandDrinks"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Drinks in Ireland
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Come to Ireland to enjoy its craic and drinks.
You will visit multiple breweries along your way
including Guinness in Dublin. Smithwicks in Kilkenny and many more. Distilleries such as Teeling,
Tullamore Dew are included
too. While Irish alcohol manufactures are highlights
of this tour, you’ll be surrounded by surreal green fields,
castles, sheep and cliffs at all times.
</p>
</div>
</div>
</div>
</div>
<!--Ireland, Ocean card-->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="IrelandOcean">
<img src="assets/images/cliffs.jpg"
class="card-img-top"
alt="Cliffs of Moher">
</div>
<div class="content-img">
<h6>7 days</h6>
<p class="bottom-right">€ 700 pps</p>
</div>
<!--Modal Ireland, Ocean carousel-->
<div class="modal fade text-center" id="IrelandOceanModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsIrelandOcean"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/cliffs.jpg"
class="d-block img-fluid"
alt="Cliffs of Moher">
</div>
<div class="carousel-item">
<img src="assets/images/galway.jpg"
class="d-block img-fluid"
alt="Galway">
</div>
<div class="carousel-item">
<img src="assets/images/donegal.jpg"
class="d-block img-fluid"
alt="Donegal">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsIrelandOcean"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsIrelandOcean"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
The Ocean, Ireland
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
Follow the breath-taking Wild Atlantic Way.
It will bring you from the North in Donegal via busy
hub of Galway and world-famous Cliffs of Moher to Cork in the South.
There is a wonder hidden behind every turn of this
narrow road – beaches, cliffs, surfing, kayaking opportunities.
Discover pub culture as never before - traditional music,
story telling and welcome of Irish people.
</p>
</div>
</div>
</div>
</div>
<!--Greece, Crete card-->
<div class="col-12 col-md-6 offset-md-3 offset-lg-0 col-lg-4 mb-4">
<div class="card card-img">
<div class="img-container">
<div class="img-packages" id="Greece">
<img src="assets/images/crete.jpg"
class="card-img-top"
alt="Crete">
</div>
<div class="content-img">
<h6>6 days</h6>
<p class="bottom-right">€ 400 pps</p>
</div>
<!--Modal Greece, Crete carousel-->
<div class="modal fade text-center" id="GreeceModal">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div id="carouselControlsGreece"
class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/crete.jpg"
class="d-block img-fluid"
alt="Crete">
</div>
<div class="carousel-item">
<img src="assets/images/gramvousa.jpeg"
class="d-block img-fluid"
alt="Gramvousa island">
</div>
<div class="carousel-item">
<img src="assets/images/seafood.jpg"
class="d-block img-fluid"
alt="Seafood plate">
</div>
</div>
<a class="carousel-control-prev" href="#carouselControlsGreece"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselControlsGreece"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<h5 class="heading-card-packages">
Crete, Greece
</h5>
<button class="btn btn-yellow btn-readmore">Read more</button>
<div class="readmore-info">
<p class="pt-3 pb-lg-5">
6 days on this magical island will immerse you into the
atmosphere of ancient Greek myths.
Western and Eastern cultures are tied in a tight knot on Crete.
Arrive at Chania and enjoy local tranquil lifestyle,
bathing in the clean Mediterranean and tasting seafood.
Move over to Heraclion where legends about Minotaur are still alive.
Sail to a tiny pirate's island of Gramvousa.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--CONTACT FORM -->
<section class="mb-4" id="contact-section">
<h2 class="uppercase contact-main-heading">
<i class="far fa-envelope mr-2"></i>Contact us
</h2>
<div class="d-flex justify-content-center">
<hr class="w-25 mt-3">
</div>
<div class="d-flex justify-content-center my-4">
<div class="text-center">
<h4 class="contact-heading uppercase">
Do you have any questions?</h4>
<h4 class="contact-heading uppercase"> Ready to book a tour? </h4>
</h5>
</div>
</div>
<div class="form-container mx-2 mb-5">
<div class="mt-4 text-center" id="contact-form">
<h5>
Submit the enquiry and we will get back to you soon
</h5>
<form class="bookingform" onsubmit="return sendMail(this);"
method="POST" action="">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" id="name"
name="name" required
placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">E-mail:</label>
<input type="email" class="form-control" id="email"
name="emailaddress" required
placeholder="Enter your email">
</div>
<div class="form-group">
<label for="bookingtravelquery">Your enquiry:</label>
<textarea class="form-control" id="bookingtravelquery" name="bookingtravelquery" rows="5" placeholder="Enter your enquiry" required></textarea>
</div>
<div class="text-center">
<button type="submit" id="submitButton"