-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb design Uganda ,Best Website designers in Uganda,Website developers, website designer near you.html
1051 lines (937 loc) · 126 KB
/
Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html dir="ltr" lang="en-US" prefix="og: https://ogp.me/ns#" class="js_active vc_desktop vc_transform vc_transform skrollr skrollr-desktop"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" async="" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/analytics.js.download"></script><script type="text/javascript" async="" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/js"></script><script src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/f.txt" id="google_shimpl"></script><script async="" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/f(1).txt" crossorigin="anonymous" data-checked-head="true"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/js(1)"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-162683819-1');
</script>
<meta name="language" content="English">
<meta name="revisit-after" content="3 days">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="shortcut icon" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/logo.png">
<link rel="apple-touch-icon" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/logo.png">
<link rel="pingback" href="https://webvator.com/xmlrpc.php">
<title>Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you</title>
<!-- All in One SEO 4.5.1.1 - aioseo.com -->
<meta name="description" content="Webvator is a website design company based in Uganda with over 10 yrs experience in web designing. We have best website designers in Uganda offering static web design, Dynamic web design, custom development, Ecommerce.. If looking for a web development company near your area, Email: business@webvator.com">
<meta name="robots" content="max-image-preview:large">
<link rel="canonical" href="https://webvator.com/">
<meta name="generator" content="All in One SEO (AIOSEO) 4.5.1.1">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Webvator | webdesign, Webhosting, S.E.O">
<meta property="og:type" content="article">
<meta property="og:title" content="Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you">
<meta property="og:description" content="Webvator is a website design company based in Uganda with over 10 yrs experience in web designing. We have best website designers in Uganda offering static web design, Dynamic web design, custom development, Ecommerce.. If looking for a web development company near your area, Email: business@webvator.com">
<meta property="og:url" content="https://webvator.com/">
<meta property="article:published_time" content="2020-04-01T16:16:00+00:00">
<meta property="article:modified_time" content="2023-03-20T19:16:35+00:00">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you">
<meta name="twitter:description" content="Webvator is a website design company based in Uganda with over 10 yrs experience in web designing. We have best website designers in Uganda offering static web design, Dynamic web design, custom development, Ecommerce.. If looking for a web development company near your area, Email: business@webvator.com">
<script type="application/ld+json" class="aioseo-schema">
{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/webvator.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/webvator.com\/#listItem","position":1,"name":"Home"}]},{"@type":"Organization","@id":"https:\/\/webvator.com\/#organization","name":"Webvator Ltd","url":"https:\/\/webvator.com\/","logo":{"@type":"ImageObject","url":"https:\/\/webvator.com\/wp-content\/uploads\/2020\/01\/logo.png","@id":"https:\/\/webvator.com\/#organizationLogo","width":230,"height":66,"caption":"webvator logo"},"image":{"@id":"https:\/\/webvator.com\/#organizationLogo"},"contactPoint":{"@type":"ContactPoint","telephone":"+256773168506","contactType":"sales"}},{"@type":"WebPage","@id":"https:\/\/webvator.com\/#webpage","url":"https:\/\/webvator.com\/","name":"Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you","description":"Webvator is a website design company based in Uganda with over 10 yrs experience in web designing. We have best website designers in Uganda offering static web design, Dynamic web design, custom development, Ecommerce.. If looking for a web development company near your area, Email: business@webvator.com","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/webvator.com\/#website"},"breadcrumb":{"@id":"https:\/\/webvator.com\/#breadcrumblist"},"datePublished":"2020-04-01T16:16:00+00:00","dateModified":"2023-03-20T19:16:35+00:00"},{"@type":"WebSite","@id":"https:\/\/webvator.com\/#website","url":"https:\/\/webvator.com\/","name":"Webvator","description":"webdesign, Webhosting, S.E.O","inLanguage":"en-US","publisher":{"@id":"https:\/\/webvator.com\/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webvator.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}}]}
</script>
<!-- All in One SEO -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com/">
<link rel="dns-prefetch" href="https://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="Webvator » Feed" href="https://webvator.com/feed/">
<link rel="alternate" type="application/rss+xml" title="Webvator » Comments Feed" href="https://webvator.com/comments/feed/">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/webvator.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.6"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/wp-emoji-release.min.js.download" type="text/javascript" defer=""></script>
<style 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>
<link rel="stylesheet" id="ht_ctc_main_css-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/main.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/style.min.css" type="text/css" media="all">
<link rel="stylesheet" id="wc-blocks-vendors-style-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/wc-blocks-vendors-style.css" type="text/css" media="all">
<link rel="stylesheet" id="wc-blocks-style-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/wc-blocks-style.css" type="text/css" media="all">
<style id="global-styles-inline-css" type="text/css">
body{--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--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--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;}.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;}
</style>
<link rel="stylesheet" id="contact-form-7-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/styles.css" type="text/css" media="all">
<style id="contact-form-7-inline-css" type="text/css">
.wpcf7 .wpcf7-recaptcha iframe {margin-bottom: 0;}.wpcf7 .wpcf7-recaptcha[data-align="center"] > div {margin: 0 auto;}.wpcf7 .wpcf7-recaptcha[data-align="right"] > div {margin: 0 0 0 auto;}
</style>
<link rel="stylesheet" id="dashicons-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/dashicons.min.css" type="text/css" media="all">
<link rel="stylesheet" id="post-views-counter-frontend-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/frontend.min.css" type="text/css" media="all">
<link rel="stylesheet" id="rs-plugin-settings-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/settings.css" type="text/css" media="all">
<style id="rs-plugin-settings-inline-css" type="text/css">
#rs-demo-id {}
.tp-caption.SaturnThemes-White-Heading,.SaturnThemes-White-Heading{color:rgba(255,255,255,1.00);font-size:60px;line-height:60px;font-weight:900;font-style:normal;font-family:Yantramanav;text-decoration:none;background-color:transparent;border-color:transparent;border-style:none;border-width:0px;border-radius:0 0 0 0px}.tp-caption.SaturnThemes-Button-White,.SaturnThemes-Button-White{color:rgba(255,255,255,1.00);font-size:14px;line-height:14px;font-weight:900;font-style:normal;font-family:Yantramanav;text-decoration:none;background-color:rgba(0,66,144,0);border-color:rgba(255,255,255,1.00);border-style:solid;border-width:2px;border-radius:0px 0px 0px 0px;transition:all 0.25s;transition:all 0.25s}.tp-caption.SaturnThemes-Button-White:hover,.SaturnThemes-Button-White:hover{color:rgba(255,255,255,1.00);text-decoration:none;background-color:rgba(0,66,144,1.00);border-color:rgba(0,66,144,1.00);border-style:solid;border-width:2px;border-radius:0px 0px 0px 0px;cursor:pointer}.custom.tparrows {
cursor:pointer;
background:#000;
background:rgba(0,0,0,0.5);
width:40px;
height:40px;
position:absolute;
display:block;
z-index:100;
}
.custom.tparrows:hover {
background:#000;
}
.custom.tparrows:before {
font-family: "revicons";
font-size:15px;
color:#fff;
display:block;
line-height: 40px;
text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
content: "\e825";
}
</style>
<link rel="stylesheet" id="woocommerce-layout-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/woocommerce-layout.css" type="text/css" media="all">
<link rel="stylesheet" id="woocommerce-smallscreen-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/woocommerce-smallscreen.css" type="text/css" media="only screen and (max-width: 768px)">
<style id="woocommerce-inline-inline-css" type="text/css">
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel="stylesheet" id="grw-public-main-css-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/public-main.css" type="text/css" media="all">
<link rel="stylesheet" id="pe-icon-7-stroke-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/pe-icon-7-stroke.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/font-awesome.min.css" type="text/css" media="all">
<link rel="stylesheet" id="slick-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/slick.css" type="text/css" media="all">
<link rel="stylesheet" id="slick-theme-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/slick-theme.css" type="text/css" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/magnific-popup.css" type="text/css" media="all">
<link rel="stylesheet" id="swipebox-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/swipebox.css" type="text/css" media="all">
<link rel="stylesheet" id="saturnthemes-style-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/style.css" type="text/css" media="all">
<link rel="stylesheet" id="saturnthemes-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/style(1).css" type="text/css" media="all">
<style id="saturnthemes-inline-css" type="text/css">
.testimonial-container.style3 .testimonial-inner .testimonial-thumbnail{padding-right:10px;}
</style>
<link rel="stylesheet" id="js_composer_front-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/js_composer.min.css" type="text/css" media="all">
<link rel="stylesheet" id="kirki_google_fonts-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/css" type="text/css" media="all">
<link rel="stylesheet" id="kirki-styles-saturnthemes-css" href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/kirki-styles.css" type="text/css" media="all">
<style id="kirki-styles-saturnthemes-inline-css" type="text/css">
body{font-family:"Work Sans", Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;font-style:normal;line-height:1.6;}h1, h2, h3, h4, h5, h6{font-family:"Work Sans", Helvetica, Arial, sans-serif;font-weight:700;font-style:normal;letter-spacing:0em;line-height:1.2;}h1{font-size:28px;}h2{font-size:24px;}h3{font-size:20px;}h4{font-size:16px;}h5{font-size:14px;}h6{font-size:12px;}#primary-menu > .menu-item:hover > a, #primary-menu > .menu-item.current-menu-ancestor > a, #primary-menu > ul > li:hover > a, #primary-menu > ul > li.current_page_ancestor > a, #primary-menu > ul > li.current_page_item > a, .scrollup:hover, a.button-primary:visited:hover, .button-primary-outline, .button-primary:hover, .primary-color, .pagination li .page-numbers.next, .pagination.loop-pagination .page-numbers.next, .pagination li .page-numbers.prev, .pagination.loop-pagination .page-numbers.prev, .widget-title:before, .widget-title:after, .comments-area .comment-respond .comment-reply-title:before, .comments-area .comment-heading:before, #primary-menu > .menu-item-has-children:hover > a:after, #primary-menu > ul > .page_item_has_children:hover > a:after, #primary-menu > .menu-item-has-children:hover > a:after, #primary-menu > ul > .page_item_has_children.current_page_item > a:after, .header-01 .header-contact-detail .header-contact-detail-info .header-contact-detail-extra-info, .header-02 .header-contact-detail .header-contact-detail-info .header-contact-detail-extra-info, .vc_custom_heading.heading-with-primary h2 b{color:#00468C;}.woocommerce .onsale, .page-title-overlay-color, #header.header-gradient.header-01 .affix:not(.affix-disabled), .button-primary-outline:hover, .button-primary, .primary-background-color, .pagination li .page-numbers:hover, .pagination li .page-numbers.current, .pagination.loop-pagination .page-numbers:hover, .pagination.loop-pagination .page-numbers.current, .widget_price_filter .ui-slider .ui-slider-range, .widget_price_filter .ui-slider .ui-slider-handle, .info-box.style2 .info-box-extra:before{background-color:#00468C;}.primary-background-color-hover:hover, .woocommerce .product-item .product-item-inner:hover .add_to_cart_button, .header-02 .header-navigation-container{background-color:#00468C;}.scrollup:hover, .quote-primary:before, .icon-box.style4 .icon-box-icon, .button-primary-outline, textarea:focus, textarea:hover, input[type="text"]:hover, input[type="text"]:focus, input[type="email"]:hover, input[type="email"]:focus, input[type="url"]:hover, input[type="url"]:focus, input[type="password"]:hover, input[type="password"]:focus, input[type="search"]:hover, input[type="search"]:focus, input[type="tel"]:hover, input[type="tel"]:focus{border-color:#00468C;}.button-primary, .primary-border-color-hover:hover, .woocommerce .product-item .product-item-inner:hover .add_to_cart_button{border-color:#00468C;}.primary-border-color-hover-important:hover{border-color:#00468C!important;}.sidebar .widget_nav_menu ul li:first-child, .vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body{border-top-color:#00468C;}.icon-box.style3:hover .icon-box-icon{background-color:#00468C!important;}.single-product .single_add_to_cart_button, .single-product #review_form_wrapper .form-submit .submit, .woocommerce-cart .cart input[name="update_cart"], .woocommerce-cart .button, .woocommerce-checkout .button{background-color:#00468C;}.single-product .woocommerce-tabs ul.tabs li:after{border-bottom-color:#00468C;}.button-secondary-outline:hover, .button-secondary, .secondary-background-color, .footer-widget-container .mc4wp-form button[type="submit"]{background-color:#ED5036;}.header-request-a-quote a, .header-request-a-quote a:visited, a.button-secondary:visited:hover, .button-secondary-outline, .button-secondary:hover, .secondary-color, .secondary-color:visited, .button-outline, .widget_price_filter .price_slider_amount .button, .info-box.style_1 .info-box-extra .info-box-read-more a, .info-box.style_1 .info-box-extra .info-box-read-more i, .vc_custom_heading.heading-icon-red h2 i, .info-box.style2 .info-box-read-more a, .info-box.style2 .info-box-read-more i, .info-box.style1 .info-box-extra .info-box-read-more a, .info-box.style1 .info-box-extra .info-box-read-more i, .info-box.style1 .info-box-extra .info-box-read-more a:visited{color:#ED5036;}.button-secondary-outline, .button-secondary, .secondary-border-color, .button-outline, .widget_price_filter .price_slider_amount .button{border-color:#ED5036;}.secondary-background-color-hover:hover, .button-outline, .widget_price_filter .price_slider_amount .button:hover{background-color:#ED5036;}.secondary-border-color-hover:hover{background-color:#ED5036;}.icon-box.style3:hover .icon-box-title{color:#ED5036!important;}.woocommerce .product-item .product-item-inner .price, .widget_top_rated_products .product_list_widget li .woocommerce-Price-amount, .single-product .woocommerce-Price-amount, .woocommerce-cart .cart .woocommerce-Price-amount{color:#ED5036;}body, .body-color, .full-layout .entry-meta .entry-meta-item:not(.entry-meta-item-author), .full-layout .entry-meta .entry-meta-item:not(.entry-meta-item-author) .fa, .pagination li .page-numbers, .pagination.loop-pagination .page-numbers, .post-tags a, .icon-box.style3 .icon-box-content{color:#777777;}.heading-color, h1, h2, h3, h4, h5, h6{color:#212121;}a, a:visited, .full-layout .entry-meta .entry-meta-item-author .entry-author-name, .widget_recent_entries ul li a{color:#212121;}.post-grid-style1 .entry-content .more-link:hover, .info-box.style1 .info-box-extra .info-box-read-more a:hover, .info-box.style1 .info-box-extra .info-box-read-more a:hover i, body a:hover, .site-footer .saturnthemes-social-widget a:hover{color:#212121;}.secondary-button{background-color:#00468C;}.secondary-button:hover{background-color:#00468c;}.page-title .header-title{padding:80px 0px 34px;color:#fff;}.breadcrumbs-wrapper .saturnthemes_financebank_bread_crumb li, .breadcrumbs-wrapper .saturnthemes_financebank_bread_crumb a{color:#fff;}#header{background-color:#1e73be;}#header.header-01 .header-contact-details-container{background-color:rgba(255, 255, 255, 0.9);}.site-topbar{background-color:#F2F2F2;border-bottom-color:#E3E3E3;}.site-topbar .header-topbar-list-contact li:not(:last-child){border-right-color:#E3E3E3;}.site-topbar, .site-topbar a, .site-topbar a .header-topbar-list-icon{color:#777777;}.site-topbar a:hover, .site-topbar a:hover .header-topbar-list-icon{color:#333;}#primary-menu{text-align:center;}#primary-menu > .menu-item > a, #primary-menu > ul > li > a{font-family:Yantramanav, Helvetica, Arial, sans-serif;font-size:18px;font-weight:700;font-style:normal;line-height:1.8em;color:#ffffff;text-transform:none;}#primary-menu > .menu-item, #primary-menu > ul > li{padding:58px 0px;}#primary-menu > .menu-item-has-children > a:after, #primary-menu > ul > .page_item_has_children > a:after{color:#BBBBBB;}#primary-menu > .menu-item > a > .menu-item-icon{color:#666666;}#primary-menu > .menu-item:hover, #primary-menu > .menu-item.current-menu-ancestor, #primary-menu > ul > li:hover, #primary-menu > ul > li.current_page_ancestor, #primary-menu > ul > li.current_page_item{background-color:rgba(255, 255, 255, 0);}#primary-menu > .menu-item:hover > a, #primary-menu > .menu-item.current-menu-ancestor > a, #primary-menu > ul > li:hover > a, #primary-menu > ul > li.current_page_ancestor > a, #primary-menu > ul > li.current_page_item > a{color:#becade;}#primary-menu.menu > .menu-item-has-children:hover:after, #primary-menu.menu > ul > .page_item_has_children:hover:after, #primary-menu.menu > ul > .page_item_has_children.current_page_ancestor:after, #primary-menu.menu > ul > .page_item_has_children.current_page_item:after{color:#333A71;}#primary-menu > .menu-item:hover > a > .menu-item-icon{color:#323872;}#primary-menu > .menu-item:hover > a:before, #primary-menu > .menu-item.current-menu-ancestor > a:before, #primary-menu > ul > li:hover > a:before, #primary-menu > ul > li.current_page_ancestor > a:before, #primary-menu > ul > li.current_page_item > a:before{border-bottom-color:#DDDDDD;}.menu > .menu-item .sub-menu, .menu > ul > li .children{background-color:#ffffff;}.menu > .menu-item li > a .menu-item-icon, .menu > .menu-item .sub-menu > li > a:not(.has-icon):after{color:#000000;}.menu > li li > a .menu-item-text:after{color:#000000;}#header .menu > .menu-item.menu-item-mega-menu > .sub-menu > li > a{color:#1F1F1F;}#header.header-01 .header-contact-details-container .header-contact-details-list li{border-right-color:#E3E3E3;}.header-social-icon i{color:#999999;}.site-footer{background-color:#222222;}.site-footer .widget-title, .site-footer .widget_recent_entries a{color:#FFF;}.site-footer, .site-footer a{color:#999999;}.site-footer a:hover{color:#FFF;}.footer-bottom, .footer-widget-container .menu > li, .site-footer .widget_recent_entries ul li{border-color:#454545;}.footer-social-icon i{color:#fff;}
</style>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/jquery.min.js.download" id="jquery-core-js"></script><meta http-equiv="origin-trial" content="As0hBNJ8h++fNYlkq8cTye2qDLyom8NddByiVytXGGD0YVE+2CEuTCpqXMDxdhOMILKoaiaYifwEvCRlJ/9GcQ8AAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="AgRYsXo24ypxC89CJanC+JgEmraCCBebKl8ZmG7Tj5oJNx0cmH0NtNRZs3NB5ubhpbX/bIt7l2zJOSyO64NGmwMAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="A/ERL66fN363FkXxgDc6F1+ucRUkAhjEca9W3la6xaLnD2Y1lABsqmdaJmPNaUKPKVBRpyMKEhXYl7rSvrQw+AkAAACNeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MTkzNTk5OTksImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9"><meta http-equiv="origin-trial" content="A6OdGH3fVf4eKRDbXb4thXA4InNqDJDRhZ8U533U/roYjp4Yau0T3YSuc63vmAs/8ga1cD0E3A7LEq6AXk1uXgsAAACTeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MTkzNTk5OTksImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9">
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/jquery-migrate.min.js.download" id="jquery-migrate-js"></script>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/jquery.themepunch.tools.min.js.download" id="tp-tools-js"></script>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/jquery.themepunch.revolution.min.js.download" id="revmin-js"></script>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/jquery.blockUI.min.js.download" id="jquery-blockui-js"></script>
<script type="text/javascript" id="wc-add-to-cart-js-extra">
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/webvator.com","is_cart":"","cart_redirect_after_add":"yes"};
/* ]]> */
</script>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/add-to-cart.min.js.download" id="wc-add-to-cart-js"></script>
<script type="text/javascript" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/woocommerce-add-to-cart.js.download" id="vc_woocommerce-add-to-cart-js-js"></script>
<script type="text/javascript" defer="defer" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/public-main.js.download" id="grw-public-main-js-js"></script>
<link rel="https://api.w.org/" href="https://webvator.com/wp-json/"><link rel="alternate" type="application/json" href="https://webvator.com/wp-json/wp/v2/pages/286"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://webvator.com/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://webvator.com/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 6.0.6">
<meta name="generator" content="WooCommerce 7.1.0">
<link rel="shortlink" href="https://webvator.com/">
<link rel="alternate" type="application/json+oembed" href="https://webvator.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwebvator.com%2F">
<link rel="alternate" type="text/xml+oembed" href="https://webvator.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwebvator.com%2F&format=xml">
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<meta name="generator" content="Powered by Visual Composer - drag and drop page builder for WordPress.">
<!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://webvator.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><meta name="generator" content="Powered by Slider Revolution 5.4.5 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.">
<script type="text/javascript">function setREVStartSize(e){
try{ var i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0;
if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f})
}catch(d){console.log("Failure at Presize of Slider:"+d)}
};</script>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1592609297383{padding-top: 20px !important;padding-bottom: 80px !important;}.vc_custom_1468738638428{background-color: #eeeeee !important;}.vc_custom_1470643145088{padding-top: 70px !important;background-color: #eeeeee !important;}.vc_custom_1468656070573{padding-top: 75px !important;padding-bottom: 45px !important;}.vc_custom_1465576445127{padding-top: 70px !important;padding-bottom: 90px !important;}.vc_custom_1679339463213{padding-top: 20px !important;padding-bottom: 0px !important;}.vc_custom_1679339324623{padding-top: 20px !important;padding-bottom: 0px !important;}.vc_custom_1674996165679{background-color: #ededed !important;}.vc_custom_1665789607017{margin-top: 38px !important;}.vc_custom_1665793822966{padding-bottom: 60px !important;}.vc_custom_1585854677325{padding-bottom: 60px !important;}.vc_custom_1665793919517{padding-bottom: 60px !important;}.vc_custom_1679339791390{padding-bottom: 70px !important;}.vc_custom_1665793993903{padding-bottom: 70px !important;}.vc_custom_1585854838184{padding-bottom: 70px !important;}.vc_custom_1665791836768{margin-top: 75px !important;}.vc_custom_1665790170715{margin-top: 75px !important;margin-bottom: 0px !important;}.vc_custom_1665791089975{margin-top: 25px !important;}.vc_custom_1580462343673{margin-top: 48px !important;margin-bottom: -37px !important;}.vc_custom_1585857450716{margin-top: 10px !important;}.vc_custom_1468740589828{margin-top: 70px !important;}.vc_custom_1665792366424{margin-bottom: 70px !important;}.vc_custom_1667300268305{margin-top: 70px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript>
<meta http-equiv="origin-trial" content="AymqwRC7u88Y4JPvfIF2F37QKylC04248hLCdJAsh8xgOfe/dVJPV3XS3wLFca1ZMVOtnBfVjaCMTVudWM//5g4AAAB7eyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1RoaXJkUGFydHkiOnRydWV9"></head><iframe id="google_esf" name="google_esf" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/zrt_lookup_fy2021.html" style="display: none;"></iframe>
<body class="home page-template-default page page-id-286 theme-saturnthemes-financebank woocommerce-js wide wpb-js-composer js-comp-ver-5.1.1 vc_responsive">
<div id="slide-menu" style="position: fixed; top: 0px; bottom: 0px; width: 300px; max-width: 100%; overflow-y: auto; transition: all 0.2s ease 0s; z-index: 98; right: -300px;">
<nav id="mobile-menu-container" class="mobile-menu-container"><ul id="mobile-menu" class="mobile-menu"><li id="menu-item-708" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-708"><a href="https://webvator.com/website-services/">Website services</a>
<ul class="sub-menu">
<li id="menu-item-709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-709"><a href="https://webvator.com/web-design-uganda/">Website Design services</a></li>
<li id="menu-item-727" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-727"><a href="https://webvator.com/wordpress-website-design/">WordPress website design</a></li>
<li id="menu-item-730" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-730"><a href="https://webvator.com/ecommerce-website-design/">E-commerce website design</a></li>
<li id="menu-item-764" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-764"><a href="https://webvator.com/responsive-website-design-specialists/">Responsive website design</a></li>
<li id="menu-item-793" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-793"><a href="https://webvator.com/web-design-uganda/convert-a-website-to-wordpress/">Convert a Website to WordPress</a></li>
<li id="menu-item-815" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-815"><a href="https://webvator.com/web-hosting/">Website hosting and security</a></li>
<li id="menu-item-491" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-491"><a href="https://webvator.com/website-services/website-maintenance-and-updating/">Website Maintenance and Updates</a></li>
<li id="menu-item-899" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899"><a href="https://webvator.com/data-entry-services/">Data Entry Services</a></li>
</ul>
<span class="mobile-menu-toggle"></span></li>
<li id="menu-item-802" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-802"><a href="https://webvator.com/our-work/">Our work</a></li>
<li id="menu-item-803" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-803"><a href="https://webvator.com/web-hosting/">Web Hosting</a>
<ul class="sub-menu">
<li id="menu-item-2978" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2978"><a href="https://webvator.com/domains/">Domain registration</a></li>
</ul>
<span class="mobile-menu-toggle"></span></li>
<li id="menu-item-487" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-487"><a href="https://webvator.com/digital-marketing/">Digital Marketing</a>
<ul class="sub-menu">
<li id="menu-item-858" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-858"><a href="https://webvator.com/seo-search-engine-optimization/">SEO(Search Engine Optimization)</a></li>
<li id="menu-item-3221" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3221"><a href="https://increasetwitterfollowersfast.com/pay-for-twitter-followers/">Pay for Twitter Followers</a></li>
<li id="menu-item-855" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-855"><a href="https://webvator.com/social-media-marketing/">Social media marketing</a></li>
<li id="menu-item-856" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-856"><a href="https://webvator.com/youtube-video-promotion/">Video Promotion, Explainer Videos</a></li>
<li id="menu-item-857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-857"><a href="https://webvator.com/online-marketing/">Online marketing</a></li>
</ul>
<span class="mobile-menu-toggle"></span></li>
<li id="menu-item-2559" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2559"><a href="https://webvator.com/blog/">Blog</a></li>
<li id="menu-item-3399" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3399"><a href="https://webvator.com/about-webvator-company/">About</a>
<ul class="sub-menu">
<li id="menu-item-3440" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3440"><a href="https://webvator.com/work-with-us/">Work with Us</a></li>
<li id="menu-item-843" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-843"><a href="https://webvator.com/international/">International Web design</a></li>
<li id="menu-item-814" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-814"><a href="https://webvator.com/learnwebsitedesign">Learn Website design</a></li>
</ul>
<span class="mobile-menu-toggle"></span></li>
<li id="menu-item-2604" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2604"><a href="https://webvator.com/contact/">Contact</a></li>
</ul></nav></div>
<div id="page" class="page-wrapper">
<header id="header" class="header header-01 header-gradient">
<div class="site-topbar hidden-sm-down">
</div>
<div class="header-menu-container " data-spy="affix" data-offset-top="197">
<div class="container">
<div class="row row-xs-center hidden-sm-down">
<div id="logo" class="col-xs-6 col-md-2 start-xs">
<h1>
<a href="https://webvator.com/" title="Webvator - webdesign, Webhosting, S.E.O" rel="home">
<img src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/logo2.png" srcset="https://webvator.com/wp-content/uploads/2020/01/logo.png 2x" alt="Webvator">
</a>
</h1>
</div>
<div class="col-md-10">
<div class="menu-container">
<div class="menu-inner">
<div class="menu-primary-menu-container"><ul id="primary-menu" class="menu menu-horizontal"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-708 narrow"><a href="https://webvator.com/website-services/"><span class="menu-item-text">Website services</span></a>
<ul class="sub-menu " style="">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-709"><a href="https://webvator.com/web-design-uganda/"><span class="menu-item-text">Website Design services</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-727"><a href="https://webvator.com/wordpress-website-design/"><span class="menu-item-text">WordPress website design</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-730"><a href="https://webvator.com/ecommerce-website-design/"><span class="menu-item-text">E-commerce website design</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-764"><a href="https://webvator.com/responsive-website-design-specialists/"><span class="menu-item-text">Responsive website design</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-793"><a href="https://webvator.com/web-design-uganda/convert-a-website-to-wordpress/"><span class="menu-item-text">Convert a Website to WordPress</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-815"><a href="https://webvator.com/web-hosting/"><span class="menu-item-text">Website hosting and security</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-491"><a href="https://webvator.com/website-services/website-maintenance-and-updating/"><span class="menu-item-text">Website Maintenance and Updates</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899"><a href="https://webvator.com/data-entry-services/"><span class="menu-item-text">Data Entry Services</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-802 narrow"><a href="https://webvator.com/our-work/"><span class="menu-item-text">Our work</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-803 narrow"><a href="https://webvator.com/web-hosting/"><span class="menu-item-text">Web Hosting</span></a>
<ul class="sub-menu " style="">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2978"><a href="https://webvator.com/domains/"><span class="menu-item-text">Domain registration</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-487 narrow"><a href="https://webvator.com/digital-marketing/"><span class="menu-item-text">Digital Marketing</span></a>
<ul class="sub-menu " style="">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-858"><a href="https://webvator.com/seo-search-engine-optimization/"><span class="menu-item-text">SEO(Search Engine Optimization)</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3221"><a href="https://increasetwitterfollowersfast.com/pay-for-twitter-followers/"><span class="menu-item-text">Pay for Twitter Followers</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-855"><a href="https://webvator.com/social-media-marketing/"><span class="menu-item-text">Social media marketing</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-856"><a href="https://webvator.com/youtube-video-promotion/"><span class="menu-item-text">Video Promotion, Explainer Videos</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-857"><a href="https://webvator.com/online-marketing/"><span class="menu-item-text">Online marketing</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2559 narrow"><a href="https://webvator.com/blog/"><span class="menu-item-text">Blog</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3399 narrow"><a href="https://webvator.com/about-webvator-company/"><span class="menu-item-text">About</span></a>
<ul class="sub-menu " style="">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3440"><a href="https://webvator.com/work-with-us/"><span class="menu-item-text">Work with Us</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-843"><a href="https://webvator.com/international/"><span class="menu-item-text">International Web design</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-814"><a href="https://webvator.com/learnwebsitedesign"><span class="menu-item-text">Learn Website design</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2604 narrow"><a href="https://webvator.com/contact/"><span class="menu-item-text">Contact</span></a></li>
</ul></div> </div>
</div>
</div>
</div>
<div class="row row-xs-center hidden-md-up mobile-header">
<div class="col-xs-2 start-xs mobile-right">
<i id="mobile-menu-toggle" class="fa fa-navicon hidden-lg-up"></i>
</div>
<div id="mobile-logo" class="col-xs-8 center-xs">
<h1>
<a href="https://webvator.com/" title="Webvator - webdesign, Webhosting, S.E.O" rel="home">
<img src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/logo2.png" srcset="https://webvator.com/wp-content/uploads/2020/01/logo.png 2x" alt="Webvator">
</a>
</h1>
</div>
<div class="col-xs-2 end-xs">
<div class="mobile-search">
<span class="fa fa-search"></span>
</div>
</div>
</div>
<div id="search-mobile-toggle">
<form action="https://webvator.com/" role="search" method="get" class="searchform">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search ..." value="" name="s">
</label>
<input type="submit" class="search-submit" value="Search">
</form>
<i class="fa fa-times mobile-search mobile-search-close"></i>
</div>
</div>
</div>
<div class="header-contact-details-container">
<div class="container">
<div class="row row-md-center">
<div class="col-xs-12 col-sm-10">
<ul class="header-contact-details-list">
<li>
<div class="header-contact-detail">
<i class="header-contact-detail-icon pe-7s-mail"></i>
<div class="header-contact-detail-info">
<div class="header-contact-detail-title">Send us a Message</div>
<a class="header-contact-detail-extra-info" href="mailto://business@webvator.com">
business@webvator.com </a>
</div>
</div>
</li>
<li>
<div class="header-contact-detail">
<i class="header-contact-detail-icon pe-7s-call"></i>
<div class="header-contact-detail-info">
<div class="header-contact-detail-title">Call/Whatsapp</div>
<a class="header-contact-detail-extra-info">
+256773168506 </a>
</div>
</div>
</li>
<li>
<div class="header-contact-detail">
<i class="header-contact-detail-icon pe-7s-map"></i>
<div class="header-contact-detail-info">
<div class="header-contact-detail-title">Cornerstone Plaza</div>
<a class="header-contact-detail-extra-info">
Room: MP-76 </a>
</div>
</div>
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-2">
<ul class="header-social-icon-list">
<li>
<a class="header-social-icon header-social-icon-facebook" href="https://www.facebook.com/Webvator" target="_blank">
<i class="fa fa-facebook-square"></i>
</a>
</li>
<li>
<a class="header-social-icon header-social-icon-twitter" href="https://twitter.com/webvator" target="_blank">
<i class="fa fa-twitter-square"></i>
</a>
</li>
<li>
<a class="header-social-icon header-social-icon-instagram" href="https://www.instagram.com/webvatorltd/" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a class="header-social-icon header-social-icon-google-plus" href="https://www.linkedin.com/in/senkumba-brian-brandon-18585926/" target="_blank">
<i class="fa fa-linkedin-square"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="full-screen-search-container">
<a class="full-screen-search-close"><i class="fa fa-times"></i></a>
<div class="container">
<div class="row">
<div class="col-xs-12 col-xs-center center-xs">
<form name="search-form" role="search" method="get" class="search-form animated" action="https://webvator.com/">
<div class="row row-md-center">
<div class="col-sm-3 start-xs end-md">
<span class="screen-reader-text">Search for:</span>
<span class="search-label">Search:</span>
</div>
<div class="col-md-6">
<input type="search" class="search-field" value="" name="s" title="Search for:">
</div>
<div class="col-md-3 start-xs">
<span class="search-button">
<i class="fa fa-search"></i>
<input type="submit" class="search-submit" value="Search">
</span>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="main-content container-fluid">
<div class="row">
<div class="col-xs-12 ">
<div class="content-wrapper">
<main class="content site-main">
<article id="post-286">
<div class="vc_row wpb_row vc_row-fluid" data-wow-delay="0s"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="wpb_revslider_element wpb_content_element"><link href="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/css(1)" rel="stylesheet" property="stylesheet" type="text/css" media="all">
<div class="forcefullwidth_wrapper_tp_banner" id="rev_slider_2_1_forcefullwidth" style="position:relative;width:100%;height:auto;margin-top:0px;margin-bottom:0px"><div id="rev_slider_2_1_wrapper" class="rev_slider_wrapper fullscreen-container" data-source="gallery" style="background: transparent; padding: 0px; height: 856px; margin-top: 0px; margin-bottom: 0px; position: absolute; max-height: none; overflow: visible; width: 1263px; left: -15px;">
<!-- START REVOLUTION SLIDER 5.4.5 fullscreen mode -->
<div id="rev_slider_2_1" class="rev_slider fullscreenbanner revslider-initialised tp-simpleresponsive rev_redraw_on_blurfocus" style="max-height: none; margin-top: 0px; margin-bottom: 0px; height: 100%;" data-version="5.4.5" data-slideactive="rs-3">
<ul class="tp-revslider-mainul" style="visibility: visible; display: block; overflow: hidden; width: 100%; height: 100%; max-height: none;"> <!-- SLIDE -->
<li data-index="rs-10" data-transition="parallaxhorizontal" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="https://webvator.com/wp-content/uploads/2020/04/web-design-agency-lagos-e1483276709645-100x50.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="" class="tp-revslider-slidesli" style="width: 100%; height: 100%; overflow: hidden; z-index: 18; visibility: hidden; opacity: 0; background-color: rgba(255, 255, 255, 0);">
<!-- MAIN IMAGE -->
<div class="slotholder" style="position: absolute; top: 0px; left: 0px; z-index: 0; width: 100%; height: 100%; visibility: inherit; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);"><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="https://webvator.com/wp-content/uploads/2020/04/web-design-agency-lagos-e1483276709645.jpg" alt="website design uganda" title="web-design-agency" width="1920" height="850" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" class="rev-slidebg defaultimg" data-no-retina="">--><div class="tp-bgimg defaultimg " data-bgcolor="undefined" style="background-repeat: no-repeat; background-image: url("https://webvator.com/wp-content/uploads/2020/04/web-design-agency-lagos-e1483276709645.jpg"); background-size: cover; background-position: center center; width: 100%; height: 100%; opacity: 0; visibility: hidden; z-index: 20;" src="https://webvator.com/wp-content/uploads/2020/04/web-design-agency-lagos-e1483276709645.jpg"></div></div>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-parallax-wrap" style="position: absolute; display: block; visibility: hidden; left: 278px; top: 432px; z-index: 5;"><div class="tp-loop-wrap" style="position:absolute;display:block;;"><div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"><div class="tp-caption SaturnThemes-White-Heading tp-resizeme" id="slide-10-layer-8" data-x="['center','center','center','center']" data-hoffset="['-2','-2','-6','-6']" data-y="['top','top','top','top']" data-voffset="['289','289','225','106']" data-fontsize="['40','40','40','30']" data-lineheight="['60','60','60','30']" data-width="['703','703','703','400']" data-height="none" data-whitespace="['nowrap','nowrap','normal','normal']" data-type="text" data-responsive_offset="on" data-frames="[{"delay":1120,"speed":300,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"y:50px;opacity:0;","ease":"nothing"}]" data-textalign="['center','center','center','center']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 5; min-width: 703px; max-width: 703px; white-space: nowrap; font-size: 40px; text-transform: uppercase; cursor: pointer; visibility: inherit; transition: none 0s ease 0s; text-align: center; line-height: 60px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 900; min-height: 0px; max-height: none; opacity: 0.0001; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 50, 0, 1);">Best Website Design Company in Uganda </div></div></div></div>
<!-- LAYER NR. 2 -->
<div class="tp-parallax-wrap" style="position: absolute; display: block; visibility: hidden; left: 467px; top: 547px; z-index: 6;"><div class="tp-loop-wrap" style="position:absolute;display:block;;"><div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"><div class="tp-caption SaturnThemes-Button-White rev-btn rev-withicon rs-hover-ready" id="slide-10-layer-10" data-x="['center','center','center','center']" data-hoffset="['-6','-6','-6','-6']" data-y="['top','top','top','top']" data-voffset="['404','404','404','404']" data-width="none" data-height="none" data-whitespace="nowrap" data-type="button" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":1470,"speed":300,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"y:-50px;opacity:0;","ease":"nothing"},{"frame":"hover","speed":"0.25s","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(255,255,255,1);bg:rgba(0,66,144,1);bc:rgba(0,66,144,1);bw:2 2 2 2;"}]" data-textalign="['center','center','center','center']" data-paddingtop="[16,16,16,16]" data-paddingright="[25,25,25,25]" data-paddingbottom="[14,14,14,14]" data-paddingleft="[25,25,25,25]" style="z-index: 6; white-space: nowrap; text-transform: uppercase; border-width: 2px; outline: none; box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px; box-sizing: border-box; cursor: pointer; visibility: inherit; transition: none 0s ease 0s; text-align: center; line-height: 14px; margin: 0px; padding: 16px 25px 14px; letter-spacing: 0px; font-weight: 900; font-size: 14px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 0.0001; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -50, 0, 1); color: rgb(255, 255, 255);"><a href="https://webvator.com/contact" style="color:white">CONTACT US FOR WEBSITE DESIGN QUOTE<i class="fa fa-chevron-right" aria-hidden="true" style="font-size: 10px;"></i></a> </div></div></div></div>
</li>
<!-- SLIDE -->
<li data-index="rs-3" data-transition="parallaxhorizontal" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="https://webvator.com/wp-content/uploads/2020/04/videomarketingblog-100x50.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="" class="tp-revslider-slidesli active-revslide" style="width: 100%; height: 100%; overflow: hidden; z-index: 20; visibility: inherit; opacity: 1; background-color: rgba(255, 255, 255, 0);">
<!-- MAIN IMAGE -->
<div class="slotholder" style="position: absolute; top: 0px; left: 0px; z-index: 0; width: 100%; height: 100%; visibility: inherit; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);"><!--Runtime Modification - Img tag is Still Available for SEO Goals in Source - <img src="https://webvator.com/wp-content/uploads/2020/04/videomarketingblog.jpg" alt="website designer" title="website designer" width="2060" height="1374" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" class="rev-slidebg defaultimg" data-no-retina="">--><div class="tp-bgimg defaultimg " data-bgcolor="undefined" style="background-repeat: no-repeat; background-image: url("https://webvator.com/wp-content/uploads/2020/04/videomarketingblog.jpg"); background-size: cover; background-position: center center; width: 100%; height: 100%; opacity: 1; visibility: inherit; z-index: 20;" src="https://webvator.com/wp-content/uploads/2020/04/videomarketingblog.jpg"></div></div>
<!-- LAYERS -->
<!-- LAYER NR. 3 -->
<div class="tp-parallax-wrap" style="position: absolute; display: block; visibility: visible; left: 171px; top: 369px; z-index: 5;"><div class="tp-loop-wrap" style="position:absolute;display:block;;"><div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"><div class="tp-caption SaturnThemes-White-Heading tp-resizeme" id="slide-3-layer-8" data-x="['center','center','center','center']" data-hoffset="['-8','-8','0','-1']" data-y="['top','top','top','top']" data-voffset="['226','226','244','168']" data-fontsize="['60','60','60','30']" data-lineheight="['60','60','60','30']" data-width="['905','905','703','703']" data-height="['158','158','none','none']" data-whitespace="normal" data-type="text" data-responsive_offset="on" data-frames="[{"delay":1120,"speed":300,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"y:50px;opacity:0;","ease":"nothing"}]" data-textalign="['center','center','center','center']" data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" style="z-index: 5; min-width: 905px; max-width: 905px; white-space: normal; visibility: inherit; transition: none 0s ease 0s; text-align: center; line-height: 60px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 900; font-size: 60px; min-height: 158px; max-height: 158px; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform-origin: 50% 50% 0px;"><h1 style="font-size: 55px; color: white; transition: none 0s ease 0s; text-align: inherit; line-height: 66px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 700;">Hire Best Website designers in Uganda</h1> </div></div></div></div>
<!-- LAYER NR. 4 -->
<div class="tp-parallax-wrap" style="position: absolute; display: block; visibility: visible; left: 559px; top: 635px; z-index: 6;"><div class="tp-loop-wrap" style="position:absolute;display:block;;"><div class="tp-mask-wrap" style="position: absolute; display: block; overflow: visible;"><div class="tp-caption SaturnThemes-Button-White rev-btn rev-withicon rs-hover-ready" id="slide-3-layer-10" data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']" data-y="['top','top','top','top']" data-voffset="['492','492','492','492']" data-width="none" data-height="none" data-whitespace="nowrap" data-type="button" data-responsive_offset="on" data-responsive="off" data-frames="[{"delay":1470,"speed":300,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"y:-50px;opacity:0;","ease":"nothing"},{"frame":"hover","speed":"0.25s","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(255,255,255,1);bg:rgba(0,66,144,1);bc:rgba(0,66,144,1);bw:2 2 2 2;"}]" data-textalign="['left','left','left','left']" data-paddingtop="[16,16,16,16]" data-paddingright="[25,25,25,25]" data-paddingbottom="[14,14,14,14]" data-paddingleft="[25,25,25,25]" style="z-index: 6; white-space: nowrap; text-transform: uppercase; border-width: 2px; outline: none; box-shadow: none; box-sizing: border-box; cursor: pointer; visibility: inherit; transition: none 0s ease 0s; text-align: left; line-height: 14px; margin: 0px; padding: 16px 25px 14px; letter-spacing: 0px; font-weight: 900; font-size: 14px; min-height: 0px; min-width: 0px; max-height: none; max-width: none; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform-origin: 50% 50% 0px;"><a href="https://webvator.com/youtube-video-promotion/" style="color:white">CONTACT US<i class="fa fa-chevron-right" aria-hidden="true" style="font-size: 10px;"></i></a> </div></div></div></div>
</li>
</ul>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss="";
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}else{
var htmlDiv = document.createElement("div");
htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
<div class="tp-bannertimer tp-bottom" style="visibility: hidden; width: 93.66%; transform: translate3d(0px, 0px, 0px);"></div> <div class="tp-loader spinner0" style="display: none;"><div class="dot1"></div><div class="dot2"></div><div class="bounce1"></div><div class="bounce2"></div><div class="bounce3"></div></div><div class="tp-leftarrow tparrows custom" style="top: 50%; transform: matrix(1, 0, 0, 1, 20, -20); left: 0px; visibility: hidden; opacity: 0;"></div><div class="tp-rightarrow tparrows custom" style="top: 50%; transform: matrix(1, 0, 0, 1, -60, -20); left: 100%; visibility: hidden; opacity: 0;"></div></div>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss=".tp-caption.SaturnThemes-White-Heading,.SaturnThemes-White-Heading{color:rgba(255,255,255,1.00);font-size:60px;line-height:60px;font-weight:900;font-style:normal;font-family:Yantramanav;text-decoration:none;background-color:transparent;border-color:transparent;border-style:none;border-width:0px;border-radius:0 0 0 0px}.tp-caption.SaturnThemes-Button-White,.SaturnThemes-Button-White{color:rgba(255,255,255,1.00);font-size:14px;line-height:14px;font-weight:900;font-style:normal;font-family:Yantramanav;text-decoration:none;background-color:rgba(0,66,144,0);border-color:rgba(255,255,255,1.00);border-style:solid;border-width:2px;border-radius:0px 0px 0px 0px;transition:all 0.25s;transition:all 0.25s}.tp-caption.SaturnThemes-Button-White:hover,.SaturnThemes-Button-White:hover{color:rgba(255,255,255,1.00);text-decoration:none;background-color:rgba(0,66,144,1.00);border-color:rgba(0,66,144,1.00);border-style:solid;border-width:2px;border-radius:0px 0px 0px 0px;cursor:pointer}";
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}else{
var htmlDiv = document.createElement("div");
htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
<script type="text/javascript">
setREVStartSize({c: jQuery('#rev_slider_2_1'), responsiveLevels: [1240,1024,778,480], gridwidth: [1170,1024,778,480], gridheight: [570,570,200,200], sliderLayout: 'fullscreen', fullScreenAutoWidth:'off', fullScreenAlignForce:'off', fullScreenOffsetContainer:'', fullScreenOffset:''});
var revapi2,
tpj=jQuery;
tpj(document).ready(function() {
if(tpj("#rev_slider_2_1").revolution == undefined){
revslider_showDoubleJqueryError("#rev_slider_2_1");
}else{
revapi2 = tpj("#rev_slider_2_1").show().revolution({
sliderType:"standard",
jsFileLocation:"//webvator.com/wp-content/plugins/revslider1/public/assets/js/",
sliderLayout:"fullscreen",
dottedOverlay:"none",
delay:5000,
navigation: {
keyboardNavigation:"off",
keyboard_direction: "horizontal",
mouseScrollNavigation:"off",
mouseScrollReverse:"default",
onHoverStop:"off",
arrows: {
style:"custom",
enable:true,
hide_onmobile:false,
hide_onleave:true,
hide_delay:200,
hide_delay_mobile:1200,
tmp:'',
left: {
h_align:"left",
v_align:"center",
h_offset:20,
v_offset:0
},
right: {
h_align:"right",
v_align:"center",
h_offset:20,
v_offset:0
}
}
},
responsiveLevels:[1240,1024,778,480],
visibilityLevels:[1240,1024,778,480],
gridwidth:[1170,1024,778,480],
gridheight:[570,570,200,200],
lazyType:"none",
shadow:0,
spinner:"spinner0",
stopLoop:"off",
stopAfterLoops:-1,
stopAtSlide:-1,
shuffle:"off",
autoHeight:"off",
fullScreenAutoWidth:"off",
fullScreenAlignForce:"off",
fullScreenOffsetContainer: "",
fullScreenOffset: "",
disableProgressBar:"on",
hideThumbsOnMobile:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
debugMode:false,
fallbacks: {
simplifyAll:"off",
nextSlideOnWindowFocus:"off",
disableFocusListener:false,
}
});
}
}); /*ready*/
</script>
<script>
var htmlDivCss = unescape(".custom.tparrows%20%7B%0A%09cursor%3Apointer%3B%0A%09background%3A%23000%3B%0A%09background%3Argba%280%2C0%2C0%2C0.5%29%3B%0A%09width%3A40px%3B%0A%09height%3A40px%3B%0A%09position%3Aabsolute%3B%0A%09display%3Ablock%3B%0A%09z-index%3A100%3B%0A%7D%0A.custom.tparrows%3Ahover%20%7B%0A%09background%3A%23000%3B%0A%7D%0A.custom.tparrows%3Abefore%20%7B%0A%09font-family%3A%20%22revicons%22%3B%0A%09font-size%3A15px%3B%0A%09color%3A%23fff%3B%0A%09display%3Ablock%3B%0A%09line-height%3A%2040px%3B%0A%09text-align%3A%20center%3B%0A%7D%0A.custom.tparrows.tp-leftarrow%3Abefore%20%7B%0A%09content%3A%20%22%5Ce824%22%3B%0A%7D%0A.custom.tparrows.tp-rightarrow%3Abefore%20%7B%0A%09content%3A%20%22%5Ce825%22%3B%0A%7D%0A%0A%0A");
var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}
else{
var htmlDiv = document.createElement('div');
htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
</div><div class="tp-fullwidth-forcer" style="width: 100%; height: 856px;"></div></div><!-- END REVOLUTION SLIDER --></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid" data-wow-delay="0s"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element vc_custom_1679339463213">
<div class="wpb_wrapper">
<h1 style="text-align: center;"><a href="https://webvator.com/">WEB DESIGN UGANDA</a>, <a href="https://webvator.com/website-services/">WEB DEVELOPMENT</a>, <a href="https://webvator.com/paypal-services/">PAYPAL UGANDA</a></h1>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1679339324623">
<div class="wpb_wrapper">
<h2 style="text-align: center;">we’re the best Website designers in Uganda, Kampala</h2>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><strong>Webvator </strong> is a web design company with main offices in Uganda and with over 10 yrs experience in <a href="https://webvator.com/website-design/">web designing</a>. We have the best website designers in Uganda offering static web design, Dynamic web design, custom development, Ecommerce.. If your looking to hire the best Website design company in Uganda, consider getting a web design quote from us.</p>
<p>Over the years, Webvator has gained atop rating as the Best Website Design Company in Uganda having developed several websites in <a href="https://webvator.com/rwanda-website-design-kigali-websitehosting/">Rwanda</a>, <a href="https://webvator.com/south-sudan-juba-webdesign-and-website-hosting-services/">South Sudan</a> etc and we helped ambitious businesses like yours generate more profits by building awareness, driving web traffic, and growing overall sales. Even after website is finished, we maintain a working relationship with our clients offering them Consultancy, Digital Marketing and Search engine Optimization. Give us a call.</p>
</div>
</div>
<div class="vc_row wpb_row vc_inner vc_row-fluid vc_custom_1674996165679 vc_row-has-fill" data-wow-delay="0s"><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading heading "><h2 style="text-align: left;font-family:Roboto;font-weight:500;font-style:normal;font-weight: 400;font-style: normal;text-transform: none">Static Web design</h2></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><strong>Static Website Design</strong> comes with several web pages, its mobile friendly, looks wonderful, can have forms but the user will not able able to edit his website without having web design knowledge since it requires HTML coding to understand the changes meaning every small change, you need to contact the developer. If you want content editable website then consider <strong>Dynamic Website design</strong></p>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading heading "><h2 style="text-align: left;font-family:Roboto;font-weight:500;font-style:normal;font-weight: 400;font-style: normal;text-transform: none">Dynamic Web design</h2></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p class="text-3 mb0">Dynamic website design comes with a content management system.We develop dynamic websites using different platforms such as wordpress, Joomla, Drupal and we make your website look amazing, Current web design trends require dynamic websites since web pages can easily be updated by user, they are easy to navigate and flawless. You can easily integrate extra functionalities without re-programming the website. We also ensure creativity in every dynamic website design and development work that we do.</p>
<p>.</p>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading heading "><h2 style="text-align: left;font-family:Roboto;font-weight:500;font-style:normal;font-weight: 400;font-style: normal;text-transform: none">Customized Web design</h2></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>With a <strong>Custom website design,</strong> you can have a website design from scratch, no extra useless modules but only features and effects you want and how you want them to be. There is a time when what you need doesn’t really exist in the way you want it to be and you opt for custom website design, Everything can be possible but comes with a price, discuss your dream with us and our solid group of Custom <strong>Website Design Services experts</strong> will code your dream and bring it to life</p>
</div>
</div>
</div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid vc_custom_1592609297383" data-wow-delay="0s"><div class="container"><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="info-box style1 ">
<div class="info-box-image">
<img width="370" height="210" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/uganda-webdesign.jpg" class="attachment-full" alt="Uganda website design" loading="lazy" srcset="https://webvator.com/wp-content/uploads/2020/04/uganda-webdesign.jpg 370w, https://webvator.com/wp-content/uploads/2020/04/uganda-webdesign-300x170.jpg 300w, https://webvator.com/wp-content/uploads/2020/04/uganda-webdesign-270x153.jpg 270w" sizes="(max-width: 370px) 100vw, 370px"> </div>
<div class="info-box-extra">
<h5 class="info-box-title">
Web Design Uganda </h5>
<div class="info-box-content">Looking to build a new website or transform an existing website that isn’t performing? We’re the <strong>best website development company in Uganda</strong> creating engaging websites that offer the very best in user experience. <span class="st">Webvator is a dedicated <a href="https://webvator.com/website-design">web design Uganda</a> & South Africa company with the best website designers in Kampala, creating powerful and affordable <em>websites</em></span></div>
<div class="info-box-read-more"><a href="https://webvator.com/website-design/" title="" target="_self">Read More<i class="fa fa-chevron-right"></i></a></div> </div>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="info-box style1 ">
<div class="info-box-image">
<img width="370" height="210" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/uganda-web-hosting-2.jpg" class="attachment-full" alt="Uganda website hosting services" loading="lazy" srcset="https://webvator.com/wp-content/uploads/2020/04/uganda-web-hosting-2.jpg 370w, https://webvator.com/wp-content/uploads/2020/04/uganda-web-hosting-2-300x170.jpg 300w, https://webvator.com/wp-content/uploads/2020/04/uganda-web-hosting-2-270x153.jpg 270w" sizes="(max-width: 370px) 100vw, 370px"> </div>
<div class="info-box-extra">
<h5 class="info-box-title">
Website Hosting Uganda </h5>
<div class="info-box-content">Our web hosting caters for all budgets. Whether you’re just starting out, growing fast, or running a high traffic eCommerce site, our website hosting plans offer the flexibility to choose what works best for your business We have been <strong>hosting Ugandan websites</strong> since 2010, Our <a href="https://webvator.com/web-hosting/">Uganda web hosting</a> solutions are fast, reliable, and offer rock-solid security. When you choose Webvator, your data is stored in US servers</div>
<div class="info-box-read-more"><a href="https://webvator.com/web-hosting/" title="" target="_self">Read More<i class="fa fa-chevron-right"></i></a></div> </div>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="info-box style1 ">
<div class="info-box-image">
<img width="370" height="210" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/website-demo-1.jpg" class="attachment-full" alt="free website demo" loading="lazy" srcset="https://webvator.com/wp-content/uploads/2022/06/website-demo-1.jpg 370w, https://webvator.com/wp-content/uploads/2022/06/website-demo-1-300x170.jpg 300w, https://webvator.com/wp-content/uploads/2022/06/website-demo-1-270x153.jpg 270w" sizes="(max-width: 370px) 100vw, 370px"> </div>
<div class="info-box-extra">
<h5 class="info-box-title">
Request a demo design </h5>
<div class="info-box-content">Our <strong>website developers in Uganda</strong> are willing to first give you a sample demo for free to show you how your website will look like, just go ahead and <a href="https://webvator.com/demorequest/">Request a <em>demo website design, click here</em></a><p></p>
<p><span class="st">You can test and evaluate the quality of work we will do for you from the demo we will design for you. The demo is not a final work but can give you a clear picture of what you can expect from us<br>
</span></p></div>
<div class="info-box-read-more"><a href="https://webvator.com/demorequest/" title="" target="_self">Read More<i class="fa fa-chevron-right"></i></a></div> </div>
</div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid vc_custom_1468738638428 vc_row-has-fill" data-wow-delay="0s"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading vc_custom_1665789607017 heading "><h2 style="font-size: 40px;line-height: 1;text-align: center;font-weight: 700;font-style: normal;text-transform: none">Our Company Web design Services</h2></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid vc_custom_1470643145088 vc_row-has-fill" data-wow-delay="0s"><div class="container"><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1665793822966" style="background-color: ;">
<a href="https://webvator.com/website-design/" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-qrcode" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Website designing services </h5>
<div class="icon-box-content" style="color: ;">Custom Web design, WordPress development, Ecommerce web design, responsive web design, website maintenance & updates, website re-design/revamping, data entry. website conversion to WordPress</div>
</a> </div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1585854677325" style="background-color: ;">
<a href="https://webvator.com/web-hosting/" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-briefcase" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Website Hosting and security </h5>
<div class="icon-box-content" style="color: ;">Web hosting services at affordable negotiable rates, web security for wordpress sites and others, SSL integration, Online website malware cleaning and removal, Cheap Email hosting , cloud hosting data backup</div>
</a> </div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1665793919517" style="background-color: ;">
<a href="https://webvator.com/digital-marketing/" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-users" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Twitter & Youtube Marketing </h5>
<div class="icon-box-content" style="color: ;">Get YouTube Subscribers, Get twitter followers, Hire Twitter account manager, Achieve 1,000 YouTube subscribers and 4000 watch-hours, social media marketing, Search engine optimization and content writing..</div>
</a> </div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1679339791390" style="background-color: ;">
<a href="https://webvator.com/paypal-services" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-credit-card-alt" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Paypal Uganda services </h5>
<div class="icon-box-content" style="color: ;"><strong>Do you want Paypal Uganda account</strong> to receive payments from friends and family, Organization PayPal donations in Uganda, Tanzania, Rwanda, Ghana..? Lets help you create a paypal account for your company , organization or personal Uganda Paypal (Uganda Paypal App)</div>
</a> </div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1665793993903" style="background-color: ;">
<a href="https://webvator.com/learnwebsitedesign/" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-graduation-cap" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Training </h5>
<div class="icon-box-content" style="color: ;">Learn website design, lean social media marketing, weekend computer leasons , holiday computer leasons for kids, Computer tutors for primary and secondary schools, Website lecturer for colleges/universities</div>
</a> </div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6 vc_col-md-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="icon-box style3 vc_custom_1585854838184" style="background-color: ;">
<a href="https://webvator.com/appdevelopment-software" title="" target="_self">
<div class="icon-box-overlay" style=""></div>
<span class="icon-box-icon" style="background-color: #f8f8f8">
<i class="primary-color fa fa-laptop" style="font-size: 39px; color: ;"></i>
</span>
<h5 class="icon-box-title" style="color: ;">
Softwares and Applications </h5>
<div class="icon-box-content" style="color: ;">Sale point applications, Hotel software, Super market software, ware house softwares, Pharmacy soft-wares. If you want custom application, we can design you one. we cater for all budgets</div>
</a> </div></div></div></div></div></div></div><div data-vc-parallax="1.5" data-vc-parallax-image="https://webvator.com/wp-content/uploads/2020/01/home-bg-02.jpg" class="vc_row wpb_row vc_row-fluid vc_row-has-fill vc_general vc_parallax vc_parallax-content-moving" data-wow-delay="0s"><div class="vc-row-overlay" style="background-color: rgba(17,17,17,0.85)"></div><div class="container"><div class="vc_row wpb_row vc_row-fluid vc_general vc_parallax vc_parallax-content-moving"><div class="wpb_column vc_column_container vc_col-sm-4" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading vc_custom_1665791836768 heading "><h2 style="font-size: 40px;color: #ffffff;line-height: 1;text-align: left;font-weight: 700;font-style: normal;text-transform: none">Web design sectors</h2></div><div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/tourism-website-design-consultants/" title="">Tourism web design (Tours and Travel)</a></div>
<div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/website-design/" title="">Consultants web design</a></div>
<div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/website-design/" title="">Church Web Design (Ministries)</a></div>
<div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/website-design/" title="">Schools/Universities website design</a></div>
<div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/website-design/" title="">Organization website design</a></div>
<div class="vc_btn3-container vc_btn3-inline">
<a class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-color-grey" href="https://webvator.com/ecommerce-website-design/" title="">Ecommerce website design</a></div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-5" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element vc_custom_1665790170715">
<div class="wpb_wrapper">
<div class="saturn-quote saturn-quote-style2" style="color: #bbb;">WEB DESIGN, WEB DEVELOPMENT UGANDA & HOSTING</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1665791089975">
<div class="wpb_wrapper">
<div style="color: #bbb;">The websites we build are customized to each client’s business needs, whether small or big. Since 2012, we have designed several websites in different sectors such as tourism web design, church, Organization websites, company web design, etc and we have extensive knowledge in Ecommerce websites & payment systems. At Webvator, our website developers sketch and design websites while putting S.E.O in mind to better rank your website in seaches, we pay attention to details, meet deadlines. In every website project we work on irrespective of costs, we always look forward to exceed our customer’s expectations and that has put us one of the<strong> top website design companies in Kampala</strong>, Uganda. Is your web designer or hosting company busy for you? Try us; we have a full team dedicated to designing websites and we mean business. Prices are negotiable.</div>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-3" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_right wpb_animate_when_almost_visible wpb_right-to-left right-to-left vc_custom_1580462343673 wpb_start_animation animated">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img width="270" height="352" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/home-img-02.png" class="vc_single_image-img attachment-full" alt="" loading="lazy" srcset="https://webvator.com/wp-content/uploads/2020/01/home-img-02.png 270w, https://webvator.com/wp-content/uploads/2020/01/home-img-02-230x300.png 230w" sizes="(max-width: 270px) 100vw, 270px"></div>
</figure>
</div>
</div></div></div></div></div><div class="vc_parallax-inner skrollable skrollable-before" data-bottom-top="top: -50%;" data-top-bottom="top: 0%;" style="height: 150%; background-image: url("https://webvator.com/wp-content/uploads/2020/01/home-bg-02.jpg"); top: -50%;"></div></div><div class="vc_row wpb_row vc_row-fluid primary-background-color row-gradient-background vc_custom_1468656070573" data-wow-delay="0s"><div class="container"><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading heading "><h2 style="font-size: 40px;color: #ffffff;line-height: 1;text-align: center;font-weight: 700;font-style: normal;text-transform: none">Request A Call Back</h2></div><div class="vc_custom_heading vc_custom_1585857450716 heading "><p style="font-size: 16px;color: rgba(255,255,255,0.6);text-align: center;font-weight: 400;font-style: normal;text-transform: none">Are you interested in our service? is there any information you would like to know more</p></div>
<div class="wpb_text_column wpb_content_element vc_custom_1468740589828">
<div class="wpb_wrapper">
<div class="form-request-call-back">
<div class="wpcf7 js" id="wpcf7-f66-p286-o1" lang="en-US" dir="ltr">
<div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div>
<form action="https://webvator.com/#wpcf7-f66-p286-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="66">
<input type="hidden" name="_wpcf7_version" value="5.7.6">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f66-p286-o1">
<input type="hidden" name="_wpcf7_container_post" value="286">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="hidden" name="_wpcf7_recaptcha_response" value="">
</div>
<p><span class="wpcf7-form-control-wrap" data-name="your-name"><input size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Your Name" value="" type="text" name="your-name"></span><br>
<span class="wpcf7-form-control-wrap" data-name="subject"><select class="wpcf7-form-control wpcf7-select wpcf7-validates-as-required" aria-required="true" aria-invalid="false" name="subject"><option value="I Would Like To Discuss">I Would Like To Discuss</option><option value="Webdesign">Webdesign</option><option value="webhosting">webhosting</option><option value="SEO">SEO</option><option value="Online marketing">Online marketing</option><option value="Other">Other</option></select></span><br>
<span class="wpcf7-form-control-wrap" data-name="phone"><input size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Phone Number" value="" type="text" name="phone"></span><br>
<span class="form-rcb-submit-wrapper"><input class="wpcf7-form-control has-spinner wpcf7-submit secondary-background-color" type="submit" value="SUBMIT"><span class="wpcf7-spinner"></span><i class="fa fa-chevron-right"></i></span>
</p><div class="wpcf7-response-output" aria-hidden="true"></div>
</form>
</div>
</div>
</div>
</div>
</div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid" data-wow-delay="0s"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
</div>
</div>
</div></div></div></div><div class="vc_row wpb_row vc_row-fluid vc_custom_1465576445127" data-wow-delay="0s"><div class="container"><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12" data-wow-delay="0s"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_custom_heading vc_custom_1665792366424 heading "><h2 style="font-size: 40px;line-height: 1;text-align: center;font-weight: 700;font-style: normal;text-transform: none">Web design News and Updates</h2></div><div class="row blog-posts post-grid style1">
<div class="col-md-4">
<article id="post-2686" class="post-grid-style1 post-2686 post type-post status-publish format-standard has-post-thumbnail hentry category-website-design-hosting-and-security-blog tag-hire-freelance-web-designers tag-website-design-costs-per-website-designed-versus-website-design-by-hour">
<header class="entry-header">
<a href="https://webvator.com/how-much-would-developing-a-full-website-cost/" class="post-thumbnail">
<img width="370" height="210" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/web-design-agency-lagos-e1483276709645-370x210.jpg" class="attachment-saturnthemes-financebank-grid-style1 size-saturnthemes-financebank-grid-style1 wp-post-image" alt="website design uganda"> </a>
<div class="entry-meta ">
<div class="entry-meta-date">
<span class="posted-on"><i class="fa fa-clock-o"></i><time class="entry-date published" datetime="2022-09-16T00:32:45+00:00">September 16, 2022</time><time class="updated" datetime="2023-04-16T06:56:02+00:00">April 16, 2023</time></span> </div>
<div class="entry-meta-comment">
<i class="fa fa-comments body-color"></i><span class="comments-link"><a href="https://webvator.com/how-much-would-developing-a-full-website-cost/#respond" class="body-color">0 Comment</a></span> </div>
</div>
</header>
<div class="entry-content">
<h2 class="entry-title">
<a href="https://webvator.com/how-much-would-developing-a-full-website-cost/" rel="bookmark" class="heading-color">How much would developing a full website cost ?</a>
</h2>
<div class="post-content">
<p>
How Much Does a Website Cost in 2023? When it comes to website design costs, alot </p>
</div>
<a href="https://webvator.com/how-much-would-developing-a-full-website-cost/" class="more-link secondary-color">Read more<span class="screen-reader-text"> "How much would developing a full website cost ?"</span> <i class="fa fa-chevron-right"></i></a> </div>
</article> </div>
<div class="col-md-4">
<article id="post-3495" class="post-grid-style1 post-3495 post type-post status-publish format-standard hentry category-paypal">
<header class="entry-header">
<div class="entry-meta entry-meta-no-image">
<div class="entry-meta-date">
<span class="posted-on"><i class="fa fa-clock-o"></i><time class="entry-date published" datetime="2023-12-11T19:43:09+00:00">December 11, 2023</time><time class="updated" datetime="2023-12-12T05:34:30+00:00">December 12, 2023</time></span> </div>
<div class="entry-meta-comment">
<i class="fa fa-comments body-color"></i><span class="comments-link"><a href="https://webvator.com/algeria-paypal/#respond" class="body-color">0 Comment</a></span> </div>
</div>
</header>
<div class="entry-content">
<h2 class="entry-title">
<a href="https://webvator.com/algeria-paypal/" rel="bookmark" class="heading-color">Algeria Paypal</a>
</h2>
<div class="post-content">
<p>
You can receive money via PayPal in Algeria only if your create the Paypal account as </p>
</div>
<a href="https://webvator.com/algeria-paypal/" class="more-link secondary-color">Read more<span class="screen-reader-text"> "Algeria Paypal"</span> <i class="fa fa-chevron-right"></i></a> </div>
</article> </div>
<div class="col-sm-6 col-md-4">
<article id="post-3485" class="post-grid-stack post-3485 post type-post status-publish format-standard has-post-thumbnail hentry category-paypal">
<header class="entry-header">
<h2 class="entry-title">
<a href="https://webvator.com/paypal-namibia/" rel="bookmark" class="heading-color">Paypal Namibia</a>
</h2>
<div class="entry-meta">
<div class="entry-meta-date">
<span class="posted-on"><i class="fa fa-clock-o"></i><time class="entry-date published" datetime="2023-12-10T12:13:38+00:00">December 10, 2023</time><time class="updated" datetime="2023-12-10T12:42:48+00:00">December 10, 2023</time></span> </div>
<div class="entry-meta-comment">
<i class="fa fa-comments body-color"></i><span class="comments-link"><a href="https://webvator.com/paypal-namibia/#respond" class="body-color">0 Comment</a></span> </div>
</div>
</header>
</article>
<article id="post-3463" class="post-grid-stack post-3463 post type-post status-publish format-standard has-post-thumbnail hentry category-technology tag-irl-app tag-messaging-app-in-china tag-startup">
<header class="entry-header">
<h2 class="entry-title">
<a href="https://webvator.com/irl-app-with-95-fake-users-shutting-down/" rel="bookmark" class="heading-color">IRL App With 95% Fake Users Shutting Down</a>
</h2>
<div class="entry-meta">
<div class="entry-meta-date">
<span class="posted-on"><i class="fa fa-clock-o"></i><time class="entry-date published" datetime="2023-06-29T11:34:33+00:00">June 29, 2023</time><time class="updated" datetime="2023-06-29T11:36:05+00:00">June 29, 2023</time></span> </div>
<div class="entry-meta-comment">
<i class="fa fa-comments body-color"></i><span class="comments-link"><a href="https://webvator.com/irl-app-with-95-fake-users-shutting-down/#respond" class="body-color">0 Comment</a></span> </div>
</div>
</header>
</article>
<a href="https://webvator.com/blog/" class="more-posts-link">More Posts <i class="fa fa-chevron-right"></i></a>
</div>
</div>
</div></div></div></div></div></div>
<div class="post-views content-post post-286 entry-meta">
<span class="post-views-icon dashicons dashicons-chart-bar"></span> <span class="post-views-label">Post Views:</span> <span class="post-views-count">211,743</span>
</div>
</article> </main>
</div><!-- /.content-wrapper -->
</div> <!-- /.col-xs-12 -->
</div> <!-- /.row -->
</div> <!-- /.main-content -->
<footer class="site-footer footer-01">
<div class="footer-widget-container">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3 footer-widget footer-widget-1"><aside id="text-2" class="widget widget_text"> <div class="textwidget"><img src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/logo.png" alt="website designer" class="footer-logo">
Webvator is a web design company with offices in Uganda with over 10 yrs experience in web designing. We have the <a href="https://webvator.com/">best website designers</a> offering static web design, Dynamic web design, custom development, Ecommerce.. If your looking to hire the best Website design company , consider getting a web design quote from us.</div>
</aside></div>
<div class="col-sm-6 col-md-3 footer-widget footer-widget-2"><aside id="text-3" class="widget widget_text"><h3 class="widget-title">Get In Touch</h3> <div class="textwidget"><ul class="footer-contact-list">
<li>
<span class="footer-contact-icon">
<i class="fa fa-map-marker"></i>
</span>
Cornerstone Plaza, RM:MP-76
</li>
<li>
<span class="footer-contact-icon">
<i class="fa fa-phone"></i>
</span>
+256773168506
</li>
<li>
<span class="footer-contact-icon">
<i class="fa fa-envelope-o"></i>
</span>
<a href="mailto:business@webvator.com">business@webvator.com</a>
</li>
<li>
<span class="footer-contact-icon">
<i class="fa fa-globe"></i>
</span>
<a href="https://www.webvator.com/">www.webvator.com</a>
</li>
</ul></div>
</aside></div>
<div class="col-sm-6 col-md-3 footer-widget footer-widget-3"><aside id="saturnthemes-menu-widget-2" class="widget saturnthemes-menu-widget widget_nav_menu"><h3 class="widget-title">Quick Links</h3><div class="menu-footer-extra-links-container"><ul id="menu-footer-extra-links" class="menu"><li id="menu-item-2815" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2815"><a href="https://webvator.com/web-design-uganda/">Webdesign Uganda</a></li>
<li id="menu-item-2813" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2813"><a href="https://webvator.com/international/australiacanberra-webdesign-and-website-hosting/">Canberra Webdesign</a></li>
<li id="menu-item-1155" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1155"><a href="https://webvator.com/learnwebsitedesign/">Learn webdesign</a></li>
<li id="menu-item-1165" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1165"><a href="https://webvator.com/privacy-policy-and-refund-policy/">Privacy policy</a></li>
<li id="menu-item-1166" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1166"><a href="https://webvator.com/terms-and-conditions/">Terms</a></li>
<li id="menu-item-2811" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2811"><a href="https://webvator.com/paypal-account-in-tanzania/">PayPal Tanzania</a></li>
<li id="menu-item-2812" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2812"><a href="https://webvator.com/paypal-account-in-rwanda/">Paypal Rwanda</a></li>
<li id="menu-item-2814" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2814"><a href="https://webvator.com/paypal-services/">PayPal Uganda</a></li>
<li id="menu-item-2817" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2817"><a href="https://webvator.com/international/">International Webdesign</a></li>
<li id="menu-item-2816" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2816"><a href="https://webvator.com/web-design-uganda/convert-a-website-to-wordpress/">Convert Web to WordPress</a></li>
<li id="menu-item-2979" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2979"><a href="https://webvator.com/domains/">Uganda domain lookup</a></li>
</ul></div></aside></div>
<div class="col-sm-6 col-md-3 footer-widget footer-widget-4"><aside id="block-2" class="widget widget_block widget_media_image">
<figure class="wp-block-image size-large is-resized"><a href="https://payments.pesapal.com/webvator" target="_blank" rel=" noreferrer noopener"><img loading="lazy" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/Click_to_Pay-1024x855.jpg" alt="" class="wp-image-3220" width="293" height="244" srcset="https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-1024x855.jpg 1024w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-300x250.jpg 300w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-768x641.jpg 768w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-1170x977.jpg 1170w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-270x225.jpg 270w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay-600x501.jpg 600w, https://webvator.com/wp-content/uploads/2022/08/Click_to_Pay.jpg 1397w" sizes="(max-width: 293px) 100vw, 293px"></a></figure>
</aside></div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<div class="row row-xs-center">
<div class="col-sm-9 col-md-6">
<div class="copyright">
<p>Copyright © 2013 - 2023 Webvator Ltd</p> </div><!-- .copyright -->
</div>
<div class="col-sm-3 col-md-6 end-sm center-xs">
<ul class="footer-social-icon-list">
<li>
<a class="footer-social-icon footer-social-icon-facebook" href="https://www.facebook.com/Webvator" target="_blank">
<i class="fa fa-facebook-square"></i>
</a>
</li>
<li>
<a class="footer-social-icon footer-social-icon-twitter" href="https://twitter.com/webvator" target="_blank">
<i class="fa fa-twitter-square"></i>
</a>
</li>
<li>
<a class="footer-social-icon footer-social-icon-instagram" href="https://www.instagram.com/webvatorltd/" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</div><ins class="adsbygoogle adsbygoogle-noablate" data-adsbygoogle-status="done" style="display: none !important;" data-ad-status="unfilled"><div id="aswift_0_host" style="border: none; height: 0px; width: 0px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block;" tabindex="0" title="Advertisement" aria-label="Advertisement"><iframe id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;border:0;width:undefinedpx;height:undefinedpx;" sandbox="allow-forms allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-top-navigation-by-user-activation" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" src="./Web design Uganda ,Best Website designers in Uganda,Website developers, website designer near you_files/ads.html" data-google-container-id="a!1" data-load-complete="true"></iframe></div></ins> <!-- / .page-wrapper -->
<a class="scrollup"><i class="fa fa-chevron-up"></i></a>
<script></script><!-- Click to Chat - https://holithemes.com/plugins/click-to-chat/ v3.30.1 -->
<div class="ht-ctc ht-ctc-chat ctc-analytics ctc_wp_desktop style-2 ht_ctc_animation no-animations" id="ht-ctc-chat" style="position: fixed; bottom: 15px; right: 15px; cursor: pointer; z-index: 99999999;">
<div class="ht_ctc_style ht_ctc_chat_style">
<div style="display: flex; justify-content: center; align-items: center; " class="ctc-analytics ctc_s_2">
<p class="ctc-analytics ctc_cta ctc_cta_stick ht-ctc-cta ht-ctc-cta-hover " style="padding: 0px 16px; line-height: 1.6; font-size: 15px; background-color: #25D366; color: #ffffff; border-radius:10px; margin:0 10px; display: none; order: 0; ">Click to WhatsApp chat</p>
<svg style="pointer-events:none; display:block; height:50px; width:50px;" width="50px" height="50px" viewBox="0 0 1024 1024">
<defs>
<path id="htwasqicona-chat" d="M1023.941 765.153c0 5.606-.171 17.766-.508 27.159-.824 22.982-2.646 52.639-5.401 66.151-4.141 20.306-10.392 39.472-18.542 55.425-9.643 18.871-21.943 35.775-36.559 50.364-14.584 14.56-31.472 26.812-50.315 36.416-16.036 8.172-35.322 14.426-55.744 18.549-13.378 2.701-42.812 4.488-65.648 5.3-9.402.336-21.564.505-27.15.505l-504.226-.081c-5.607 0-17.765-.172-27.158-.509-22.983-.824-52.639-2.646-66.152-5.4-20.306-4.142-39.473-10.392-55.425-18.542-18.872-9.644-35.775-21.944-50.364-36.56-14.56-14.584-26.812-31.471-36.415-50.314-8.174-16.037-14.428-35.323-18.551-55.744-2.7-13.378-4.487-42.812-5.3-65.649-.334-9.401-.503-21.563-.503-27.148l.08-504.228c0-5.607.171-17.766.508-27.159.825-22.983 2.646-52.639 5.401-66.151 4.141-20.306 10.391-39.473 18.542-55.426C34.154 93.24 46.455 76.336 61.07 61.747c14.584-14.559 31.472-26.812 50.315-36.416 16.037-8.172 35.324-14.426 55.745-18.549 13.377-2.701 42.812-4.488 65.648-5.3 9.402-.335 21.565-.504 27.149-.504l504.227.081c5.608 0 17.766.171 27.159.508 22.983.825 52.638 2.646 66.152 5.401 20.305 4.141 39.472 10.391 55.425 18.542 18.871 9.643 35.774 21.944 50.363 36.559 14.559 14.584 26.812 31.471 36.415 50.315 8.174 16.037 14.428 35.323 18.551 55.744 2.7 13.378 4.486 42.812 5.3 65.649.335 9.402.504 21.564.504 27.15l-.082 504.226z"></path>
</defs>
<lineargradient id="htwasqiconb-chat" gradientUnits="userSpaceOnUse" x1="512.001" y1=".978" x2="512.001" y2="1025.023">
<stop offset="0" stop-color="#61fd7d"></stop>
<stop offset="1" stop-color="#2bb826"></stop>
</lineargradient>
<use xlink:href="#htwasqicona-chat" overflow="visible" style="fill: url(#htwasqiconb-chat)" fill="url(#htwasqiconb-chat)"></use>
<g>
<path style="fill: #FFFFFF;" fill="#FFF" d="M783.302 243.246c-69.329-69.387-161.529-107.619-259.763-107.658-202.402 0-367.133 164.668-367.214 367.072-.026 64.699 16.883 127.854 49.017 183.522l-52.096 190.229 194.665-51.047c53.636 29.244 114.022 44.656 175.482 44.682h.151c202.382 0 367.128-164.688 367.21-367.094.039-98.087-38.121-190.319-107.452-259.706zM523.544 808.047h-.125c-54.767-.021-108.483-14.729-155.344-42.529l-11.146-6.612-115.517 30.293 30.834-112.592-7.259-11.544c-30.552-48.579-46.688-104.729-46.664-162.379.066-168.229 136.985-305.096 305.339-305.096 81.521.031 158.154 31.811 215.779 89.482s89.342 134.332 89.312 215.859c-.066 168.243-136.984 305.118-305.209 305.118zm167.415-228.515c-9.177-4.591-54.286-26.782-62.697-29.843-8.41-3.062-14.526-4.592-20.645 4.592-6.115 9.182-23.699 29.843-29.053 35.964-5.352 6.122-10.704 6.888-19.879 2.296-9.176-4.591-38.74-14.277-73.786-45.526-27.275-24.319-45.691-54.359-51.043-63.543-5.352-9.183-.569-14.146 4.024-18.72 4.127-4.109 9.175-10.713 13.763-16.069 4.587-5.355 6.117-9.183 9.175-15.304 3.059-6.122 1.529-11.479-.765-16.07-2.293-4.591-20.644-49.739-28.29-68.104-7.447-17.886-15.013-15.466-20.645-15.747-5.346-.266-11.469-.322-17.585-.322s-16.057 2.295-24.467 11.478-32.113 31.374-32.113 76.521c0 45.147 32.877 88.764 37.465 94.885 4.588 6.122 64.699 98.771 156.741 138.502 21.892 9.45 38.982 15.094 52.308 19.322 21.98 6.979 41.982 5.995 57.793 3.634 17.628-2.633 54.284-22.189 61.932-43.615 7.646-21.427 7.646-39.791 5.352-43.617-2.294-3.826-8.41-6.122-17.585-10.714z"></path>
</g>
</svg></div> </div>
</div>
<script type="text/javascript">
(function () {
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
})();
</script>
<script type="text/javascript">
function revslider_showDoubleJqueryError(sliderID) {
var errorMessage = "Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.";
errorMessage += "<br> This includes make eliminates the revolution slider libraries, and make it not work.";
errorMessage += "<br><br> To fix it you can:<br> 1. In the Slider Settings -> Troubleshooting set option: <strong><b>Put JS Includes To Body</b></strong> option to true.";
errorMessage += "<br> 2. Find the double jquery.js include and remove it.";
errorMessage = "<span style='font-size:16px;color:#BC0C06;'>" + errorMessage + "</span>";
jQuery(sliderID).show().html(errorMessage);
}
</script>