-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1191 lines (1132 loc) · 48.1 KB
/
index.html
File metadata and controls
1191 lines (1132 loc) · 48.1 KB
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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KT74PPZ3S5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KT74PPZ3S5');
</script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<title>Marstech</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="images/logo.svg"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="google-site-verification" content="v6oyFQyDMFrBCxWvmgQf8D9obH-H0lYPcoISkj1aAAg" />
<link
href="https://fonts.googleapis.com/css?family=Nunito:300,400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="fonts/icomoon/style.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/jquery-ui.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div id="overlayer"></div>
<div class="loader">
<img src="images/loader.gif" alt="Loading" />
</div>
<div class="site-wrap" id="home-section">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header
class="site-navbar py-4 js-sticky-header site-navbar-target"
role="banner"
>
<div class="container">
<div class="row align-items-center">
<div class="col-6 col-md-3 col-xl-3 d-block">
<h1 class="mb-0 site-logo">
<img src="images/logo.svg" height="40" width="40" alt="Logo" />
<a href="index.html" class="text-black h2 mb-0">Marstech </a>
</h1>
</div>
<div class="col-12 col-md-9 col-xl-9 main-menu">
<nav
class="site-navigation position-relative text-right"
role="navigation"
>
<ul
class="site-menu main-menu js-clone-nav mr-auto d-none d-lg-block ml-0 pl-0"
>
<li><a href="#home-section" class="nav-link">Home</a></li>
<li>
<a href="#services-section" class="nav-link">Services</a>
</li>
<li>
<a href="#case-section" class="nav-link">Cases</a>
</li>
<li>
<a href="#about-section" class="nav-link">About Us</a>
</li>
<li>
<a href="#testimonials-section" class="nav-link"
>Testimonials</a
>
</li>
<!-- <li><a href="#blog-section" class="nav-link">Blog</a></li> -->
<li>
<a href="#contact-section" class="nav-link">Contact</a>
</li>
</ul>
</nav>
</div>
<div class="col-6 col-md-9 d-inline-block d-lg-none ml-md-0">
<a
href="#"
class="site-menu-toggle js-menu-toggle text-black float-right"
><span class="icon-menu h3"></span
></a>
</div>
</div>
</div>
</header>
<div class="site-blocks-cover" style="overflow: hidden;">
<div class="container">
<div class="row align-items-center justify-content-center">
<div
class="col-md-12"
style="position: relative;"
data-aos="fade-up"
data-aos-delay="200"
>
<img
src="images/hero.svg"
alt="Hero Image"
class="img-fluid img-absolute"
style="
top: 45%;
right: 15%;
left: 25%;"
/>
<div class="row mb-4" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-6 mr-auto">
<h1>Make Your Business More Digital</h1>
<p class="mb-5">
We provide you the best services for your Digital
Transformation.
</p>
<div>
<a href="#contact-section" class="btn btn-primary mr-2 mb-2"
>Get Started</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-section" id="services-section">
<div class="container">
<div
class="row mb-5 justify-content-center text-center"
data-aos="fade-up"
>
<div class="col-7 text-center mb-5">
<h2 class="section-title">Outcome-Driven Services</h2>
</div>
</div>
<div class="row align-items-stretch">
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up">
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span class="text-primary icon-autorenew"></span
></span>
</div>
<div>
<h3>Strategy</h3>
<p>
Define your north star and create the path to realize your
business imperatives. We build strategies across all
business and technology functions of your organization to
improve and grow your business.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-4 mb-4 mb-lg-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span class="text-primary icon-store_mall_directory"></span
></span>
</div>
<div>
<h3>Digital Solutions</h3>
<p>
Create new capabilities and drive customer engagement
through digital experiences. Our digital solutions drive
innovation, disruption, and engender loyalty. We believe
digital solutions are the foundation to a successful
business strategy.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-4 mb-4 mb-lg-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span class="text-primary icon-shopping_basket"></span
></span>
</div>
<div>
<h3>Analytics</h3>
<p>
Accelerate business decisions and create true value through
insights from inside and outside your organization. We help
you cultivate an insights-driven culture focused on actions
and business outcomes, enabled by modern data capabilities.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up">
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span
class="text-primary icon-settings_backup_restore"
></span
></span>
</div>
<div>
<h3>Delivery</h3>
<p>
Enable agility, demand rigor, realize early and ongoing
value focused on business outcomes. Our delivery excellence
team is dedicated to understanding your current and future
business needs while driving the execution and adoption of
your most strategic, innovative initiatives.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-4 mb-4 mb-lg-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span class="text-primary icon-sentiment_satisfied"></span
></span>
</div>
<div>
<h3>Experience Design</h3>
<p>
Design is powerful. It determines how we experience life,
and the way we connect, communicate, and learn. That’s why
great design is about more than just beauty or delight. It’s
about defining the collective future of businesses,
customers, and employees– and doing it with intention.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-4 mb-4 mb-lg-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="unit-4 d-block">
<div class="unit-4-icon mb-3">
<span class="icon-wrap"
><span class="text-primary icon-power"></span
></span>
</div>
<div>
<h3>SEO</h3>
<p>
We also provide SEO compatible development of your site or
app, we will use all the relevant keywords which will help
your business to rank better on Google.
</p>
<p><a href="#contact-section">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="feature-big" id="case-section">
<div class="container">
<div class="row mb-5 site-section">
<div class="col-12 text-center mb-5">
<h2 class="section-title">Recent Cases</h2>
</div>
<div class="col-lg-7" data-aos="fade-right">
<img src="images/mobile-mockup.webp" alt="Mobile Animation Reseller Platform" class="img-fluid-mini" />
</div>
<div class="col-lg-5 pl-lg-5 ml-auto mt-md-5">
<h2 class="text-black">Reseller Platform</h2>
<p class="mb-4">
Start Your Business from Home with Zero Investment
</p>
<div class="author-box" data-aos="fade-left">
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/lock.svg"
alt="NDA lock"
class="img-fluid"
style = "width: 15px;"
/>
</div>
<div class="mr-auto text-black" style="margin-top: 7px; font-size: 0.6em;">
<strong>PROVIDED IN ACCORDANCE WITH NDA</strong>
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img src="images/database.png" alt="Database" class="img-fluid" />
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">Backend + API</strong>
<br />
Created a new and well-composed database following provided
specifications as well as a fast and convenient API that
allows for a smooth connection to the database
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/google-play-store.svg"
alt="Google play store logo"
class="img-fluid"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">App</strong>
<br />
App that works with both the API as well as Offline.
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/code.svg"
alt="Web Application"
class="img-fluid"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">Web App</strong>
<br />
Clean web interface that has full control of the database and all service features.
</div>
</div>
</div>
</div>
</div>
<div class="mt-5 row mb-5 site-section">
<div class="col-lg-7 order-1 order-lg-2" data-aos="fade-left">
<img
src="images/blockdock.svg"
alt="Blockdoc concept"
class="img-fluid"
/>
</div>
<div class="col-lg-5 pr-lg-5 mr-auto mt-5 order-2 order-lg-1">
<h2 class="text-black">Blockdoc</h2>
<p class="mb-4">
Secure Document Sharing Using Blockchain
</p>
<div class="author-box" data-aos="fade-right">
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/lock.svg"
alt="NDA Lock"
class="img-fluid"
style = "width: 15px;"
/>
</div>
<div class="mr-auto text-black" style="margin-top: 7px; font-size: 0.6em;">
<strong>PROVIDED IN ACCORDANCE WITH NDA</strong>
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/ethereum-1.svg "
alt="Ethereum logo"
class="img-fluid"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0"
>Smart contracts</strong
>
<br />
We have created our own Ethereum smart contracts written in Solidity: a language library with similarities to C and JavaScript
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/code.svg "
alt="Web Application"
class="img-fluid"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">Web App</strong>
<br />
Graphic interface that provide you the ability to download and share your documents securely with anyone using SHA256 encryption.
</div>
</div>
</div>
</div>
</div>
<div class="row mb-5 site-section">
<div class="col-lg-7" data-aos="fade-right">
<img
src="images/sustainidaAsset.png"
alt="Sustainida Journey"
class="img-fluid"
/>
</div>
<div class="col-lg-5 pl-lg-5 ml-auto mt-md-5">
<h2 class="text-black">Sustainida</h2>
<p class="mb-4">
A call towards Sustainability
</p>
<div class="author-box" data-aos="fade-left">
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/lock.svg"
alt="NDA Lock"
class="img-fluid"
style = "width: 15px;"
/>
</div>
<div class="mr-auto text-black" style="margin-top: 7px; font-size: 0.6em;">
<strong>PROVIDED IN ACCORDANCE WITH NDA</strong>
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/wordpress-blue.svg"
alt="Wordpress Logo"
class="img-fluid rounded-circle"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">Wordpress</strong>
<br />
Created a WordPress e-commerce website for sustainable products to help our client make a positive change towards the increasing environment crisis
</div>
</div>
<div class="d-flex mb-4">
<div class="mr-3">
<img
src="images/divi.jpeg"
alt="Divi Logo"
class="img-fluid rounded-circle"
/>
</div>
<div class="mr-auto text-black">
<strong class="font-weight-bold mb-0">Divi</strong>
<br />
A brand new E-commerce Platform with Divi website for the
effervescent Sustainida.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-section bg-light" id="about-section">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center">
<h2 class="section-title mb-3">About Us</h2>
</div>
</div>
<div class="row mb-5">
<div class="col-lg-6" data-aos="fade-right">
<img
src="images/our-mission.svg"
alt="Our Mission info graphic"
class="img-fluid"
/>
</div>
<div class="col-lg-5 ml-auto pl-lg-5">
<h2 class="text-black mb-4 h3 font-weight-bold">Our Offer to You</h2>
<p class="mb-4">
Our mission at Marstech is creating Digital Solutions with
ingenuity, creativity and innovation
</p>
<ul class="ul-check mb-5 list-unstyled success">
<li>Customised solutions for your needs</li>
<li>Experienced Team</li>
<li>Strict Deadline</li>
</ul>
<p><a href="#contact-section" class="btn btn-primary">Learn More</a></p>
</div>
</div>
</div>
</div>
<div class="site-section" id="our-team-section">
<div class="container">
<div
class="row mb-5 justify-content-center text-center"
data-aos="fade-up"
>
<div class="col-7 text-center mb-5">
<h2 class="section-title">Our Team</h2>
<p class="lead">
We have a highly motivated Team that does not settle for good
enough, they go for the Best!
</p>
</div>
</div>
<div class="row justify-content-around">
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Amit1.png"
alt="president Image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/aroha_blue/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center" >Amit Kumar</h2>
<span class="sub-title d-block mb-3 text-center">President</span>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p> -->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Tejas1.png"
alt="Marketing head image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/tj_choudekar/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Tejus Choudekar</h2>
<span class="sub-title d-block mb-3 text-center">Marketing</span>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p> -->
</div>
</div>
<div class="col-lg-3 col-md-6 mb-4" data-aos="fade-up" data-aos-delay="200">
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Sunig1.png"
alt="finance person image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/vinsmoke_63/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Sunig Kale</h2>
<span class="sub-title d-block mb-3 text-center">Financing</span>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p> -->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Rohan1.png"
alt="founder image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/_red_rex_/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Rohan Mahajan</h2>
<span class="sub-title d-block mb-3 text-center">Founder</span>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p> -->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Sandeep2.png"
alt="technology head"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/lucifer_0n_earth/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Sandeep Chandel</h2>
<span class="sub-title d-block mb-3 text-center">Technology</span>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p> -->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Rishabhd3.png"
alt="Image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/ritzmillan/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Rishabh Pardeshi</h2>
<span class="sub-title d-block mb-3 text-center">Designer</span>
<!--<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p>-->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Pratiksha.jpg"
alt="Image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/pratiksha.garode.official/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Pratiksha Garode</h2>
<span class="sub-title d-block mb-3 text-center">Technology</span>
<!--<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p>-->
</div>
</div>
<div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/Dhira.jpg"
alt="Image"
class="img-fluid p-4"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="https://www.instagram.com/dhira_negi/"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1 text-center">Dhira Negi</h2>
<span class="sub-title d-block mb-3 text-center">Technology</span>
<!--<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p>-->
</div>
</div>
<!-- <div
class="col-lg-3 col-md-6 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="person">
<div class="bio-img">
<figure>
<img
src="images/nomad.svg"
alt="Image"
class="img-fluid"
/>
</figure>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="#"><span class="icon-instagram"></span></a>
</div>
</div>
<h2 class="text-black h1">Aroha blue</h2>
<span class="sub-title d-block mb-3">Technology</span>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatum excepturi corporis qui doloribus perspiciatis
ipsa modi accusantium repellat.
</p>
</div>
</div>
-->
</div>
</div>
</div>
<div
class="site-section testimonial-wrap bg-light"
id="testimonials-section"
>
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center">
<h2 class="section-title mb-3">Testimonials</h2>
</div>
</div>
</div>
<div class="slide-one-item home-slider owl-carousel">
<div>
<div class="testimonial">
<figure
class="mb-4 d-block align-items-center justify-content-center"
>
<div>
<img
src="images/sustainidalogo.png"
alt="sustainida logo"
class="w-50 img-fluid mb-3 shadow"
/>
</div>
</figure>
<blockquote class="mb-3">
<p>
“Marstech has been very quick on understanding the requirements and also fulfilling them.
We have had quite a journey, from getting my website developed to becoming Technology partners with them.
Today Martech has 100% Sustainida's software development projects and its been a very productive journey
with them so far ”
</p>
</blockquote>
<p class="text-black"><strong>Junaid Shah</strong></p>
</div>
</div>
<div>
<div class="testimonial">
<figure
class="mb-4 d-block align-items-center justify-content-center"
>
<div>
<img
src="images/CRE_Logo.svg"
alt="CRE logo"
class="w-50 img-fluid mb-3 shadow"
/>
</div>
</figure>
<blockquote class="mb-3">
<p>
“Marstech's team has been very cooperative in terms of understanding our requirements and delivered the project as promised on time. The team members are very patient, talented enthusiastic, and quick. I recommend Marstech for the digital solutions and we are definitely very satisfied with their service and are very happy with the new website of our research group as designed by them ”
</p>
</blockquote>
<p class="text-black"><strong>CRE-LAB IIT Delhi</strong></p>
</div>
</div>
<div>
<div class="testimonial">
<figure
class="mb-4 d-block align-items-center justify-content-center"
>
<div>
<img
src="images/anylaptopfix.png"
alt="anylaptopfix logo"
class="w-50 img-fluid mb-3 shadow"
/>
</div>
</figure>
<blockquote class="mb-3">
<p>
“Marstech have some very talented people who solved every problem with technology.
I had been to many companies with my requirements, but most of them denied. But Marstech
not only accepted the project but also completed it and handed over the exact requirements
in no time. I definitely recommend them for your digital solutions.”
</p>
</blockquote>
<p class="text-black"><strong>Nilesh Dalvi</strong></p>
</div>
</div>
<div>
<div class="testimonial">
<figure
class="mb-4 d-block align-items-center justify-content-center"
>
<div>
<img
src="images/VVB.png"
alt="vvb sports logo"
class="w-50 img-fluid mb-3 shadow"
/>
</div>
</figure>
<blockquote class="mb-3">
<p>
“Marstech did a lightspeed job and delivered the project in the given deadlines.
The Website met our expectations completely. Marstech have some really patient members
who listened to my requirements very carefully and revised the features as many times as
I asked.”
</p>
</blockquote>
<p class="text-black"><strong>Sachin Yadav</strong></p>
</div>
</div>
<div>
<div class="testimonial">
<figure
class="mb-4 d-block align-items-center justify-content-center"
>
<div>
<img
src="images/nprlogo.png"
alt="npr feed process logo"
class="w-50 img-fluid mb-3 shadow"
/>
</div>
</figure>
<blockquote class="mb-3">
<p>
“Marstech listened to our requirements and develop the
Website according to our requirement. In the end, they delivered what
we were expecting from them. They did a fantastic job and handed us
a solution that meets our expectations. We would highly recommend them
for their amazing services.”
</p>
</blockquote>
<p class="text-black"><strong>Nilesh Khandekar</strong></p>
</div>
</div>
</div>
</div>
<div class="site-section" id="blog-section">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center">
<h2 class="section-title mb-3">Our Tech Stack</h2>
</div>
</div>
<div class="">
<div class="d-flex justify-content-around">
<img src="images/react.svg" alt="react logo" class="zoom w-5 mb-3" />
<img src="images/ethereum-1.svg" alt="ethereum logo" class="zoom w-5 mb-3" />
<img src="images/web3.png" alt="web3Js logo" class="zoom w-5 mb-3" />
<img src="images/java.svg" alt="java logo" class="zoom w-5 mb-3" />
<img src="images/wordpress.svg" alt="wordpress logo" class="zoom w-5 mb-3" />
<img src="images/nodejs.svg" alt="nodejs logo" class="zoom w-5 mb-3" />
</div>
<div class="d-flex justify-content-around mt-5">
<img src="images/springboot.png" alt="springboot logo" class="zoom w-5 mb-3" />
<img src="images/maven.png" alt="maven logo" class="zoom w-5 mb-3" />
<img src="images/github.svg" alt="github logo" class="zoom w-5 mb-3" />
<img src="images/python.svg" alt="python logo" class="zoom w-5 mb-3" />
<img src="images/tensorflow.svg" alt="tensorflow logo" class="zoom w-5 mb-3" />
<img src="images/postgresql.svg" alt="postgresql logo" class="zoom w-5 mb-3" />
</div>
<div class="d-flex justify-content-around mt-5">
<img src="images/heroku.svg" alt="heroku logo" class="zoom w-5 mb-3" />
<img src="images/mysql.svg" alt="mysql logo" class="zoom w-5 mb-3" />
<img src="images/graphql.svg" alt="graphql logo" class="zoom w-5 mb-3" />
</div>
</div>
</div>
</div>
<div class="site-section" id="blog-section">
<div class="container">
<div class="row mb-5">