-
Notifications
You must be signed in to change notification settings - Fork 2
/
pricing.html
executable file
·867 lines (578 loc) · 29.5 KB
/
pricing.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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153119943-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-153119943-1');
</script>
<!-- Title -->
<title>Nearby Shops</title>
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<!-- CSS Front Template -->
<link rel="stylesheet" href="/assets/vendor/font-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" href="/assets/vendor/animate.css/animate.min.css">
<link rel="stylesheet" href="/assets/vendor/hs-megamenu/src/hs.megamenu.css">
<link rel="stylesheet" href="/assets/vendor/fancybox/jquery.fancybox.css">
<link rel="stylesheet" href="/assets/vendor/cubeportfolio/css/cubeportfolio.min.css">
<link rel="stylesheet" href="/assets/vendor/jquery-ui/themes/base/jquery-ui.min.css">
<link rel="stylesheet" href="/assets/vendor/prism/prism.css">
<!-- CSS Front Template -->
<link rel="stylesheet" href="/assets/css/theme.css">
<!-- CSS Front Doc -->
<link rel="stylesheet" href="/assets/css/starter.css">
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<!-- <h1>Hello, world!</h1> -->
<div id="header"></div>
<!-- Terms Title Section -->
<div class="position-relative border-top space-top-1">
<div class="container space-1">
<div class="w-md-80 w-lg-100">
<h2 class="text-primary"><span class="font-weight-semi-bold">Managed Hosting Plans</span></h2>
<h5 class="">10 Minutes Setup Time Starting at 10 $ per month</h5>
<!-- <h5 class="">Starting at 10 $ a month with One Month Free Trial</h5> -->
<!-- <h2 class="text-primary"><span class="font-weight-semi-bold">Managed Hosting Plans</span> </h2> -->
<!-- <h5 class="">Self Hosting is Free try Managed Hosting in case you need it</h5> -->
</div>
</div>
</div>
<!-- End Terms Title Section -->
<!-- Pricing Section -->
<div class="container">
<div class="row">
<!-- Pricing -->
<div class="col-lg-4">
<p>
</p>
<a href="https://forum.nearbyshops.org/t/free-trial-requests/90">
<h4>One Month Free Trial Available</h4>
<h5>No Credit Card Required</h5>
</a>
<!-- mailto:[email protected] -->
<!-- https://api.whatsapp.com/send?phone=+918074516088 -->
<a href="https://api.whatsapp.com/send?phone=+918074516088">
<h4 class="mt-10">Free Hosting Available</h4>
<h6 class="text-dark">for Muncipal Corporations, Cooperatives,
Nonprofits and Government agencies
</h6>
</a>
<!-- mailto:[email protected] -->
<a href="https://api.whatsapp.com/send?phone=+918074516088">
<h4 class="mt-5">Get in touch !</h4>
</a>
<div class="space-top-1">
<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">
<img src="/images/play_store_logo.png" width="170" >
</a>
</div>
</div>
<!-- End Pricing -->
<div class="w-lg-65 mx-lg-auto col-lg-8">
<div class="card-deck d-block d-md-flex card-md-gutters-3 mb-5">
<!-- Pricing -->
<div class="card card-frame-highlighted text-center">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-primary">Startup Plan</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>10
</span>
<span class="text-secondary">per month per market</span>
<p>Upto 100 shops per market</p>
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGstartup" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/free-trial.svg" alt="Image Description"
data-parent="#SVGstartup">
</figure>
<!-- End SVG Icon -->
<!-- https://gum.co/cNogs -->
<!-- https://rzp.io/i/FtsSXzD -->
<a href="https://forum.nearbyshops.org/t/free-trial-requests/90">
<button type="button" class="btn btn-sm btn-block btn-success transition-3d-hover">Start Trial</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
<!-- Pricing -->
<div class="card text-center mb-5 mb-md-0">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-success">Business Plan</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>30
</span>
<span class="text-secondary">per month per Market</span>
<p>Unlimited Shops per Market</p>
<!-- <p>For Business Experimentation and Survey</p>-->
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGFreeTrial" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/enterprise-1.svg" alt="Image Description"
data-parent="#SVGFreeTrial">
</figure>
<!-- End SVG Icon -->
<a href="https://api.razorpay.com/v1/l/subscriptions/sub_EODzRa8Ebm8FB2">
<button type="button" class="btn btn-sm btn-block btn-primary transition-3d-hover">Buy</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
</div>
</div>
</div>
</div>
<!-- End Pricing Section -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-1">
<hr class="mt-0 mb-0">
</div>
<!-- End Divider -->
<!-- Terms Title Section -->
<div class="position-relative space-top-1">
<div class="container space-1">
<div class="w-md-80 w-lg-100">
<h2 class="text-primary"><span class="font-weight-semi-bold">License Fee for Single Market </span> - White Label Solution </h2>
<h5 class="">License fee waived off for Market Linked with Nearby Shops</h5>
</div>
</div>
</div>
<!-- End Terms Title Section -->
<!-- Pricing Section -->
<div class="container">
<div class="row">
<!-- Pricing -->
<div class="col-lg-4">
<p>
</p>
<a href="./app_demo.html">
<h4>Demo Available</h4>
<h5>Click Here for Demo !</h5>
</a>
<div class="space-top-1">
<a href="./app_demo.html">
<img src="/images/play_store_logo.png" width="170" >
</a>
</div>
<!-- mailto:[email protected] -->
<!-- https://api.whatsapp.com/send?phone=+918074516088 -->
<a href="https://api.whatsapp.com/send?phone=+918074516088">
<h2 class="mt-5">Get in touch !</h4>
</a>
</div>
<!-- End Pricing -->
<div class="w-lg-65 mx-lg-auto col-lg-8">
<div class="card-deck d-block d-md-flex card-md-gutters-3 mb-5">
<!-- Pricing -->
<div class="card card-frame-highlighted text-center">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-primary">Market Startup</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>10
</span>
<span class="text-secondary">per month per City / Market</span>
<p>Upto 100 shops per city / Market</p>
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGstartup_self" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/free-trial.svg" alt="Image Description"
data-parent="#SVGstartup_self">
</figure>
<!-- End SVG Icon -->
<!-- https://gum.co/cNogs -->
<!-- https://rzp.io/i/FtsSXzD -->
<a href="https://rzp.io/i/FtsSXzD">
<button type="button" class="btn btn-sm btn-block btn-success transition-3d-hover">Start Trial</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
<!-- Pricing -->
<div class="card text-center mb-5 mb-md-0">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-success">Market Business</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>30
</span>
<span class="text-secondary">per month per City / Market</span>
<p>Unlimited Shops per City / Market</p>
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGFreeTrial_self" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/enterprise-1.svg" alt="Image Description"
data-parent="#SVGFreeTrial_self">
</figure>
<!-- End SVG Icon -->
<a href="https://api.razorpay.com/v1/l/subscriptions/sub_EODzRa8Ebm8FB2">
<button type="button" class="btn btn-sm btn-block btn-primary transition-3d-hover">Buy</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
</div>
</div>
</div>
</div>
<!-- End Pricing Section -->
<!-- FAQ Section -->
<div class="container space-1 space-md-2 mt-5">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-9">
<span class="btn btn-xs btn-soft-success btn-pill mb-2">Help</span>
<h2 class="text-primary">Frequently asked <span class="font-weight-semi-bold">questions</span> :</h2>
</div>
<!-- End Title -->
<!-- FAQ -->
<div class="space-bottom-1 space-bottom-md-2">
<div class="row">
<div class="col-md-6 mb-5">
<div class="pr-md-4">
<h3 class="h6">Can I cancel at anytime?</h3>
<p>Yes, you can cancel anytime no questions are asked while you cancel but we would highly appreciate if you will give us some feedback.</p>
</div>
</div>
<div class="col-md-6">
<div class="pl-md-4">
<h3 class="h6">What is your refund policy?</h3>
<p>If you are not satisfied with our software we can offer refund for upto one month of Service without any questions asked !</p>
</div>
</div>
</div>
</div>
<!-- End FAQ -->
<div class="w-100"></div>
<div class="row">
<div class="col-md-6 mb-5">
<div class="pr-md-4">
<h3 class="h6">I am unemployed and cant afford to pay for hosting fee.</h3>
<p>Please contact us and explain your situation if you genuinely need help we will help you.</p>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="pl-md-4">
<h3 class="h6">I am from poor country and cant afford to pay the hosting fee.</h3>
<p>If your profits and income are really low then we may give you a discount or waive off the hosting fee.
Please talk to us in such case !</p>
</div>
</div>
</div>
</div>
<!-- End FAQ Section -->
<div class="container space-top-2 border-top">
<h2 class="h3 text-primary">Installation of your self-hosted</h2>
<h2 class="h3 text-primary"><span class="font-weight-semi-bold">local marketplace</span></h2>
</div>
<!-- Pricing Section -->
<div id="pricingSection" class="svg-preloader">
<div class="container space-2">
<div class="row">
<div id="stickyBlockStartPoint" class="col-md-5 mb-9 mb-md-0">
<!-- Sticky Block -->
<div class="js-sticky-block"
data-has-sticky-header="true"
data-offset-target="#logoAndNav"
data-sticky-view="md"
data-start-point="#stickyBlockStartPoint"
data-end-point="#stickyBlockEndPoint"
data-offset-top="24"
data-offset-bottom="24">
<!-- Pricing -->
<div class="position-relative bg-primary shadow-primary-lg text-white rounded z-index-2 p-7">
<span class="d-block">
<!-- <span class="align-top font-size-4">$</span> -->
<span class="display-4 font-weight-semi-bold">$ 30</span>
<span class="font-size-3">.00</span>
<span class="d-block">One-time Fee for app Launch</span>
</span>
<hr class="opacity-md my-4">
<div class="mb-5">
<p class="text-light">Includes installation, third party integrations and customization of apps </p>
</div>
<a class="btn btn-white btn-pill transition-3d-hover mb-2" href="#">
Contact Us
<span class="fas fa-arrow-right text-primary font-size-1 ml-2"></span>
</a>
<p class="small text-white-70">No credit card required.</p>
<!-- SVG Shape -->
<div class="position-absolute bottom-0 right-0 w-100 max-width-15 z-index-n1">
<figure class="ie-abstract-shapes-11">
<img class="js-svg-injector rounded-bottom" src="/assets/svg/components/abstract-shapes-11.svg" alt="Image Description"
data-parent="#pricingSection">
</figure>
</div>
<!-- End SVG Shape -->
</div>
<!-- End Pricing -->
</div>
<!-- End Sticky Block -->
</div>
<div class="col-md-7">
<div class="pl-lg-6">
<div class="row">
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-32.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Installation on your own infrastructure</h4>
<!-- <p>Unlike other commertial products which you cannot adapt and customize. Nearby Shops comes with MIT open-source license which means you non-exclusive access to all the source-code and design</p> -->
<p>You retain full ownership and autonomy of your hosting infrastructure.</p>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-30.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Adapt and Customize</h4>
<p>Customize the apps with your own brand colors, logo and app name.</p>
<!-- End Icon Blocks -->
</div>
</div>
<div class="row mb-9">
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-29.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Third Party integrations</h4>
<p>We setup your integrations so that you dont have to worry about it.</p>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-31.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Money back</h4>
<p>100% guaranteed money back. No questions asked.</p>
<!-- End Icon Blocks -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Pricing Section -->
<div class="container space-top-2 border-top">
<!-- Title -->
<h2 class="text-primary">Consultation and <span class="font-weight-semi-bold">Professional Support</span></h2>
<h5 class="font-weight-light">Get advice and support from our Technical Experts</h5>
<!-- End Title -->
</div>
<!-- Pricing Section -->
<div id="pricingSectionSupport" class="svg-preloader border-bottom">
<div class="container space-2">
<div class="row">
<div id="stickyBlockStart" class="col-md-5 mb-9 mb-md-0">
<!-- Sticky Block -->
<div class="js-sticky-block"
data-has-sticky-header="true"
data-offset-target="#logoAndNav"
data-sticky-view="md"
data-start-point="#stickyBlockStartPoint"
data-end-point="#stickyBlockEndPoint"
data-offset-top="24"
data-offset-bottom="24">
<!-- Pricing -->
<div class="position-relative bg-secondary shadow-primary-lg text-white rounded z-index-2 p-7">
<span class="d-block">
<!-- <span class="align-top font-size-4">$</span> -->
<span class="display-4 font-weight-semi-bold">$ 30</span>
<span class="font-size-3">.00</span>
<span class="d-block">Per Hour</span>
</span>
<hr class="opacity-md my-4">
<div class="mb-5">
<p class="text-light">Consultation and support from original developers ! </p>
</div>
<a class="btn btn-white btn-pill transition-3d-hover mb-2" href="#">
Contact Us
<span class="fas fa-arrow-right text-primary font-size-1 ml-2"></span>
</a>
<p class="small text-white-70">No credit card required.</p>
<!-- SVG Shape -->
<div class="position-absolute bottom-0 right-0 w-100 max-width-15 z-index-n1">
<figure class="ie-abstract-shapes-11">
<img class="js-svg-injector rounded-bottom" src="/assets/svg/components/abstract-shapes-11.svg" alt="Image Description"
data-parent="#pricingSectionSupport">
</figure>
</div>
<!-- End SVG Shape -->
</div>
<!-- End Pricing -->
</div>
<!-- End Sticky Block -->
</div>
<div class="col-md-7">
<div class="pl-lg-6">
<div class="row">
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-32.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Scaling and Security</h4>
<!-- <p>Unlike other commertial products which you cannot adapt and customize. Nearby Shops comes with MIT open-source license which means you non-exclusive access to all the source-code and design</p> -->
<p>You retain full ownership and autonomy of your hosting infrastructure.</p>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-30.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Software Customization</h4>
<p>Customize the apps with your own brand colors, logo and app name.</p>
<!-- End Icon Blocks -->
</div>
</div>
<div class="row mb-9">
<div class="col-sm-6 mb-5">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-29.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Technical Consultation</h4>
<p>You need more customization to adapt the software to your basic needs.</p>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6">
<!-- Icon Blocks -->
<figure class="ie-height-40 w-100 max-width-6 mb-3">
<img class="js-svg-injector" src="/assets/svg/icons/icon-31.svg" alt="SVG"
data-parent="#pricingSection">
</figure>
<h4 class="h5">Anything else where we can help</h4>
<p>We wont charge money for something where we cannot help you</p>
<!-- End Icon Blocks -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Pricing Section -->
<!-- Sticky End Point -->
<!-- <div id="stickyBlockEndPoint"></div> -->
<div id="footer"></div>
<!-- JS Global Compulsory -->
<script src="/assets/vendor/jquery/dist/jquery.min.js"></script>
<script src="/assets/vendor/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="/assets/vendor/popper.js/dist/umd/popper.min.js"></script>
<script src="/assets/vendor/bootstrap/bootstrap.min.js"></script>
<!-- JS Front -->
<script src="/assets/js/hs.core.js"></script>
<!-- JS Implementing Plugins -->
<script src="/assets/vendor/svg-injector/dist/svg-injector.min.js"></script>
<script src="/assets/vendor/player.js/dist/player.min.js"></script>
<script src="/assets/vendor/hs-megamenu/src/hs.megamenu.js"></script>
<script src="/assets/vendor/jquery-validation/dist/jquery.validate.min.js"></script>
<script src="/assets/vendor/fancybox/jquery.fancybox.min.js"></script>
<script src="/assets/vendor/cubeportfolio/js/jquery.cubeportfolio.min.js"></script>
<script src="/assets/js/components/hs.cubeportfolio.js"></script>
<script src="/assets/js/components/hs.fancybox.js"></script>
<!-- JS Front -->
<script src="/assets/js/components/hs.svg-injector.js"></script>
<script src="/assets/js/components/hs.header.js"></script>\
<script src="/assets/js/components/hs.validation.js"></script>
<script src="/assets/js/components/hs.video-player.js"></script>
<!-- JS Front -->
<script src="/assets/js/components/hs.validation.js"></script>
<script src="/assets/js/components/hs.focus-state.js"></script>
<script src="/assets/js/components/hs.fancybox.js"></script>
<script src="/assets/js/components/hs.sticky-block.js"></script>
<!-- JS Plugins Init. -->
<script>
$(window).on('load', function () {
// initialization of HSMegaMenu component
$('.js-mega-menu').HSMegaMenu({
event: 'hover',
pageContainer: $('.container'),
breakpoint: 767.98,
hideTimeOut: 0
});
// initialization of svg injector module
$.HSCore.components.HSSVGIngector.init('.js-svg-injector');
// initialization of header
$.HSCore.components.HSHeader.init($('#header'));
// initialization of form validation
$.HSCore.components.HSValidation.init('.js-validate');
});
$(document).on('ready', function () {
// initialization of cubeportfolio
$.HSCore.components.HSCubeportfolio.init('.cbp');
// initialization of popups
$.HSCore.components.HSPopup.init('.js-fancybox');
// initialization of form validation
$.HSCore.components.HSValidation.init('.js-validate', {
rules: {
confirmPassword: {
equalTo: '#signupPassword'
}
}
});
// initialization of forms
$.HSCore.components.HSFocusState.init();
// initialization of sticky blocks
$.HSCore.components.HSStickyBlock.init('.js-sticky-block');
});
</script>
</body>
</html>