-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-detail.html
1816 lines (1791 loc) · 91.7 KB
/
package-detail.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" dir="ltr">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="We Care Admin super flexible, powerful, clean & modern responsive bootstrap 5 admin template with unlimited possibilities."
/>
<meta name="author" content="pixelstrap" />
<link rel="icon" href="wecare_logo.svg" type="image/x-icon" />
<link rel="shortcut icon" href="wecare_logo.svg" type="image/x-icon" />
<title>We Care Cabs-Packages Detail</title>
<!-- Google font-->
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
<!-- Themify icon-->
<link rel="stylesheet" type="text/css" href="css/themify.css" />
<!-- Feather icon-->
<link rel="stylesheet" type="text/css" href="css/feather-icon.css" />
<!-- Plugins css start-->
<link rel="stylesheet" type="text/css" href="css/scrollbar.css" />
<link rel="stylesheet" type="text/css" href="css/animate.css" />
<!-- Plugins css Ends-->
<!--popup gallery css-->
<link rel="stylesheet" type="text/css" href="css/magnific-popup.css" />
<!-- Bootstrap css-->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<!-- App css-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- Responsive css-->
<link rel="stylesheet" type="text/css" href="css/responsive.css" />
</head>
<body>
<!-- pre-loader start -->
<div class="loader-wrapper">
<img src="wecare_logo.svg" width="100px" alt="loader gif" />
<img src="load.gif" width="100px" alt="loader gif" />
<!-- <img src="load.gif" alt="loader gif" width="100px" /> -->
</div>
<!-- pre-loader End -->
<!-- tap on top starts-->
<div class="tap-top"><i data-feather="chevrons-up"></i></div>
<!-- tap on tap ends-->
<!-- page-wrapper Start-->
<div class="page-wrapper compact-wrapper modern-type" id="pageWrapper">
<!-- Page Header Start-->
<div class="page-header">
<div class="header-wrapper row m-0">
<div class="header-logo-wrapper col-auto p-0">
<div class="logo-wrapper">
<a href="index.html"
><img
class="img-fluid main-logo"
src="wecare_logo.svg"
alt="logo" />
<img
class="img-fluid white-logo"
src="wecare_logo.svg"
alt="logo"
/></a>
</div>
<div class="toggle-sidebar">
<i
class="status_toggle middle sidebar-toggle"
data-feather="align-center"
></i>
</div>
</div>
<form class="form-inline search-full col" action="#" method="get">
<div class="form-group w-100">
<div class="Typeahead Typeahead--twitterUsers">
<div class="u-posRelative">
<input
class="demo-input Typeahead-input form-control-plaintext w-100"
type="text"
placeholder="Search Anything .."
name="q"
title=""
autofocus=""
/>
<i class="close-search" data-feather="x"></i>
<div class="spinner-border Typeahead-spinner" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="Typeahead-menu"></div>
</div>
</div>
</form>
<div class="nav-right col-4 pull-right right-header p-0">
<ul class="nav-menus">
<li>
<span class="header-search"><i data-feather="search"></i></span>
</li>
<li class="onhover-dropdown">
<div class="notification-box">
<i class="fa fa-bell-o"> </i
><span class="badge rounded-pill badge-theme">4 </span>
</div>
<ul class="notification-dropdown onhover-show-div">
<li>
<i data-feather="bell"></i>
<h6 class="f-18 mb-0">Notitications</h6>
</li>
<li>
<p>
<i class="fa fa-circle-o me-3 font-primary"> </i>Delivery
processing <span class="pull-right">10 min.</span>
</p>
</li>
<li>
<p>
<i class="fa fa-circle-o me-3 font-success"></i>Order
Complete<span class="pull-right">1 hr</span>
</p>
</li>
<li>
<p>
<i class="fa fa-circle-o me-3 font-info"></i>Tickets
Generated<span class="pull-right">3 hr</span>
</p>
</li>
<li>
<p>
<i class="fa fa-circle-o me-3 font-danger"></i>Delivery
Complete<span class="pull-right">6 hr</span>
</p>
</li>
<li>
<a class="btn btn-primary" href="#"
>Check all notification</a
>
</li>
</ul>
</li>
<li>
<div class="mode">
<i class="fa fa-moon-o" aria-hidden="true"></i>
</div>
</li>
<li class="onhover-dropdown">
<i data-feather="message-square"></i>
<ul class="chat-dropdown onhover-show-div">
<li>
<i data-feather="message-square"></i>
<h6 class="f-18 mb-0">Message Box</h6>
</li>
<li>
<div class="media">
<img
class="img-fluid rounded-circle me-3"
src="images/1.jpg"
alt="user1"
/>
<div class="status-circle online"></div>
<div class="media-body">
<span>Ashutosh Yadav</span>
<p>Lorem Ipsum is simply dummy...</p>
</div>
<p class="f-12 font-success">58 mins ago</p>
</div>
</li>
<li>
<div class="media">
<img
class="img-fluid rounded-circle me-3"
src="images/2.jpg"
alt="user2"
/>
<div class="status-circle online"></div>
<div class="media-body">
<span>Kori Thomas</span>
<p>Lorem Ipsum is simply dummy...</p>
</div>
<p class="f-12 font-success">1 hr ago</p>
</div>
</li>
<li>
<div class="media">
<img
class="img-fluid rounded-circle me-3"
src="images/4.jpg"
alt="user3"
/>
<div class="status-circle offline"></div>
<div class="media-body">
<span>Ain Chavez</span>
<p>Lorem Ipsum is simply dummy...</p>
</div>
<p class="f-12 font-danger">32 mins ago</p>
</div>
</li>
<li class="text-center">
<a class="btn btn-primary" href="#">View All </a>
</li>
</ul>
</li>
<li class="maximize">
<a
class="text-dark"
href="#!"
onclick="javascript:toggleFullScreen()"
><i data-feather="maximize"></i
></a>
</li>
<li class="profile-nav onhover-dropdown pe-0 me-0">
<div class="media profile-media">
<img
class="user-profile rounded-circle"
src="images/4_1.jpg"
alt="profile-picture"
/>
<div class="user-name-hide media-body">
<span>Ashutosh Yadav</span>
<p class="mb-0 font-roboto">
Admin <i class="middle fa fa-angle-down"></i>
</p>
</div>
</div>
<ul class="profile-dropdown onhover-show-div">
<li>
<a href="#"
><i data-feather="user"></i><span>Account </span></a
>
</li>
<li>
<a href="#"
><i data-feather="mail"></i><span>Inbox</span></a
>
</li>
<li>
<a href="#"
><i data-feather="file-text"></i><span>Taskboard</span></a
>
</li>
<li>
<a href="#"
><i data-feather="settings"></i><span>Settings</span></a
>
</li>
<li>
<a
data-bs-toggle="modal"
data-bs-target="#staticBackdrop"
href="javascript:void(0)"
><i data-feather="log-out"> </i><span>Log out</span></a
>
</li>
</ul>
</li>
</ul>
</div>
<script class="result-template" type="text/x-handlebars-template">
<div class="ProfileCard u-cf">
<div class="ProfileCard-avatar"><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-airplay m-0"
><path
d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
></path><polygon
points="12 15 17 21 7 21 12 15"
></polygon></svg></div>
<div class="ProfileCard-details">
<div class="ProfileCard-realName">{{name}}</div>
</div>
</div>
</script>
<script class="empty-template" type="text/x-handlebars-template">
<div class="EmptyMessage">Your search turned up 0 results. This most
likely means the backend is down, yikes!</div>
</script>
</div>
</div>
<!-- Page Header Ends-->
<!-- Page Body Start-->
<div class="page-body-wrapper">
<!-- Page Sidebar Start-->
<div class="sidebar-wrapper">
<div>
<div class="logo-wrapper">
<span class="back">Back</span>
<div class="back-btn"><i class="fa fa-angle-left"></i></div>
<div class="toggle-sidebar">
<i
class="status_toggle middle sidebar-toggle"
data-feather="grid"
>
</i>
</div>
</div>
<div class="logo-icon-wrapper">
<a href="index.html"
><img class="img-fluid" src="images/logo-icon.png" alt=""
/></a>
</div>
<nav class="sidebar-main">
<div class="left-arrow" id="left-arrow">
<i data-feather="arrow-left"></i>
</div>
<div id="sidebar-menu">
<ul class="sidebar-links" id="simple-bar">
<li class="back-btn">
<a href="index.html"
><img class="img-fluid" src="images/logo-icon.png" alt=""
/></a>
<div class="mobile-back text-end">
<span>Back</span
><i class="fa fa-angle-right ps-2" aria-hidden="true"></i>
</div>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="index.html"
><i data-feather="home"> </i><span>Dashboard</span></a
>
</li>
<li class="sidebar-list">
<a class="sidebar-link sidebar-title" href="#"
><i data-feather="map"></i><span>Destinations</span></a
>
<ul class="sidebar-submenu">
<li><a href="all-packages.html">All Destinations</a></li>
<li>
<a href="package-detail.html">Destinations Detail</a>
</li>
<li>
<a href="add-new-destinations.html">Add Destinations</a>
</li>
<li>
<a href="all-package-categories.html"
>All Destination Categories</a
>
</li>
<li>
<a href="add-package-category.html"
>Add Destination Category</a
>
</li>
</ul>
</li>
<li class="sidebar-list">
<a class="sidebar-link sidebar-title" href="#"
><i data-feather="navigation"></i><span>Cab</span></a
>
<ul class="sidebar-submenu">
<li><a href="all-cars.html">All Cars</a></li>
<li><a href="cars-detail.html">Cars's Details </a></li>
<li><a href="add-new-cars.html">Add New Cars</a></li>
<li><a href="all-drivers.html">All Drivers</a></li>
<li><a href="add-driver.html">Add Drivers</a></li>
</ul>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="booking.html"
><i data-feather="bookmark"> </i><span>Booking</span></a
>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="location.html"
><span class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-map-pin"
>
<path
d="M21 10c0 6-9 13-9 13s-9-7-9-13a9 9 0 0 1 18 0z"
></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
</span>
<span>Location</span></a
>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="reviews.html"
><i data-feather="message-square"> </i
><span>Reviews</span></a
>
</li>
<li class="sidebar-list">
<a class="sidebar-link sidebar-title" href="#"
><i data-feather="users"></i><span>Users </span></a
>
<ul class="sidebar-submenu">
<li><a href="all-users.html">All users</a></li>
<li><a href="add-new-user.html">Add new user</a></li>
</ul>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="setting.html"
><i data-feather="settings"> </i><span>Setting</span></a
>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="login.html"
><i data-feather="log-in"> </i><span>Log In</span></a
>
</li>
<li class="sidebar-list">
<a
class="sidebar-link sidebar-title link-nav"
href="sign-up.html"
><i data-feather="plus-circle"> </i
><span>Register</span></a
>
</li>
</ul>
</div>
<div class="right-arrow" id="right-arrow">
<i data-feather="arrow-right"></i>
</div>
</nav>
</div>
</div>
<!-- Page Sidebar Ends-->
<div class="page-body">
<!-- Container-fluid starts-->
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="card">
<div class="card-header card-header--2 package-card">
<div>
<h5>Package's Details</h5>
</div>
<form class="d-inline-flex">
<button class="btn align-items-center btn-theme me-3">
<i class="fa fa-pencil-square-o me-2"></i>Edit
</button>
<button class="btn align-items-center d-flex btn-outline">
<i class="fa fa-trash-o me-2"></i>Delete
</button>
</form>
</div>
<div class="card-body">
<section class="single-section small-section bg-inner">
<div class="row">
<div class="col-12">
<div class="description-section tab-section">
<div class="detail-img">
<img
src="images/spain.jpg"
class="img-fluid blur-up lazyload"
alt=""
/>
</div>
<div class="menu-top menu-up">
<ul
class="nav nav-tabs"
id="top-tab"
role="tablist"
>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link active"
href="#highlight"
>Overview</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#itinerary"
>More Info</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#gallery"
>gallery</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#accommodations"
>
Accommodations</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#location"
>location</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#review"
>reviews</a
>
</li>
<li class="nav-item">
<a
data-bs-toggle="tab"
class="nav-link"
href="#policy"
>policies</a
>
</li>
</ul>
</div>
<div
class="description-details tab-content"
id="top-tabContent"
>
<div
class="menu-part about tab-pane fade show active"
id="highlight"
>
<div class="about-sec">
<p class="top-space">
Hola Espana! The vibrant country of Spain
beckons for an adventure that lets us
explore the sights 'n' sounds of this
remarkable destination. Visit
architechturally brilliant and culture-rich
cities of Madrid, Seville, Barcelona,
Cordoba, Valencia on this tour and have the
experience of a lifetime!
</p>
</div>
<div class="row g-2">
<div class="col-md-6">
<div class="about-sec">
<h4>inclusion</h4>
<ul>
<li>
Return economy class airfare with
taxes
</li>
<li>
Barcelona to Prague Internal flight
ticket
</li>
<li>
2 Nights Stay With Breakfast At Prague
</li>
<li>
2 Nights Stay With Breakfast At
Budapest
</li>
<li>
1 Night Stay With Breakfast At Vienna
</li>
<li>Normal Visa Charges of Schengen</li>
<li>5% GST</li>
</ul>
</div>
</div>
<div class="col-md-6 margin-up">
<div class="about-sec">
<h4>exclusion</h4>
<ul>
<li>
Any Extra Sightseeing Which Is Not
Mentioned In The Itinerary
</li>
<li>
Overseas Travel Insurance &
Personal Expense Such As Mineral
Water, Laundry Etc
</li>
<li>Personal expenses</li>
<li>Excess baggage charge</li>
</ul>
</div>
</div>
</div>
<div class="about-sec">
<h6>
a road rip along spain's mediterranean coast
</h6>
<p>
A road trip along Spain’s Mediterranean
coast is a guarantee of sunshine, lovely
beaches, and plenty of destinations with
things to see and do. We suggest following
the coastline at your own pace, without a
fixed timetable and with room to
improvise.We choose Barcelona as a starting
point because it’s a huge transport hub. You
might fancy heading north for a couple of
days to see the Costa Brava (Girona):
beautiful bays like Roses, coves where the
pine trees grow right to the shoreline,
large seaside resorts and the fishing
villages that once inspired Dalí.
</p>
<h6>
the history of spain's great civilisations
</h6>
<p>
In Spain, you can get a history lesson while
you enjoy your holiday. Let us show you
places to visit where you can discover
milestones of human development, like the
earliest humans, the birth of art, and the
power of the great civilisations.
</p>
<h6>foodies, prepare to be enthused</h6>
<p class="bottom-space">
From tasty tapas to superb seafood and
traditional roasts, food in Spain is all
about making the most of the best local
produce.Whether you're on a city break in
Barcelona or Madrid, or you've plumped for a
countryside or coastal retreat, Spanish food
is full of flavour and character.
</p>
</div>
</div>
<div
class="menu-part accordion tab-pane fade"
id="itinerary"
>
<div id="accordion" class="accordion-plan">
<div class="card">
<div
class="card-header dark-body"
id="headingOne"
>
<h5 class="mb-0">
<button
class="btn btn-link"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
aria-expanded="true"
aria-controls="collapseOne"
>
Madrid (1 Night)
</button>
</h5>
</div>
<div
id="collapseOne"
class="collapse show"
aria-labelledby="headingOne"
data-bs-parent="#accordion"
>
<div class="card-body card-body--modifay">
Welcome to Madrid - the capital city of
Spain. On arrival we enjoy the city
orientation tour which includes the
Plaza de Espana, Sabatini Garden,
Cervantes Statue, Cibeles fountain,
Parliament, Puerto del sol. Then visit
the Royal Palace and Prado Museum – one
of the world's greatest art galleries.
From inside.
<div class="highlight">
<ul>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
dinner
</li>
<li>
<img
src="images/bed.png"
class="img-fluid blur-up lazyload"
alt=""
/>
night stay in madrid
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card">
<div
class="card-header dark-body"
id="headingTwo"
>
<h5 class="mb-0">
<button
class="btn btn-link collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
Madrid – Toledo – Seville (2 Nights)
</button>
</h5>
</div>
<div
id="collapseTwo"
class="collapse"
aria-labelledby="headingTwo"
data-bs-parent="#accordion"
>
<div class="card-body card-body--modifay">
Today we proceed to Toledo - declared as
World Heritage Site by UNESCO. On
arrival we visit the city's most famous
monument Santa Maria la Blanca
Synagogue. Then we visit Sword factory.
Later we leave for Seville
<div class="highlight">
<ul>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
breakfast
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
lunch
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
dinner
</li>
<li>
<img
src="images/bed.png"
class="img-fluid blur-up lazyload"
alt=""
/>
night stay in seville
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card">
<div
class="card-header dark-body"
id="headingThree"
>
<h5 class="mb-0">
<button
class="btn btn-link collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
Seville
</button>
</h5>
</div>
<div
id="collapseThree"
class="collapse"
aria-labelledby="headingThree"
data-bs-parent="#accordion"
>
<div class="card-body card-body--modifay">
Today we enjoy Seville city tour
wherein, we visit the massive cathedral
with the Tomb of Christopher Columbus,
Moorish Giralda Tower, The Alcázar, a
photo stop at Santa Cruz Quarter with
flower decked balconies and the
Ultramodern expo site - a small scale
model of "Victoria" the first vessel to
circumnavigate the globe. Then we visit
Metropol Parasol - The largest wooden
structure in the world. In the evening
we enjoy the Flamenco Show with dinner.
<div class="highlight">
<ul>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
breakfast
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
lunch
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
dinner
</li>
<li>
<img
src="images/bed.png"
class="img-fluid blur-up lazyload"
alt=""
/>
night stay in seville
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card">
<div
class="card-header dark-body"
id="headingFour"
>
<h5 class="mb-0">
<button
class="btn btn-link"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
aria-expanded="true"
aria-controls="collapseFour"
>
Seville – Costa Del Sol – Malaga (1
Night)
</button>
</h5>
</div>
<div
id="collapseFour"
class="collapse"
aria-labelledby="headingFour"
data-bs-parent="#accordion"
>
<div class="card-body card-body--modifay">
Today we proceed to Costa del Sol - a
region in the south of Spain. Here we
explore Puerto Banus, then we proceed to
Malaga. On arrival we enjoy orientation
tour which includes Cathedral of Malaga,
Plaza de la Merced, The Museo Picasso
from outside, then we visit Moorish
fortress La Alcazaba.
<div class="highlight">
<ul>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
breakfast
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
lunch
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
dinner
</li>
<li>
<img
src="images/bed.png"
class="img-fluid blur-up lazyload"
alt=""
/>
night stay in Málaga
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card">
<div
class="card-header dark-body"
id="headingFive"
>
<h5 class="mb-0">
<button
class="btn btn-link collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseFive"
aria-expanded="false"
aria-controls="collapseFive"
>
Malaga – Cordoba – Valencia (1 Night)
</button>
</h5>
</div>
<div
id="collapseFive"
class="collapse"
aria-labelledby="headingFive"
data-bs-parent="#accordion"
>
<div class="card-body card-body--modifay">
Today we proceed to Cordoba. On arrival
we visit Mezquita from inside followed
by orientation city tour which includes
Roman bridge, Arab waterwheels and Plaza
del Potro. Then we leave for Valencia.
<div class="highlight">
<ul>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
breakfast
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>
lunch
</li>
<li>
<img
src="images/fork.png"
class="img-fluid blur-up lazyload"
alt=""
/>