-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1890 lines (1635 loc) · 103 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" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;@400;@500&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!------ Include the above in your HEAD tag ---------->
<!-- tiny-slider links -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/tiny-slider.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js"></script>
<title>LAR</title>
</head>
<body>
<section class="section-header" style="height: fit-content; padding-bottom: 20px;">
<nav class="navbar navbar-expand-lg navbar-light bg-transparent">
<div class="container-fluid">
<a class="navbar-brand" href="#"><svg
id="Group_3669"
data-name="Group 3669"
xmlns="http://www.w3.org/2000/svg"
width="100"
height="90"
viewBox="0 0 129.857 87.385"
>
<path
id="Path_1"
data-name="Path 1"
d="M1374.15,1053.1h7.3a8.367,8.367,0,0,0-7.3-7.3Zm-9.238,0h7.3v-7.3a8.367,8.367,0,0,0-7.3,7.3Zm7.3,1.936h-7.358v7.358h7.358Zm9.294,0h-7.358v7.358h7.358Zm-8.326-11.23a10.29,10.29,0,0,1,10.262,10.262v10.262h-20.525v-10.262a10.29,10.29,0,0,1,10.262-10.262Z"
transform="translate(-1308.253 -981.948)"
fill="#fff"
/>
<path
id="Path_2"
data-name="Path 2"
d="M1238.925,558.54l17.763,6.285v2.518l-17.763-6.285Zm0-5.826L1256.688,559v2.518l-17.763-6.285Zm-3.5,5.826-17.763,6.285v2.518l17.763-6.285Zm0-5.826L1217.656,559v2.518l17.763-6.285Zm1.753-3.047,21.268,7.525v16.292l-1.752-.966v-1.868l-9.462-3.348-10.053-5.542-10.054,5.542-9.462,3.348v1.868l-1.752.966V557.192Z"
transform="translate(-1172.244 -524.801)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Path_3"
data-name="Path 3"
d="M697.625,737.5l64.928,35.79v7.055l-64.928-35.79L632.7,780.341v-7.055Zm0,10.957,64.928,35.79v1.71l-64.928-35.79L632.7,785.954v-1.71Z"
transform="translate(-632.697 -698.569)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Path_4"
data-name="Path 4"
d="M1096.209,233.888c3.845,3.438,2.562,12.348-4.757,5.906,6.1,5.2,8.014-2.325,4.757-5.906m6.355-1.751a5.125,5.125,0,1,0,8.809-2.137,4.9,4.9,0,1,1-8.864,2.872A4.949,4.949,0,0,1,1102.563,232.137Zm32.3,1.751c-3.845,3.438-2.562,12.348,4.757,5.906C1133.527,244.992,1131.612,237.468,1134.868,233.888Zm-6.355-1.751A5.125,5.125,0,1,1,1119.7,230a4.9,4.9,0,1,0,8.809,2.137Zm-12.383-8.953c.669,1.883,1.96,4.5,4.159,5.389a5.773,5.773,0,1,0,8.027,1.533l-.008-.035,4.951-3.911a3.324,3.324,0,0,1-.032-2.04c.378-1.366,1.385-2.28,2.25-2.041s1.26,1.54.883,2.907a3.133,3.133,0,0,1-1.292,1.881l1.258,5.743c-4.493.847-6.1,8.713-2.394,10.191,2.28.908,6.428-2.139,9.656-5.794-.277-.416,0-1.433.683-2.411.757-1.082,1.725-1.706,2.164-1.395s.181,1.44-.576,2.522c-.682.976-1.537,1.579-2.02,1.46l-7.033,10.8-21.268-7.525-21.268,7.525-7.033-10.8c-.483.12-1.338-.484-2.02-1.46-.756-1.082-1.014-2.211-.576-2.522s1.407.313,2.164,1.395c.684.978.96,1.995.683,2.411,3.229,3.656,7.377,6.7,9.656,5.794,3.709-1.478,2.1-9.344-2.394-10.191l1.258-5.743a3.134,3.134,0,0,1-1.292-1.881c-.378-1.366.018-2.668.882-2.907s1.872.675,2.25,2.041a3.324,3.324,0,0,1-.032,2.04l4.951,3.911-.008.035a5.773,5.773,0,1,0,8.027-1.533c2.2-.889,3.49-3.507,4.159-5.389a3.12,3.12,0,0,1-1.252-2.759c0-1.609.826-2.913,1.844-2.913s1.844,1.3,1.844,2.913A3.119,3.119,0,0,1,1116.131,223.183Z"
transform="translate(-1050.61 -217.511)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Path_5"
data-name="Path 5"
d="M1844.995,721.079l5.359-1.28v4.394l-5.359,1.28Zm0-6.762,5.359-1.28v4.394l-5.359,1.28Zm-8.455,2.019,5.359-1.28v4.394l-5.359,1.28Zm8.455-8.781,5.359-1.28v4.394l-5.359,1.28Zm-8.455,2.019,5.359-1.28v4.394l-5.359,1.28Zm-8.455,2.019,5.359-1.28v4.394l-5.359,1.28Zm25.262-4.925,8.351,6.735v23.954l-8.351-4.6Zm-26.885,3.447,25.514-6.093V732l-1.813-1,.191-.046v-4.394l-5.359,1.28v.311l-3.39-1.869.295-.07v-4.394l-5.359,1.28v.393l-3.494-1.926.4-.095v-4.394l-5.359,1.28v.474l-.594-.327-1.029-.567Z"
transform="translate(-1737.094 -667.602)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Path_6"
data-name="Path 6"
d="M719.578,721.079l-5.359-1.28v4.394l5.359,1.28Zm0-6.762-5.359-1.28v4.394l5.359,1.28Zm8.455,2.019-5.359-1.28v4.394l5.359,1.28Zm-8.455-8.781-5.359-1.28v4.394l5.359,1.28Zm8.455,2.019-5.359-1.28v4.394l5.359,1.28Zm8.455,2.019-5.359-1.28v4.394l5.359,1.28Zm-25.262-4.925-8.351,6.735v23.954l8.351-4.6Zm26.885,3.447L712.6,704.024V732l1.814-1-.192-.046v-4.394l5.359,1.28v.311l3.39-1.869-.295-.07v-4.394l5.359,1.28v.393l3.494-1.926-.4-.095v-4.394l5.359,1.28v.474l.594-.327,1.028-.567Z"
transform="translate(-697.622 -667.602)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Path_7"
data-name="Path 7"
d="M1733.521,1166.521h4.175a4.784,4.784,0,0,0-4.175-4.175Zm-5.282,0h4.175v-4.175a4.784,4.784,0,0,0-4.175,4.175Zm4.175,1.107h-4.207v4.207h4.207Zm5.315,0h-4.208v4.207h4.208Zm-4.761-6.422a5.883,5.883,0,0,1,5.868,5.868v5.868H1727.1v-5.868a5.883,5.883,0,0,1,5.868-5.868Z"
transform="translate(-1645.17 -1090.56)"
fill="#fff"
/>
<path
id="Path_8"
data-name="Path 8"
d="M1122.561,1166.521h4.175a4.784,4.784,0,0,0-4.175-4.175Zm-5.282,0h4.175v-4.175a4.784,4.784,0,0,0-4.175,4.175Zm4.175,1.107h-4.207v4.207h4.207Zm5.314,0h-4.207v4.207h4.207Zm-4.761-6.422a5.884,5.884,0,0,1,5.868,5.868v5.868h-11.736v-5.868a5.883,5.883,0,0,1,5.868-5.868Z"
transform="translate(-1079.948 -1090.56)"
fill="#fff"
/></svg></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<div class="list-padding">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 d-flex justify-content-between" style="font-family: 'Roboto', sans-serif;
font-size: 12px;">
<li class="nav-item">
<a class="nav-link active text-light" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#flights">Flights</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#hotels">Hotels</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#footer">Transfers</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#activities">Activities</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#holidays">Holidays</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle text-light"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
More
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">About Us</a></li>
<li>
<a class="dropdown-item" href="#">Legal</a>
</li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="#"
>Something else here</a
>
</li>
</ul>
</li>
</ul>
</div>
<div>
<span class="navbar-text">
<ul class="navbar-nav me-auto mb-2 mb-lg-0" style="font-family: 'Roboto', sans-serif;
font-size: 12px;">
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle text-light"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i class="bi-globe text-light"></i>
English
</a>
<ul class="dropdown-menu" style="font-family: 'Roboto', sans-serif;
font-size: 12px;">
<li><a class="dropdown-item" href="#">Urdu</a></li>
<li><a class="dropdown-item" href="#">Spanish</a></li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="#"
>Something else here</a
>
</li>
</ul>
</li>
<li class="nav-item" >
<a class="nav-link active" aria-current="page" href="#"><button class="btn btn-outline-secondary btn-xs">Register</button></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><button class="btn btn-outline-secondary btn-xs">Sign In</button></a>
</li>
</ul>
</span>
</div>
</div>
</div>
</nav>
<div class="mt-4 text-center">
<div class="container ">
<h1 style="color:white; font-family: 'Roboto', sans-serif; font-size: 50px;" class="heading-label">Explore Amazing Destinations</h1>
<h6 class="container mt-3" style="color: white; font-family: 'Roboto', sans-serif;
font-size: 18px;">Find great places to stay, eat shop or visit from local experts</h6>
</div>
<div class="container d-flex justify-content-around mt-4">
<div class="row text-center search-bar">
<div class="col-10 p-1"><input class="w-100 search" style="" type="text" placeholder="search country from the search bar"></div>
<div class="col-2 p-1" style="outline: none; border:none; background:transparent; color: #90dde1;"><img src="assets/Top/Search icon.svg" width="15px" alt=""></div>
</div>
</div>
<div class="container d-flex justify-content-center mt-3">
<select class="form text-center" style="background-color:transparent;" aria-label="Default select example">
<option selected>or choose country by subregion</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
</div>
<div class="container d-flex justify-content-center">
<div class="head-subsection d-flex justify-content-center flex-md-row flex-sm-column flex-wrap">
<div class="card-padding text-center" style="font-family: 'Roboto', sans-serif;">
<h6 class="pt-2" style="font-size: 14px; color: #03794a; font-weight: 700;">World Regions</h6>
<div class="d-flex justify-content-center">
<div class="row search-bar-country text-secondary">
<div class="col-2"><i class="bi-search"></i></div>
<div class="col-10 px-0"><input class="bg-transparent border-0 w-100 text-secondary" style="outline: none;" type="text" placeholder="Search.."></div>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="my-custom-scrollbar table-wrapper-scroll-y scroll-bar" style=" height: 17rem;">
<table class="table table-sm" >
<tbody>
<tr>
<th scope="row"><img src="assets/Search section/Group 4207.png" alt=""></th>
<td colspan="2">Algeria</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4208.png" alt=""></th>
<td colspan="2">Canary Islands</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4209.png" alt=""></th>
<td colspan="2">Cueta</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4210.png" alt=""></th>
<td colspan="2">Egypt</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4211.png" alt=""></th>
<td colspan="2">Libya</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4212.png" alt=""></th>
<td colspan="2">Medeira</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4213.png" alt=""></th>
<td colspan="2">Melilla</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card-padding text-center " style="font-family: 'Roboto', sans-serif;">
<h6 class="pt-2" style="font-size: 14px; color: #03794a; font-weight: 700;">Most Popular</h6>
<div class="card" style="width: 18rem;">
<div class="my-custom-scrollbar table-wrapper-scroll-y scroll-bar" style=" height: 18.7rem;">
<table class="table table-sm">
<thead>
<tr>
<th scope="row"><img src="assets/Search section/Group 4207.png" alt=""></th>
<td colspan="2">Algeria</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><img src="assets/Search section/Group 4208.png" alt=""></th>
<td colspan="2">Canary Islands</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4209.png" alt=""></th>
<td colspan="2">Ceuta</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4210.png" alt=""></th>
<td colspan="2">Egypt</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4211.png" alt=""></th>
<td colspan="2">Libya</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4212.png" alt=""></th>
<td colspan="2">Madeira</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4213.png" alt=""></th>
<td colspan="2">Melilla</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4214.png" alt=""></th>
<td colspan="2">Morocco</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card-padding text-center" style="font-family: 'Roboto', sans-serif;">
<h6 class="pt-2" style="font-size: 14px; color: #03794a; font-weight: 700;">All Countries</h6>
<div class="card" style="width: 18rem;">
<div class="my-custom-scrollbar table-wrapper-scroll-y scroll-bar" style=" height: 18.7rem;">
<table class="table table-sm">
<thead>
<tr>
<th scope="row"><img src="assets/Search section/Group 4207.png" alt=""></th>
<td colspan="2">Algeria</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><img src="assets/Search section/Group 4208.png" alt=""></th>
<td colspan="2">Canary Islands</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4209.png" alt=""></th>
<td colspan="2">Cueta</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4210.png" alt=""></th>
<td colspan="2">Egypt</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4211.png" alt=""></th>
<td colspan="2">Libya</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4212.png" alt=""></th>
<td colspan="2">Madeira</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4213.png" alt=""></th>
<td colspan="2">Melilla</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
<tr>
<th scope="row"><img src="assets/Search section/Group 4214.png" alt=""></th>
<td colspan="2">Morocco</td>
<td><i class="bi-chevron-right"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="m-5" id="flights">
<div class="wrapper">
<div class="d-flex justify-content-center w-100 mt-4">
<div class=" d-flex justify-content-start p-3 search-" style="width: 53%;">
<button class="btn btn-success btn-xs-menu" style="background-color: #03794a; outline-color: #03794a;">Hotels</button>
<button class="btn btn-xs-menu mx-1" style="background-color: white; outline-color: #03794a;">Flights</button>
</div>
</div>
<div class=" d-flex justify-content-center text-center">
<div class="dropdown-btns" style="color: green;">
<div class="btn-group">
<button class="btn dropdown-toggle" type="button" id="defaultDropdown" data-bs-toggle="dropdown" data-bs-auto-close="true" aria-expanded="false">
<img src="assets/Search/Icon material-location-on.svg" style="max-width: 20px;" alt=""> <span class="px-1">Where to go?</span>
</button>
<ul class="dropdown-menu" aria-labelledby="defaultDropdown">
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
</ul>
</div>
<div class="vr"></div>
<div class="btn-group">
<button class="btn dropdown-toggle" type="button" id="dropdownMenuClickableOutside" data-bs-toggle="dropdown" data-bs-auto-close="inside" aria-expanded="false">
<img src="assets/Search/Check In out.svg" alt="" style="max-width: 20px;"><span class="px-1">Check in & out</span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuClickableOutside">
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
</ul>
</div>
<div class="vr"></div>
<div class="btn-group">
<button class="btn dropdown-toggle" type="button" id="dropdownMenuClickableInside" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="false">
<img src="assets/Search/Icon material-supervisor-account.svg" style="max-width: 20px;" alt=""> <span class="px-1">Members</span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuClickableInside">
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
</ul>
</div>
<div class="vr"></div>
<div class="btn-group">
<button class="btn dropdown-toggle" type="button" id="dropdownMenuClickable" data-bs-toggle="dropdown" data-bs-auto-close="false" aria-expanded="false">
<img src="assets/Search/Icon ionic-ios-bed.svg" style="max-width: 20px;"> <span class="px-1">1 Room</span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuClickable">
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
<li><a class="dropdown-item" href="#">Menu item</a></li>
</ul>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-3 rounded">
<button class="btn btn-success" style="background-color: #03794a; border-radius: 20px; width: 8rem;">Search</button>
</div>
</div>
</section>
<section class="about pt-3 pb-3" style="background-color: #f1f5f9;" id="hotels">
<div class="container d-flex justify-content-center flex-wrap">
<div class="text-center position-relative">
<h1 class="" style="color: #007748;">Top Activity Destinations</h1>
<div class="text-center d-flex justify-content-center position-relative" style="top: -20px;">
<hr class="" width="60%" style="height: 3px; border-color: #007748; border: 5px; background-color: #007748; opacity: 1;">
</div>
</div>
<div class="py-3 container" style="padding-left: 20px; padding-right: 20px; margin-left: 5px; margin-right: 5px;">
<div class="row d-flex flex-row">
<div class="col-1 d-flex justify-content-end align-items-center">
<button class="previous"><i class="bi bi-chevron-left"></i></button>
</div>
<div class="col-md-10">
<div class="my-slider">
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group -1.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group 206.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group 207.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group 208.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group 209.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group 210.png" class="card-img-top" alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
<div class="">
<div class="">
<img src="assets/Activities Destinations/Mask Group -1.png" class="card-img-top " alt="">
<div class="">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
</div>
</div>
</div>
<div class="col-1 d-flex justify-content-start align-items-center">
<button class="next"><i class="bi bi-chevron-right"></i></button>
</div>
</div>
</div>
<template>
<div class="container-fluid">
<div class="row d-flex justify-content-center">
<div class="col-1 d-flex align-items-center justify-content-center">
<button class="btn bg-secondary"> < </button>
</div>
<div class="col-2">
<img src="assets/Activities Destinations/Mask Group -1.png" class="card-img-top" alt="">
<div class="d-">
<h6 style="color: #007748;">Venice Canal <span style="font-size: 10px;">(Italy)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
<div class="col-2">
<img src="assets/Activities Destinations/Mask Group 206.png" class="card-img-top " alt="">
<div class="d-inline">
<h6 style="color: #007748;">Golden Gate <span style="font-size: 10px;">(Spanish)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
<div class="col-2">
<img src="assets/Activities Destinations/Mask Group 207.png" class="card-img-top " alt="">
<div class="">
<h6 style="color: #007748;">Paris <span style="font-size: 10px;">(France)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color: #848484;">1,250 Properties</h6>
</div>
</div>
<div class="col-2">
<img src="assets/Activities Destinations/Mask Group 208.png" class="card-img-top " alt="">
<div class="">
<h6 style="color: #007748;">Sydney <span style="font-size: 10px;">(Australia)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px; color:#848484;">1,250 Properties</h6>
</div>
</div>
<div class="col-1 d-flex align-items-center justify-content-center">
<button class="btn bg-secondary"> > </button>
</div>
<!-- <div class="col-2">
<img src="assets/Activities Destinations/Mask Group 209.png" class="card-img-top " alt="">
<div class="">
<h6>Westminster <span style="font-size: 10px;">(London)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px;">1,250 Properties</h6>
</div>
</div> -->
<!-- <div class="col-2">
<img src="assets/Activities Destinations/Mask Group 210.png" class="card-img-top " alt="">
<div class="">
<h6>Dubai <span style="font-size: 10px;">(Dubai)</span></h6>
<h6 class="pt-0 mt-0" style="font-size: 10px;">1,250 Properties</h6>
</div>
</div> -->
<!-- <button>
<i class="bi-alarm-fill"></i>
</button> -->
</div>
</div>
</template>
</div>
</section>
<section class="hero flex-wrap" id="activities">
<div class="container d-flex" style="height: fit-content">
<div class="row" style="padding: 5%;">
<div class="col-md-6 col-sm-4 m-auto">
<h3 style="color: #6bb095;">Why Us?</h3>
<h1 class="align-self-start" style="color: #007748;">We Make All The <br> Process Easy.</h1>
<p style="color: #848484;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet soluta nam quo tempora autem m quam nulla dolore delectus!</p>
<div class="row pb-0" style="display: flex; flex-wrap: wrap;">
<div class="col-md-6 col-sm-4" >
<div class="card-body">
<button class="btn-why-us">
<svg id="Group_3905" data-name="Group 3905" xmlns="http://www.w3.org/2000/svg" width="17.371" height="14.372" viewBox="0 0 17.371 14.372">
<path id="Path_8501" data-name="Path 8501" d="M1259.57,1055.151v2.479a3.825,3.825,0,0,0-3.928.986,3.777,3.777,0,0,0-.942,3.925c-.031,0-.062.005-.094.005h-9.53a.48.48,0,0,1-.535-.531q0-3.373,0-6.746v-.12l.752.248q2.73.9,5.461,1.805c.071.024.1.052.094.128-.007.188,0,.376,0,.564,0,.077.022.112.105.112q1.112,0,2.224,0c.072,0,.1-.027.1-.1,0-.194,0-.389,0-.583,0-.073.025-.1.091-.121q2.6-.857,5.2-1.718Z" transform="translate(-1244.537 -1050.48)" fill="#007748"/>
<path id="Path_8502" data-name="Path 8502" d="M1253.171,922.75c-.02-.214-.02-.214-.233-.214h-2.029c-.168,0-.168,0-.171.166,0,.012,0,.024,0,.047-.032-.009-.06-.015-.087-.024q-3.061-1.012-6.122-2.023a.112.112,0,0,1-.094-.129c0-.6,0-1.2,0-1.8a.477.477,0,0,1,.526-.513h5.035q4.467,0,8.935,0a.505.505,0,0,1,.542.539c-.015.592-.005,1.184,0,1.777a.108.108,0,0,1-.09.122q-3.062,1.01-6.124,2.023Z" transform="translate(-1244.431 -916.174)" fill="#007748"/>
<path id="Path_8503" data-name="Path 8503" d="M1806.37,1202.611a3.507,3.507,0,1,1-3.484-3.513A3.505,3.505,0,0,1,1806.37,1202.611Zm-6.532-.06a3.026,3.026,0,1,0,3.079-2.972A3.03,3.03,0,0,0,1799.837,1202.552Z" transform="translate(-1788.999 -1191.74)" fill="#007748"/>
<path id="Path_8504" data-name="Path 8504" d="M1488.4,806.92h-.657c0-.111,0-.218,0-.325s0-.21,0-.315a.223.223,0,0,0-.229-.229h-4.3c-.234,0-.3.067-.3.3v.565h-.654c0-.03-.006-.057-.006-.083q0-.611,0-1.221c0-.145.055-.2.2-.2h5.746c.147,0,.2.056.2.2C1488.4,806.046,1488.4,806.478,1488.4,806.92Z" transform="translate(-1477.818 -805.413)" fill="#007748"/>
<path id="Path_8505" data-name="Path 8505" d="M1589.836,1156.977v-.861H1592v.861Z" transform="translate(-1583.407 -1149.591)" fill="#007748"/>
<path id="Path_8506" data-name="Path 8506" d="M1453.064,893.769c-.256,0-.512,0-.767,0-.083,0-.1-.037-.1-.1a.229.229,0,0,1,.161-.224.333.333,0,0,1,.1-.016c.407,0,.814,0,1.22,0a.239.239,0,0,1,.264.246c0,.064-.021.1-.1.1C1453.582,893.766,1453.323,893.769,1453.064,893.769Z" transform="translate(-1448.328 -891.797)" fill="#007748"/>
<path id="Path_8507" data-name="Path 8507" d="M1751.132,893.807c-.256,0-.511,0-.767,0-.082,0-.1-.037-.1-.1a.232.232,0,0,1,.162-.224.24.24,0,0,1,.072-.015c.425,0,.851,0,1.276,0a.231.231,0,0,1,.237.234c0,.074-.024.109-.109.107C1751.644,893.8,1751.387,893.807,1751.132,893.807Z" transform="translate(-1740.848 -891.835)" fill="#007748"/>
<path id="Path_8508" data-name="Path 8508" d="M1965.711,1281.6v.276h-.1c-.268,0-.537,0-.8,0a.092.092,0,0,0-.1.057.454.454,0,0,1-.493.262.459.459,0,0,1-.382-.376.454.454,0,0,1,.264-.5c.05-.025.053-.057.053-.1q0-.694,0-1.388v-.1h.276v.1c0,.457,0,.913,0,1.37a.135.135,0,0,0,.076.136.656.656,0,0,1,.2.2.128.128,0,0,0,.129.073C1965.113,1281.6,1965.406,1281.6,1965.711,1281.6Z" transform="translate(-1950.419 -1270.892)" fill="#007748"/>
<path id="Path_8509" data-name="Path 8509" d="M1832.577,1383.444v.147h-.593v-.147Z" transform="translate(-1821.053 -1372.692)" fill="#007748"/>
<path id="Path_8510" data-name="Path 8510" d="M1985.027,1511.928v.589h-.145v-.589Z" transform="translate(-1971.109 -1498.78)" fill="#007748"/>
<path id="Path_8511" data-name="Path 8511" d="M2113.6,1382.709h.59v.144h-.59Z" transform="translate(-2097.428 -1371.97)" fill="#007748"/>
<path id="Path_8512" data-name="Path 8512" d="M1984.942,1230.1h.141v.59h-.141Z" transform="translate(-1971.167 -1222.198)" fill="#007748"/>
<path id="Path_8513" data-name="Path 8513" d="M1861.776,1289.285l-.09.12-.478-.361.091-.12Z" transform="translate(-1849.734 -1279.929)" fill="#007748"/>
<path id="Path_8514" data-name="Path 8514" d="M2085.819,1459.205l.09-.12.477.361-.091.12Z" transform="translate(-2070.16 -1446.915)" fill="#007748"/>
<path id="Path_8515" data-name="Path 8515" d="M1872.576,1470.316l.114.1-.438.418-.106-.106Z" transform="translate(-1860.468 -1457.938)" fill="#007748"/>
<path id="Path_8516" data-name="Path 8516" d="M2076.866,1275.9l-.428.407-.11-.1.434-.413Z" transform="translate(-2060.845 -1267.04)" fill="#007748"/>
</svg>
</button>
<h4 class="TEXT" style="color: #007748;">Set travel plan</h4>
<p style="font-size: small; color: #848484;">Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
</div>
</div>
<div class="col-md-6 col-sm-4">
<div class="card-body">
<button class="btn-why-us">
<svg id="Group_4040" data-name="Group 4040" xmlns="http://www.w3.org/2000/svg" width="23.776" height="14.371" viewBox="0 0 23.776 14.371">
<path id="Path_8521" data-name="Path 8521" d="M-1130.58,947.517c-.031-.227-.07-.436-.086-.647a1.717,1.717,0,0,1,.036-.337c.012-.1.032-.2.039-.3.006-.074-.008-.144-.119-.122a.65.65,0,0,1,0-.077.579.579,0,0,0-.241-.546.892.892,0,0,1-.173-.183.2.2,0,0,1,.135-.332.467.467,0,0,0,.063-.027l-.1-.2h.167c.089,0,.113-.032.065-.1a.932.932,0,0,0-.168-.2,1.383,1.383,0,0,1-.331-.4.547.547,0,0,0-.069-.082.307.307,0,0,0,.079.376c.057.038.107.087.182.149-.057.02-.083.04-.107.036a3.449,3.449,0,0,1-.479-.08c-.133-.038-.139-.137-.029-.223a.284.284,0,0,1,.082-.051.185.185,0,0,0,.12-.141.242.242,0,0,0-.055-.29c-.077-.07-.056-.134.047-.164s.211-.04.316-.065a.568.568,0,0,0,.182-.066c.035-.023.049-.079.069-.122q.055-.117.106-.236c.01-.022.023-.053.015-.071a6.749,6.749,0,0,0-.831-1.355.555.555,0,0,1-.485.227c-.15,0-.188-.045-.191-.191a1.1,1.1,0,0,0-.231-.583,5.432,5.432,0,0,0-.993-1.09,2.342,2.342,0,0,0-.528-.295,6.7,6.7,0,0,0-2.107-.6,6.6,6.6,0,0,0-1.349-.019c-.025,0-.05.009-.1.018.054.08.1.151.148.215s.112.109.164.167a.178.178,0,0,1-.013.281,3.689,3.689,0,0,1-.3.248c-.111.08-.187.059-.224-.068s-.135-.155-.242-.09a1.673,1.673,0,0,0-.311.247c-.04.04-.042.119-.061.18-.012.038-.023.076-.039.13a.542.542,0,0,1-.156-.357,1.9,1.9,0,0,1-.007-.213,1.112,1.112,0,0,0-.028-.137c.081-.04.171-.082.26-.128.134-.07.139-.084.1-.231-.012-.04-.027-.08-.046-.132-.1.023-.19.043-.282.072-.021.006-.038.04-.048.064a.371.371,0,0,1-.426.279,1.206,1.206,0,0,0-.156,0c-.106.009-.137.062-.1.159a.245.245,0,0,0,.026.052.234.234,0,0,1,.015.319c-.046.057,0,.1.047.138.135.1.268.2.407.286a.209.209,0,0,0,.145.026,1.162,1.162,0,0,0,.584-.316,1.236,1.236,0,0,1,.146-.112l.039.028a.939.939,0,0,1-.054.151.311.311,0,0,1-.089.09c-.078.057-.073.114-.008.176a.5.5,0,0,1,.153.3.915.915,0,0,0,.614.758.959.959,0,0,1,.189.1c.088.06.086.1,0,.162-.108.073-.223.137-.325.218a2.064,2.064,0,0,0-.274.263c-.081.094-.059.149.058.182.173.048.348.088.52.137a.8.8,0,0,1,.187.08.1.1,0,0,1,.04.085c-.087.265-.166.535-.276.791a.265.265,0,0,1-.423.144,4.722,4.722,0,0,1-.5-.3.223.223,0,0,1-.038-.344.348.348,0,0,0,.034-.338,2.229,2.229,0,0,0-.178-.377.422.422,0,0,0-.382-.2c-.069,0-.105-.023-.115-.1-.013-.1-.066-.132-.166-.1a.491.491,0,0,0-.158.076,1.058,1.058,0,0,1-.541.207.392.392,0,0,0-.289.16.886.886,0,0,1-.143.126.5.5,0,0,1-.012-.121c.01-.052.029-.1-.028-.14-.008-.006,0-.056.015-.068a.217.217,0,0,1,.09-.032,1.34,1.34,0,0,0,.661-.378.5.5,0,0,0,.063-.093l-.012-.024a.96.96,0,0,0-.154.028c-.129.045-.255.1-.384.146a1.289,1.289,0,0,0-.489.331,4.99,4.99,0,0,1-.412.359.98.98,0,0,1-.172.086c.011-.074.013-.116.024-.158.029-.114.067-.225.09-.34a.423.423,0,0,0-.018-.136.4.4,0,0,0-.117.057,2.192,2.192,0,0,0-.24.271.394.394,0,0,1-.466.152c-.119-.032-.232-.084-.354-.13a1.064,1.064,0,0,0-.064.559.336.336,0,0,0,.346.288c.2,0,.4-.01.6-.02a.168.168,0,0,1,.193.126,2.616,2.616,0,0,0,.1.275.283.283,0,0,0,.365.179,1.6,1.6,0,0,0,.592-.315.381.381,0,0,0,.094-.188c.094-.31.21-.373.5-.23a7.8,7.8,0,0,1,.711.411.531.531,0,0,1,.159.191.21.21,0,0,0,.18.127,3.187,3.187,0,0,1,.321.027.213.213,0,0,1,.21.218c.018.156.026.312.034.469a1.121,1.121,0,0,0,.178.571,2.41,2.41,0,0,1,.436,1.378,1.216,1.216,0,0,1-.422.935,2.69,2.69,0,0,1-1.325.679,1.135,1.135,0,0,1-1.219-.516,2.192,2.192,0,0,0-.26-.329c-.138-.142-.267-.11-.349.072-.02.044-.038.089-.065.151-.055-.06-.1-.112-.151-.161a1.272,1.272,0,0,0-.144-.132c-.076-.055-.141-.032-.143.06a2.08,2.08,0,0,0,.031.376c.013.079.051.155.072.233a.179.179,0,0,1-.077.205c-.156.111-.312.224-.472.329a.133.133,0,0,1-.106-.009q-.725-.344-1.447-.694c-.117-.057-.232-.12-.344-.187a.139.139,0,0,1-.055-.1.516.516,0,0,1,.016-.174,2.153,2.153,0,0,0,0-.894c-.05-.335-.113-.668-.171-1a.287.287,0,0,0-.024-.048,6.84,6.84,0,0,0,.149,2.167c-.135-.077-.256-.142-.372-.215-.024-.015-.033-.062-.039-.1a7.225,7.225,0,0,1-.017-2.369,7.174,7.174,0,0,1,1.539-3.444,7.113,7.113,0,0,1,3.343-2.295,6.972,6.972,0,0,1,2.848-.327,6.989,6.989,0,0,1,3.664,1.421,7.033,7.033,0,0,1,2.442,3.41,7.075,7.075,0,0,1,.333,3.079c-.016.148-.041.3-.065.443a.1.1,0,0,1-.034.063C-1130.192,947.3-1130.384,947.406-1130.58,947.517Zm-13.061-2.971-.036,0c-.018.1-.037.2-.054.3-.032.186,0,.248.16.34a.322.322,0,0,0,.089.02c.005-.03.021-.064.014-.091C-1143.522,944.928-1143.582,944.737-1143.641,944.546Zm.549-1.372c-.128-.046-.159-.015-.2.188Z" transform="translate(1148.915 -938.739)" fill="#007748"/>
<path id="Path_8522" data-name="Path 8522" d="M-1323.2,1037.5l.191-.205c.111.1.221.2.326.3a5.315,5.315,0,0,1,1.208,1.576,2.132,2.132,0,0,1,.145,1.643,2.152,2.152,0,0,1-.822,1.046,4.646,4.646,0,0,1-1.322.643,12.51,12.51,0,0,1-4.036.471,23.336,23.336,0,0,1-3.4-.322,30.468,30.468,0,0,1-3.724-.855,28.522,28.522,0,0,1-3.373-1.219,19.556,19.556,0,0,1-3.458-1.9,8.917,8.917,0,0,1-1.978-1.812,3.58,3.58,0,0,1-.61-1.109,1.951,1.951,0,0,1,.164-1.686,2.683,2.683,0,0,1,1.023-.919,6.273,6.273,0,0,1,1.8-.625,14.09,14.09,0,0,1,2.745-.252l.054,0c-.094.1-.172.19-.26.271-.024.022-.073.021-.11.024-.524.037-1.051.052-1.572.113a6.86,6.86,0,0,0-2.479.7,2.5,2.5,0,0,0-.906.762,1.546,1.546,0,0,0-.252,1.239,3.578,3.578,0,0,0,.931,1.651,10.431,10.431,0,0,0,2.253,1.824,22.44,22.44,0,0,0,4.233,2.036,28.775,28.775,0,0,0,3.9,1.144c.768.166,1.543.3,2.319.419a20.383,20.383,0,0,0,3.378.23,12.888,12.888,0,0,0,2.375-.229,5.8,5.8,0,0,0,1.891-.667,2.485,2.485,0,0,0,.707-.612,1.626,1.626,0,0,0,.232-1.586,4.145,4.145,0,0,0-1.01-1.543C-1322.819,1037.861-1323.012,1037.684-1323.2,1037.5Z" transform="translate(1345.003 -1030.434)" fill="#007748"/>
<path id="Path_8523" data-name="Path 8523" d="M-1012.067,1557.4a7.1,7.1,0,0,1-9.338-.088,2.753,2.753,0,0,1,.457-.017c.077.009.147.089.217.141a6.645,6.645,0,0,0,2.2,1.083,6.461,6.461,0,0,0,2.471.22l.422-.046c.016-.085.026-.154.041-.221.008-.034.028-.066.04-.1.053-.158.024-.2-.144-.229-.1-.016-.193-.033-.287-.058a.144.144,0,0,1-.116-.169c.016-.1.043-.2.069-.3a1.04,1.04,0,0,1,.051-.138c.083-.2.207-.4.031-.624A29.374,29.374,0,0,0-1012.067,1557.4Z" transform="translate(1028.564 -1544.731)" fill="#007748"/>
<path id="Path_8524" data-name="Path 8524" d="M-769.651,1125.851c.686-.2,1.367-.393,2.04-.606a25.341,25.341,0,0,0,2.766-1.059,18.18,18.18,0,0,0,3.551-2.049,7.654,7.654,0,0,0,1.6-1.571,2.813,2.813,0,0,0,.563-1.214,4.627,4.627,0,0,0,.012-.641c0-.141.006-.281.009-.422,0-.08,0-.161,0-.265a1.653,1.653,0,0,1,.252.565,2.169,2.169,0,0,1-.181,1.438,5.077,5.077,0,0,1-1.124,1.517,12.456,12.456,0,0,1-2.256,1.7,22.312,22.312,0,0,1-3.341,1.641c-.978.391-1.978.718-2.989,1.011a1.191,1.191,0,0,1-.714,0C-769.521,1125.878-769.585,1125.866-769.651,1125.851Z" transform="translate(781.746 -1114.509)" fill="#007748"/>
<path id="Path_8525" data-name="Path 8525" d="M-719.6,1414.147c.145.021.289.041.433.064a.393.393,0,0,0,.348-.077c.043-.036.135-.025.2-.018a1.769,1.769,0,0,1,.208.053.223.223,0,0,0,.255-.1c.046-.071.089-.144.129-.219a.379.379,0,0,1,.515-.224,2.313,2.313,0,0,0,.239.049.723.723,0,0,0,.622-.22c.028-.027.057-.053.087-.078a.274.274,0,0,1,.389,0,.386.386,0,0,1,.058.076c.116-.044.208-.087.3-.113.194-.052.285.027.278.229,0,.029,0,.058,0,.086.147.1.156.149.035.283-.067.074-.148.137-.223.205l.071.172c.185-.251.369-.484.535-.729a6.641,6.641,0,0,0,.714-1.389.26.26,0,0,1,.106-.115c.108-.066.222-.122.358-.2-.026.079-.044.135-.063.191a7.187,7.187,0,0,1-1.494,2.547.163.163,0,0,1-.117.047c-.54-.039-1.082-.066-1.62-.129-.6-.07-1.2-.172-1.8-.263-.18-.028-.359-.068-.538-.1-.011,0-.021-.013-.031-.019Z" transform="translate(732.684 -1402.614)" fill="#007748"/>
<path id="Path_8526" data-name="Path 8526" d="M-456.461,973.893a.764.764,0,0,1,.572-.063c.192.061.38.137.567.213a.13.13,0,0,0,.149-.016,9.488,9.488,0,0,1,1.468-.951.681.681,0,0,1,.415-.1l-1.273,1.323.6.28c.471.218.942.434,1.411.655a.1.1,0,0,0,.133-.026c.132-.121.269-.237.407-.352a.61.61,0,0,1,.107-.059l.017.018c-.032.04-.064.081-.1.121-.1.125-.213.247-.314.376a.251.251,0,0,0-.048.139c-.005.217,0,.435-.015.655a2.4,2.4,0,0,1-.158-.758l-2.221-.564.142,1.856a.393.393,0,0,1-.261-.234c-.106-.27-.217-.538-.3-.816-.093-.319-.157-.646-.229-.971a.116.116,0,0,0-.1-.1q-.271-.082-.538-.18A.891.891,0,0,1-456.461,973.893Z" transform="translate(474.695 -972.298)" fill="#007748"/>
<path id="Path_8527" data-name="Path 8527" d="M-1355.077,1447.453a.8.8,0,0,1-.6.124c-.184-.04-.367-.09-.548-.142a.133.133,0,0,0-.146.039,9.425,9.425,0,0,1-1.279,1.061,2.133,2.133,0,0,1-.265.146.266.266,0,0,1-.156.013l1.082-1.419-.413-.137c-.56-.186-1.119-.373-1.68-.556a.124.124,0,0,0-.1.032c-.115.12-.223.246-.336.368a1.112,1.112,0,0,1-.117.1l-.019-.017c.1-.151.188-.309.3-.451a.38.38,0,0,0,.062-.329c-.029-.172-.049-.346-.072-.52l.025-.01a.4.4,0,0,1,.054.09c.053.188.1.376.152.566.012.049.021.078.081.086.608.079,1.216.162,1.823.244l.362.048-.347-1.8a.437.437,0,0,1,.256.171,4.4,4.4,0,0,1,.494,1.018c.087.228.162.461.237.693a.134.134,0,0,0,.123.1c.185.035.372.068.553.121A.914.914,0,0,1-1355.077,1447.453Z" transform="translate(1360.181 -1435.056)" fill="#007748"/>
<path id="Path_8528" data-name="Path 8528" d="M-1125.089,1420.839c-.146.007-.272.016-.4.017a.124.124,0,0,1-.079-.045,7.061,7.061,0,0,1-1.3-2.194c-.038-.1-.073-.206-.119-.335.178.093.328.176.482.25q.746.354,1.5.7a.289.289,0,0,1,.136.477,2.736,2.736,0,0,1-.343.361.545.545,0,0,1-.43.106c.1.126.182.234.269.337S-1125.193,1420.721-1125.089,1420.839Z" transform="translate(1132.073 -1408.883)" fill="#007748"/>
<path id="Path_8529" data-name="Path 8529" d="M-1110.622,1533.068a24.273,24.273,0,0,1-5.9.65,1.394,1.394,0,0,0-.036-.149,1.353,1.353,0,0,0-.063-.134c.26,0,.514,0,.767,0a19.288,19.288,0,0,0,2.4-.159c.73-.1,1.454-.232,2.182-.348a.39.39,0,0,1,.152.007C-1110.952,1532.975-1110.787,1533.023-1110.622,1533.068Z" transform="translate(1121.912 -1521.275)" fill="#007748"/>
<path id="Path_8530" data-name="Path 8530" d="M-1384.923,1287.771l.2.219c-.087.082-.174.163-.26.246a5.132,5.132,0,0,0-1.076,1.4,1.95,1.95,0,0,0-.218,1.3,1.181,1.181,0,0,0,.108.323,1.951,1.951,0,0,1,.126.665,1.675,1.675,0,0,1-.4-.579,2.026,2.026,0,0,1,.033-1.626,4.475,4.475,0,0,1,.938-1.386C-1385.3,1288.14-1385.116,1287.963-1384.923,1287.771Z" transform="translate(1386.605 -1280.929)" fill="#007748"/>
<path id="Path_8531" data-name="Path 8531" d="M-1275.451,1184.554l-.192-.2a16.748,16.748,0,0,1,2.651-1.664c-.038.133-.067.245-.1.356-.007.023-.038.043-.063.057a15.675,15.675,0,0,0-2.266,1.445A.133.133,0,0,1-1275.451,1184.554Z" transform="translate(1277.818 -1177.905)" fill="#007748"/>
<path id="Path_8532" data-name="Path 8532" d="M-419.9,1187.584a16.977,16.977,0,0,1,2.553,1.586l-.208.2c-.213-.149-.419-.31-.639-.446-.5-.31-1.01-.61-1.518-.91a.2.2,0,0,1-.11-.135C-419.846,1187.783-419.873,1187.693-419.9,1187.584Z" transform="translate(438.854 -1182.706)" fill="#007748"/>
<path id="Path_8533" data-name="Path 8533" d="M-516.126,1027.992c-.289-.01-.569-.019-.848-.031a.142.142,0,0,1-.076-.036c-.082-.069-.162-.141-.243-.212l.02-.032a.431.431,0,0,1,.07-.01c.264.006.528.012.791.024a.162.162,0,0,1,.1.056C-516.249,1027.824-516.193,1027.9-516.126,1027.992Z" transform="translate(534.335 -1025.928)" fill="#007748"/>
<path id="Path_8534" data-name="Path 8534" d="M-675.076,985.946a.677.677,0,0,1-.515-.193.749.749,0,0,1-.122-.238.114.114,0,0,1,.027-.1.123.123,0,0,1,.106.008,1.754,1.754,0,0,1,.229.147.9.9,0,0,0,.5.2c.03,0,.057.029.086.045-.024.027-.043.07-.073.079C-674.928,985.92-675.022,985.935-675.076,985.946Z" transform="translate(689.653 -984.488)" fill="#007748"/>
</svg>
</button>
<h4 class="pt-2" style="color: #007748;">Set travel plan</h4>
<p style="font-size: small; color: #848484;">Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
</div>
</div>
<div class="col-md-6 col-sm-4">
<div class="card-body">
<button class="btn-why-us">
<svg id="Group_4042" data-name="Group 4042" xmlns="http://www.w3.org/2000/svg" width="9.172" height="14.75" viewBox="0 0 9.172 14.75">
<path id="Path_8536" data-name="Path 8536" d="M-516.486,1071.449q0-2.97,0-5.94a1.321,1.321,0,0,1,.777-1.282,1.509,1.509,0,0,1,.625-.138q3.182-.015,6.364-.005a1.357,1.357,0,0,1,1.4,1.4c.007,1.184,0,2.369,0,3.553q0,3.268,0,6.536c0,.61,0,1.22,0,1.83a1.328,1.328,0,0,1-.777,1.283,1.483,1.483,0,0,1-.612.138q-3.195.014-6.39,0a1.359,1.359,0,0,1-1.389-1.425c0-1.118,0-2.236,0-3.355v-2.6Zm.9,4.346h7.36v-9.512h-7.36Zm4.353,1.52a.67.67,0,0,0-.677-.671.67.67,0,0,0-.665.682.669.669,0,0,0,.669.664A.67.67,0,0,0-511.232,1077.314Zm-.677-12.542c-.132,0-.265,0-.4,0a.44.44,0,0,0-.442.421.43.43,0,0,0,.4.464,7.95,7.95,0,0,0,.9,0,.431.431,0,0,0,.4-.463.44.44,0,0,0-.442-.422C-511.635,1064.769-511.772,1064.772-511.909,1064.772Z" transform="translate(516.489 -1064.081)" fill="#007748"/>
<path id="Path_8537" data-name="Path 8537" d="M-437.936,1225.263a2.577,2.577,0,0,1,2.563,2.57,2.582,2.582,0,0,1-2.587,2.575,2.583,2.583,0,0,1-2.557-2.592A2.579,2.579,0,0,1-437.936,1225.263Zm-.206,2.78c-.051-.035-.091-.062-.129-.09-.175-.128-.344-.263-.524-.383a.442.442,0,0,0-.692.281.456.456,0,0,0,.207.47q.437.323.875.645a.472.472,0,0,0,.745-.1q.562-.688,1.12-1.379c.019-.024.038-.049.056-.074a.441.441,0,0,0-.071-.607.438.438,0,0,0-.619.05c-.166.189-.32.389-.479.584Z" transform="translate(442.531 -1220.989)" fill="#007748"/>
</svg>
</button>
<h4 class="pt-2" style="color: #007748;">Set travel plan</h4>
<p style="font-size: small; color: #848484;">Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
</div>
</div>
<div class="col-md-6 col-sm-4">
<div class="card-body">
<button class="btn-why-us">
<svg id="Group_4044" data-name="Group 4044" xmlns="http://www.w3.org/2000/svg" width="8.98" height="14.442" viewBox="0 0 8.98 14.442">
<path id="Path_8541" data-name="Path 8541" d="M-2066.278,1158.8a2.494,2.494,0,0,1-2.5-2.5,2.513,2.513,0,0,1,2.511-2.536,2.531,2.531,0,0,1,2.529,2.526A2.513,2.513,0,0,1-2066.278,1158.8Zm.02-1.8c.211.238.364.431.537.6a.541.541,0,0,0,.8.045.535.535,0,0,0-.027-.8c-.179-.182-.386-.335-.648-.56.183-.135.287-.2.381-.284a3.46,3.46,0,0,0,.261-.26.55.55,0,0,0,.046-.807.545.545,0,0,0-.829.05c-.172.171-.329.358-.547.6-.193-.225-.329-.4-.485-.561-.3-.309-.6-.339-.851-.1a.566.566,0,0,0,.066.854c.163.166.341.316.58.536-.248.212-.455.366-.634.549a.537.537,0,0,0-.027.781.542.542,0,0,0,.8-.024C-2066.648,1157.442-2066.49,1157.252-2066.257,1157Z" transform="translate(2070.756 -1149.577)" fill="#007748"/>
<path id="Path_8536" data-name="Path 8536" d="M-2073.68,1150.584v-5.815a1.292,1.292,0,0,1,.76-1.256,1.473,1.473,0,0,1,.612-.135q3.116-.014,6.23,0a1.329,1.329,0,0,1,1.369,1.287c0,.027,0,.054,0,.082.007,1.16,0,2.319,0,3.479v6.4c0,.6,0,1.194,0,1.791a1.3,1.3,0,0,1-.761,1.256,1.449,1.449,0,0,1-.6.135q-3.129.014-6.256,0a1.33,1.33,0,0,1-1.361-1.3.966.966,0,0,1,0-.1c0-1.095,0-2.19,0-3.284v-2.544Zm.882,4.255h7.207v-9.312h-7.207Zm4.262,1.49a.657.657,0,0,0-.656-.657h-.006a.656.656,0,0,0-.651.66v.008a.655.655,0,0,0,.655.65.656.656,0,0,0,.658-.653v-.007Zm-.664-12.281c-.129,0-.259,0-.389,0a.43.43,0,0,0-.433.412.419.419,0,0,0,.384.453h0a7.628,7.628,0,0,0,.881,0,.422.422,0,0,0,.388-.453h0a.432.432,0,0,0-.433-.413c-.134,0-.268,0-.4,0Z" transform="translate(2073.685 -1143.37)" fill="#007748"/>
</svg>
</button>
<h4 class="pt-2" style="color: #007748;">Set travel plan</h4>
<p style="font-size: small; color: #848484;">Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
</div>
</div>
</div>
</div>
<div class="col-sm d-flex justify-content-center" style="align-items: end;">
<img src="assets/Why us/3997631.svg" class="img-fluid pb-3" alt="woman standing">
</div>
</div>
</div>
</section>
<section class="about pt-5 pb-5" style="background-color: #f1f5f9;" id="footer" >
<div class="container">
<div class="text-center position-relative">
<h1 class="" style="color: #007748;">Quick And Easy Trip Planner</h1>
<div class="text-center d-flex justify-content-center position-relative" style="top: -20px;">
<hr class="" width="30%" style="height: 3px; border-color: #007748; border: 5px; background-color: #007748; opacity: 1;">
</div>
</div>
<div class="py-3" style="padding-left: 20px; padding-right: 20px; margin-left: 5px; margin-right: 5px;">
<div class="row d-flex flex-row">
<!-- <div class="col-1 d-flex justify-content-end align-items-center">
<button class="previous2"><i class="bi bi-chevron-left"></i></button>
</div> -->
<div class="col-md-12 ">
<div class="my-slider2" >
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4216.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4217.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline ">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4218.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4219.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4216.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4217.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="position-relative z-n1" >
<img src="assets/Quick And Easy Trip planer/Group 4218.png" class="card-img-bottom " alt="">
<div class="card-img-overlay">
<div class="d-flex justify-content-between align-items-end text-light">
<h5>Lahore</h5>
<a class="text-decoration-underline">view hotel</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="col-1 d-flex justify-content-start align-items-center">
<button class="next2"><i class="bi bi-chevron-right"></i></button>
</div> -->
</div>
<div class="d-flex justify-content-center py-3">
<span class="previous2 link-underline-success px-2 text-decoration-underline text-success">Prev</span>
<div class="slider-nav">
<i class="bi-dot"></i>
<i class="bi-dot"></i>
<i class="bi-dot"></i>
<i class="bi-dot"></i>
</div>
<span class="next2 link-underline-success px-2 text-decoration-underline text-success">Next</span>
</div>
</div>
</div>
</section>
<section style="margin-top:20px; margin-bottom: 20px; " class="pt-5 pb-5">
<div class="container" >
<h1 class="text-center" style="color: #007748;">Visits State and Countries</h1><br>
<div class="text-center position-relative">
<div class="text-center d-flex justify-content-center position-relative" style="top: -48px;">
<hr class="" width="30%" style="height: 3px; border-color: #007748; border: 5px; background-color: #007748; opacity: 1;">
</div>
</div>
<div class="d-flex justify-content-center">
<ul class="nav nav-pills mb-3 mx-0 d-flex justify-content-center" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="showall-tab" data-toggle="pill" href="#showall" role="tab" aria-controls="showall" aria-selected="true">Show All</a>
</li>
<li class="nav-item">
<a class="nav-link" id="smartphones" data-toggle="pill" href="#Phones" role="tab" aria-controls="Cars" aria-selected="false">Phones</a>
</li>
<li class="nav-item">
<a class="nav-link" id="skincare" data-toggle="pill" href="#Skincare" role="tab" aria-controls="City" aria-selected="false">Skincare</a>
</li>
<li class="nav-item">
<a class="nav-link" id="laptops" data-toggle="pill" href="#Laptops" role="tab" aria-controls="Forest" aria-selected="false">Laptops</a>
</li>
</ul>
</div>
<div class="container d-flex justify-content-center flex-wrap" id="card-container-test">
<!-- <div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 213.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart-fill" style="color: rgba(194, 3, 3, 0.773);"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 213.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 213.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 214.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 215.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 216.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 217.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 218.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 212.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div>
<div class="Portfolio"><a href="#!"><img class="card-img" src="assets/Visit States and Countries/Mask Group 213.png" alt=""></a><div class="desc row">
<div class="col-12 d-flex justify-content-between">
<div><p>Entire cabin. 9 beds</p></div> <div><i class="bi bi-heart"></i></div>
</div>
</div></div> -->
</div>
</div>
<div class="d-flex justify-content-center">
<button class="show-btn" id="show-more1">
show more
</button>
<button class="show-btn d-none" id="show-less1">
show less
</button>
</div>
</div>
</section>
<section style="background-color: #003a23;" class="pt-5 pb-5">
<div class="container pb-5">
<div class="row">
<div class="col-md-6 col-sm-4 m-auto">
<h1 class="text-light" style="color: #007748;">
Where can we <br> take you
</h1>
<p class="text-light">Discover over 300 brands in <br> thousands of global destinations.</p>
<button class=" myButton">
Explore the world
</button>
</div>
<div class="col-md-6 col-sm-4"><img class="img-fluid" src="assets/images/Group 2.png" alt="Grouped photos of destinations " style="padding-top: 40px;"></div>
</div>
</div>
</section>
<section class="mb-5 pt-5 pb-5">
<div class="container m-auto position-relative">
<div class="position-relative">
<h1 class="text-center" style="color: #007748;">Around The World With Us</h1>
<div class="text-center d-flex justify-content-center position-relative" style="top: -20px;">
<hr class="" width="30%" style="height: 3px; border-color: #007748; border: 5px; background-color: #007748; opacity: 1;">
</div>
</div>
<div class="row d-flex justify-content-center mt-5">
<div class="col-md-2 col-sm-3 flex-sm-column d-flex justify-content-center flex-column p-1"><img src="assets/Around The World With Us/Group 3956.svg" width="160px" alt=""> <br> <input type="radio" style="margin-top: 15px;"></div>
<div class="col-md-2 col-sm-3 d-flex justify-content-center flex-column p-1"><img src="assets/Around The World With Us/Group 3957.svg" width="160px" alt=""> <br> <input type="radio" style="margin-top: 10px;"></div>
<div class="col-md-2 col-sm-3 d-flex justify-content-center flex-column p-1"><img src="assets/Around The World With Us/Central africa.svg" width="160px" alt=""> <br> <input type="radio" style=""></div>
<div class="col-md-2 col-sm-3 d-flex justify-content-center flex-column p-1"><img src="assets/Around The World With Us/Group 3958.svg" width="160px" alt=""> <br> <input type="radio"></div>
<div class="col-md-2 col-sm-3 d-flex justify-content-center flex-column p-1"><img src="assets/Around The World With Us/g7.svg" width="160px" alt=""> <br> <input type="radio"></div>
<div class="d-flex justify-content-center mt-5 line-dotted position-absolute" style="top: 310px;"><img class="line-dotted" src="assets/Around The World With Us/Path 8542.svg" width="70%" alt="" style="position: absolute; z-index: -1;"></div>
</div>
</div>
<div class="container mt-5">