-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1757 lines (1747 loc) · 84.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>goHoliday</title>
<link rel="shortcut icon" href="./assets/img/fav.png" type="image/x-icon" />
<link rel="apple-touch-icon" href="./assets/img/fav.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css"
integrity="sha512-oc9+XSs1H243/FRN9Rw62Fn8EtxjEYWHXRvjS43YtueEewbS6ObfXcJNyohjHqVKFPoXXUxwc+q1K7Dee6vv9g=="
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css"
integrity="sha512-yHknP1/AwR+yx26cB1y0cjvQUMvEa2PFzt1c9LlS4pRQ5NOTZFWbhBig+X9G9eYW/8m0/4OXNx8pxJ6z57x0dw=="
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css"
integrity="sha512-17EgCFERpgZKcm0j0fEq1YCJuyAWdz9KUtv1EjVuaOz8pDnh/0nZxmU6BBXwaaxqoi9PQXnRWqlcDB027hgv9A=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./assets/css/index.min.css" />
</head>
<body>
<!-- Header -->
<header class="siteHeader">
<div class="sectionWrapper">
<div class="row no-gutters justify-content-between align-items-center">
<div class="col-lg-3 col-md-2 col-12">
<a class="logoWrapper" href="index.html">
<img src="./assets/img/logoWhite.png" class="logoLight" alt="" />
<img src="./assets/img/logo.png" class="logoDark" alt="" />
</a>
</div>
<div class="col-lg-9 col-md-10 d-md-block d-none">
<div class="menuWrapper">
<div class="menuItem active">
<a href="index.html">
<span class="mkdf-active-hover"
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 15.7 30"
xml:space="preserve"
class="mkdf-active-hover-left"
>
<polygon
class="st0"
points="2.6,1 0.7,3.3 2,5.8 2.3,7.6 2.9,8.7 4.4,10.5 3.9,10.8 4.4,11.9 4.4,12.8 4.1,13.8 3.3,14.7 3.9,15.8 4.4,16.8 4,17.5 3.5,18.1 2.2,20.2 3.4,21.5 4.2,24.1 3.4,25.4 2.5,27.4 2.5,27.8 3.2,28.3 4.1,28.5 4.9,29 14.8,29 14.8,1 "
></polygon></svg
><span class="mkdf-active-hover-middle"></span
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 13.3 30"
style="enable-background: new 0 0 13.3 30"
xml:space="preserve"
class="mkdf-active-hover-right"
>
<polygon
class="st0"
points="10,1 10.2,2.1 10.6,2.9 10.6,3.3 10.8,3.7 10.8,4.3 11,5 11,5.7 11,6.3 10.5,6.7 10.8,7.3 11,7.8 11.6,8.3 11.6,8.6 11.5,8.9 11.6,9.9 11.6,10.5 12.4,11.6 12.1,12 12.4,12.2 11.8,12.8 11.4,13.5 11.6,13.7 11.9,13.7 12,13.9 11.5,15.1 10.8,16 9.1,17.7 9.7,18.2 9.3,19 9.7,19.8 9.6,20.6 9.7,21.5 9.6,21.9 9.6,22.3 10.1,22.8 9.6,23.6 9.7,24 9.7,24.2 9.9,24.4 9.5,24.7 9.3,25.4 9.3,25.9 8.8,26.2 8.5,27.1 8.8,27.8 9.4,28.6 7.8,29 0.9,29 0.9,1 "
></polygon></svg
></span>
<span class="menuText">Home</span>
</a>
</div>
<div class="menuItem">
<a href="javascript:void(0)">
<span class="mkdf-active-hover"
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 15.7 30"
xml:space="preserve"
class="mkdf-active-hover-left"
>
<polygon
class="st0"
points="2.6,1 0.7,3.3 2,5.8 2.3,7.6 2.9,8.7 4.4,10.5 3.9,10.8 4.4,11.9 4.4,12.8 4.1,13.8 3.3,14.7 3.9,15.8 4.4,16.8 4,17.5 3.5,18.1 2.2,20.2 3.4,21.5 4.2,24.1 3.4,25.4 2.5,27.4 2.5,27.8 3.2,28.3 4.1,28.5 4.9,29 14.8,29 14.8,1 "
></polygon></svg
><span class="mkdf-active-hover-middle"></span
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 13.3 30"
style="enable-background: new 0 0 13.3 30"
xml:space="preserve"
class="mkdf-active-hover-right"
>
<polygon
class="st0"
points="10,1 10.2,2.1 10.6,2.9 10.6,3.3 10.8,3.7 10.8,4.3 11,5 11,5.7 11,6.3 10.5,6.7 10.8,7.3 11,7.8 11.6,8.3 11.6,8.6 11.5,8.9 11.6,9.9 11.6,10.5 12.4,11.6 12.1,12 12.4,12.2 11.8,12.8 11.4,13.5 11.6,13.7 11.9,13.7 12,13.9 11.5,15.1 10.8,16 9.1,17.7 9.7,18.2 9.3,19 9.7,19.8 9.6,20.6 9.7,21.5 9.6,21.9 9.6,22.3 10.1,22.8 9.6,23.6 9.7,24 9.7,24.2 9.9,24.4 9.5,24.7 9.3,25.4 9.3,25.9 8.8,26.2 8.5,27.1 8.8,27.8 9.4,28.6 7.8,29 0.9,29 0.9,1 "
></polygon></svg
></span>
<span class="menuText">About Us</span>
</a>
</div>
<div class="menuItem">
<a href="javascript:void(0)">
<span class="mkdf-active-hover"
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 15.7 30"
xml:space="preserve"
class="mkdf-active-hover-left"
>
<polygon
class="st0"
points="2.6,1 0.7,3.3 2,5.8 2.3,7.6 2.9,8.7 4.4,10.5 3.9,10.8 4.4,11.9 4.4,12.8 4.1,13.8 3.3,14.7 3.9,15.8 4.4,16.8 4,17.5 3.5,18.1 2.2,20.2 3.4,21.5 4.2,24.1 3.4,25.4 2.5,27.4 2.5,27.8 3.2,28.3 4.1,28.5 4.9,29 14.8,29 14.8,1 "
></polygon></svg
><span class="mkdf-active-hover-middle"></span
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 13.3 30"
xml:space="preserve"
class="mkdf-active-hover-right"
>
<polygon
class="st0"
points="10,1 10.2,2.1 10.6,2.9 10.6,3.3 10.8,3.7 10.8,4.3 11,5 11,5.7 11,6.3 10.5,6.7 10.8,7.3 11,7.8 11.6,8.3 11.6,8.6 11.5,8.9 11.6,9.9 11.6,10.5 12.4,11.6 12.1,12 12.4,12.2 11.8,12.8 11.4,13.5 11.6,13.7 11.9,13.7 12,13.9 11.5,15.1 10.8,16 9.1,17.7 9.7,18.2 9.3,19 9.7,19.8 9.6,20.6 9.7,21.5 9.6,21.9 9.6,22.3 10.1,22.8 9.6,23.6 9.7,24 9.7,24.2 9.9,24.4 9.5,24.7 9.3,25.4 9.3,25.9 8.8,26.2 8.5,27.1 8.8,27.8 9.4,28.6 7.8,29 0.9,29 0.9,1 "
></polygon></svg
></span>
<span class="menuText">Packages</span>
</a>
</div>
<div class="menuItem">
<a href="javascript:void(0)">
<span class="mkdf-active-hover"
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 15.7 30"
xml:space="preserve"
class="mkdf-active-hover-left"
>
<polygon
class="st0"
points="2.6,1 0.7,3.3 2,5.8 2.3,7.6 2.9,8.7 4.4,10.5 3.9,10.8 4.4,11.9 4.4,12.8 4.1,13.8 3.3,14.7 3.9,15.8 4.4,16.8 4,17.5 3.5,18.1 2.2,20.2 3.4,21.5 4.2,24.1 3.4,25.4 2.5,27.4 2.5,27.8 3.2,28.3 4.1,28.5 4.9,29 14.8,29 14.8,1 "
></polygon></svg
><span class="mkdf-active-hover-middle"></span
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 13.3 30"
xml:space="preserve"
class="mkdf-active-hover-right"
>
<polygon
class="st0"
points="10,1 10.2,2.1 10.6,2.9 10.6,3.3 10.8,3.7 10.8,4.3 11,5 11,5.7 11,6.3 10.5,6.7 10.8,7.3 11,7.8 11.6,8.3 11.6,8.6 11.5,8.9 11.6,9.9 11.6,10.5 12.4,11.6 12.1,12 12.4,12.2 11.8,12.8 11.4,13.5 11.6,13.7 11.9,13.7 12,13.9 11.5,15.1 10.8,16 9.1,17.7 9.7,18.2 9.3,19 9.7,19.8 9.6,20.6 9.7,21.5 9.6,21.9 9.6,22.3 10.1,22.8 9.6,23.6 9.7,24 9.7,24.2 9.9,24.4 9.5,24.7 9.3,25.4 9.3,25.9 8.8,26.2 8.5,27.1 8.8,27.8 9.4,28.6 7.8,29 0.9,29 0.9,1 "
></polygon></svg
></span>
<span class="menuText">Hotels</span>
</a>
</div>
<div class="menuItem">
<a href="javascript:void(0)">
<span class="mkdf-active-hover"
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 15.7 30"
xml:space="preserve"
class="mkdf-active-hover-left"
>
<polygon
class="st0"
points="2.6,1 0.7,3.3 2,5.8 2.3,7.6 2.9,8.7 4.4,10.5 3.9,10.8 4.4,11.9 4.4,12.8 4.1,13.8 3.3,14.7 3.9,15.8 4.4,16.8 4,17.5 3.5,18.1 2.2,20.2 3.4,21.5 4.2,24.1 3.4,25.4 2.5,27.4 2.5,27.8 3.2,28.3 4.1,28.5 4.9,29 14.8,29 14.8,1 "
></polygon></svg
><span class="mkdf-active-hover-middle"></span
><svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 13.3 30"
xml:space="preserve"
class="mkdf-active-hover-right"
>
<polygon
class="st0"
points="10,1 10.2,2.1 10.6,2.9 10.6,3.3 10.8,3.7 10.8,4.3 11,5 11,5.7 11,6.3 10.5,6.7 10.8,7.3 11,7.8 11.6,8.3 11.6,8.6 11.5,8.9 11.6,9.9 11.6,10.5 12.4,11.6 12.1,12 12.4,12.2 11.8,12.8 11.4,13.5 11.6,13.7 11.9,13.7 12,13.9 11.5,15.1 10.8,16 9.1,17.7 9.7,18.2 9.3,19 9.7,19.8 9.6,20.6 9.7,21.5 9.6,21.9 9.6,22.3 10.1,22.8 9.6,23.6 9.7,24 9.7,24.2 9.9,24.4 9.5,24.7 9.3,25.4 9.3,25.9 8.8,26.2 8.5,27.1 8.8,27.8 9.4,28.6 7.8,29 0.9,29 0.9,1 "
></polygon></svg
></span>
<span class="menuText">Contact Us</span>
</a>
</div>
</div>
<div class="bottomIconsWrapper"></div>
</div>
</div>
</div>
</header>
<!-- Banner -->
<section class="bannerWrapper">
<div class="row no-gutters">
<div class="videoWrapper">
<video
src="./assets/img/videoOne.mp4"
autoplay="true"
muted
loop
></video>
</div>
</div>
<div class="contentWrapper">
<div class="row no-gutters justify-content-center">
<div class="col-lg-6 col-12">
<h1>
It's time for new <br />
<span id="type-text"></span>
<span class="blinking-cursor"></span>
</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolorem
necessitatibus quia in qui? Natus quasi iusto totam earum beatae
repellendus consectetur, neque
</p>
<a href="javascript:void(0)" class="fillUpBtn"
>Book Packages Now!</a
>
</div>
</div>
</div>
</section>
<!-- about us -->
<section class="aboutUsWrapper">
<span class="seperator seperator-top"></span>
<div class="sectionWrapper">
<div class="row no-gutters">
<div class="col-lg-6">
<h2 class="sectionTitle">About GoHoliday</h2>
<p>
Go Holiday Limited was founded with a dream of making holidays an
active part of the consumer’s lifestyle. Our guests have enjoyed
priceless holidays at exceptional destinations all across the
Globe over the years. In the last few years, we have upgraded our
hotels to best in-class standards, expanded our hotels destination
network and invested in human capital and technology to stay ahead
of evolving market trends.
</p>
<p>
Today, holidays are much more than accommodation and food. The new
age traveller seeks immersive experiential holidays that are more
than just the ordinary. Catering to this, we presents you with the
chance to explore diverse destinations and discover exciting
experiences for an unforgettable holiday. we are today the
country’s leading experiential holiday company.
</p>
</div>
</div>
</div>
<div class="aboutSideImg">
<div class="row no-gutters">
<div class="col col-lg-4">
<img
src="./assets/img/about/turkeyMosque.jpeg"
class="img-fluid"
alt=""
/>
<img
src="./assets/img/about/desert.jpeg"
class="img-fluid"
alt=""
/>
</div>
<div class="col col-lg-4 d-md-block d-none">
<img
src="./assets/img/about/burjKhalifa.jpeg"
style="object-position: top"
class="img-fluid"
alt=""
/>
<img
src="./assets/img/about/hongkong.jpeg"
class="img-fluid"
alt=""
/>
</div>
<div class="col col-lg-4">
<img
src="./assets/img/about/norway.jpeg"
class="img-fluid"
alt=""
/>
<img
src="./assets/img/about/riverRafting.jpeg"
class="img-fluid"
alt=""
/>
</div>
</div>
</div>
<div class="sectionWrapper">
<div class="whyUsWrapper">
<div class="whyUsBlock">
<svg
id="Layer_1"
enable-background="new 0 0 512.002 512.002"
height="512"
viewBox="0 0 512.002 512.002"
width="512"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<g>
<path
d="m510.542 351.081c-4.466-14.048-20.033-26.463-43.661-20.538-.057.014-.113.028-.169.044l-98.739 26.616c-3.56-15.51-18.432-26.151-34.6-24.146-5.704.709-25.002 3.451-45.433 6.354-19.501 2.771-39.666 5.636-45.208 6.324-12.206 1.517-28.451.232-45.652-1.127-6.068-.479-12.345-.976-18.767-1.381-5.525-.362-10.262 3.839-10.61 9.351s3.839 10.263 9.351 10.61c6.265.395 12.46.885 18.451 1.358 18.242 1.442 35.471 2.803 49.692 1.036 5.716-.71 25.068-3.46 45.557-6.371 19.446-2.764 39.555-5.62 45.085-6.308 6.295-.773 12.062 3.67 12.844 9.924.248 1.979.906 7.235-12.923 13.575-28.441 13.039-58.753 24.201-83.161 30.622-5.342 1.405-8.532 6.874-7.127 12.215 1.404 5.342 6.872 8.531 12.215 7.127 25.472-6.7 56.967-18.285 86.409-31.784 10.231-4.69 16.471-10.154 20.113-15.652l107.617-29.01c11.852-2.947 17.931 1.791 19.655 7.218 1.663 5.23-.425 11.967-8.829 15.242-8.376 3.155-28.419 11.874-53.777 22.906-33.639 14.634-75.503 32.846-108.892 46.234-41.066 16.468-52.744 18.661-96.196 18.197l-68.459-.758c-.037-.001-.074-.001-.111-.001-3.744 0-7.179 2.094-8.894 5.429l-9.396 18.284c-.324.633-.581 1.297-.765 1.983-1.388 5.18-3.135 7.345-10.368 7.345h-100.638c-1.094 0-2.271-.677-3.229-1.856-.817-1.006-2.613-3.846-1.643-8.48 12.043-57.486 35.775-93.098 72.554-108.87 5.076-2.177 7.426-8.056 5.249-13.132-2.177-5.075-8.053-7.426-13.132-5.249-43.211 18.53-70.768 58.813-84.246 123.15-1.924 9.187.151 18.368 5.693 25.19 4.773 5.877 11.608 9.247 18.753 9.247h100.639c15.14 0 25.274-7.278 29.377-21.071l6.116-11.902 62.279.689c45.922.521 60.494-2.243 103.86-19.633 33.658-13.496 75.67-31.772 109.427-46.457 24.16-10.511 45.026-19.588 52.895-22.547.031-.012.063-.024.095-.036 19.525-7.564 25.191-25.829 20.699-39.961z"
/>
<path
d="m216.009 122.84c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z"
/>
<path
d="m266.009 172.84c0 16.543 13.458 30.001 30 30.001s30-13.458 30-30.001c0-16.542-13.458-29.999-30-29.999s-30 13.457-30 29.999zm40 0c0 5.515-4.486 10.001-10 10.001s-10-4.486-10-10.001c0-5.514 4.486-9.999 10-9.999s10 4.485 10 9.999z"
/>
<path
d="m216.368 201.501c1.575.909 3.294 1.342 4.99 1.342 3.456 0 6.818-1.794 8.67-5.002l69.281-120c2.762-4.783 1.123-10.898-3.66-13.66-4.784-2.763-10.899-1.122-13.66 3.66l-69.281 120c-2.761 4.783-1.123 10.898 3.66 13.66z"
/>
<path
d="m120.419 198.262 120.067 120.958c4.128 4.151 9.625 6.447 15.48 6.464h.063c5.832 0 11.318-2.264 15.499-6.423l120.96-121.858c8.517-8.568 8.478-22.47-.09-30.992-4.156-4.134-9.646-6.41-15.456-6.41h-10.933v-130.001c0-16.542-13.458-30-30-30h-160c-16.542 0-30 13.458-30 30v130h-10.897c-12.104 0-21.952 9.848-21.952 21.951 0 6.229 2.64 12.149 7.259 16.311zm14.693-18.262h20.897c5.522 0 10-4.478 10-10v-140c0-5.514 4.486-10 10-10h160c5.514 0 10 4.486 10 10v140c0 5.522 4.478 10 10 10h20.933c.283 0 .835.077 1.352.591.75.746.754 1.963.008 2.713-.002.002-.004.005-.007.007l-120.918 121.815c-.462.46-.988.557-1.35.557-.002 0-.004 0-.006 0-.362-.001-.892-.1-1.348-.559l-120.286-121.18c-.178-.178-.361-.35-.551-.515-.253-.219-.678-.702-.678-1.479.002-1.075.877-1.95 1.954-1.95z"
/>
<path
d="m132.681 343.196c-5.522 0-9.996 4.478-9.996 10s4.48 10 10.003 10c5.522 0 10-4.478 10-10s-4.478-10-10-10z"
/>
</g>
</g>
</svg>
<h6>Cheap Price Guranteed</h6>
</div>
<div class="whyUsBlock">
<svg
id="Capa_1"
enable-background="new 0 0 511.977 511.977"
height="512"
viewBox="0 0 511.977 511.977"
width="512"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<g>
<path
d="m451.948 178.293c4.142 0 7.5-3.357 7.5-7.5v-72.45c0-14.813-11.547-27.007-26.289-27.76-88.945-4.529-136.75-40.904-157.328-62.183-5.238-5.417-12.285-8.4-19.843-8.4s-14.605 2.983-19.841 8.399c-20.58 21.279-68.385 57.654-157.332 62.184-14.74.753-26.287 12.946-26.287 27.76v209.101c0 60.221 32.401 116.339 84.561 146.455l84.849 48.979c10.503 6.067 22.275 9.1 34.051 9.1 11.773 0 23.549-3.033 34.049-9.099l84.851-48.979c52.158-30.116 84.56-86.234 84.56-146.455v-101.65c0-4.143-3.358-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v101.65c0 54.879-29.528 106.02-77.06 133.465l-84.852 48.98c-16.375 9.459-36.722 9.458-53.099-.001l-84.85-48.979c-47.532-27.445-77.06-78.586-77.06-133.465v-209.102c0-6.82 5.294-12.434 12.051-12.779 94.085-4.791 145.234-43.869 167.351-66.737 2.385-2.467 5.602-3.826 9.058-3.826s6.673 1.359 9.059 3.827c22.115 22.867 73.264 61.945 167.348 66.736 6.759.346 12.053 5.959 12.053 12.779v72.45c0 4.143 3.358 7.5 7.5 7.5z"
/>
<path
d="m100.438 198.293c-4.142 0-7.5 3.357-7.5 7.5v101.65c0 45.828 24.657 88.539 64.35 111.465l84.853 48.981c4.212 2.429 9 3.713 13.847 3.713s9.635-1.284 13.85-3.715l84.852-48.98c39.692-22.925 64.349-65.636 64.349-111.464v-181.46c0-8.854-6.607-16.357-15.364-17.452-67.269-8.461-111.521-34.017-136.808-53.973-6.405-5.039-15.352-5.039-21.765.007-25.278 19.949-69.531 45.505-136.793 53.965-8.762 1.096-15.37 8.599-15.37 17.453v44.81c0 4.143 3.358 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-44.81c0-1.306.958-2.41 2.236-2.569 70.692-8.892 117.446-35.944 144.211-57.066.942-.743 2.26-.744 3.197-.007 26.773 21.129 73.527 48.182 144.226 57.074 1.271.158 2.23 1.263 2.23 2.568v181.46c0 40.488-21.784 78.222-56.849 98.475l-84.847 48.978c-3.873 2.234-8.837 2.232-12.704.002l-84.849-48.979c-35.066-20.254-56.851-57.987-56.851-98.476v-101.65c-.001-4.143-3.358-7.5-7.501-7.5z"
/>
<path
d="m165.073 238.39c6.091 0 11.816 2.371 16.122 6.677l39.19 39.18c2.93 2.93 7.677 2.928 10.606 0l42.93-42.93c2.929-2.93 2.929-7.678 0-10.607-2.929-2.928-7.678-2.928-10.606 0l-37.627 37.628-33.886-33.877c-7.138-7.139-16.63-11.07-26.728-11.07s-19.59 3.932-26.728 11.069c-7.143 7.144-11.077 16.639-11.077 26.737 0 10.101 3.935 19.594 11.077 26.73l60.605 60.605c7.134 7.146 16.629 11.081 26.738 11.081 10.102 0 19.594-3.936 26.723-11.076l121.217-121.219c7.145-7.139 11.08-16.632 11.08-26.731s-3.934-19.594-11.077-26.737c-7.138-7.138-16.63-11.068-26.728-11.068s-19.59 3.931-26.728 11.068l-32.11 32.109c-2.929 2.93-2.929 7.678 0 10.607 2.929 2.928 7.678 2.928 10.606 0l32.11-32.11c4.305-4.305 10.03-6.675 16.122-6.675 6.091 0 11.816 2.37 16.122 6.676 4.31 4.31 6.684 10.038 6.684 16.13 0 6.091-2.373 11.815-6.684 16.122l-121.225 121.226c-4.3 4.307-10.022 6.679-16.112 6.679-6.097 0-11.823-2.372-16.127-6.684l-60.612-60.612c-4.308-4.305-6.681-10.03-6.681-16.121 0-6.092 2.374-11.82 6.684-16.13 4.304-4.306 10.029-6.677 16.12-6.677z"
/>
</g>
</g>
</svg>
<h6>Safe and Secure</h6>
</div>
<div class="whyUsBlock">
<svg
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 511.999 511.999"
style="enable-background: new 0 0 511.999 511.999"
xml:space="preserve"
>
<g>
<g>
<path
d="M321.356,63.796c-56.318-28.458-124.159-17.577-168.81,27.075c-51.895,51.894-57.089,134.64-12.081,192.474
c1.591,2.044,3.969,3.114,6.373,3.114c1.732,0,3.477-0.555,4.95-1.702c3.517-2.737,4.149-7.806,1.413-11.323
c-40.019-51.422-35.394-125.002,10.757-171.153c39.71-39.712,100.038-49.39,150.122-24.083c3.976,2.012,8.83,0.414,10.84-3.563
C326.929,70.658,325.335,65.805,321.356,63.796z"
/>
</g>
</g>
<g>
<g>
<path
d="M385.787,128.239c-2.01-3.977-6.861-5.573-10.841-3.565c-3.977,2.009-5.574,6.861-3.565,10.84
c25.289,50.076,15.606,110.396-24.095,150.096c-46.152,46.15-119.731,50.774-171.153,10.757
c-3.518-2.736-8.586-2.104-11.323,1.412c-2.737,3.517-2.104,8.586,1.413,11.323c26.344,20.502,57.855,30.586,89.266,30.586
c37.547,0,74.952-14.411,103.209-42.668C403.339,252.38,414.225,184.552,385.787,128.239z"
/>
</g>
</g>
<g>
<g>
<path
d="M364.94,97.508c-1.999-2.262-4.099-4.496-6.242-6.638c-2.143-2.143-4.376-4.243-6.638-6.242
c-3.339-2.952-8.439-2.636-11.388,0.703c-2.953,3.338-2.639,8.437,0.7,11.388c2.015,1.78,4.005,3.652,5.915,5.561
c1.908,1.91,3.78,3.899,5.561,5.914c1.594,1.804,3.816,2.725,6.049,2.725c1.899,0,3.805-0.667,5.34-2.023
C367.577,105.946,367.891,100.847,364.94,97.508z"
/>
</g>
</g>
<g>
<g>
<path
d="M446.066,208.41c5.38-8.827,5.38-19.791-0.002-28.616l-10.615-17.407c-1.398-2.294-1.939-5.018-1.521-7.67l3.164-20.103
c1.613-10.245-2.596-20.398-10.982-26.499l-16.451-11.966c-2.175-1.583-3.721-3.892-4.354-6.506l-4.791-19.799
c-2.432-10.057-10.191-17.815-20.247-20.249l-19.8-4.792c-2.614-0.633-4.925-2.179-6.506-4.354l-11.968-16.455
c-6.1-8.386-16.254-12.597-26.496-10.983l-20.11,3.164c-2.652,0.417-5.377-0.123-7.669-1.521L270.308,4.036
c-8.826-5.382-19.79-5.381-28.616,0l-17.408,10.615c-2.292,1.399-5.015,1.937-7.67,1.521l-20.104-3.164
c-10.242-1.612-20.397,2.597-26.497,10.983l-11.966,16.451c-1.583,2.175-3.893,3.721-6.508,4.354l-19.799,4.791
c-10.055,2.432-17.815,10.191-20.249,20.247l-4.792,19.8c-0.633,2.614-2.178,4.925-4.354,6.506L85.89,108.108
c-8.386,6.099-12.594,16.251-10.983,26.496l3.164,20.111c0.417,2.653-0.123,5.377-1.521,7.669l-10.617,17.411
c-5.38,8.826-5.38,19.79,0.001,28.615l10.615,17.408c1.398,2.294,1.939,5.018,1.521,7.67l-3.164,20.104
c-1.613,10.244,2.596,20.398,10.982,26.498l16.451,11.966c2.175,1.581,3.721,3.892,4.354,6.506l4.791,19.799
c2.432,10.057,10.191,17.815,20.247,20.249l8.268,2.001L84.045,465.425c-1.189,2.653-0.86,5.739,0.863,8.081
c1.722,2.342,4.569,3.577,7.457,3.231l45.022-5.383l25.936,37.191c1.518,2.175,3.995,3.453,6.616,3.453
c0.251,0,0.505-0.012,0.757-0.035c2.894-0.272,5.419-2.081,6.608-4.732l57.145-127.479l7.241,4.415
c4.413,2.691,9.36,4.036,14.308,4.036c4.948,0,9.895-1.346,14.308-4.036l7.502-4.574l57.217,127.638
c1.189,2.653,3.713,4.46,6.608,4.732c0.253,0.024,0.506,0.036,0.757,0.036c2.621,0,5.099-1.278,6.616-3.453l25.936-37.191
l45.022,5.383c2.886,0.343,5.735-0.889,7.457-3.231c1.722-2.342,2.053-5.428,0.863-8.081l-55.983-124.883l7.957-1.925
c10.055-2.432,17.815-10.191,20.249-20.247l4.792-19.8c0.633-2.614,2.179-4.925,4.354-6.506l16.455-11.968
c8.386-6.099,12.594-16.251,10.983-26.496l-3.164-20.111c-0.417-2.653,0.123-5.377,1.521-7.669L446.066,208.41z M168.408,487.627
l-20.554-29.474c-1.704-2.444-4.618-3.752-7.576-3.396l-35.679,4.266L155.578,345.3c0.932,0.685,1.768,1.506,2.457,2.455
l11.968,16.455c1.137,1.563,2.415,2.98,3.808,4.242l-26.833,59.857c-1.822,4.067-0.004,8.84,4.062,10.663
c1.072,0.481,2.193,0.708,3.295,0.708c3.082,0,6.026-1.776,7.367-4.77l26.738-59.644c2.631,0.361,5.34,0.355,8.059-0.073
l20.11-3.164c1.204-0.189,2.421-0.172,3.606,0.024L168.408,487.627z M407.732,459.021l-35.68-4.264
c-2.961-0.355-5.872,0.952-7.576,3.396l-20.554,29.474l-51.829-115.619c1.087-0.148,2.196-0.148,3.293,0.024l20.103,3.164
c2.829,0.445,5.648,0.431,8.379,0.024l26.758,59.692c1.343,2.995,4.285,4.77,7.367,4.77c1.103,0,2.224-0.227,3.295-0.708
c4.066-1.822,5.885-6.597,4.062-10.663l-26.935-60.085c1.299-1.206,2.5-2.541,3.571-4.013l11.966-16.451
c0.754-1.037,1.678-1.926,2.716-2.645L407.732,459.021z M432.287,200.008l-10.617,17.411c-3.385,5.554-4.695,12.152-3.684,18.578
l3.164,20.11c0.665,4.229-1.073,8.42-4.534,10.938l-16.456,11.969c-5.267,3.832-9.013,9.429-10.545,15.76l-4.792,19.8
c-1.005,4.151-4.207,7.354-8.359,8.359l-19.8,4.791c-6.332,1.532-11.93,5.278-15.762,10.546l-11.966,16.451
c-2.518,3.463-6.708,5.199-10.939,4.533l-20.104-3.164c-6.427-1.011-13.026,0.297-18.581,3.684l-17.407,10.615
c-3.643,2.22-8.171,2.22-11.812,0l-17.411-10.616c-4.33-2.641-9.294-4.017-14.317-4.017c-1.42,0-2.847,0.11-4.262,0.333
l-20.111,3.164c-4.23,0.666-8.42-1.073-10.938-4.534l-11.969-16.455c-3.832-5.267-9.429-9.013-15.76-10.545l-19.8-4.792
c-4.151-1.005-7.354-4.207-8.359-8.359l-4.791-19.799c-1.532-6.332-5.277-11.931-10.546-15.763l-16.45-11.967
c-3.462-2.518-5.199-6.71-4.533-10.939l3.164-20.104c1.011-6.427-0.297-13.025-3.684-18.58l-10.615-17.409
c-2.221-3.643-2.221-8.17,0-11.812l10.617-17.411c3.386-5.554,4.695-12.152,3.684-18.578l-3.164-20.11
c-0.665-4.229,1.073-8.42,4.534-10.938l16.456-11.969c5.267-3.832,9.013-9.429,10.545-15.76l4.792-19.8
c1.005-4.151,4.207-7.354,8.359-8.359l19.8-4.791c6.332-1.532,11.93-5.278,15.761-10.546l11.966-16.451
c2.518-3.462,6.708-5.201,10.939-4.534l20.104,3.164c6.428,1.013,13.027-0.297,18.581-3.684l17.407-10.615
c3.643-2.22,8.171-2.22,11.812,0l17.411,10.616c5.554,3.388,12.154,4.697,18.579,3.685l20.111-3.164
c4.228-0.663,8.42,1.073,10.938,4.534l11.969,16.455c3.832,5.267,9.429,9.013,15.76,10.545l19.8,4.792
c4.151,1.005,7.354,4.207,8.359,8.359l4.791,19.799c1.532,6.332,5.277,11.931,10.546,15.763l16.451,11.966
c3.462,2.518,5.199,6.71,4.533,10.939l-3.164,20.104c-1.011,6.427,0.297,13.025,3.684,18.58l10.615,17.409
C434.509,191.838,434.509,196.365,432.287,200.008z"
/>
</g>
</g>
<g>
<g>
<path
d="M350.416,168.997c-1.778-5.474-6.433-9.296-12.149-9.974l-48.551-5.757l-20.478-44.395
c-2.411-5.226-7.484-8.473-13.24-8.473c-5.755,0-10.829,3.247-13.24,8.473l-20.478,44.396l-48.551,5.757
c-5.716,0.678-10.372,4.5-12.149,9.974c-1.778,5.471-0.258,11.3,3.966,15.207l35.895,33.195l-9.528,47.954
c-1.121,5.646,1.075,11.254,5.732,14.636c2.569,1.866,5.55,2.811,8.55,2.811c2.439,0,4.889-0.624,7.14-1.884l42.662-23.879
l42.662,23.879c5.023,2.812,11.034,2.457,15.691-0.926c4.657-3.383,6.853-8.992,5.731-14.637l-9.528-47.953l35.895-33.195
C350.674,180.299,352.194,174.471,350.416,168.997z M296.282,208.62c-2.06,1.905-2.982,4.744-2.436,7.496l9.75,49.071
l-43.658-24.437c-1.224-0.685-2.582-1.028-3.941-1.028c-1.359,0-2.716,0.342-3.941,1.028l-43.658,24.437l9.75-49.071
c0.548-2.753-0.375-5.591-2.436-7.496L178.98,174.65l49.686-5.891c2.786-0.33,5.201-2.085,6.377-4.632l20.955-45.431
l20.955,45.431c1.176,2.547,3.59,4.302,6.377,4.632l49.684,5.891L296.282,208.62z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
<h6>World Class Quality</h6>
</div>
<div class="whyUsBlock">
<svg
id="line"
height="512"
viewBox="0 0 64 64"
width="512"
xmlns="http://www.w3.org/2000/svg"
>
<path d="m30.989 2h2v2h-2z" />
<path
d="m26.397 2.914h2v2h-2z"
transform="matrix(.924 -.383 .383 .924 .589 10.786)"
/>
<path
d="m22.504 5.515h2v2h-2z"
transform="matrix(.707 -.707 .707 .707 2.278 18.528)"
/>
<path
d="m19.903 9.408h2v2h-2z"
transform="matrix(.383 -.924 .924 .383 3.286 25.735)"
/>
<path
d="m42.076 9.408h2v2h-2z"
transform="matrix(.924 -.383 .383 .924 -.703 17.283)"
/>
<path
d="m39.475 5.515h2v2h-2z"
transform="matrix(.707 -.707 .707 .707 7.248 30.528)"
/>
<path
d="m35.582 2.914h2v2h-2z"
transform="matrix(.383 -.924 .924 .383 18.963 36.211)"
/>
<path
d="m57.991 43.885-3-26a1 1 0 0 0 -.991-.885h-13.055a9.2 9.2 0 0 0 .055-1 9 9 0 0 0 -18 0 9.2 9.2 0 0 0 .055 1h-13.055a1 1 0 0 0 -.993.885l-3 26a1 1 0 0 0 .284.821 6.072 6.072 0 0 1 0 8.586 1 1 0 0 0 .709 1.708h21a5.914 5.914 0 0 0 4-1.544 5.914 5.914 0 0 0 4 1.544h5v6a1 1 0 0 0 1.707.707l3.293-3.293 3.293 3.293a1 1 0 0 0 1.707-.707v-6h6a1 1 0 0 0 .707-1.707 6.072 6.072 0 0 1 0-8.586 1 1 0 0 0 .284-.822zm-25.991-34.885a7.008 7.008 0 0 1 7 7 6.936 6.936 0 0 1 -2.838 5.617 1 1 0 0 0 -.4.716l-.324 3.667h-2.438v-5.586l2.707-2.707-1.414-1.414-2.293 2.293-2.293-2.293-1.414 1.414 2.707 2.707v5.586h-2.438l-.324-3.667a1 1 0 0 0 -.4-.716 6.936 6.936 0 0 1 -2.838-5.617 7.008 7.008 0 0 1 7-7zm-3.084 21-.177-2h6.522l-.177 2zm5.789 2a2.829 2.829 0 0 1 -5.41 0zm14.295 26.586-2.293-2.293a1 1 0 0 0 -1.414 0l-2.293 2.293v-9.586h6zm5.985-5.586h-3.985v-5a1 1 0 0 0 -1-1h-13v2h4v4h-5a3.96 3.96 0 0 1 -3.2-1.625 1.037 1.037 0 0 0 -1.6 0 3.96 3.96 0 0 1 -3.2 1.625h-18.985a7.992 7.992 0 0 0 .8-2h17.185v-2h-16.929a8.03 8.03 0 0 0 -1.056-4h18.985a3.96 3.96 0 0 1 3.2 1.625 1.037 1.037 0 0 0 1.6 0 3.96 3.96 0 0 1 3.2-1.625h18.985a8.1 8.1 0 0 0 0 8zm-18.985-10a5.914 5.914 0 0 0 -4 1.544 5.914 5.914 0 0 0 -4-1.544h-19.878l2.77-24h12.621a8.934 8.934 0 0 0 2.771 3.941l.716 8.147a.966.966 0 0 0 .043.151h-.017l.273 1.089a4.841 4.841 0 0 0 9.394 0l.273-1.089h-.017a.966.966 0 0 0 .051-.151l.72-8.147a8.934 8.934 0 0 0 2.767-3.941h12.621l2.77 24z"
/>
<path
d="m13 32h9a1 1 0 0 0 1-1v-9a1 1 0 0 0 -1-1h-8a1 1 0 0 0 -.994.89l-1 9a1 1 0 0 0 .994 1.11zm1.9-9h6.1v7h-6.883z"
/>
<path d="m12 34h6v2h-6z" />
<path d="m20 34h2v2h-2z" />
<path d="m11 38h9v2h-9z" />
<path d="m22 38h5v2h-5z" />
<path d="m41 22h10v2h-10z" />
<path d="m40 26h2v2h-2z" />
<path d="m44 26h8v2h-8z" />
<path d="m39 30h5v2h-5z" />
<path d="m46 30h6v2h-6z" />
<path d="m51 34h2v2h-2z" />
<path d="m38 34h11v2h-11z" />
<path d="m36 38h10v2h-10z" />
<path d="m48 38h5v2h-5z" />
</svg>
<h6>Area Expertise</h6>
</div>
<div class="whyUsBlock">
<svg
height="512pt"
viewBox="0 -36 512.00059 512"
width="512pt"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="m503.589844 208.167969c-3.9375-4.078125-8.808594-6.894531-14.148438-8.246094 3.167969-5.035156 4.757813-10.902344 4.539063-17.007813-.566407-15.941406-14.257813-28.914062-30.519531-28.914062h-59.402344l-.058594-89c0-19.296875-15.699219-35-35-35s-35 15.703125-35 35v23.554688c0 6.042968-1.277344 11.875-3.628906 17.199218-44.042969-1.652344-79.371094-37.980468-79.371094-82.421875v-10.832031c0-6.894531-5.605469-12.5-12.5-12.5h-129c-6.894531 0-12.5 5.605469-12.5 12.5v8.5c0 45.492188-37.007812 82.5-82.5 82.5h-2c-6.894531 0-12.5 5.605469-12.5 12.5v150c0 95.945312 78.054688 174 174 174 68.058594 0 129.546875-39.484375 157.984375-101h104.554687c6.824219 0 13.496094-2.8125 18.304688-7.710938 4.734375-4.824218 7.277344-11.132812 7.152344-17.765624-.0625-3.375-.808594-6.59375-2.105469-9.523438h3.570313c16.261718 0 29.953124-12.972656 30.519531-28.914062.21875-6.15625-1.394531-12.066407-4.617188-17.128907 12.578125-3.382812 22.148438-14.597656 22.617188-27.871093.292969-8.222657-2.6875-16.007813-8.390625-21.917969zm-329.589844 216.832031c-87.671875 0-159-71.328125-159-159v-147.5c53.53125-.273438 97-43.90625 97-97.5v-6h124v8.332031c0 49.242188 36.691406 90.066407 84.167969 96.585938-1.800781 1.640625-3.746094 3.152343-5.851563 4.492187l-40.972656 26.070313c-3.617188 2.304687-7.792969 3.519531-12.078125 3.519531h-9.226563c-2.796874-9.246094-11.390624-16-21.539062-16h-42c-9.777344 0-18.113281 6.269531-21.210938 15h-36.789062c-10.753906 0-19.5 8.75-19.5 19.5v129c0 10.753906 8.746094 19.5 19.5 19.5h35.5v73.785156c-67.378906-3.898437-121-59.945312-121-128.285156v-124.269531c51.515625-3.75 92.570312-45.796875 94.742188-97.730469h26.257812v66c0 4.144531 3.359375 7.5 7.5 7.5s7.5-3.355469 7.5-7.5v-73.5c0-4.144531-3.359375-7.5-7.5-7.5h-41.167969c-4.140625 0-7.5 3.355469-7.5 7.5v3.167969c0 48.15625-39.175781 87.332031-87.332031 87.332031-4.140625 0-7.5 3.355469-7.5 7.5v131.5c0 79.125 64.375 143.5 143.5 143.5 4.140625 0 7.5-3.355469 7.5-7.5v-67.269531c1.753906.488281 3.59375.769531 5.5.769531h44c7.351562 0 13.890625-3.542969 17.996094-9.011719l8 4.53125c8.632812 4.894531 18.4375 7.480469 28.355468 7.480469h30.4375c-27.171874 52.597656-81.449218 86-141.289062 86zm-8-119h-35.5c-2.480469 0-4.5-2.019531-4.5-4.5v-129c0-2.480469 2.019531-4.5 4.5-4.5h35.5zm315.460938-62h-58.460938c-4.140625 0-7.5 3.355469-7.5 7.5s3.359375 7.5 7.5 7.5h41c4.105469 0 7.941406 1.628906 10.796875 4.585938 2.851563 2.953124 4.339844 6.851562 4.191406 10.96875-.28125 7.964843-7.25 14.445312-15.527343 14.445312h-26.460938c-.167969 0-.335938.015625-.5.023438-.164062-.007813-.332031-.023438-.5-.023438h-13c-4.140625 0-7.5 3.355469-7.5 7.5s3.359375 7.5 7.5 7.5h13c.167969 0 .335938-.015625.5-.023438.164062.007813.332031.023438.5.023438 5.410156 0 9.898438 4.398438 10 9.808594.046875 2.570312-.96875 5.046875-2.859375 6.976562-2.007813 2.042969-4.777344 3.214844-7.597656 3.214844h-151.691407c-7.332031 0-14.578124-1.910156-20.957031-5.527344l-10.894531-6.175781v-16.964844c0-4.140625-3.359375-7.5-7.5-7.5s-7.5 3.359375-7.5 7.5v18.167969c0 4.136719-3.363281 7.5-7.5 7.5h-44c-3.03125 0-5.5-2.46875-5.5-5.5v-155c0-4.136719 3.363281-7.5 7.5-7.5h42c4.136719 0 7.5 3.363281 7.5 7.5v99.832031c0 4.144531 3.359375 7.5 7.5 7.5s7.5-3.355469 7.5-7.5v-91.332031h8.265625c7.140625 0 14.105469-2.027344 20.128906-5.863281l40.976563-26.074219c16.675781-10.609375 26.628906-28.746094 26.628906-48.507812v-23.554688c0-11.027344 8.972656-20 20-20s20 8.972656 20 20.003906l.058594 91.503906c.003906 6.886719 5.613281 12.492188 12.5 12.492188h61.902344c8.277343 0 15.246093 6.480469 15.527343 14.445312.148438 4.117188-1.34375 8.015626-4.191406 10.96875-2.855469 2.957032-6.691406 4.585938-10.796875 4.585938h-41c-4.140625 0-7.5 3.355469-7.5 7.5s3.359375 7.5 7.5 7.5h59c4.105469 0 7.941406 1.628906 10.796875 4.585938 2.851563 2.953124 4.339844 6.851562 4.191406 10.96875-.28125 7.964843-7.25 14.445312-15.527343 14.445312zm0 0"
/>
</svg>
<h6>Scalable and Reliable</h6>
</div>
</div>
</div>
</section>
<!-- hotels -->
<section class="hotelsWrapper">
<span class="seperator seperator-top"></span>
<div class="sectionWrapper">
<div class="row no-gutters">
<div class="col-lg-8 mx-auto">
<h2 class="sectionTitle">Hotels</h2>
</div>
</div>
<div class="col-12">
<div class="hotelsSliderWrapper">
<div class="hotelsSlider">
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/goa.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Goa | Per Night
</div>
</div>
<div class="content">
<h5>Lemon Tree Hotel, Goa</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/waterFall.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Meghalaya | 6D
</div>
</div>
<div class="content">
<h5>6D / 7N Meghalaya</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/kerala.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Kerala | Per Night
</div>
</div>
<div class="content">
<h5>Tribago Hotel, Kerala</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/waterfall.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Gangtok | 4D / 5N
</div>
</div>
<div class="content">
<h5>4D / 5N, Gangtok</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/burjKhalifa.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Dubai | Per Night
</div>
</div>
<div class="content">
<h5>3D / 4N, Abu Dubai</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/goa.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M256,0C156.748,0,76,80.748,76,180c0,33.534,9.289,66.26,26.869,94.652l142.885,230.257
c2.737,4.411,7.559,7.091,12.745,7.091c0.04,0,0.079,0,0.119,0c5.231-0.041,10.063-2.804,12.75-7.292L410.611,272.22
C427.221,244.428,436,212.539,436,180C436,80.748,355.252,0,256,0z M384.866,256.818L258.272,468.186l-129.905-209.34
C113.734,235.214,105.8,207.95,105.8,180c0-82.71,67.49-150.2,150.2-150.2S406.1,97.29,406.1,180
C406.1,207.121,398.689,233.688,384.866,256.818z"
/>
</g>
</g>
<g>
<g>
<path
d="M256,90c-49.626,0-90,40.374-90,90c0,49.309,39.717,90,90,90c50.903,0,90-41.233,90-90C346,130.374,305.626,90,256,90z
M256,240.2c-33.257,0-60.2-27.033-60.2-60.2c0-33.084,27.116-60.2,60.2-60.2s60.1,27.116,60.1,60.2
C316.1,212.683,289.784,240.2,256,240.2z"
/>
</g>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
Goa | Per Night
</div>
</div>
<div class="content">
<h5>Lemon Tree Hotel, Candolim, Goa</h5>
<p>Rs 4,332 <span>Rs 5,000</span></p>
</div>
</a>
<a href="javascript:void(0)">
<div class="locationWrapper">
<img
src="./assets/img/about/goa.jpeg"
class="img-fluid"
alt=""
/>
<div class="pullUpContent">
<svg