forked from nammasolaar/NammaSolaar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1061 lines (909 loc) · 59.7 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>Namma Solaar: Buy UPS, Solar Panels in Karnataka</title>
<meta name="description" content="Namma Solaar. We solve all your solar needs ranging from digital UPS to Solar Panels in and around Bengaluru and Karnataka ">
<meta property="og:title" content= "Namma Solaar: Buy UPS, Solar Panels in Bengaluru" />
<meta property="og:url" content="https://nammasolaar.in/" />
<meta property="og:description" content="Namma Solaar. We solve all your solar needs ranging from digital UPS to Solar Panels in and around Bengaluru and Karnataka">
<meta property="og:image" content="https://nammasolaar.in/assets/images/logo_with_bg1.jpg">
<meta property="og:type" content="article" />
<link rel="stylesheet" type="text/css" href="assets/css/shorthandmin.css" />
<link rel="stylesheet" href="assets/css/styles.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Muli:200,300,400,500,600,700,800,900&display=swap" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css" />
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon-16x16.png">
<link rel="manifest" href="/assets/images/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Global site tag (gtag.js) - Google Analytics
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4L3VKY88VY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4L3VKY88VY'); -->
</script>
</head>
<body class="teal-yellow muli px-0 py-0">
<nav class="w-100pc flex flex-column md-flex-row md-px-10 py-5 yellow-green">
<div class="flex justify-between">
<a href="#" class="flex items-center p-2 mr-4 no-underline">
<img class="max-h-l6 w-auto" src="assets/images/logo1.png" />
</a>
<a data-toggle="toggle-nav" data-target="#nav-items" href="#"
class="flex items-center ml-auto md-hidden focus-indigo-lighter opacity-50 hover-opacity-100 ease-300 p-1 m-3">
<i data-feather="menu"></i>
</a>
</div>
<div id="nav-items" class="hidden flex sm-w-100pc flex-column md-flex md-flex-row md-justify-end items-center">
<a href="#home" class="fs-s1 mx-3 py-3 indigo no-underline hover-underline">Home</a>
<a href="#about_us" class="fs-s1 mx-3 py-3 indigo no-underline hover-underline">About us</a>
<a href="#Products" class="fs-s1 mx-3 py-3 indigo no-underline hover-underline">Products</a>
<a href="#Gallery" class="fs-s1 mx-3 py-3 indigo no-underline hover-underline">Gallery</a>
<a href="#contact" class="button bg-indigo-70 white fw-600 no-underline mx-5">Contact us</a>
</div>
</nav>
<!-- home section -->
<section id="home" class="min-h-100vh flex justify-start items-center bg-gray-light bg-no-repeat bg-c bg-cover "
style="background-image:url(assets/images/solar-bg-comp.jpg); box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);">
<div class="mx-5 md-mx-l5 ">
<div class="inline-block br-round bg-indigo-30 indigo-lightest p-2 fs-s2 mb-5">
<div class="inline-block bg-indigo indigo-lightest br-round px-3 py-1 mr-3 fs-s3 ">Call us</div>
For any enquiry…
</div>
<div>
<h2 class="white fs-l3 lh-2 md-fs-xl1 md-lh-1 fw-1000 ">Namma Solaar </h1>
<h2 class="white fs-l6 lh-2 md-fs-l3 md-lh-4 fw-1000">Authorized Distributors for Omega Digital UPS</h1>
<a href="tel:+917349658633" class="button bg-indigo-80 white fw-600 no-underline mt-2 br-t-8">Call Now</a>
<!-- <a href="tel:+919108379956" class="button bg-indigo-80 white fw-600 no-underline mt-2 br-t-8">Call Now for Dealership Enquiry</a> -->
</div>
</div>
</section>
<!-- About us -->
<section id="about_us" class="p-10 md-p-l5">
<div>
<h4 class="white fw-800 fs-l3 mb-5 mx-5">About us</h4>
</div>
<div class="indigo-lightest fw-600 fs-m1 lh-3 opacity-50"> We are a registered company under Government of India.
Our main aim is to revolutionize
the Indian market by spreading awareness and installing solar at every rooftop house in villages, towns & cities.
For our goods, we employ cutting-edge technologies such as built-in inverters and Lithium-Ion Ferrophosphate batteries.
As a result, you will have zero maintenance and a longer battery life.
We are the Authorized Distributors for Omega Digital Ups in <b>Bangalore</b> and <b>Karnataka</b>. </div>
<div class="flex flex-column md-flex-row mx-auto">
<div class="w-100pc md-w-40pc">
<div class="br-8 p-5 m-5">
<div class="flex justify-center items-center bg-indigo-lightest-10 white w-l5 h-l5 br-round mb-5"><i
data-feather="sun" class="w-l5"></i></div>
<h4 class="white fw-600 fs-m3 mb-5">Energy Savings</h4>
<div class="indigo-lightest fw-600 fs-m1 lh-3 opacity-50">Our Products make use of latest technologies which leads to higher energy and cost savings of upto 1000 Units* of Electricity in 7 Years
</div>
</div>
</div>
<div class="w-100pc md-w-40pc">
<div class="br-8 p-5 m-5">
<div class="flex justify-center items-center bg-indigo-lightest-10 white w-l5 h-l5 br-round mb-5"><i
data-feather="tool" class="w-l5"></i></div>
<h4 class="white fw-600 fs-m3 mb-5">Zero Maintenance</h4>
<div class="indigo-lightest fw-600 fs-m1 opacity-50">It uses high-frequency switching for compact size and the built-in inverters along with LiFePO₄
batteries gives zero maintenance and long life.</div>
<!-- <a href="#"
class="mt-5 button bg-indigo-lightest-10 fs-s3 white no-underline hover-opacity-100 hover-scale-up-1 ease-300">Read</a> -->
</div>
</div>
<div class="w-100pc md-w-40pc">
<div class="br-8 p-5 m-5">
<div class="flex justify-center items-center bg-indigo-lightest-10 white w-l5 h-l5 br-round mb-5"><i
data-feather="truck" class="w-l5"></i></div>
<h4 class="white fw-600 fs-m3 mb-5">Free Shipping</h4>
<div class="indigo-lightest fw-600 fs-m1 opacity-50">We provide <b>Free Shipping</b> in and around Bangalore and Karnataka
for all our products and upto 4 years of warranty.</div>
</div>
</div>
</div>
</section>
<!-- Products -->
<section id="Products" class=" md-p-0">
<div>
<h4 class="white fw-900 fs-l3 mb-5 mx-10">Our Products</h4>
</div>
<!--product 1-->
<div class="flex flex-wrap ">
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/1250Va_ups_front_600.jpg" alt="Li-1250 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-1250 SW Omega Digital UPS (1550)</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>1250 Va</b> with <b>100 Ah</b> Built in Lithium-Ion Ferro Phosphate Battery (<strong> Mrp</strong>)36,540 Offer price <strong>31,500</strong> (Inclusive of GST) </p>
<!--Know more button-->
<button id="know_more_1250" class ="mb-5 button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">36,540</span></small> <span class="fs-l3 lh-1"> ₹31,500</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%201250Va%20Omega%20digital%20UPS" target="_blank" rel= "nopener" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 ">BUY NOW</a>
</a>
</div>
<!-- Pop-Up1-->
<div id="myModal1" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close1" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/1250_table1.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/1250_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/1250_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/1250_table4.png" alt="" loading="lazy">
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--product 2-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/850va_product_600.jpg" alt="Li-850 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-850 SW Omega Digital UPS (1050) </h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b> 850 Va</b> with <b>75 Ah</b> Built in Lithium-Ion Ferro Phosphate Battery (<strong>30,856 Mrp</strong>) Offer price <strong>26,600</strong> (Inclusive of GST) </p>
<!--Know more button-->
<button id="know_more_850" class ="mb-5 button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">30,856</span></small> <span class="fs-l3 lh-1"> ₹26,600</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%20850Va%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div>
<!-- Pop-Up2-->
<div id="myModal2" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close2" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/850_table_hq.jpg" alt="" loading="lazy">
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--product 3-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc " src="assets/images/2300_product_front_comp.jpg" alt="Li-2300 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-2300 SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>2300 Va</b> with <b>100AH×2</b> Built in Lithium-Ion Ferro Phosphate Battery <strong>72,331 Mrp</strong> Offer price <strong>62,354</strong> (Inclusive of GST)
<button id="know_more_2300" class ="mb-5 button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">72,331</span></small> <span class="fs-l3 lh-1"> ₹62,354</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%202300Va%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div>
<!-- Pop-Up3-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/2300_table1.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy">
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--Product 4-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/3kw_ups__1646209950_107.181.177.130.jpg" alt="Li-3300 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-3300 SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>3300 Va</b> with 36v <b>100AH</b> Built in Lithium-Ion Ferro Phosphate Battery. <strong>1,05,119 Mrp</strong> Offer price <strong>90,620</strong> (Inclusive of GST) .</p>
<button id="know_more_2300" class ="mb-5 button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn disabled">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">1,05,119</span></small> <span class="fs-l3 lh-1"> ₹90,620</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%203300Va%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div>
<!-- Pop-Up4-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/updated_soon.png" alt="" loading="lazy">
<!-- <img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy"> -->
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--Product 5-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/4kw_ups__1646210168_107.181.177.130.jpg" alt="Li-4300 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-4300 SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>4300 Va</b> with 48v <b>100AH</b> Built in Lithium-Ion Ferro Phosphate Battery. <strong>1,39,838 Mrp</strong> Offer price <strong>1,20,550</strong> (Inclusive of GST) .</p>
<button id="know_more_2300" class ="mb-5 disabled button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">1,39,838 </span></small> <span class="fs-l3 lh-1"> ₹1,20,550</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%204300Va%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div>
<!-- Pop-Up5-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/updated_soon.png" alt="" loading="lazy">
<!-- <img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy"> -->
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--Product 6-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/5kw_48v_ups.jpg" alt="5kw omega digital solar ups" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-5500 48v SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>5500 Va</b> with 48v <b>100AH</b> Built in Lithium-Ion Ferro Phosphate Battery. <strong>1,45,624 Mrp</strong> Offer price <strong>1,25,538</strong> (Inclusive of GST) .</p>
<button id="know_more_2300" class ="mb-5 disabled button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">1,45,624 </span></small> <span class="fs-l3 lh-1"> ₹1,25,538</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%205500Va48V%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div>
<!-- Pop-Up6-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/updated_soon.png" alt="" loading="lazy">
<!-- <img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy"> -->
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--Product 6.5-->
<div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/5kw_solar_ups.jpg" alt="5kw omega digital solar ups" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-5500 72v SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>5500 Va</b> with 72v <b>100AH</b> Built in Lithium-Ion Ferro Phosphate Battery. <strong>2,01,173 Mrp</strong> Offer price <strong>1,73,425</strong> (Inclusive of GST) .</p>
<button id="know_more_2300" class ="mb-5 disabled button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">2,01,173 </span></small> <span class="fs-l3 lh-1"> ₹1,73,425</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%205500Va72V%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
<!--test-->
</div>
<!-- Pop-Up6-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/updated_soon.png" alt="" loading="lazy">
<!-- <img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy"> -->
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!--Product 7-->
<!-- <div class="w-100pc md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/ups-comp.jpg" alt="Li-8000 SW Omega Digital UPS" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Li-8000 SW Omega Digital UPS</h2>
<p class="indigo-lightest fw-600 fs-m2 opacity-50 my-5"><b>8000 Va</b> with 72v <b>100AH</b> Built in Lithium-Ion Ferro Phosphate Battery. <strong>2,11,782 Mrp</strong> Offer price <strong>1,82,571</strong> (Inclusive of GST) .</p>
<button id="know_more_2300" class ="mb-5 disabled button-xs bg-yellow white shadow-2-yellow br-round focus-none knowMoreBtn">KNOW MORE</button>
<div class="gray-lightest flex items-center"><small>₹<span class="fs-s1 lh-1 line-through">2,11,782</span></small> <span class="fs-l3 lh-1"> ₹1,82,571</span> </div>
<a href="https://wa.me/917349658633/?text=I%20would%20like%20to%20order%208000Va72v%20Omega%20digital%20UPS" target="_blank" rel= "nopener"
class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 "">BUY NOW</a>
</a>
</div> -->
<!-- Pop-Up7-->
<div id="myModal3" class="modal">
<!-- Modal content -->
<div id="modal-content" class="modal-content animation-1" >
<!-- Modal header -->
<header class="modal-header">
<p class="modal-header-title">
Specifications
</p>
<button id="close3" class="modal-header-icon">
<span class="icon">
<i data-feather="x"></i>
</span>
</button>
</header>
<!-- Modal body -->
<div class="modal-body">
<img class="w-100pc" src="assets/images/updated_soon.png" alt="" loading="lazy">
<!-- <img class="w-100pc" src="assets/images/2300_table2.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table3.png" alt="" loading="lazy">
<img class="w-100pc" src="assets/images/2300_table4.png" alt="" loading="lazy"> -->
</div>
<!-- Modal footer -->
<footer class="modal-footer">
</footer>
</div>
</div>
<!-- <div class="w-100pc p-10 md-w-33pc p-10">
<a class="block no-underline p-5 br-8 hover-bg-indigo-lightest-10 hover-scale-up-1 ease-300">
<img class="w-100pc" src="assets/images/solar_panel_comp.webp" alt="" loading="lazy">
<h2 class="white fs-l3 fw-900 lh-1">Solar Panel Installation</h2>
<p class="indigo-lightest fw-600 fs-m1 opacity-50 my-5">Available from <b>1kW to 10kW</b> installations</p>
<p class= "indigo-lightest fw-900 ">COMING SOON </p>
<span><a class="button linear-red white shadow-2-red bw-0 focus-red fs-s3 br-4 white fw-600 no-underline m-5 disabled ">BUY NOW</a></span>
</a>
</div> -->
</div>
</section>
<section id="Gallery" class="relative bg-indigo-lightest-10">
<div>
<h4 class="white fw-900 fs-l3 mx-10">Gallery</h4>
</div>
<div class="indigo-lightest fw-600 fs-m1 lh-3 opacity-50 mx-10">Checkout videos and images of the products below.</div>
<div id="slider-1">
<!-- <div class="relative w-100pc h-75vh bg-cover bg-b">
<iframe loading="lazy" src="https://www.youtube.com/embed/-Rj3OvD82dE" allowfullscreen width=100% height="100%"></iframe>
</div> -->
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/SqlYaCHQG1Q?&autoplay=1'>
<img src='https://img.youtube.com/vi/SqlYaCHQG1Q/maxresdefault.jpg' alt='3kva Inverter with Lithium Ion Ferro Phospahate battery Omega Digital Ups/ Namma Solaar'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/SqlYaCHQG1Q"
title="3kva Inverter with Lithium Ion Ferro Phospahate battery Omega Digital Ups/ Namma Solaar"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/AZ-RmESljiw?&autoplay=1'>
<img src='https://img.youtube.com/vi/AZ-RmESljiw/hqdefault.jpg' alt='3kva Inverter with Lithium Ion Ferro Phospahate battery Omega Digital Ups/ Namma Solaar'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/AZ-RmESljiw"
title="3kva Inverter with Lithium Ion Ferro Phospahate battery Omega Digital Ups/ Namma Solaar"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/7nAv6mgk7_g?&autoplay=1'>
<img src='https://img.youtube.com/vi/7nAv6mgk7_g/hqdefault.jpg' alt='BEST UPS INVERTER FOR SALE AT LOW PRICE || LITHIUM ION INVERTER || LONG BACKUP'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/7nAv6mgk7_g"
title="BEST UPS INVERTER FOR SALE AT LOW PRICE || LITHIUM ION INVERTER || LONG BACKUP"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/-Rj3OvD82dE?&autoplay=1'>
<img src='https://img.youtube.com/vi/-Rj3OvD82dE/hqdefault.jpg' alt='BEST UPS INVERTER FOR SALE AT LOW PRICE || LITHIUM ION INVERTER || LONG BACKUP'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/-Rj3OvD82dE"
title="BEST UPS INVERTER FOR SALE AT LOW PRICE || LITHIUM ION INVERTER || LONG BACKUP"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/z49cVSsWm0c?&autoplay=1'>
<img src='https://img.youtube.com/vi/z49cVSsWm0c/hqdefault.jpg' alt='Lithium ion Inverter | long backup inverter | kannada | Kannada Kuvara | home inverter | home UPS'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/z49cVSsWm0c"
title="Lithium ion Inverter | long backup inverter | kannada | Kannada Kuvara | home inverter | home UPS"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/F_c6_5-7OB4?&autoplay=1'>
<img src='https://img.youtube.com/vi/F_c6_5-7OB4/hqdefault.jpg' alt='1kw Omega Digital Ups UNBOXING II NAMMA SOLAAR Bangalore'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/F_c6_5-7OB4"
title="1kw Omega Digital Ups UNBOXING II NAMMA SOLAAR Bangalore"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="relative w-100pc h-75vh bg-cover bg-b" style=" box-shadow: 6px 6px 10px hsl(206.5, 0%, 75%);">
<iframe
style="position: absolute; top: 0; left:0; width: 100%; height: 100%; border: 0;"
loading="lazy";
srcdoc=" <style>
* {
padding: 0;
margin: 0;
overflow: hidden;
}
body, html {
height: 100%;
}
img, svg {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
margin: auto;
}
svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 70.7%, 8%));
transition: all 250ms ease-in-out;
}
body:hover svg {
filter: drop-shadow(1px 1px 10px hsl(206.5, 0%, 10%));
transform: scale(1.2);
}
</style>
<a href='https://www.youtube.com/embed/RvtnqkeTR2E?&autoplay=1'>
<img src='https://img.youtube.com/vi/RvtnqkeTR2E/hqdefault.jpg' alt='850va Omega Digital UPS... UNBOXING ... NAMMA SOLAAR'>
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='#ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play-circle'><circle cx='12' cy='12' r='10'></circle><polygon points='10 8 16 12 10 16 10 8'></polygon></svg>
</a>"
src="https://www.youtube.com/embed/RvtnqkeTR2E"
title="850va Omega Digital UPS... UNBOXING ... NAMMA SOLAAR"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<!--
<div class="relative w-100pc h-75vh bg-cover bg-b">
<iframe loading="lazy" src="https://www.youtube.com/embed/RvtnqkeTR2E" allowfullscreen width=100% height="100%"></iframe>
</div> -->
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/1250Va_ups_front.jpeg" alt="1250Va omega digital ups front 1kw lithium "> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/1250va_ups_cover.jpeg" alt="1250Va omega digital ups cover 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/1250va_ups_back.jpeg" alt="1250Va omega digital ups back 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/1250va_ups_on.jpeg" alt="1250Va omega digital ups turned on 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/3kw_and_5kw_ups__1646209866_107.181.177.130.jpg" alt="1250Va omega digital ups front 1kw lithium "> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/4kw_ups.jpg" alt="1250Va omega digital ups cover 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/5kw_ups.jpg" alt="1250Va omega digital ups back 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/3kw_ups.jpg" alt="1250Va omega digital ups turned on 1kw lithium"> </img>
<img class="relative w-100pc h-75vh object-contain border absolute-fill " data-lazy = "assets/images/5kw_solar_ups.jpg" alt="1250Va omega digital ups turned on 1kw lithium"> </img>
</div>
<ul class="absolute list-none w-100pc flex justify-between top-50pc">
<li><button
class="prev ml-10 br-round border-white white bg-transparent flex justify-center items-center p-2 outline-none"><i
data-feather="chevron-left"></i></button></li>
<li><button
class="next mr-10 br-round border-white white bg-transparent flex justify-center items-center p-2 outline-none"><i
data-feather="chevron-right"></i></button></li>
</ul>
</section>
<!-- Comparision and Top 10 reasons -->
<section class="relative bg-indigo-lightest-10 pt-10">
<div class="main ">
<div class="basic">
<div>Lead Acid Battery</div>
<div><span class="false"></span> need distilled water top-up every 3 months</div>
<div><span class="false"></span> charging takes upto 12 hours to complete</div>
<div><span class="false"></span> 3-5 years life</div>
<div><span class="false"></span> harmful to the environment</div>
<div><span class="false"></span> approx 40Kg-65Kg battery weight</div>
</div>
<div class="professional ">
<div>Lithium Battery</div>
<div> <span class="true"></span> no need of distilled water</div>
<div> <span class="true"></span> charging takes upto 5 hours to complete</div>
<div> <span class="true"></span> more than 10 years life</div>
<div> <span class="true"></span> non polluting</div>
<div> <span class="true"></span> 8KG battery weight</div>
</div>
</div>
<div>
<h3 class="white fw-900 fs-l3 mx-10 mt-10">Top 10 Reasons to Buy Omega Digital UPS</h3>
</div>
<div class="white fw-700 fs-m1 lh-3 opacity-50 mx-10 p-10">
<ol>
<li> Zero Maintenance.</li>
<li> 4 Years Warranty. </li>
<li> More than 10 Years Battery Life.</li>
<li> Safer than LEAD Acid Battery.</li>
<li> Save 1000 Units* of Electricity in 7 Years.</li>
<li> Fast Charging within 5 Hours.</li>
<li> Constant Voltage (No Load to Full Load).</li>
<li> Protects from High Low Voltage.</li>
<li> Advanced Lithium Technology (Used in Space to Mobile Phones).</li>
<li> Silent Operation works with PC, Laptop, Fan, Mixer, Lights & any other appliance*</li>
</ol></div>
<!--maps-->
<div class="responsive-map w-100pc h-75vh ">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3247.4177728703803!2d77.65485715896074!3d12.853842043587827!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae6d82e429c475%3A0xdd54d58dcb46ccf4!2sNAMMA%20SOLAAR!5e0!3m2!1sen!2sin!4v1633318785921!5m2!1sen!2sin"
height="100%" width="100%" position="absolute" frameborder="0" style="border:0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- footer -->
<footer class="yellow-green md-p-l5 bg-indigo-lightest-10" id="contact">
<div class="flex flex-wrap mx-5 ">
<div class="md-w-25pc mb-10 mt-1">
<img src="assets/images/logo1.png" class="w-l5" alt="namma solaar logo">
<div class="white opacity-70 fs-s2 mt-4 md-pr-10">
<p>We are a registered company under Government of India.
Our main aim is to revolutionize
the Indian market by spreading awareness and installing solar at every rooftop house in villages, towns & cities.</p>
<br>
<p>
We are the Authorized Dealers for Omega Digital Ups in Bangalore and Karnataka.</p>
</div>
</div>
<div class="w-100pc md-w-50pc">
<div class="flex justify-around">
<div class="w-50pc md-px-10 mb-10">
<h5 class="white">Navigation</h5>
<ul class="list-none mt-5 fs-s2">
<li class="my-3"><a href="#home"
class="white opacity-70 no-underline hover-underline">Home</a></li>
<li class="my-3"><a href="#about_us"
class="white opacity-70 no-underline hover-underline">About us</a>
</li>
<li class="my-3"><a href="#Products"
class="white opacity-70 no-underline hover-underline">Products</a></li>
<li class="my-3"><a href="#Gallery"
class="white opacity-70 no-underline hover-underline">Gallery</a>
</li>
<li class="my-3"><a href="#contact"
class="white opacity-70 no-underline hover-underline">Contact us</a>
</li>
</ul>
</div>
<div class="w-50pc md-px-10 mb-10">
<h5 class="white">Address</h5>
<ul class="list-none mt-5 fs-s2">
<li class="my-3 white opacity-70 ">
<div>No 9, 1st Cross Rd, Vinayaka Layout</div>
</li>
<li class="my-3">
<a class="white opacity-70"> Doddanagamangala Village, Silicon Town </a>
<li class="my-3"><a class="white opacity-70"> Electronic City, Bengaluru, Karnataka 560100 </a>
<li class="my-3"><a class="white opacity-70">Mail: </a>
<a href="mailto:nammasolaar@gmail.com" class="indigo fs=s3 no-underline hover-underline"> <b>nammasolaar@gmail.com</b></a>
</li>
<li class="my-3"><a class="white opacity-70">Ph No: </a>
<a href="tel:+917349658633" class="indigo no-underline hover-underline fs-s2"> <b>7349658633</b></a>
</li>
<li class="my-3"><a class="white opacity-70">Dealership Enquiry Ph No: </a>
<a href="tel:+919108379956" class="indigo no-underline hover-underline fs-s2"> <b>9108379956</b></a>
</li>
</ul>
</div>
</div>
</div>