forked from MAQSiddheshH/MAQSiddheshH.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embedfast.html
718 lines (676 loc) · 28.6 KB
/
embedfast.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0" name="viewport">
<!-- Open Graph -->
<meta property="og:title" content="EmbedFAST | MAQ Software" />
<meta property="og:type" content="website" />
<meta property="og:image" content="/images/isv/isv-top-image" />
<meta property="og:description" content="Improve your and your customer's operations by seamlessly integrating Power BI into your
apps and unlocking a suite of powerful features to elevate your workflow." />
<!-- Twitter Theme -->
<meta name="twitter:widgets:theme" content="light">
<!-- Title & Favicon -->
<title>EmbedFAST | MAQ Software</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/logos/MAQ-Software-URL.png">
<!-- Font -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700%7CHind+Madurai:400,500&subset=latin-ext"
rel="stylesheet">
<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=Inter&display=swap" rel="stylesheet">
<!-- Css -->
<link rel="stylesheet" href="css/core.min.css" />
<link rel="stylesheet" href="css/skin.css" />
<link rel="stylesheet" href="css/commonstyle.css" />
<link rel="stylesheet" href="css/isvpage.css?v=20230614.1" />
<link rel="stylesheet" href="css/embedfast.css" />
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S0W302CGQG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-S0W302CGQG');
</script>
</head>
<body class="shop home-page">
<!-- Header -->
<header id="header" class="header header-absolute header-fixed-on-mobile header-transparent"
data-bkg-threshold="100" data-sticky-threshold="0">
</header>
<!-- Header End -->
<div class="wrapper reveal-side-navigation">
<div class="wrapper-inner">
<!-- Feature 1 Section -->
<div class="section-block feature-1 overlap-bottom pt-150 bkg-white">
<div class="media-overlay background-cover fullscreen-pattern-6"></div>
<div class="row flex two-columns-on-tablet">
<div class="column width-6 v-align-middle left center-on-mobile">
<div>
<h1 class="title-large">
<span class="color-black mb-5">
EmbedFAST
</span>
</h1>
<p class="text-xlarge mb-30 center-on-mobile">
Effortlessly embed Power BI into your apps without the complexity of writing your own
code.
</p>
<p class="text-xlarge mb-30 center-on-mobile">
Achieve faster time to market. Improve your and your customer’s operations. Elevate your workflow—all with EmbedFAST.
</p>
<a href="mailto:sales@maqsoftware.com"
class="button medium pill bkg-theme bkg-hover-white color-white color-hover-theme mb-mobile-40">
Reach out to learn more</a>
</div>
</div>
<div class="column width-6 right hide-on-mobile">
<div class="feature-image">
<div>
<img src="images\isv\isv-top-image.jpg" width="525" height="350" alt="Power BI Embed">
</div>
</div>
</div>
</div>
</div>
<!-- Feature 1 Section End -->
<!-- Secondary nav to navigate between feature items -->
<div id="secondaryNav" class="secondary-nav">
<div class="row flex two-columns-on-tablet ">
<ul class="horizontal-list">
<li><a href="#keyBenefits">Key Benefits</a></li>
<li><a href="#who">Who</a></li>
<li><a href="#why">Why</a></li>
<li><a href="#caseStudies">Case Studies</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#support">Support Plan</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
<!-- Secondary nav end -->
<div class="content">
<!-- Feature 2 Section -->
<div id="keyBenefits" class="feature-1 bkg-white">
<div class="feature-block">
<div class="row flex">
<div class="column width-12 v-align-middle left center-on-mobile">
<div>
<h2>
<span class="color-black mb-5">
Key Benefits
</span>
</h2>
<div class="row">
<div class="column width-12 pad-0">
<div class="column width-7">
<div class="feature-content-inner">
<div id="hassle-free-licensing" class="resources-div-click"
onclick="keyfeaturesClick('hassle-free-licensing','hassle-free-licensing-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/tool.svg" width="55"
height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Eliminate licensing cost</h3>
<p class="mb-0" style="font-size: 17.5px;">Power BI per user licenses are not needed, only capacity
licenses (P1 - P5). Save costs. No need to assign licenses to users.</p>
</div>
</div>
</div>
<div id="seamless-integration" class=""
onclick="keyfeaturesClick('seamless-integration','seamless-integration-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/key.svg" width="55" height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Seamless integration</h3>
<p class="mb-0" style="font-size: 17.5px;">Easily
integrate our API into your applications. Embed Power BI without the time or resource
complexities.</p>
</div>
</div>
</div>
<div id="highly-customizable" class=""
onclick="keyfeaturesClick('highly-customizable','highly-customizable-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/pen-tool.svg" width="55"
height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Highly customizable</h3>
<p class="mb-0" style="font-size: 17.5px;">Tailor EmbedFAST's capabilities to seamlessly align with your organization's unique needs.
Benefit from features that perfectly fit your workflows.</p>
</div>
</div>
</div>
<div id="role-based-access-management" class=""
onclick="keyfeaturesClick('role-based-access-management','role-based-access-management-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/user.svg" width="55"
height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Role-based access
management</h3>
<p class="mb-0" style="font-size: 17.5px;">Effortlessly
manage user permissions
and data security with built-in role-based access controls.</p>
</div>
</div>
</div>
<div id="scalable-secure" class=""
onclick="keyfeaturesClick('scalable-secure','scalable-secure-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/globe.svg" width="55"
height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Scalable & secure</h3>
<p class="mb-0" style="font-size: 17.5px;">Onboard
unlimited customer tenants/workspaces, ensuring data
privacy and
seamless scalability for your
organization.</p>
</div>
</div>
</div>
<div id="automatic-updates-upgrades" class=""
onclick="keyfeaturesClick('automatic-updates-upgrades','automatic-updates-upgrades-img')">
<div class="row ptb-18">
<div class="column width-2 feature-icon pad-0 mb-0">
<img src="/images/isv/checkCircle.svg" width="55"
height="55" />
</div>
<div class="column width-10">
<h3 class="keyfeature-title">Free updates and upgrades</h3>
<p class="mb-0" style="font-size: 17.5px;">Stay up to date with the latest features and improvements</p>
</div>
</div>
</div>
</div>
</div>
<div class="column width-5">
<div class="feature-image-inner center-on-mobile media-div">
<div id="hassle-free-licensing-img" >
<img src="/images/isv/Hassle-free licensing.svg" alt="" />
</div>
<div id="seamless-integration-img" style="display: none;">
<img src="/images/isv/Seamless integration.svg" alt="" />
</div>
<div id="highly-customizable-img" style="display: none;">
<img src="/images/isv/Highly customizable.svg" alt="" />
</div>
<div id="role-based-access-management-img" style="display: none;">
<img src="/images/isv/Role-based access management.svg"
alt="" />
</div>
<div id="scalable-secure-img" style="display: none;">
<img src="/images/isv/Scalable & secure.svg" alt="" />
</div>
<div id="automatic-updates-upgrades-img" style="display: none;">
<img src="/images/isv/Automatic updates & upgrades.svg"
alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 2 Section End -->
<!-- Feature 3 Section -->
<div id="who" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block">
<div class="row">
<div class="column width-12">
<div class="column width-6">
<div class="feature-image-inner center-on-mobile">
<img src="/images/isv/who.jpg" alt="" />
</div>
</div>
<div class="column width-6">
<div class="feature-content-inner">
<h2>Who is the <br />EmbedFAST for?</h2>
<p>The EmbedFAST is designed
for Independent Software Vendors (ISVs) and enterprise customers.
However, any organization can
benefit from our EmbedFAST to unleash the power of Power BI.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 3 Section End -->
<!-- Feature 4 Section -->
<div id="why" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block">
<div class="row">
<div class="column width-12">
<div class="column width-6">
<div class="feature-content-inner">
<h2>Why use the <br />EmbedFAST?</h2>
<p>Save time, effort, costs, and resources by embedding
Power BI using our ready-to-use API. Seamlessly
embed with comprehensive features, without
having to build from scratch.</p>
</div>
</div>
<div class="column width-6">
<div class="feature-image-inner center-on-mobile">
<img src="/images/isv/why.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 4 Section End -->
<!-- Feature 5 Section -->
<div id="caseStudies" class="feature-1 case-studies pb-60">
<div class="feature-block">
<div class="row">
<div class="column width-12 v-align-middle left center-on-mobile">
<h2>
<span class="color-black mb-5">
Case Studies
</span>
</h2>
</div>
</div>
<div class="row">
<div class="feature-card" style="margin-left: 1.5rem; margin-right: 2.5rem;">
<div class="feature-icon">
<img src="/images/isv/book-open.svg" width="100" height="100" />
</div>
<h4 class="title-small">Coming Soon</h4>
<p class="title-xsmall mb-0"><a href="/case-studies.html">Read more about our other case
studies</a>
</p>
</div>
</div>
<!-- </div> -->
</div>
</div>
<!-- Feature 5 Section End -->
<!-- Feature 6 Section -->
<div id="resources" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block">
<div class="row">
<div class="column width-12 v-align-middle left center-on-mobile">
<h2>
<span class="color-black mb-5">
Resources
</span>
</h2>
</div>
</div>
<div class="row">
<div class="column width-12">
<div class="column width-6" style="padding-left: 0;">
<div class="feature-content-inner">
<div id="video_desc" class="resources-div resources-div-click"
onclick="resourcesClick('video_desc')">
<h3>Demo Video</h3>
<p>Watch our demo video to see the EmbedFAST
in action. Experience how seamlessly it integrates
into applications.</p>
</div>
<div id="partner_video_desc" class="resources-div"
onclick="resourcesClick('partner_video_desc')">
<h3>Partner Showcase Video</h3>
<p>Watch our partner showcase video to see the EmbedFAST
in action. Experience how seamlessly it integrates
into applications.</p>
</div>
<div id="documentation_desc" class="resources-div"
onclick="resourcesClick('documentation_desc')">
<h3>Technical Documentation</h3>
<p>Access our <a
href="https://maqsoftware.gitbook.io/embed-fast-technical-documentation/"
target="_blank">technical documentation</a> to get in-depth
information on integrating and utilizing the EmbedFAST API.</p>
</div>
</div>
</div>
<!-- Start Youtube link for the demo-->
<div class="column width-6">
<div class="feature-image-inner center-on-mobile media-div">
<div id="documentation_img" style="display: none;">
<img src="/img/case-study/inc-5000-banner.jpg" style="height: 350px;"
alt="" />
</div>
<div id="demo_video">
<iframe id="embedfast_demo_video"
src="https://www.youtube.com/embed/CPuCyKxhnGM?playlist=CPuCyKxhnGM&loop=1&autoplay=1&mute=1"
width="520 !important" height="350 !important"></iframe>
</div>
<div id="partner_demo_video" style="display: none;">
<iframe id="partner_embedfast_demo_video"
src="https://www.youtube.com/embed/iwhMYf58SqE?playlist=iwhMYf58SqE&loop=1&autoplay=1&mute=1"
width="520 !important" height="350 !important"></iframe>
</div>
</div>
</div>
<!-- End Youtube link for the demo -->
</div>
</div>
</div>
</div>
<!-- Feature 6 Section End -->
<!-- Feature 7 Section -->
<div id="pricing" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block">
<div class="row">
<div class="column width-12">
<div class="column width-6">
<div class="feature-content-inner">
<h2>Pricing</h2>
<div class="width-6">
<div class="feature-div-rows1">
<div class="feature-card-border MarketPlaceGrid">
<div class="feature-icon">
<img src="/images/isv/git-merge.svg" width="100" height="100" />
</div>
<h4 class="title-small mb-0 align-center">Basic Tier</h4>
<p class="mb-0 align-center"><b>$2,500/month</b></p>
<br>
<div class="mb-30">
<ul>
<li>One-time setup cost: $10,000</li>
<li>Single instance of the application</li>
<li>Complete installation setup</li>
<li>No limit on the number of users</li>
<li>Free upgrades</li>
<!-- <li>Technical Support Hours: 7am-1pm ET (Mon-Fri)</li> -->
</ul>
</div>
<a class="align-center button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white mb-mobile-40 MarketPlaceGridLearnMore" href="https://azuremarketplace.microsoft.com/en-us/marketplace/apps/maqsoftware.embedfastpowerbi?tab=PlansAndPrice" target="_blank">Get It Now</a>
</div>
<div class="feature-card-border MarketPlaceGrid">
<div class="feature-icon">
<img src="/images/isv/star.svg" width="100" height="100" />
</div>
<h4 class="title-small mb-0 align-center">Premium Tier</h4>
<p class="mb-0 align-center"><b>$10,000/month</b></p>
<br>
<div class="mb-30">
<ul>
<li>One-time setup cost: $10,000 per instance</li>
<li>Unlimited instances of the application</li>
<li>Complete installation setup</li>
<li>No limit on the number of users</li>
<!-- <li>Automatic upgrades</li> -->
<li>Technical support hours: 7am-5pm ET (Mon-Fri)</li>
<!-- <li>Faster response time</li> -->
<li>Live support on phone or email</li>
</ul>
</div>
<a class="button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white align-center MarketPlaceGridLearnMore" href="https://azuremarketplace.microsoft.com/en-us/marketplace/apps/maqsoftware.embedfastpowerbi?tab=PlansAndPrice" target="_blank">Get It Now</a>
</div>
<div class="feature-card-border MarketPlaceGrid">
<div class="feature-icon">
<img src="/images/isv/message-circle.svg" width="100"
height="100" />
</div>
<h4 class="title-small mb-0 align-center">IP Handover</h4>
<p class="mb-0 align-center"><b>$120,000 (fixed one-time
cost)</b></p>
<br>
<div class="mb-30">
<ul>
<li>Shared solution IP </li>
<li>4-week consulting service to integrate the solution
with your existing application</li>
<li>Code walkthrough and handover</li>
<li>Personalized technical documentation and installation
guide</li>
<li>On-request improvements/customizations</li>
</ul>
</div>
<a class="align-center button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white mb-mobile-40 MarketPlaceGridLearnMore" href="mailto:sales@maqsoftware.com" target="_blank">Contact Us</a>
</div>
</div>
</div>
<p>For more pricing details and tailored plans,
please send us a message.</p>
<a href="mailto:sales@maqsoftware.com" target="blank"
class="button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white mb-mobile-40">
Send us a message</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 7 Section End -->
<!-- Feature 8 Section -->
<div id="support" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block">
<div class="row">
<div class="column width-12">
<div class="column width-6">
<div class="feature-content-inner">
<h2>Support Plan</h2>
<div class="width-6">
<div class="feature-div-rows1">
<div class="feature-card-border">
<h4 class="title-small mb-0 align-center">Silver</h4>
<!-- <p class="mb-0 align-center"><b>$2,500/month</b></p> -->
<br>
<div>
<ul class="mb-0">
<li>Priority email support: 7am-1pm ET (Mon-Fri).</li>
<li>Guaranteed response time of 24 hours for support
inquiries.</li>
<li>Access to our extensive knowledge base and online
documentation.</li>
<li>Regular software updates and bug fixes.</li>
</ul>
</div>
</div>
<div class="feature-card-border">
<h4 class="title-small mb-0 align-center">Gold</h4>
<!-- <p class="mb-0 align-center"><b>$10,000/month</b></p> -->
<br>
<div>
<ul class="mb-0">
<li>Priority email support: 7am-1pm ET (Mon-Fri).</li>
<li>Guaranteed response time of 24 hours for support
inquiries.</li>
<li>Access to our extensive knowledge base and online
documentation.</li>
<li>Regular software updates and bug fixes.</li>
<li>Remote troubleshooting and assistance.</li>
</ul>
</div>
</div>
<div class="feature-card-border">
<h4 class="title-small mb-0 align-center">Platinum</h4>
<!-- <p class="mb-0 align-center"><b>$120,000 (fixed one-time cost)</b></p> -->
<br>
<div>
<ul class="mb-0">
<li>Dedicated support representative</li>
<li>Priority email, phone, and live chat support 24/7.</li>
<li>Guaranteed response time of 4 hours for support
inquiries.</li>
<li>Access to our extensive knowledge base and online
documentation.</li>
<li>Regular software updates and bug fixes.</li>
<li>Priority consideration for new feature requests and
improvements.</li>
<li>Customized training sessions for your team.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 8 Section End -->
<!-- Feature 9 Section -->
<div id="contact" class="section-block pt-30 pb-30 bkg-white section-padding">
<div class="feature-block bottom-margin">
<div class="row">
<div class="column width-12">
<div class="column width-6">
<div class="feature-image-inner center-on-mobile">
<img src="/images/generic/contact-us.png" alt="" />
</div>
</div>
<div class="column width-6">
<div class="feature-content-inner">
<h2>Contact Us</h2>
<p>Ready to unlock the power of Power BI with the
EmbedFAST? Contact us today to learn
more, request a demo, or get a personalized quote.</p>
</div>
<a href="mailto:sales@maqsoftware.com" target="blank"
class="button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white mb-mobile-40">
Send us a message</a>
</div>
</div>
</div>
</div>
</div>
<!-- Feature 9 Section End -->
</div>
<!-- popup form start -->
<div id="popup-form" class="popup">
<div class="popup-content">
<h3>First Name</h3>
<input id="firstname" class="input-style" placeholder="Enter First Name" maxlength="1900">
<div class="error-message" id="firstname-error"></div>
<h3>Last Name</h3>
<input id="lastname" class="input-style" placeholder="Enter Last Name" maxlength="1900">
<div class="error-message" id="lastname-error"></div>
<h3>Email Address</h3>
<input id="email" class="input-style" placeholder="Enter email address" maxlength="1900">
<div class="error-message" id="email-error"></div>
<h3>Phone Number</h3>
<input id="phone" class="input-style" placeholder="Enter phone number" maxlength="10">
<div class="error-message" id="phone-error"></div>
<h3>Company</h3>
<input id="company" class="input-style" placeholder="Enter company name" maxlength="1900">
<div class="error-message" id="company-error"></div>
<h3>Role</h3>
<input id="role" class="input-style" placeholder="Enter role name" maxlength="1900">
<div class="error-message" id="role-error"></div>
<h3>Add Message</h3>
<input id="message" class="input-style" placeholder="Enter Message" maxlength="1900">
<div class="error-message" id="message-error"></div>
<p class="disclaimer-text">*Disclaimer: The details provided may be used by the team to contact you.
</p>
<div>
<button
class="button medium pill border-theme bkg-white bkg-hover-theme color-theme color-hover-white"
id="closePopup" style="display: inline-block;" onclick="hide_popup()">
Close
</button>
<button
class="button medium pill bkg-theme bkg-hover-white color-white color-hover-theme mb-mobile-40"
id="closePopup" style="float: right;" onclick="validateAndSend()">
Send Message
</button>
</div>
</div>
</div>
<!-- popup form end -->
<!--success Popup starts-->
<div id="success-popup-form" class="popup">
<div class="popup-content">
<div class="row">
<div class="modal-header" style="position: relative;">
<button type="button" class="close" data-dismiss="modal" aria-label=""
onclick="hide_success_popup()"
style="position: absolute; top: 1px; right: 1px;"><span>×</span></button>
</div>
<div class="modal fade" id="ignismyModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="thank-you-pop" style="text-align: center;">
<img src="/images/graphics/Green-Round-Tick.png" alt=""
style="display: block; margin: 0 auto; width: 50px; height: 50px;">
<h3 class="text-xxlarge mb-30 center-on-mobile" style="text-align: center;">
<br>Thank You!
</h3>
<p class="text-xlarge mb-30 center-on-mobile">Thank you for showing your
interest. <br>We will contact you soon</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--success Popup ends-->
<!--failure Popup starts-->
<div id="failure-popup-form" class="popup">
<div class="popup-content">
<div class="row">
<div class="modal fade" id="ignismyModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" style="position: relative;">
<button type="button" class="close" data-dismiss="modal" aria-label=""
onclick="hide_failure_popup()"
style="position: absolute; top: 10px; right: 10px;"><span>×</span></button>
</div>
<div class="modal-body">
<div class="thank-you-pop" style="text-align: center;">
<img src="/images/graphics/Red-Round-Tick.png" alt=""
style="display: block; margin: 0 auto; width: 50px; height: 50px;">
<h3 class="text-xxlarge mb-30 center-on-mobile" style="text-align: center;">
<br>Sorry!
</h3>
<p class="text-xlarge mb-30 center-on-mobile">Not able to get your
details.<br> Please try again later.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--success Popup ends-->
<!-- Footer -->
<footer id="footer" class="footer footer-light bkg-grey-ultralight">
</footer>
<!-- Footer End -->
<!-- Js -->
<script src="/js/jquery-3.2.1.min.js"></script>
<!-- <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3JCAhNj6tVAO_LSb8M-AzMlidiT-RPAs"></script> -->
<!-- <script src="/js/timber.master.min.js"></script> -->
<script src="/js/common.js?v=20211215.1"></script>
<script src="/js/careers.js?v=20220905.1" type="text/javascript"></script>
<script src="/js/embedfast.js" type="text/javascript"></script>
<script>
$("#header").load("/header.html");
$("#footer").load("/footer.html");
</script>
</body>
</html>