-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1723 lines (1635 loc) · 151 KB
/
index.html
File metadata and controls
1723 lines (1635 loc) · 151 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-US" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/5dc8014415d2db3a5ff88af00/2f7de73426e6019d4edafd8f6.js");</script>
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/bc884fc93f0f8bd0d37286cd/script.js"></script>
<!-- Search Engine Optimization by Rank Math - https://rankmath.com/ -->
<title>Home - BathoEnergy</title>
<meta name="description" content="Premier installers for solar ground mounts, carports, and rooftop solar panels in South Africa">
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
<link rel="canonical" href="./index.html">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Home - BathoEnergy">
<meta property="og:description" content="Premier installers for solar ground mounts, carports, and rooftop solar panels in South Africa">
<meta property="og:url" content="./index.html">
<meta property="og:site_name" content="Batho Renewable Energy Solutions">
<meta property="og:updated_time" content="2024-10-21T12:36:36+00:00">
<meta property="og:image" content="./wp-content/uploads/2024/04/batho-social-share-open-graph.png">
<meta property="og:image:secure_url" content="./wp-content/uploads/2024/04/batho-social-share-open-graph.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="batho renewable energy solutions">
<meta property="og:image:type" content="image/png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Home - BathoEnergy">
<meta name="twitter:description" content="Premier installers for solar ground mounts, carports, and rooftop solar panels in South Africa">
<meta name="twitter:image" content="./wp-content/uploads/2024/04/batho-social-share-open-graph.png">
<meta name="twitter:label1" content="Written by">
<meta name="twitter:data1" content="brvance">
<meta name="twitter:label2" content="Time to read">
<meta name="twitter:data2" content="1 minute">
<script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Place","@id":".//#place","address":{"@type":"PostalAddress","addressLocality":"Randburg","addressRegion":"Gauteng","postalCode":"2194","addressCountry":"South Africa"}},{"@type":["Electrician","Organization"],"@id":".//#organization","name":"Batho Renewable Energy Solutions","url":"./","address":{"@type":"PostalAddress","addressLocality":"Randburg","addressRegion":"Gauteng","postalCode":"2194","addressCountry":"South Africa"},"logo":{"@type":"ImageObject","@id":".//#logo","url":".//wp-content/uploads/2024/04/batho-renewable-energy-logo-full.jpg","contentUrl":".//wp-content/uploads/2024/04/batho-renewable-energy-logo-full.jpg","caption":"Batho Renewable Energy Solutions","inLanguage":"en-US","width":"1280","height":"512"},"openingHours":["Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday 09:00-17:00"],"legalName":"Batho Renewable Energy Solutions","location":{"@id":".//#place"},"image":{"@id":".//#logo"},"telephone":"+27 76 583 5100"},{"@type":"WebSite","@id":".//#website","url":"./","name":"Batho Renewable Energy Solutions","alternateName":"Batho Energy Solutions","publisher":{"@id":".//#organization"},"inLanguage":"en-US","potentialAction":{"@type":"SearchAction","target":".//?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"ImageObject","@id":".//wp-content/uploads/2021/11/bg-section-step-001.png","url":".//wp-content/uploads/2021/11/bg-section-step-001.png","width":"200","height":"200","inLanguage":"en-US"},{"@type":"WebPage","@id":".//#webpage","url":".//","name":"Home - BathoEnergy","datePublished":"2021-11-16T01:48:55+00:00","dateModified":"2024-10-21T12:36:36+00:00","about":{"@id":".//#organization"},"isPartOf":{"@id":".//#website"},"primaryImageOfPage":{"@id":".//wp-content/uploads/2021/11/bg-section-step-001.png"},"inLanguage":"en-US"}]}</script>
<!-- /Rank Math WordPress SEO plugin -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="alternate" type="application/rss+xml" title="BathoEnergy » Feed" href="./feed/index.html">
<link rel="alternate" type="application/rss+xml" title="BathoEnergy » Comments Feed" href="./comments/feed/index.html">
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":".\/\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.1"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇺🇳","🇺🇳")&&!n(e,"🏴","🏴");case"emoji":return!n(e,"🐦⬛","🐦⬛")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel="stylesheet" id="iziModal-css" href="./wp-content/plugins/themesflat-elementor/post-format/assets/css/iziModal.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="zingbox-fonts-extend-css" href="./wp-content/plugins/themesflat-elementor/assets/css/zingbox_fonts_extend.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="parallax-css" href="./wp-content/plugins/themesflat-elementor/assets/css/parallax.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="./wp-content/themes/zingbox/css/bootstrap.css?ver=1" type="text/css" media="all">
<style id="wp-emoji-styles-inline-css" type="text/css">img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<style id="rank-math-toc-block-style-inline-css" type="text/css">.wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item}</style>
<style id="rank-math-rich-snippet-style-inline-css" type="text/css">/*!
* Plugin: Rank Math
* URL: https://rankmath.com/wordpress/plugin/seo-suite/
* Name: rank-math-review-snippet.css
*/@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both}</style>
<style id="classic-theme-styles-inline-css" type="text/css">/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<style id="global-styles-inline-css" type="text/css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="contact-form-7-css" href="./wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.3" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-theme-slug-fonts-css" href="https://fonts.googleapis.com/css?family=Montserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2Cregular%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C700%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C500%7CRubik%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C500%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C500%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2Cregular%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2Cregular%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C700%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2Cregular%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C700%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C700%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2Cregular%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C500%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300%7CMontserrat%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C900%2C300" type="text/css" media="all">
<link rel="stylesheet" id="icon-zingbox-css" href="./wp-content/themes/zingbox/css/icon-zingbox.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="icofont-css" href="./wp-content/themes/zingbox/css/icofont.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="owl-carousel-css" href="./wp-content/plugins/themesflat-elementor/assets/css/owl.carousel.min.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-animated-css" href="./wp-content/themes/zingbox/css/animated.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-main-css" href="./wp-content/themes/zingbox/css/main.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-inline-css-css" href="./wp-content/themes/zingbox/css/inline-css.css?ver=6.7.1" type="text/css" media="all">
<style id="themesflat-inline-css-inline-css" type="text/css">#themesflat-content{padding-top:120px; padding-bottom:110px; }
.themesflat-top .container-inside{padding-top:15px; padding-bottom:15px; }
#header #logo{}
#footer{padding-top:85px; padding-bottom:20px; }
.themesflat-partner-box{padding-top:67px; padding-bottom:106px; }
.page-title{padding-top:126px; padding-bottom:156px; }
body,button,input,select,textarea { font-family:Montserrat;}
.blog-single .entry-content .icon-list { font-family:Montserrat!important;}
body,button,input,select,textarea { font-weight:400;}
body,button,input,select,textarea { font-style:normal; }
body,button,input,select,textarea { font-size:16px; }
body,button,input,select,textarea { line-height:1.9;}
body,button,input,select,textarea { letter-spacing:0px;}
h1,h2,h3,h4,h5,h6 { font-family:Montserrat;}
h1,h2,h3,h4,h5,h6 { font-weight:700;}
h1,h2,h3,h4,h5,h6 { line-height:1.235;}
h1,h2,h3,h4,h5,h6 { letter-spacing:0px;}
h1,h2,h3,h4,h5,h6 { font-style:normal; }
h1 { font-size:50px; }
h2 { font-size:32px; }
h3 { font-size:28px; }
h4 { font-size:24px; }
h5 { font-size:20px; }
h6 { font-size:16px; }
#mainnav > ul > li > a, .header-modal-menu-left-btn .text, header .flat-information li { font-family:Montserrat;}
#mainnav > ul > li > a, .header-modal-menu-left-btn .text { font-weight:500;}
#mainnav > ul > li > a, .header-modal-menu-left-btn .text { font-style:normal; }
#mainnav ul li a, .header-modal-menu-left-btn .text, header .flat-information li { font-size:18px;}
#mainnav > ul > li > a, #header .show-search, header .block a, #header .mini-cart-header .cart-count, #header .mini-cart .cart-count, .button-menu { line-height:100px;}
#header.header-sticky #mainnav > ul > li > a, #header.header-sticky .show-search a, #header.header-sticky .block a, #header.header-sticky .mini-cart-header .cart-count, #header.header-sticky .mini-cart .cart-count, #header.header-sticky .button-menu { line-height:calc(100px / 1.2);}
#mainnav > ul > li > a, #header .show-search a, header .block a, #header .mini-cart-header .cart-count, #header .mini-cart .cart-count, .button-menu { letter-spacing:0px;}
#mainnav ul.sub-menu > li > a { font-family:Rubik;}
#mainnav ul.sub-menu > li > a { font-weight:500;}
#mainnav ul.sub-menu > li > a { font-style:normal; }
#mainnav ul.sub-menu > li > a { font-size:18px;}
#mainnav ul.sub-menu > li > a { line-height:24px;}
#mainnav ul.sub-menu > li > a { letter-spacing:0px;}
blockquote { font-family:Montserrat;}
blockquote { font-weight:300;}
blockquote { font-style:normal; }
blockquote { font-size:16px;}
blockquote { line-height:30px;}
blockquote { letter-spacing:0px;}
article .entry-title { font-family:Montserrat;}
article .entry-title { font-weight:400;}
article .entry-title { font-style:normal; }
article .entry-title { font-size:47px;}
article .entry-title { line-height:1.235;}
article .entry-title { letter-spacing:-0.9px;}
article .post-meta .item-meta { font-family:Montserrat;}
article .post-meta .item-meta { font-weight:300;}
article .post-meta .item-meta { font-style:normal; }
article .post-meta .item-meta { font-size:12px;}
article .post-meta .item-meta { line-height:1.5;}
article .post-meta .item-meta { letter-spacing:0px;}
article .themesflat-button { font-family:Montserrat;}
article .themesflat-button { font-weight:400;}
article .themesflat-button { font-style:normal; }
article .themesflat-button { font-size:20px;}
article .themesflat-button { line-height:1;}
article .themesflat-button { letter-spacing:-0.2px;}
.single article .entry-title { font-family:Montserrat;}
.single article .entry-title { font-weight:700;}
.single article .entry-title { font-style:normal; }
.single article .entry-title { font-size:28px;}
.single article .entry-title { line-height:1.5;}
.single article .entry-title { letter-spacing:-0.6px;}
.comment-title, .comment-reply-title, .comment-reply-title a { font-family:Montserrat;}
.comment-title, .comment-reply-title, .comment-reply-title a { font-weight:400;}
.comment-title, .comment-reply-title, .comment-reply-title a { font-style:normal; }
.comment-title, .comment-reply-title, .comment-reply-title a { font-size:47px;}
.comment-title, .comment-reply-title, .comment-reply-title a { line-height:1.2;}
.comment-title, .comment-reply-title, .comment-reply-title a { letter-spacing:0px;}
.sidebar .widget .widget-title, .sidebar .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { font-family:Montserrat;}
.sidebar .widget .widget-title, .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { font-weight:700;}
.sidebar .widget .widget-title, .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { font-style:normal; }
.sidebar .widget .widget-title, .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { font-size:20px;}
.sidebar .widget .widget-title, .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { line-height:1.2;}
.sidebar .widget .widget-title, .widget h2, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { letter-spacing:0px;}
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { font-family:Montserrat;}
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { font-weight:700;}
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { font-style:normal; }
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { font-size:20px;}
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { line-height:1.5;}
footer .widget .widget-title, footer .widget h2, footer .wp-block-search .wp-block-search__label { letter-spacing:0px;}
.page-title .page-title-heading { font-family:Montserrat;}
.page-title .page-title-heading { font-weight:400;}
.page-title .page-title-heading { font-style:normal; }
.page-title .page-title-heading { font-size:72px;}
.page-title .page-title-heading { line-height:1.2;}
.page-title .page-title-heading { letter-spacing:-1.5px;}
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { font-family:Montserrat;}
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { font-weight:300;}
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { font-style:normal; }
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { font-size:18px;}
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { line-height:1.5;}
.breadcrumbs, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span { letter-spacing:0px;}
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { font-family:Montserrat;}
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { font-weight:500;}
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { font-style:normal; }
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { font-size:15px;}
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { line-height:1;}
.themesflat-button, button, input[type="button"], input[type="reset"], input[type="submit"] { letter-spacing:0px;}
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { font-family:Montserrat;}
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { font-weight:300;}
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { font-style:normal; }
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { font-size:20px;}
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { line-height:1;}
.navigation a, .pagination > span, .navigation.paging-navigation span, .page-links a, .page-links > span, .woocommerce-pagination ul li span, .woocommerce-pagination ul li a { letter-spacing:0px;}
.copyright { font-family:Montserrat;}
.copyright { font-weight:300;}
.copyright { font-style:normal; }
.copyright { font-size:16px;}
.copyright { line-height:1.5;}
.bottom { font-family:Montserrat;}
.bottom { font-weight:300;}
.bottom { font-style:normal; }
.bottom { font-size:16px;}
.bottom { line-height:1.5;}
.bottom { letter-spacing:0px;}
.themesflat-top { background-color:#57B33E ; }
.themesflat-top { color:#ffffff ;}
.themesflat-top a { color:#ffffff ;}
.themesflat-top a:hover { color:#FF7029 ;}
.themesflat-top { font-family:Montserrat;}
.themesflat-top { font-weight:500;}
.themesflat-top { font-style:normal; }
.themesflat-top { font-size:14px;}
.themesflat-top { line-height:1.5;}
#header.header-default, #header.header-style1, #header.header-style2, #header.header-style4, #header.header-style3 .header-ct-center, #header.header-style3 .header-ct-right, #header.header-style3:before { background:#ffffff;}
#header.header-sticky { background:#ffffff;}
#mainnav > ul > li > a, .header-modal-menu-left-btn .text, header .flat-information li, header .flat-information li a, #header.header-style1 .btn-header { color:#1F242C;}
.header-modal-menu-left-btn .modal-menu-left-btn .line { background:#1F242C;}
#mainnav > ul > li > a:hover { color:#57B33E;}
#mainnav > ul > li > a:after { background:#57B33E;}
#mainnav > ul > li.current-menu-item > a, #mainnav > ul > li.current-menu-ancestor > a, #mainnav > ul > li.current-menu-parent > a { color:#57B33E;}
#mainnav > ul > li.current-menu-item > a:after, #mainnav > ul > li.current-menu-ancestor > a:after, #mainnav > ul > li.current-menu-parent > a:after { background:#57B33E;}
#mainnav ul.sub-menu > li > a, #mainnav li.megamenu > ul.sub-menu > .menu-item-has-children > a { color:#1F242C;}
#mainnav ul.sub-menu { background-color:#ffffff;}
#mainnav ul.sub-menu > li > a:hover, #mainnav ul.sub-menu > li.current-menu-item > a, #mainnav-mobi ul li.current-menu-item > a, #mainnav-mobi ul li.current-menu-ancestor > a, #mainnav ul.sub-menu > li.current-menu-ancestor > a, #mainnav-mobi ul li .current-menu-item > a, #mainnav-mobi ul li.current-menu-item .btn-submenu:before, #mainnav-mobi ul li .current-menu-item .btn-submenu:before { color:#57B33E;}
#mainnav ul.sub-menu > li > a:before { background-color:rgba(255,255,255,0);}
#mainnav ul.sub-menu > li { border-top-color:#D1D1D1;}
#header #logo a img, .modal-menu__panel-footer .logo-panel a img { max-width:180px;height: auto;}
#mainnav > ul > li { margin-left:15px; margin-right:15px;}
.footer_background { background:rgba(31,36,44,0);}
.footer_background .overlay-footer {background-image: url(./wp-content/uploads/2024/04/bg-footer-default.jpg);}
.footer_background .overlay-footer {background-size: auto;}
#footer .widget-title, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer .wp-block-search .wp-block-search__label { color:#ffffff;}
#footer, #footer input,#footer select,#footer textarea, #footer a, footer .widget.widget-recent-news li .text .post-date, footer .widget.widget_latest_news li .text .post-date, #footer .footer-widgets .widget.widget_themesflat_socials ul li a, #footer .footer-widgets .widget.widget_themesflat_socials ul li a:hover, footer select option, footer .widget.widget_recent_entries ul li .post-date, #footer .wp-block-latest-posts__post-author, #footer .wp-block-latest-posts__post-date { color:rgba(255,255,255,0.8);}
#footer .footer-widgets .widget.widget_themesflat_socials ul li a:hover { color:rgba(255,255,255,0.8)!important;}
#footer a:hover { color:#57B33E;}
footer .widget.widget_product_categories ul > li > a:before, footer .widget.widget_categories ul > li > a:before, footer .widget.widget_pages ul > li > a:before, footer .widget.widget_archive ul > li > a:before, footer .widget.widget_meta ul > li > a:before, footer .widget.widget_block ul > li > a:before, .footer-widgets .widget.widget_themesflat_socials ul li a:hover, .footer-widgets .widget.widget_themesflat_socials ul li:first-child a { background:#57B33E;}
.bottom { background:#15181C;}
.bottom, .bottom a { color:#ffffff;}
.bottom .copyright a { color:#ffffff;}
.bottom a:hover, .bottom .copyright a:hover { color:#57B33E;}
.bottom .copyright a:before { background:#57B33E;}
.themesflat-action-box .overlay { background-color:rgba(29, 42, 55, 0.9);}
.themesflat-action-box .heading, .themesflat-action-box h2, .themesflat-action-box h3, .themesflat-action-box h4, .themesflat-action-box h5, .themesflat-action-box h6 { color:#ffffff;}
.themesflat-action-box, .themesflat-action-box p { color:#ffffff;}
.themesflat-action-box .themesflat-button, .themesflat-action-box .themesflat-button:hover { color:#ffffff;}
.themesflat-action-box .themesflat-button { background-color:#eb6d2f;}
.themesflat-partner-box { background: ;}
.page-title .overlay { background: #1f242c;}
.page-title .overlay { opacity:60%; filter:alpha(opacity=60); }
.page-title {background-image: url(./wp-content/uploads/2024/04/page-title-global1.jpg);}
.page-title {background-size: cover;}
.page-title h1 {color:rgba(255,255,255,1)!important;}
.page-title.parallax h1:after, .page-title.video h1:after {background:rgba(255,255,255,1);}
.breadcrumbs span, .breadcrumbs span a, .breadcrumbs a, .breadcrumbs span i, .breadcrumbs span.trail-browse i {color:rgba(255,255,255,1);}
body, input, select, textarea { color:rgba(86,88,114,1)}
.themesflat-portfolio .item .category-post a:hover,ul.iconlist .list-title .testimonial-content blockquote,.testimonial-content .author-info,.themesflat_counter.style2 .themesflat_counter-content-right,.themesflat_counter.style2 .themesflat_counter-content-left, .page-links a:focus,.widget_search .search-form input[type=search],.entry-meta ul,.entry-meta ul.meta-right,.entry-footer strong, .themesflat_button_container .themesflat-button.no-background, .portfolio-single .entry-content, article .entry-meta ul li a, .blog-single .entry-footer .tags-links a, .navigation.posts-navigation .nav-links li a .meta-nav, .flat-language ul.unstyled-child li a, .themesflat-price-product del { color:rgba(86,88,114,1)}
.widget .widget-title:after, .widget .widget-title:before,ul.iconlist li.circle:before { background-color:rgba(86,88,114,1)}
h1, h2, h3, h4, h5, h6 { color:#191919;}
article .entry-title a, .item article .entry-title a, .widget.widget_categories ul li a, .widget.widget_archive ul li a, .widget.widget_pages ul li a, .widget.widget_block .wp-block-archives li a, .widget.widget_block .wp-block-categories li a, article .post-meta .item-meta a, .tags-links a, .logged-in-as a, blockquote em a { color:#191919;}
.sidebar .widget ul li a { color:#191919;}
.comment-list .comement_reply a:hover, .sidebar .widget_recent_comments ul li, .sidebar .widget.widget_block ol.wp-block-latest-comments li, .sidebar .widget.widget_recent_comments ul li, .sidebar .widget.widget_rss ul li, .sidebar .widget.widget_block ol.wp-block-latest-comments li, .sidebar .wp-block-search .wp-block-search__label, .sidebar .wc-block-product-search .wc-block-product-search__label { color:#191919!important;}
.tf-posts .blog-post .tf-button:hover, .tf-posts .blog-post .title a { color:#191919;}
#commentform .wrap-input-submit:before, .themesflat-button:before, .wp-block-button__link:before, .draw-border a:before, .block-get-a-quote a:before, button:before, .btn:before, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .search-form .search-submit:hover, .go-top, .wishlist_table .product-add-to-cart a:before, .widget_shopping_cart_content .buttons>a:before, .widget_shopping_cart_content .buttons a.checkout:before { background-color:#191919;}
.modal-menu__panel-body .search-form input[type="search"]:focus { border-color:#191919}
:root { --theme-primary-color:#191919 }
a:hover, .comment-list .comement_reply a, .wp-block-pullquote cite, blockquote em, blockquote em a:hover, blockquote i, blockquote cite, blockquote cite a, article .entry-title a:hover, .navigation.posts-navigation .nav-links a:hover, .widget_calendar table #today:hover, .widget_calendar table #today a:hover, .widget_calendar table tbody tr a:hover, .widget_calendar nav a:hover, article .post-meta .item-meta .meta-icon, article .post-meta .item-meta a:hover, .social-share-article ul li a:hover, .widget.widget-recent-news li .text .post-date i, .widget.widget_latest_news li .text .post-date i, .widget.widget-recent-news li .text h6 a:hover, .widget.widget_latest_news li .text h6 a:hover, .themesflat-services-taxonomy .services-post .post-icon i, .portfolios-post .content .post-meta a:hover, .portfolios-post .content .title a:hover, .project-post .content .post-meta a:hover, .project-post .content .title a:hover, .tf-posts .blog-post .tf-button, .tf-posts .blog-post .title a:hover, .tf-services-wrap.style2 .services-post:hover .post-icon i, .tf-services-wrap.style2 .services-post .tf-button-container a, .breadcrumbs a:hover, .breadcrumbs span a:hover, .breadcrumbs a:hover span, .breadcrumbs span a:hover span, blockquote a:hover, .widget.widget_recent_entries ul li a:hover, .widget.widget_block ul.wp-block-latest-posts li a:hover, #mainnav_canvas ul li.current-menu-item > a, #mainnav_canvas ul li.current_page_item > a, #mainnav_canvas ul li.current-menu-ancestor > a, #mainnav_canvas ul li.current-menu-parent > a, .tags-links a:hover, .logged-in-as a:hover, .comments-area ol.comment-list article .comment_content .comment_meta .comment_author a:hover, .single-portfolios .entry-content .meta-post a:hover, .single-project .entry-content .meta-post a:hover, .services-post .title a:hover, .services-post .tf-button-container a:hover, .info-header .phone:hover, .post-meta a:hover, #mainnav_canvas ul li a:hover, article .entry-title a:hover, .item article .entry-title a:hover, .widget ul li a:hover, .widget ol li a:hover, .sidebar .widget.widget_nav_menu ul li a:hover, .widget.widget_meta ul li a:hover, .tf-posts.style3 .content .post-meta a:hover, .tf-posts.style3 .blog-post .tf-button:hover, .tf-posts.style3 .blog-post .tf-button:hover:after, .tf-posts.style4 .content .post-meta a:hover, .tf-posts.style4 .blog-post .tf-button:hover, .tf-posts.style4 .blog-post .tf-button:hover:after { color:#57B33E;}
.sidebar .widget ul li a:hover { color:#57B33E;}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, mark, ins, .go-top:hover, #commentform .wrap-input-submit, .themesflat-button, .draw-border a, .widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover, .widget.widget_pages ul li a:hover, button, input[type="button"], input[type="reset"], input[type="submit"], .themesflat-services-taxonomy .services-post:hover .post-icon, #header.header-style1 .draw-border a:before, .show-search > a, .wp-block-button__link, .wp-block-file .wp-block-file__button, .is-style-outline .wp-block-button__link:before, .page-links a:hover, .page-links a:focus, .page-links > span, input[type='radio']:checked:before, .block-get-a-quote .overlay-color, .themesflat-top .btn-topbar { background:#57B33E;}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover, .widget.widget_pages ul li a:hover, .sidebar .wpcf7-form textarea:focus, .single-portfolios .entry-content .meta-post .inner-meta-post, .single-project .entry-content .meta-post .inner-meta-post, #header.header-style1 .btn-header, #header.header-style1 .btn-header:hover, .is-style-outline>.wp-block-button__link, .wp-block-button__link.is-style-outline, input[type='radio']:checked { border-color:#57B33E;}
.draw-border.second-color a:hover, .draw-border.second-color button:hover, .wishlist_table span.wishlist-in-stock, #footer .widget_calendar nav a:hover, #footer .widget_calendar table tbody tr a:hover { color:#57B33E!important;}
input:focus, select:focus, .draw-border.second-color a:hover::before, .draw-border.second-color a:hover::after, .draw-border.second-color button:hover > span::before, .draw-border.second-color button:hover > span::after, .widget_search form input[type="search"]:focus, .wp-block-search .wp-block-search__input:focus, .footer .mc4wp-form input[type="email"]:focus { border-color:#57B33E !important;}
.double-bounce3, .double-bounce4, .navigation.paging-navigation .current, .navigation.paging-navigation a:hover, .navigation.paging-navigation a.next:hover, .widget .widget-title:after, .widget .tagcloud a:hover, .go-top:hover, .search-form .search-submit, .widget_search form button, .wp-block-search .wp-block-search__button, .btn-menu:before, .btn-menu:after, .btn-menu span, .footer .mc4wp-form input[type="submit"]:hover, .info-footer .wrap-info-item, a.btn.s2:before, .portfolio-filter li.active a, .services-filter li.active a, .project-filter li.active a, .portfolio-filter li a:hover, .services-filter li a:hover, .project-filter li a:hover, .single-portfolios .entry-footer .social-share-article a:hover, .portfolios-post .content .tf-button:hover, .single-project .entry-footer .social-share-article a:hover, .project-post .content .tf-button:hover, .tf-counter.style1:after, .tf-posts.style1 .post-meta a, .tf-posts.style2 .blog-post:after, .tf-posts.style2 .bg-overlay, .tf-posts.style3 .featured-post .post-meta, .tf-posts.style3 .blog-post .tf-button:hover:before, .tf-posts.style4 .blog-post .tf-button:hover:before { background: #57B33E;}
.info-header .icon-info svg, .themesflat-services-taxonomy .services-post .post-icon svg, .tf-services-wrap.style2 .services-post:hover .post-icon svg { fill:#57B33E}
.woo-single-post-class .woocommerce-product-details__short-description li:before, .widget_shopping_cart_content ul li a.remove, .widget_shopping_cart_content .total span.woocommerce-Price-amount, .wc-block-grid__product.wc-block-grid__product .wc-block-grid__product-link:hover, .woocommerce .shop_table.order_details tr td .woocommerce-Price-amount, .woocommerce .shop_table.order_details th a:hover, .woocommerce .shop_table.order_details tr td.woocommerce-table__product-name a:hover, .woocommerce-page .shop_table.cart .product-name a:hover, .woo-single-post-class .summary a:hover { color:#57B33E!important;}
.woocommerce-page .cart_totals .shop_table .order-total td, .widget_product_categories ul li a:hover, .wc-block-product-categories ul li a:hover { color:#57B33E !important;}
.woocommerce-page .woo-single-post-class .summary .stock.in-stock, .product .onsale, .woo-single-post-class .woocommerce-tabs ul li>a:hover, .woo-single-post-class .woocommerce-tabs ul li.active>a, .woocommerce-pagination ul li span.current, .woocommerce-pagination ul li a:hover, .woocommerce-page .wc-proceed-to-checkout .button, .sidebar .widget.woocommerce .widget-title:before, .sidebar .widget.woocommerce .widget-title:after, .header-cart-wrapper .shopping-cart-items-count, .tf-team .inner-image:before, .widget_shopping_cart_content .buttons>a, .widget_shopping_cart_content .buttons a.checkout, .woocommerce-page .shop_table.cart .product-remove a:hover, .widget_shopping_cart_content ul li a.remove:hover, .header-cart-wrapper .nav-cart-trigger, .header-wishlist-wrapper .nav-wishlist-trigger, .products li .wrap-btn-action .loading:after, .wc-block-grid__product-onsale, .products li .wrap-btn-action .yith-wcwl-add-to-wishlist, .products li .wrap-btn-action .button, .products li .product-info .added_to_cart, .tf-services-wrap.style3 .services-post .tf-button-container a { background-color:#57B33E;}
.woocommerce-notice--success:after, .header-cart-wrapper .nav-cart-trigger, .header-wishlist-wrapper .nav-wishlist-trigger { background-color:#57B33E!important;}
.woocommerce-pagination ul li span.current, .woocommerce-pagination ul li a:hover, .products li:hover .inner, .woocommerce textarea:focus, .woocommerce input:focus { border-color:#57B33E;}
.woo-single-post-class .woocommerce-tabs ul li>a, .woocommerce-page .shop_table.cart .product-remove a, .widget_shopping_cart_content ul li a.remove { background:rgba(87,179,62,0.2);}
footer .widget.widget_categories ul li>a:hover:after, footer .widget.widget_archive ul li>a:hover:after, footer .widget.widget_pages ul li>a:hover:after, footer .widget.widget_meta ul li>a:hover:after { color:#57B33E;}
a, .products li.product-style2 h2:hover, .flat-language ul.unstyled-child li a:hover { color:#FF7029 }
#mainnav ul.sub-menu > li > a > span, #mainnav_canvas ul li a > span, .product-style2.product .onsale, .tf-services-wrap.style3 .services-post .post-icon, .tf-services-wrap.style3 .services-post .tf-button-container a:hover, .dark-form.style2 button, .dark-form.style2 input[type="submit"], #header.header-style3 .header-wrap .header-ct-left, .footer-style-3 footer .widget .widget-title:after, .footer-style-3 footer .widget h2:after, .footer-style-3 footer .wp-block-search .wp-block-search__label:after, .footer-style-4 footer .widget .widget-title:after, .footer-style-4 footer .widget h2:after, .footer-style-4 footer .wp-block-search .wp-block-search__label:after, .mc4wp-form input[type="submit"], .footer-style-2 #footer .footer-widgets .widget.widget_themesflat_socials ul li a:hover, .footer-style-2 #footer .footer-widgets .widget.widget_themesflat_socials ul li:first-child a, .footer-style-4 #footer .footer-widgets .widget.widget_themesflat_socials ul li a:hover, .footer-style-4 #footer .footer-widgets .widget.widget_themesflat_socials ul li:first-child a { background-color:#FF7029 }
.project-post .content, .tf-team.style1 .content:before, .tf-team.style1 .content:after, .line-top .tf-imagebox .content:before, .services-post .content:before { background-color:#FF7029 !important}
:root { --theme-accent-color:#FF7029 }</style>
<link rel="stylesheet" id="font-awesome-5-14-0-css" href="./wp-content/themes/zingbox/css/font-awesome-5.14.0.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-responsive-css" href="./wp-content/themes/zingbox/css/responsive.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="./wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-26-css" href="./wp-content/uploads/elementor/css/post-26.css?ver=1715776446" type="text/css" media="all">
<link rel="stylesheet" id="widget-image-css" href="./wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="tf-heading-section-css" href="./wp-content/plugins/themesflat-elementor/assets/css/heading-section/tf-heading-section.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="tf-step-css" href="./wp-content/plugins/themesflat-elementor/assets/css/step/tf-step.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="widget-text-editor-css" href="./wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="tf-tabs-css" href="./wp-content/plugins/themesflat-elementor/assets/css/tabs/tf-tabs.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="widget-heading-css" href="./wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="tf-title-section-css" href="./wp-content/plugins/themesflat-elementor/assets/css/title-section/tf-title-section.css?ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="widget-icon-list-css" href="./wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="e-animation-fadeInUp-css" href="./wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="e-animation-fadeInLeft-css" href="./wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="e-animation-fadeInDown-css" href="./wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css?ver=3.27.1" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-6065-css" href="./wp-content/uploads/elementor/css/post-6065.css?ver=1729514198" type="text/css" media="all">
<link rel="stylesheet" id="tf-main-post-type-css" href="./wp-content/plugins/themesflat/assets/css/tf-main-post-type.css?ver=1" type="text/css" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Montserrat%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRubik%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTeko%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.7.1" type="text/css" media="all">
<link rel="stylesheet" id="elementor-icons-zingbox_icon_solar_energy-css" href="./wp-content/themes/zingbox/css/icon-zingbox.css?ver=1.0.0" type="text/css" media="all">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<script type="text/javascript" src="./wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="./wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<link rel="https://api.w.org/" href="./wp-json/index.html">
<link rel="alternate" title="JSON" type="application/json" href="./wp-json/wp/v2/pages/6065/index.html">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="./xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.7.1">
<link rel="shortlink" href="./index.html">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=https%3A%2F%2F%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=https%3A%2F%2F%2F#038;format=xml">
<meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}</style>
<meta name="generator" content="Powered by Slider Revolution 6.7.12 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.">
<link rel="icon" href="./wp-content/uploads/2024/04/cropped-icon-32x32.png" sizes="32x32">
<link rel="icon" href="./wp-content/uploads/2024/04/cropped-icon-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="./wp-content/uploads/2024/04/cropped-icon-180x180.png">
<meta name="msapplication-TileImage" content="./wp-content/uploads/2024/04/cropped-icon-270x270.png">
<script>function setREVStartSize(e){
//window.requestAnimationFrame(function() {
window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
try {
var pw = document.getElementById(e.c).parentNode.offsetWidth,
newh;
pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
if(e.layout==="fullscreen" || e.l==="fullscreen")
newh = Math.max(e.mh,window.RSIH);
else{
e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
var nl = new Array(e.rl.length),
ix = 0,
sl;
e.tabw = e.tabhide>=pw ? 0 : e.tabw;
e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
e.tabh = e.tabhide>=pw ? 0 : e.tabh;
e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
sl = nl[0];
for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
}
var el = document.getElementById(e.c);
if (el!==null && el) el.style.height = newh+"px";
el = document.getElementById(e.c+"_wrapper");
if (el!==null && el) {
el.style.height = newh+"px";
el.style.display = "block";
}
} catch(e){
console.log("Failure at Presize of Slider:" + e)
}
//});
};</script>
<style type="text/css" id="wp-custom-css">.block-get-a-quote {
background-image: url('https://zingboxwp.demothemesflat.com/wp-content/uploads/2021/08/blog-single.jpg');
}
.show-search{
display:none;
}
@media only screen and (max-width: 1440px) {
.elementor-1942 .elementor-element.elementor-element-ce4d4b3 > .elementor-element-populated {
padding: 87px 20px 87px 140px;
}
.elementor-1942 .elementor-element.elementor-element-0ffaf08 {
bottom: 14%;
}
.elementor-2863 .elementor-element.elementor-element-17de93d > .elementor-widget-container {
margin: -795px 0px 0px 0px;
}
.elementor-2863 .elementor-element.elementor-element-f2c1686 > .elementor-element-populated {
padding: 11.6% 13% 12% 18.5%;
}
#rev_slider_2_1_wrapper .hesperiden.tparrows.tp-leftarrow {
transform: translate(0px, -45px)!important;
}
#rev_slider_2_1_wrapper .hesperiden.tparrows.tp-rightarrow {
transform: translate(-92px, -45px)!important;
}
}
@media only screen and (max-width: 1366px) {
.elementor-1942 .elementor-element.elementor-element-ce4d4b3 > .elementor-element-populated {
padding: 87px 20px 87px 100px;
}
.elementor-2863 .elementor-element.elementor-element-17de93d > .elementor-widget-container {
margin: -788px 0px 0px 0px;
}
.elementor-2863 .elementor-element.elementor-element-f2c1686 > .elementor-element-populated {
padding: 11.6% 9% 12% 18.5%;
}
}
@media only screen and (max-width: 1200px) {
.elementor-1942 .elementor-element.elementor-element-ce4d4b3 > .elementor-element-populated {
padding: 87px 15px 90px 15px;
}
.elementor-2863 .elementor-element.elementor-element-17de93d > .elementor-widget-container {
margin: -775px 0px 0px 0px;
}
.elementor-2863 .elementor-element.elementor-element-f2c1686 > .elementor-element-populated {
padding: 11.6% 3% 12% 16.5%;
}
#rev_slider_2_1_wrapper .hesperiden.tparrows {
display: none !important;
}
}
@media only screen and (max-width: 1024px) {
.elementor-1942 .elementor-element.elementor-element-ce4d4b3 > .elementor-element-populated {
padding: 15px 15px 90px 15px;
}
.elementor-1942 .elementor-element.elementor-element-0ffaf08 {
bottom: 30px;
}
.elementor-2863 .elementor-element.elementor-element-17de93d > .elementor-widget-container {
margin: 50px 0px 0px 0px;
}
.elementor-2863 .elementor-element.elementor-element-f2c1686 > .elementor-element-populated {
padding: 11.6% 3% 12% 3%;
}
.elementor-1942 .elementor-element.elementor-element-0ffaf08 {
width: unset;
max-width: unset;
}
}
@media only screen and (max-width: 991px) {
.elementor-2863 .elementor-element.elementor-element-f2c1686 > .elementor-element-populated {
padding: 80px 15px 80px 15px;
}
}
@media only screen and (max-width: 767px) {
#rev_slider_2_1_wrapper .hesperiden.tp-bullets {
transform: translate(-40px, -56px) !important;
}
}
.transparent-form input[type="text"],
.transparent-form input[type="email"],
.transparent-form input[type="number"],
.transparent-form textarea {
color: black;
}
/* Square input boxes with increased height */
.wpforms-field-container input[type="text"],
.wpforms-field-container input[type="number"],
.wpforms-field-container input[type="email"],
.wpforms-field-container select {
border-radius: 0 !important;
height: 50px;
}
/* Change input label color to white */
.wpforms-field-container label.wpforms-field-label,
.wpforms-field-container legend.wpforms-field-label {
color: white;
}
/* Additional styling for the form */
.wpforms-container {
background-color: #333; /* Change background color */
padding: 20px; /* Add padding */
border-radius: 10px; /* Add border radius */
}
.wpforms-field-container input[type="submit"] {
background-color: #ff9900; /* Change submit button background color */
color: white; /* Change submit button text color */
border: none; /* Remove submit button border */
padding: 10px 20px; /* Add padding */
border-radius: 10px; /* Add border radius */
cursor: pointer; /* Change cursor to pointer on hover */
width: 100% !important; /* Make button width equal to container width */
margin-top: 20px; /* Add margin to separate button from other fields */
}
.wpforms-field-container input[type="submit"]:hover {
background-color: #e68a00; /* Change submit button background color on hover */
}</style>
</head>
<body class="home page-template page-template-tpl page-template-front-page page-template-tplfront-page-php page page-id-6065 wide header_sticky header-04 class-name-page-home elementor-default elementor-kit-26 elementor-page elementor-page-6065">
<div id="preloader">
<div class="row loader">
<div class="line-loader">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div> </div>
</div>
<!-- Go Top -->
<a class="go-top">
<i class="fa fa-chevron-up"></i>
</a>
<div class="modal-menu-left">
<div class="modal-menu__backdrop"></div>
<div class="modal-menu__body">
<button class="modal-menu__close" type="button">
<i class="fa fa-times"></i>
</button>
<div class="modal-menu__panel">
<div class="modal-menu__panel-header">
<div class="modal-menu__panel-title">
<div class="header-modal-menu-left-btn">
</div>
</div>
</div>
<div class="modal-menu__panel-body">
<div class="nav-wrap-secondary">
<div id="block-7" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<h2 class="wp-block-heading">Archives</h2>
<div class="wp-block-archives-list wp-block-archives">No archives to show.</div>
</div></div></div>
<div id="block-8" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<h2 class="wp-block-heading">Categories</h2>
<ul class="wp-block-categories-list wp-block-categories"><li class="cat-item-none">No categories</li></ul>
</div></div></div>
</div>
<!-- /.nav-wrap -->
</div>
<div class="modal-menu__panel-footer">
<div class="logo-panel">
<a href="./index.html" title="BathoEnergy">
<img class="site-logo" src="./wp-content/uploads/2024/04/batho-energy-solutions-logo-1.png" alt="BathoEnergy">
</a>
</div>
<div class="socials-panel">
<ul class="themesflat-socials">
<li class="facebook-f">
<a href="#" target="_blank" rel="alternate" title="facebook-f">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="twitter">
<a href="#" target="_blank" rel="alternate" title="twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="google-plus-g">
<a href="#" target="_blank" rel="alternate" title="google-plus-g">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li class="instagram">
<a href="#" target="_blank" rel="alternate" title="instagram">
<i class="fab fa-instagram"></i>
</a>
</li> </ul>
<!-- /.social -->
</div>
</div>
</div>
</div>
</div> <div class="themesflat-boxed">
<!-- Topbar -->
<div class="themesflat-top">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="container-inside">
<div class="content-left">
<ul class="flat-information">
<li>
<i class="fas fa-envelope"></i> <span>admin@bathoenergysolutions.com</span>
</li>
</ul>
</div>
<!-- content-left -->
<div class="content-right">
<ul class="themesflat-socials">
<li class="facebook-f">
<a href="#" target="_blank" rel="alternate" title="facebook-f">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="twitter">
<a href="#" target="_blank" rel="alternate" title="twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="google-plus-g">
<a href="#" target="_blank" rel="alternate" title="google-plus-g">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li class="instagram">
<a href="#" target="_blank" rel="alternate" title="instagram">
<i class="fab fa-instagram"></i>
</a>
</li> </ul>
<!-- /.social -->
<div class="wrap-btn-topbar draw-border">
<a class="btn-topbar" href="#quote">Get A Quote</a>
</div>
</div>
<!-- content-right -->
</div>
<!-- /.container-inside -->
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.topbar -->
<header id="header" class="header header-style4 ">
<div class="inner-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="header-wrap clearfix">
<div class="header-ct-left"> <div id="logo" class="logo">
<a href="./index.html" title="BathoEnergy">
<img class="site-logo" src="./wp-content/uploads/2024/04/batho-energy-solutions-logo-1.png" alt="BathoEnergy">
</a>
</div>
</div>
<div class="header-ct-center">
<div class="nav-wrap">
<nav id="mainnav" class="mainnav" role="navigation">
<ul id="menu-main" class="menu">
<li id="menu-item-7722" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-6065 current_page_item menu-item-7722"><a href="./index.html" aria-current="page">Home</a></li>
<li id="menu-item-2865" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2865"><a href="./about-us/index.html">About Us</a></li>
<li id="menu-item-1247" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1247"><a href="./services/index.html">Services</a></li>
<li id="menu-item-3511" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3511"><a href="./contact/index.html">Contact Us</a></li>
</ul> </nav><!-- #site-navigation -->
</div>
<!-- /.nav-wrap --> </div>
<div class="header-ct-right">
<div class="show-search">
<a href="#"><i class="zingbox-icon-search-01"></i></a>
<div class="submenu top-search widget_search">
<form role="search" method="get" class="search-form" action=".//">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" value="" name="s" class="s" placeholder="Search…">
</label>
<button type="submit" class="search-submit"><i class="zingbox-icon-search-01"></i></button>
</form> </div>
</div>
<div class="wrap-btn-header draw-border">
<a class="btn-header" href="#quote">Get A Quote<i class="zingbox-icon-long-arrow-right2" aria-hidden="true"></i></a>
</div>
<div class="btn-menu">
<span class="line-1"></span>
</div>
<!-- //mobile menu button -->
</div>
</div>
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</div>
<div class="canvas-nav-wrap">
<div class="overlay-canvas-nav"><div class="canvas-menu-close"><span></span></div></div>
<div class="inner-canvas-nav">
<div id="logo-mobi" class="logo">
<a href="./index.html" title="BathoEnergy">
<img class="site-logo" src="./wp-content/uploads/2024/04/batho-energy-solutions-logo-1.png" alt="BathoEnergy">
</a>
</div>
<nav id="mainnav_canvas" class="mainnav_canvas" role="navigation">
<ul id="menu-main-1" class="menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-6065 current_page_item menu-item-7722"><a href="./index.html" aria-current="page">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2865"><a href="./about-us/index.html">About Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1247"><a href="./services/index.html">Services</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3511"><a href="./contact/index.html">Contact Us</a></li>
</ul> </nav><!-- #mainnav_canvas -->
</div>
</div>
<!-- /.canvas-nav-wrap -->
</header><!-- /.header --> <!-- Page Title -->
<div id="main-content" class="site-main clearfix">
<div id="themesflat-content" class="page-wrap ">
<main id="main" class="site-main" role="main">
<div class="entry-content">
<div data-elementor-type="wp-page" data-elementor-id="6065" class="elementor elementor-6065">
<section class="elementor-section elementor-top-section elementor-element elementor-element-6318d68 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6318d68" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e15596f" data-id="e15596f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5023c3a elementor-widget elementor-widget-slider_revolution" data-id="5023c3a" data-element_type="widget" data-widget_type="slider_revolution.default">
<div class="elementor-widget-container">
<div class="wp-block-themepunch-revslider">
<!-- START Slider 5 REVOLUTION SLIDER 6.7.12 --><p class="rs-p-wp-fix"></p>
<rs-module-wrap id="rev_slider_5_1_wrapper" data-source="gallery" style="visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;">
<rs-module id="rev_slider_5_1" style="" data-version="6.7.12">
<rs-slides style="overflow: hidden; position: absolute;">
<rs-slide style="position: absolute;" data-key="rs-12" data-title="Slide" data-thumb=".//wp-content/uploads/revslider/slider-4/silde-home3-0011-50x100.jpg" data-anim="adpr:false;" data-in="o:0;" data-out="a:false;">
<img fetchpriority="high" decoding="async" src="./wp-content/plugins/revslider/sr6/assets/assets/dummy.png" alt="dummy" title="silde-home3-0011.jpg" width="1920" height="900" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload=".//wp-content/uploads/revslider/slider-4/silde-home3-0011.jpg" data-no-retina>
<!--
--><rs-layer id="slider-5-slide-12-layer-0" data-type="text" data-xy="xo:14px,11px,8px,4px;y:m;yo:-228px,-194px,-171px,-171px;" data-text="w:normal;s:16;l:25,25,25,25;fw:500;" data-rsp_o="off" data-rsp_bd="off" data-padding="t:5,4,3,2;r:17,15,11,7;b:5,4,3,2;l:17,15,11,7;" data-border="bor:5px,5px,5px,5px;" data-frame_0="x:-50,-42,-31,-19;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:12;background-color:#57b33e;font-family:'Rubik';text-transform:uppercase;">RENEWABLE ENERGY SOLUTIONS
</rs-layer><!--
--><rs-layer id="slider-5-slide-12-layer-1" data-type="text" data-rsp_ch="on" data-xy="xo:14px,11px,6px,3px;y:m;yo:-34px,-29px,-31px,-74px;" data-text="w:normal;s:100,120,100,67;l:120,100,80,63;ls:0px,-2px,-1px,0px;fw:500;" data-dim="w:895px,763px,579px,100%;" data-rsp_o="off" data-padding="b:15,13,10,6;" data-frame_0="y:50,42,31,19;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:11;font-family:'Teko';text-transform:uppercase;">Excellence in everything we do
</rs-layer><!--
--><rs-layer id="slider-5-slide-12-layer-2" data-type="text" data-xy="xo:14px,11px,8px,4px;y:m;yo:129px,110px,93px,43px;" data-text="w:normal;s:18,18,18,16;l:30;" data-dim="w:auto,auto,auto,100%;" data-rsp_o="off" data-rsp_bd="off" data-padding="l:27,23,17,10;" data-border="bos:solid;boc:#ffffff;bow:0,0,0,4px;" data-frame_0="y:50,42,31,19;" data-frame_1="sp:1200;" data-frame_999="o:0;st:w;" style="z-index:8;font-family:'Rubik';">We strive for excellence in everything we do, delivering top-quality solutions that exceed expectations.
</rs-layer><!--
--><rs-layer id="slider-5-slide-12-layer-3" data-type="object" data-rsp_ch="on" data-xy="xo:50px,42px,31px,19px;yo:130px,110px,83px,51px;" data-text="w:normal;s:20,17,12,7;l:0,21,15,9;" data-frame_999="o:0;st:w;" style="z-index:13;font-family:'Roboto';">
</rs-layer><!--
--><a id="slider-5-slide-12-layer-4" class="rs-layer btn rev-btn" href="./services/index.html" target="_self" data-type="button" data-xy="xo:216px,216px,200px,179px;y:m;yo:221px,214px,190px,157px;" data-text="w:normal;s:15;l:40;fw:500;a:center;" data-rsp_o="off" data-rsp_bd="off" data-padding="r:30,30,30,20;l:30,30,30,20;" data-border="bos:solid;boc:#ffffff;bow:1px,1px,1px,1px;bor:5px,5px,5px,5px;" data-frame_0="x:50;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:10;background-color:rgba(255,112,41,0);font-family:'Rubik';border-width:0px;overflow:hidden;">Our Services <i class="zingbox-icon-long-arrow-right2"></i>
</a><!--
--><rs-layer id="slider-5-slide-12-layer-5" data-type="text" data-rsp_ch="on" data-xy="x:r;xo:-142px,-121px,-91px,-56px;y:b;yo:44px,37px,28px,17px;" data-text="w:normal;s:350,298,226,139;l:110,93,70,43;fw:700;" data-frame_999="o:0;st:w;" style="z-index:15;font-family:'Teko';color:transparent;-webkit-text-fill-color:transparent;-webkit-text-stroke-width:1px;-webkit-text-stroke-color:rgba(225,225,225,0.5);">Quality
</rs-layer><!--
--><rs-layer id="slider-5-slide-12-layer-7" data-type="object" data-rsp_ch="on" data-xy="xo:50px,42px,31px,19px;yo:130px,110px,83px,51px;" data-text="w:normal;s:20,17,12,7;l:0,21,15,9;" data-frame_999="o:0;st:w;" style="z-index:14;font-family:'Roboto';">
</rs-layer><!--
--><a id="slider-5-slide-12-layer-11" class="rs-layer btn rev-btn" href="./about-us/index.html" target="_self" data-type="button" data-xy="xo:14px,9px,7px,3px;y:m;yo:221px,214px,190px,157px;" data-text="w:normal;s:15;l:40;fw:500;a:center;" data-rsp_o="off" data-rsp_bd="off" data-padding="r:30,30,30,20;l:30,30,30,20;" data-border="bor:5px,5px,5px,5px;" data-frame_0="x:-50;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:9;background-color:#ff7029;font-family:'Rubik';border-width:0px;overflow:hidden;">Learn More<i class="zingbox-icon-long-arrow-right2"></i>
</a><!--
--> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-13" data-title="Slide" data-thumb=".//wp-content/uploads/2021/11/silde-home3-002-50x100.jpg" data-anim="adpr:false;" data-in="o:0;" data-out="a:false;">
<img decoding="async" src="./wp-content/plugins/revslider/sr6/assets/assets/dummy.png" alt="dummy" title="silde-home3-002" width="1920" height="900" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload=".//wp-content/uploads/2021/11/silde-home3-002.jpg" data-no-retina>
<!--
--><rs-layer id="slider-5-slide-13-layer-0" data-type="text" data-xy="xo:15px,12px,9px,4px;y:m;yo:-228px,-194px,-171px,-171px;" data-text="w:normal;s:16;l:25,25,25,25;fw:500;" data-rsp_o="off" data-rsp_bd="off" data-padding="t:5,4,3,2;r:17,15,11,7;b:5,4,3,2;l:17,15,11,7;" data-border="bor:5px,5px,5px,5px;" data-frame_0="x:-50,-42,-31,-19;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:12;background-color:#57b33e;font-family:'Rubik';text-transform:uppercase;">RENEWABLE ENERGY SOLUTIONS
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-1" data-type="text" data-rsp_ch="on" data-xy="xo:14px,11px,6px,3px;y:m;yo:-34px,-29px,-31px,-74px;" data-text="w:normal;s:100,120,100,67;l:120,100,80,63;ls:0px,-2px,-1px,0px;fw:500;" data-dim="w:846px,721px,547px,100%;h:361px,308px,234px,144px;" data-rsp_o="off" data-padding="b:15,13,10,6;" data-frame_0="y:50,42,31,19;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:11;font-family:'Teko';text-transform:uppercase;">Committed to a sustainable future
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-2" data-type="text" data-xy="xo:14px,11px,8px,4px;y:m;yo:149px,110px,93px,43px;" data-text="w:normal;s:18,18,18,16;l:30;" data-dim="w:auto,auto,auto,100%;" data-rsp_o="off" data-rsp_bd="off" data-padding="l:27,23,17,10;" data-border="bos:solid;boc:#ffffff;bow:0,0,0,4px;" data-frame_0="y:50,42,31,19;" data-frame_1="sp:1200;" data-frame_999="o:0;st:w;" style="z-index:8;font-family:'Rubik';">We are committed to a greener future, and prioritize sustainable practices in all aspects of our operations.
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-3" data-type="object" data-rsp_ch="on" data-xy="xo:50px,42px,31px,19px;yo:130px,110px,83px,51px;" data-text="w:normal;s:20,17,12,7;l:0,21,15,9;" data-frame_999="o:0;st:w;" style="z-index:13;font-family:'Roboto';">
</rs-layer><!--
--><a id="slider-5-slide-13-layer-4" class="rs-layer btn rev-btn" href="./services/index.html" target="_self" data-type="button" data-xy="xo:216px,216px,200px,179px;y:m;yo:221px,214px,190px,157px;" data-text="w:normal;s:15;l:40;fw:500;a:center;" data-rsp_o="off" data-rsp_bd="off" data-padding="r:30,30,30,20;l:30,30,30,20;" data-border="bos:solid;boc:#ffffff;bow:1px,1px,1px,1px;bor:5px,5px,5px,5px;" data-frame_0="x:50;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:10;background-color:rgba(255,112,41,0);font-family:'Rubik';border-width:0px;overflow:hidden;">Our Services <i class="zingbox-icon-long-arrow-right2"></i>
</a><!--
--><rs-layer id="slider-5-slide-13-layer-5" data-type="text" data-rsp_ch="on" data-xy="x:r;xo:-108px,-92px,-69px,-42px;y:b;yo:40px,34px,25px,15px;" data-text="w:normal;s:350,298,226,139;l:110,93,70,43;fw:700;" data-frame_999="o:0;st:w;" style="z-index:15;font-family:'Teko';color:transparent;-webkit-text-fill-color:transparent;-webkit-text-stroke-width:1px;-webkit-text-stroke-color:rgba(225,225,225,0.5);">Future
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-7" data-type="object" data-rsp_ch="on" data-xy="xo:50px,42px,31px,19px;yo:130px,110px,83px,51px;" data-text="w:normal;s:20,17,12,7;l:0,21,15,9;" data-frame_999="o:0;st:w;" style="z-index:14;font-family:'Roboto';">
</rs-layer><!--
--><a id="slider-5-slide-13-layer-11" class="rs-layer btn rev-btn" href="./about-us/index.html" target="_self" data-type="button" data-xy="xo:14px,9px,7px,3px;y:m;yo:221px,214px,190px,157px;" data-text="w:normal;s:15;l:40;fw:500;a:center;" data-rsp_o="off" data-rsp_bd="off" data-padding="r:30,30,30,20;l:30,30,30,20;" data-border="bor:5px,5px,5px,5px;" data-frame_0="x:-50;" data-frame_1="sp:1000;" data-frame_999="o:0;st:w;" style="z-index:9;background-color:#ff7029;font-family:'Rubik';border-width:0px;overflow:hidden;">Learn More<i class="zingbox-icon-long-arrow-right2"></i>
</a><!--
--> </rs-slide>
</rs-slides>
</rs-module>
<script>setREVStartSize({c: 'rev_slider_5_1',rl:[1240,1024,778,480],el:[815,700,700,700],gw:[1200,1024,778,480],gh:[815,700,700,700],type:'standard',justify:'',layout:'fullwidth',mh:"0"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules["revslider51"]!==undefined) {window.RS_MODULES.modules["revslider51"].once = false;window.revapi5 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}</script>
</rs-module-wrap>
<!-- END REVOLUTION SLIDER -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-262fb00 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="262fb00" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ccafab7" data-id="ccafab7" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-707f300 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="707f300" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-af75af8" data-id="af75af8" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-315cf9f tf-animation-rtd elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-image" data-id="315cf9f" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="342" height="342" src="./wp-content/uploads/2021/11/bg-section-step-001.png" class="attachment-large size-large wp-image-6127" alt="bg section step 001" srcset="./wp-content/uploads/2021/11/bg-section-step-001.png 342w, ./wp-content/uploads/2021/11/bg-section-step-001-300x300.png 300w, ./wp-content/uploads/2021/11/bg-section-step-001-100x100.png 100w, ./wp-content/uploads/2021/11/bg-section-step-001-150x150.png 150w" sizes="(max-width: 342px) 100vw, 342px"> </div>
</div>
<div class="elementor-element elementor-element-0301756 elementor-widget elementor-widget-tf-heading-section" data-id="0301756" data-element_type="widget" data-widget_type="tf-heading-section.default">
<div class="elementor-widget-container">
<div id="tf-heading-section-0301756" class="tf-heading-section style1" data-tabid="0301756">
<div class="heading-section">
<div class="before-title">What we do</div>
<h2 class="heading"></h2>
<p>Professional Solar Energy power</p>
<p>solutions company</p>
<div class="blurred-text">What We Do</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-cf4c6e4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cf4c6e4" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-abd21dc" data-id="abd21dc" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-bd58e68 elementor-widget elementor-widget-tf-step" data-id="bd58e68" data-element_type="widget" data-widget_type="tf-step.default">
<div class="elementor-widget-container">
<div id="tf-step-bd58e68" class="tf-step style3" data-tabid="bd58e68">
<div class="step">
<div class="elementor-repeater-item-5b035fe item-step item-step-1">
<div class="inner">
<div class="image">
<img decoding="async" src="./wp-content/uploads/elementor/thumbs/step-009-qma25odcl0umhkmqjqvha0vcqyoolsg5jkrjm0t5yo.jpg" title="step-009.jpg" alt="step-009.jpg" loading="lazy"> <span class="number">01</span>
</div>
<div class="content">
<div class="icon"><i aria-hidden="true" class="zingbox-icon-001-solar-panels"></i></div>
<div class="inner-content">
<h2 class="heading">Solar Ground Mounts</h2>
<div class="content-hide">
<div class="text"><p><span style="font-weight: 400;">Ground-mounted solar systems</span></p></div>
<a href="./service/solar-ground-mounts/index.html" class="button-step">Read More<i class="zingbox-icon-long-arrow-right2"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-repeater-item-7fc22d3 item-step item-step-2">
<div class="inner">
<div class="image">
<img decoding="async" src="./wp-content/uploads/elementor/thumbs/solar-carports-1-qmbg08umn3hacfx4iyil6o5lgzhfajrglv9371zgj4.png" title="solar-carports (1)" alt="solar-carports (1)" loading="lazy"> <span class="number">02</span>
</div>
<div class="content">
<div class="icon"><i aria-hidden="true" class="zingboxicon- zingbox-icon-005-solar-panels-4"></i></div>
<div class="inner-content">
<h2 class="heading">Solar Carports</h2>
<div class="content-hide">
<div class="text"><p><span style="font-weight: 400;">Parking lots are power stations</span></p></div>
<a href="./service/solar-carports/index.html" class="button-step">Read More<i class="zingbox-icon-long-arrow-right2"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-repeater-item-f673735 item-step item-step-3">
<div class="inner">
<div class="image">
<img decoding="async" src="./wp-content/uploads/elementor/thumbs/rooftop-solar-1-qmbg2a61g69ni0ymmu7hl5njt1g1yxuivy4ymmyr1s.jpg" title="rooftop-solar (1)" alt="rooftop solar" loading="lazy"> <span class="number">03</span>
</div>
<div class="content">
<div class="icon"><i aria-hidden="true" class="zingboxicon- zingbox-icon-007-battery"></i></div>
<div class="inner-content">
<h2 class="heading">Rooftop Solar Panels</h2>
<div class="content-hide">
<div class="text"><p>Place solar above your building</p></div>
<a href="./service/rooftop-solar-panels/index.html" class="button-step">Read More<i class="zingbox-icon-long-arrow-right2"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-e23faf9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e23faf9" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3a4adb9" data-id="3a4adb9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-94582f7 elementor-widget elementor-widget-tf-heading-section" data-id="94582f7" data-element_type="widget" data-widget_type="tf-heading-section.default">
<div class="elementor-widget-container">
<div id="tf-heading-section-94582f7" class="tf-heading-section style1" data-tabid="94582f7">
<div class="heading-section">
<div class="before-title">About Us</div>
<h2 class="heading"></h2>
<p>We are a solar energy</p>
<p>solutions company</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-ab7862f elementor-widget elementor-widget-text-editor" data-id="ab7862f" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><span style="font-weight: 400;">Batho Renewable Energy Solutions culture is defined by passion, expertise, and collaboration. With a focus on efficiency and ease of collaboration, we streamline the solar installation process, making it simple and stress-free for our clients.</span></p> </div>
</div>
<div class="elementor-element elementor-element-6d2110a elementor-widget elementor-widget-tftabs" data-id="6d2110a" data-element_type="widget" data-widget_type="tftabs.default">
<div class="elementor-widget-container">
<div id="tf-tabs-6d2110a" class="tf-tabs horizontal tabs-horizontal icon-position-left show-triger-yes nav-justify" data-tabid="6d2110a">
<div class="tf-tabnav">
<ul>
<li class="tablinks inactive elementor-animation-" data-tab="tab-1">
<span class="tab-title-text">Mission</span>
</li>
<li class="tablinks inactive elementor-animation-" data-tab="tab-2">
<span class="tab-title-text">Vision</span>
</li>
<li class="tablinks inactive elementor-animation-" data-tab="tab-3">
<span class="tab-title-text">Goals</span>
</li>
</ul>
</div>
<div class="tf-tabcontent">
<div id="tab-1" class="tf-tabcontent-inner inactive animated fadeIn">
<p><span style="font-weight: 400;">Our mission is clear: to build an efficient company that designs and constructs innovative solar solutions, making renewable energy accessible to all.</span></p>
</div>
<div id="tab-2" class="tf-tabcontent-inner inactive animated fadeIn">
<p><span style="font-weight: 400;">Our culture of innovation empowers us to push boundaries and explore new possibilities, ensuring that we remain at the forefront of the industry.</span></p>
</div>
<div id="tab-3" class="tf-tabcontent-inner inactive animated fadeIn">
<p><span style="font-weight: 400;">We're a team of dedicated professionals united by a common goal: to drive the solar revolution forward in South Africa.</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e321b2f" data-id="e321b2f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c6d262a tf-animation-spin elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-image" data-id="c6d262a" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="500" height="500" src="./wp-content/uploads/2024/04/batho-sun-energy-removebg-preview.png" class="attachment-full size-full wp-image-7826" alt="batho sun energy removebg preview" srcset="./wp-content/uploads/2024/04/batho-sun-energy-removebg-preview.png 500w, ./wp-content/uploads/2024/04/batho-sun-energy-removebg-preview-300x300.png 300w, ./wp-content/uploads/2024/04/batho-sun-energy-removebg-preview-150x150.png 150w, ./wp-content/uploads/2024/04/batho-sun-energy-removebg-preview-100x100.png 100w" sizes="(max-width: 500px) 100vw, 500px"> </div>
</div>
<div class="elementor-element elementor-element-192748a elementor-widget elementor-widget-image" data-id="192748a" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="508" height="685" src="./wp-content/uploads/2024/04/batho-renewable-energy-solar-2.jpg" class="attachment-large size-large wp-image-7811" alt="batho renewable energy solar 2" srcset="./wp-content/uploads/2024/04/batho-renewable-energy-solar-2.jpg 508w, ./wp-content/uploads/2024/04/batho-renewable-energy-solar-2-222x300.jpg 222w" sizes="(max-width: 508px) 100vw, 508px"> </div>
</div>
<div class="elementor-element elementor-element-e35515c elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-heading" data-id="e35515c" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Honesty.Transparency.</h2> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-5c84435 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default tf-parallax-no" data-id="5c84435" data-element_type="section" data-settings="{"background_background":"classic","stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ef99534 elementor-invisible" data-id="ef99534" data-element_type="column" data-settings="{"background_background":"classic","animation":"fadeInUp","animation_delay":100}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-d60f02c elementor-widget elementor-widget-tf-title-section" data-id="d60f02c" data-element_type="widget" data-widget_type="tf-title-section.default">