-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1489 lines (1408 loc) · 153 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="html" lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Landsha – Just another WordPress site</title>
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Landsha » Feed" href="./feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Landsha » Comments Feed" href="./comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":".\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.6"}};
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([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!c([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);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()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</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 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='./wp-includes/css/dist/block-library/style.min.css?ver=5.6' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-theme-css' href='./wp-includes/css/dist/block-library/theme.min.css?ver=5.6' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='./wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.3.2' type='text/css' media='all' />
<link rel='stylesheet' id='cb70d11b8-css' href='./wp-content/uploads/essential-addons-elementor/cb70d11b8.min.css?ver=1610337528' type='text/css' media='all' />
<link rel='stylesheet' id='hfe-style-css' href='./wp-content/plugins/header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='./wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.9.1' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-animations-css' href='./wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.0.16' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-frontend-legacy-css' href='./wp-content/plugins/elementor/assets/css/frontend-legacy.min.css?ver=3.0.16' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='./wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.0.16' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-26-css' href='./wp-content/uploads/elementor/css/post-26.css?ver=1609955304' type='text/css' media='all' />
<link rel='stylesheet' id='she-header-style-css' href='./wp-content/plugins/sticky-header-effects-for-elementor/assets/css/she-header-style.css?ver=1.4.3' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-global-css' href='./wp-content/uploads/elementor/css/global.css?ver=1609955305' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-7-css' href='./wp-content/uploads/elementor/css/post-7.css?ver=1610333580' type='text/css' media='all' />
<link rel='stylesheet' id='hfe-widgets-style-css' href='./wp-content/plugins/header-footer-elementor/inc/widgets-css/frontend.css?ver=1.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-241-css' href='./wp-content/uploads/elementor/css/post-241.css?ver=1610292455' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-613-css' href='./wp-content/uploads/elementor/css/post-613.css?ver=1610292807' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-627-css' href='./wp-content/uploads/elementor/css/post-627.css?ver=1610292807' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='./wp-content/themes/oceanwp/assets/fonts/fontawesome/css/all.min.css?ver=5.15.1' type='text/css' media='all' />
<link rel='stylesheet' id='simple-line-icons-css' href='./wp-content/themes/oceanwp/assets/css/third/simple-line-icons.min.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='magnific-popup-css' href='./wp-content/themes/oceanwp/assets/css/third/magnific-popup.min.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='slick-css' href='./wp-content/themes/oceanwp/assets/css/third/slick.min.css?ver=1.6.0' type='text/css' media='all' />
<link rel='stylesheet' id='oceanwp-style-css' href='./wp-content/themes/oceanwp/assets/css/style.min.css?ver=2.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='oceanwp-hamburgers-css' href='./wp-content/themes/oceanwp/assets/css/third/hamburgers/hamburgers.min.css?ver=2.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='oceanwp-spin-css' href='./wp-content/themes/oceanwp/assets/css/third/hamburgers/types/spin.css?ver=2.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='oe-widgets-style-css' href='./wp-content/plugins/ocean-extra/assets/css/widgets.css?ver=5.6' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Jost%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&ver=5.6' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='./wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.12.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-regular-css' href='./wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.12.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='./wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.12.0' type='text/css' media='all' />
<script type='text/javascript' src='./wp-includes/js/jquery/jquery.min.js?ver=3.5.1' id='jquery-core-js'></script>
<script type='text/javascript' src='./wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' src='./wp-content/plugins/sticky-header-effects-for-elementor/assets/js/she-header.js?ver=1.4.3' id='she-header-js'></script>
<link rel="https://api.w.org/" href="./wp-json/index.html" /><link rel="alternate" type="application/json" href="./wp-json/wp/v2/pages/7/index.html" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="./xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="./wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.6" />
<link rel="canonical" href="./index.html" />
<link rel='shortlink' href='./index.html' />
<link rel="alternate" type="application/json+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=.%2F" />
<link rel="alternate" type="text/xml+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=.%2F&format=xml" />
<script>
document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );
</script>
<style>
.no-js img.lazyload { display: none; }
figure.wp-block-image img.lazyloading { min-width: 150px; }
.lazyload, .lazyloading { opacity: 0; }
.lazyloaded {
opacity: 1;
transition: opacity 400ms;
transition-delay: 0ms;
}
</style>
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><link rel="icon" href="./wp-content/uploads/2021/01/Webp.net-resizeimage-150x112.png" sizes="32x32" />
<link rel="icon" href="./wp-content/uploads/2021/01/Webp.net-resizeimage.png" sizes="192x192" />
<link rel="apple-touch-icon" href="./wp-content/uploads/2021/01/Webp.net-resizeimage.png" />
<meta name="msapplication-TileImage" content="./wp-content/uploads/2021/01/Webp.net-resizeimage.png" />
<style type="text/css" id="wp-custom-css">
@media only screen and (max-width:768px){#menu-item-247{display:none}} </style>
<!-- OceanWP CSS -->
<style type="text/css">
/* Header CSS */#site-header,.has-transparent-header .is-sticky #site-header,.has-vh-transparent .is-sticky #site-header.vertical-header,#searchform-header-replace{background-color:#69226f}#site-header-inner{padding:0 30px 0 30px}#site-header.transparent-header{background-color:#69226f}#site-header.has-header-media .overlay-header-media{background-color:rgba(0,0,0,0.5)}#site-logo a.site-logo-text{color:#ffffff}#site-logo a.site-logo-text:hover{color:#ffffff}.effect-one #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-three #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-five #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-five #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-nine #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-nine #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after{background-color:#8e36c4}.effect-four #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-four #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li >a.menu-link:hover >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li.sfHover >a.menu-link >span:after{color:#8e36c4}.effect-seven #site-navigation-wrap .dropdown-menu >li >a.menu-link:hover >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li.sfHover >a.menu-link >span:after{text-shadow:10px 0 #8e36c4,-10px 0 #8e36c4}#site-navigation-wrap .dropdown-menu >li >a,.oceanwp-mobile-menu-icon a,#searchform-header-replace-close{color:#ffffff}#site-navigation-wrap .dropdown-menu >li >a:hover,.oceanwp-mobile-menu-icon a:hover,#searchform-header-replace-close:hover{color:#8e36c4}#site-navigation-wrap .dropdown-menu >.current-menu-item >a,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a,#site-navigation-wrap .dropdown-menu >.current-menu-item >a:hover,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a:hover{color:#8e36c4}@media (max-width:767px){#top-bar-nav,#site-navigation-wrap,.oceanwp-social-menu,.after-header-content{display:none}.center-logo #site-logo{float:none;position:absolute;left:50%;padding:0;-webkit-transform:translateX(-50%);transform:translateX(-50%)}#site-header.center-header #site-logo,.oceanwp-mobile-menu-icon,#oceanwp-cart-sidebar-wrap{display:block}body.vertical-header-style #outer-wrap{margin:0 !important}#site-header.vertical-header{position:relative;width:100%;left:0 !important;right:0 !important}#site-header.vertical-header .has-template >#site-logo{display:block}#site-header.vertical-header #site-header-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;padding:0;max-width:90%}#site-header.vertical-header #site-header-inner >*:not(.oceanwp-mobile-menu-icon){display:none}#site-header.vertical-header #site-header-inner >*{padding:0 !important}#site-header.vertical-header #site-header-inner #site-logo{display:block;margin:0;width:50%;text-align:left}body.rtl #site-header.vertical-header #site-header-inner #site-logo{text-align:right}#site-header.vertical-header #site-header-inner .oceanwp-mobile-menu-icon{width:50%;text-align:right}body.rtl #site-header.vertical-header #site-header-inner .oceanwp-mobile-menu-icon{text-align:left}#site-header.vertical-header .vertical-toggle,body.vertical-header-style.vh-closed #site-header.vertical-header .vertical-toggle{display:none}#site-logo.has-responsive-logo .custom-logo-link{display:none}#site-logo.has-responsive-logo .responsive-logo-link{display:block}.is-sticky #site-logo.has-sticky-logo .responsive-logo-link{display:none}.is-sticky #site-logo.has-responsive-logo .sticky-logo-link{display:block}#top-bar.has-no-content #top-bar-social.top-bar-left,#top-bar.has-no-content #top-bar-social.top-bar-right{position:inherit;left:auto;right:auto;float:none;height:auto;line-height:1.5em;margin-top:0;text-align:center}#top-bar.has-no-content #top-bar-social li{float:none;display:inline-block}.owp-cart-overlay,#side-panel-wrap a.side-panel-btn{display:none !important}}.mobile-menu .hamburger-inner,.mobile-menu .hamburger-inner::before,.mobile-menu .hamburger-inner::after{background-color:#ffffff}#sidr,#mobile-dropdown{background-color:#69226f}#sidr li,#sidr ul,#mobile-dropdown ul li,#mobile-dropdown ul li ul{border-color:#8e36c4}body .sidr a,body .sidr-class-dropdown-toggle,#mobile-dropdown ul li a,#mobile-dropdown ul li a .dropdown-toggle,#mobile-fullscreen ul li a,#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a{color:#ffffff}#mobile-fullscreen a.close .close-icon-inner,#mobile-fullscreen a.close .close-icon-inner::after{background-color:#ffffff}body .sidr a:hover,body .sidr-class-dropdown-toggle:hover,body .sidr-class-dropdown-toggle .fa,body .sidr-class-menu-item-has-children.active >a,body .sidr-class-menu-item-has-children.active >a >.sidr-class-dropdown-toggle,#mobile-dropdown ul li a:hover,#mobile-dropdown ul li a .dropdown-toggle:hover,#mobile-dropdown .menu-item-has-children.active >a,#mobile-dropdown .menu-item-has-children.active >a >.dropdown-toggle,#mobile-fullscreen ul li a:hover,#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a:hover{color:#8e36c4}#mobile-fullscreen a.close:hover .close-icon-inner,#mobile-fullscreen a.close:hover .close-icon-inner::after{background-color:#8e36c4}/* Footer Bottom CSS */#footer-bottom{padding:25px 0 25px 0}#footer-bottom{background-color:#69226f}#footer-bottom,#footer-bottom p{color:#dddddd}#footer-bottom a:hover,#footer-bottom #footer-bottom-menu a:hover{color:#8e36c4}#site-navigation-wrap .dropdown-menu >li >a,.oceanwp-mobile-menu-icon a{font-size:16px;font-weight:500}/* Typography CSS */#footer-bottom #copyright{font-family:Verdana,Geneva,sans-serif;font-weight:600;font-size:14px}
</style></head>
<body class="home page-template-default page page-id-7 wp-embed-responsive ehf-header ehf-footer ehf-template-oceanwp ehf-stylesheet-oceanwp oceanwp-theme dropdown-mobile has-transparent-header no-header-border content-full-width content-max-width page-header-disabled has-breadcrumbs no-margins elementor-default elementor-kit-26 elementor-page elementor-page-7" itemscope="itemscope" itemtype="https://schema.org/WebPage">
<div id="outer-wrap" class="site clr">
<a class="skip-link screen-reader-text" href="#main">Skip to content</a>
<div id="wrap" class="clr">
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
<p class="main-title bhf-hidden" itemprop="headline"><a href="./index.html" title="Landsha" rel="home">Landsha</a></p>
<div data-elementor-type="wp-post" data-elementor-id="241" class="elementor elementor-241" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-507b2d7 elementor-section-stretched she-header-yes elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="507b2d7" data-element_type="section" id="header" data-settings="{"stretch_section":"section-stretched","background_background":"classic","transparent":"yes","scroll_distance":{"unit":"px","size":66,"sizes":[]},"scroll_distance_tablet":{"unit":"px","size":66,"sizes":[]},"scroll_distance_mobile":{"unit":"px","size":66,"sizes":[]},"background_show":"yes","background":"#470B4CE3","transparent_on":["desktop","tablet","mobile"]}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-744054e" data-id="744054e" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-40f7fb1 elementor-widget elementor-widget-site-logo" data-id="40f7fb1" data-element_type="widget" data-widget_type="site-logo.default">
<div class="elementor-widget-container">
<div class="hfe-site-logo">
<a data-elementor-open-lightbox="" class='elementor-clickable' href="./index.html">
<div class="hfe-site-logo-set">
<div class="hfe-site-logo-container">
<img alt="Webp.net-resizeimage" data-src="./wp-content/uploads/2021/01/Webp.net-resizeimage.png" class="hfe-site-logo-img elementor-animation- lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="hfe-site-logo-img elementor-animation-" src="./wp-content/uploads/2021/01/Webp.net-resizeimage.png" alt="Webp.net-resizeimage"/></noscript>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-627a289" data-id="627a289" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-a2a2d32 hfe-nav-menu__align-right hfe-submenu-icon-arrow hfe-submenu-animation-none hfe-link-redirect-child hfe-nav-menu__breakpoint-tablet elementor-widget elementor-widget-navigation-menu" data-id="a2a2d32" data-element_type="widget" data-widget_type="navigation-menu.default">
<div class="elementor-widget-container">
<div class="hfe-nav-menu hfe-layout-horizontal hfe-nav-menu-layout horizontal hfe-pointer__none" data-layout="horizontal" data-last-item="cta">
<div class="hfe-nav-menu__toggle elementor-clickable">
<div class="hfe-nav-menu-icon">
<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i> </div>
</div>
<nav class="hfe-nav-menu__layout-horizontal hfe-nav-menu__submenu-arrow" data-toggle-icon="<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>" data-close-icon="<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>" data-full-width="yes"><ul id="menu-1-a2a2d32" class="hfe-nav-menu"><li id="menu-item-22" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-7 current_page_item parent hfe-creative-menu"><a href="./index.html" class = "hfe-menu-item">Home</a></li>
<li id="menu-item-27" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#about" class = "hfe-menu-item">About</a></li>
<li id="menu-item-28" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#services" class = "hfe-menu-item">Services</a></li>
<li id="menu-item-29" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#portfolio" class = "hfe-menu-item">Portfolio</a></li>
<li id="menu-item-30" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#team" class = "hfe-menu-item">Team</a></li>
<li id="menu-item-31" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#contact" class = "hfe-menu-item">Contact</a></li>
<li id="menu-item-247" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="#about" class = "hfe-menu-item">Get Started</a></li>
</ul></nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</header>
<main id="main" class="site-main clr" role="main">
<div id="content-wrap" class="container clr">
<div id="primary" class="content-area clr">
<div id="content" class="site-content clr">
<article class="single-page-article clr">
<div class="entry clr" itemprop="text">
<div data-elementor-type="wp-page" data-elementor-id="7" class="elementor elementor-7" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-2e92499 elementor-section-height-min-height elementor-section-stretched elementor-section-items-top elementor-reverse-tablet elementor-reverse-mobile elementor-section-boxed elementor-section-height-default" data-id="2e92499" data-element_type="section" id="hero" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c5ee3ab animated-fast elementor-invisible" data-id="c5ee3ab" data-element_type="column" data-settings="{"animation":"zoomIn","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-b1e05ab elementor-widget elementor-widget-heading" data-id="b1e05ab" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">Better Solutions For Your Business</h1> </div>
</div>
<div class="elementor-element elementor-element-9f42a67 elementor-widget elementor-widget-heading" data-id="9f42a67" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">We are team of talanted designers making websites with Bootstrap</h2> </div>
</div>
<div class="elementor-element elementor-element-0fe3250 elementor-align-left elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="0fe3250" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#about" class="elementor-button-link elementor-button elementor-size-md" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Get Started</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-892e55a elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="892e55a" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://www.youtube.com/watch?v=z4Umb9MiU9M" target="_blank" class="elementor-button-link elementor-button elementor-size-md" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<i aria-hidden="true" class="far fa-play-circle"></i> </span>
<span class="elementor-button-text">Watch Video</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5640c90 animated-fast elementor-invisible" data-id="5640c90" data-element_type="column" data-settings="{"animation":"zoomIn","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-fc3591f elementor-widget elementor-widget-image" data-id="fc3591f" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="596" height="465" alt="" loading="lazy" data-srcset="./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting.png 596w, ./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting-300x234.png 300w" data-src="./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting.png" data-sizes="(max-width: 596px) 100vw, 596px" class="attachment-large size-large lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="596" height="465" src="./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting.png" class="attachment-large size-large" alt="" loading="lazy" srcset="./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting.png 596w, ./wp-content/uploads/2021/01/favpng_web-hosting-service-internet-hosting-service-dedicated-hosting-service-reseller-web-hosting-300x234.png 300w" sizes="(max-width: 596px) 100vw, 596px" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4b4285a elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="4b4285a" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic","animation":"rollIn","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c4cab56" data-id="c4cab56" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ca3f57e elementor-arrows-position-inside elementor-widget elementor-widget-image-carousel" data-id="ca3f57e" data-element_type="widget" data-settings="{"slides_to_show":"6","navigation":"arrows","autoplay":"no","infinite":"no","image_spacing_custom":{"unit":"px","size":50,"sizes":[]},"slides_to_show_tablet":"3","slides_to_show_mobile":"2","speed":500}" data-widget_type="image-carousel.default">
<div class="elementor-widget-container">
<div class="elementor-image-carousel-wrapper swiper-container" dir="ltr">
<div class="elementor-image-carousel swiper-wrapper">
<div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-1" data-src="./wp-content/uploads/elementor/thumbs/client-1-p0ys8l99s7z0wskfg96yun15frspj1acx44xyeir5s.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-1-p0ys8l99s7z0wskfg96yun15frspj1acx44xyeir5s.png" alt="client-1" /></noscript></figure></div><div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-2" data-src="./wp-content/uploads/elementor/thumbs/client-2-p0ys8pygqe5giudlot83p3ugep5jlit0lredcsbsao.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-2-p0ys8pygqe5giudlot83p3ugep5jlit0lredcsbsao.png" alt="client-2" /></noscript></figure></div><div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-3" data-src="./wp-content/uploads/elementor/thumbs/client-3-p0ys8srzaw9bho9i8cfzel4u6urn8m47m5ctsm7ls0.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-3-p0ys8srzaw9bho9i8cfzel4u6urn8m47m5ctsm7ls0.png" alt="client-3" /></noscript></figure></div><div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-4" data-src="./wp-content/uploads/elementor/thumbs/client-4-p0ys8unnokbw4w6rxd98jknrdmido0boaensr64tfk.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-4-p0ys8unnokbw4w6rxd98jknrdmido0boaensr64tfk.png" alt="client-4" /></noscript></figure></div><div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-5" data-src="./wp-content/uploads/elementor/thumbs/client-5-p0ys8wjc28egs441me2hok6oke943ej4ynyrpq2134.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-5-p0ys8wjc28egs441me2hok6oke943ej4ynyrpq2134.png" alt="client-5" /></noscript></figure></div><div class="swiper-slide"><figure class="swiper-slide-inner"><img alt="client-6" data-src="./wp-content/uploads/elementor/thumbs/client-6-p0ys8xh692fr3q2ogwh491y55s4hb3mvasm9700mww.png" class="swiper-slide-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img class="swiper-slide-image" src="./wp-content/uploads/elementor/thumbs/client-6-p0ys8xh692fr3q2ogwh491y55s4hb3mvasm9700mww.png" alt="client-6" /></noscript></figure></div> </div>
<div class="elementor-swiper-button elementor-swiper-button-prev">
<i class="eicon-chevron-left" aria-hidden="true"></i>
<span class="elementor-screen-only">Previous</span>
</div>
<div class="elementor-swiper-button elementor-swiper-button-next">
<i class="eicon-chevron-right" aria-hidden="true"></i>
<span class="elementor-screen-only">Next</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-9a2c522 elementor-section-stretched animated-fast elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="9a2c522" data-element_type="section" id="about" data-settings="{"stretch_section":"section-stretched","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f35a167" data-id="f35a167" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-46b1ad1 elementor-widget elementor-widget-heading" data-id="46b1ad1" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">ABOUT US</h1> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-0d5bdde elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="0d5bdde" data-element_type="section" data-settings="{"stretch_section":"section-stretched","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0d6d8d4" data-id="0d6d8d4" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-e7b4ec8 elementor-widget elementor-widget-text-editor" data-id="e7b4ec8" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">We are providing the best web hosting plan with cheap cost on worldwide. It’s our pleasure to give you best services.
<br>
<i class="fas fa-arrow-right" style="color: #69226f;"></i> 30 Day Money-back Guarantee. 100% refund.
<br>
<i class="fas fa-arrow-right" style="color: #69226f;"></i> Free 24×7/365 Support. Instant problem solution.
<br>
<i class="fas fa-arrow-right" style="color: #69226f;"></i> Optimized Control Panel. We provide optimized control panel.</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f2b0302" data-id="f2b0302" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-8b42bb5 elementor-widget elementor-widget-text-editor" data-id="8b42bb5" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix"><p>Web Host BD is Top Web Hosting Company in Bangladesh. We are Bangladeshi web hosting company. We provide domain registration and SSD web hosting service in Bangladesh. </p></div>
</div>
</div>
<div class="elementor-element elementor-element-43ae789 elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="43ae789" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#hero" class="elementor-button-link elementor-button elementor-size-md" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn More</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-98b678c elementor-section-stretched elementor-reverse-tablet elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="98b678c" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-acacb92 elementor-invisible" data-id="acacb92" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-1db260e elementor-widget elementor-widget-heading" data-id="1db260e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-large">Web Host BD is <b>Top Web Hosting Company in Bangladesh</b></h1> </div>
</div>
<div class="elementor-element elementor-element-31591d4 elementor-widget elementor-widget-heading" data-id="31591d4" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-medium"> We provide domain registration and SSD web hosting service in Bangladesh. We use USA Data-center and have USA based powerful Hosting server.</p> </div>
</div>
<div class="elementor-element elementor-element-d200298 toggler elementor-widget elementor-widget-toggle" data-id="d200298" data-element_type="widget" data-widget_type="toggle.default">
<div class="elementor-widget-container">
<div class="elementor-toggle" role="tablist">
<div class="elementor-toggle-item">
<h2 id="elementor-tab-title-2201" class="elementor-tab-title" data-tab="1" role="tab" aria-controls="elementor-tab-content-2201">
<span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true">
<span class="elementor-toggle-icon-closed"><i class="fas fa-arrow-right"></i></span>
<span class="elementor-toggle-icon-opened"><i class="elementor-toggle-icon-opened fas fa-arrow-down"></i></span>
</span>
<a href="" class="elementor-toggle-title">Weekly Backups recover</a>
</h2>
<div id="elementor-tab-content-2201" class="elementor-tab-content elementor-clearfix" data-tab="1" role="tabpanel" aria-labelledby="elementor-tab-title-2201"><p>We’ll give you weekly backup. You will be able to recover your website fully.We’ll give you weekly backup. You will be able to recover your website fully.</p></div>
</div>
<div class="elementor-toggle-item">
<h2 id="elementor-tab-title-2202" class="elementor-tab-title" data-tab="2" role="tab" aria-controls="elementor-tab-content-2202">
<span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true">
<span class="elementor-toggle-icon-closed"><i class="fas fa-arrow-right"></i></span>
<span class="elementor-toggle-icon-opened"><i class="elementor-toggle-icon-opened fas fa-arrow-down"></i></span>
</span>
<a href="" class="elementor-toggle-title">Friendly Support</a>
</h2>
<div id="elementor-tab-content-2202" class="elementor-tab-content elementor-clearfix" data-tab="2" role="tabpanel" aria-labelledby="elementor-tab-title-2202"><p>Our all clients get friendly support from us. We care our all clients equally.Our all clients get friendly support from us. We care our all clients equally.</p></div>
</div>
<div class="elementor-toggle-item">
<h2 id="elementor-tab-title-2203" class="elementor-tab-title" data-tab="3" role="tab" aria-controls="elementor-tab-content-2203">
<span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true">
<span class="elementor-toggle-icon-closed"><i class="fas fa-arrow-right"></i></span>
<span class="elementor-toggle-icon-opened"><i class="elementor-toggle-icon-opened fas fa-arrow-down"></i></span>
</span>
<a href="" class="elementor-toggle-title">Server Level Protection</a>
</h2>
<div id="elementor-tab-content-2203" class="elementor-tab-content elementor-clearfix" data-tab="3" role="tabpanel" aria-labelledby="elementor-tab-title-2203"><p>We maintain strong protection form server. Protected server, safe website. We maintain strong protection form server. Protected server, safe website</p></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-8adac88 elementor-invisible" data-id="8adac88" data-element_type="column" data-settings="{"animation":"fadeInRight","animation_delay":1000,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-505fd97 elementor-widget elementor-widget-image" data-id="505fd97" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="557" height="663" alt="" loading="lazy" data-srcset="./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization.png 557w, ./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization-252x300.png 252w" data-src="./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization.png" data-sizes="(max-width: 557px) 100vw, 557px" class="attachment-large size-large lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="557" height="663" src="./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization.png" class="attachment-large size-large" alt="" loading="lazy" srcset="./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization.png 557w, ./wp-content/uploads/2021/01/favpng_web-development-digital-marketing-web-design-search-engine-optimization-252x300.png 252w" sizes="(max-width: 557px) 100vw, 557px" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-a5e0b27 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a5e0b27" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-674cc90 elementor-invisible" data-id="674cc90" data-element_type="column" data-settings="{"animation":"lightSpeedIn","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5ce7249 elementor-widget elementor-widget-image" data-id="5ce7249" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="1000" height="600" alt="" loading="lazy" data-srcset="./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting.png 1000w, ./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting-300x180.png 300w, ./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting-768x461.png 768w" data-src="./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting.png" data-sizes="(max-width: 1000px) 100vw, 1000px" class="attachment-large size-large lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1000" height="600" src="./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting.png" class="attachment-large size-large" alt="" loading="lazy" srcset="./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting.png 1000w, ./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting-300x180.png 300w, ./wp-content/uploads/2021/01/favpng_web-development-web-hosting-service-domain-name-internet-hosting-service-reseller-web-hosting-768x461.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-94e0fc2 elementor-invisible" data-id="94e0fc2" data-element_type="column" data-settings="{"animation":"lightSpeedIn","animation_delay":1000,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-8134e24 elementor-widget elementor-widget-heading" data-id="8134e24" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-large">Our developer has many skills. They are so talented.</h1> </div>
</div>
<div class="elementor-element elementor-element-f3e684e elementor-widget elementor-widget-heading" data-id="f3e684e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Our dedicated customer support team helps our valuable clients immediately any kinds of hosting and domain related troubles.</p> </div>
</div>
<div class="elementor-element elementor-element-3e5a3aa elementor-widget elementor-widget-progress" data-id="3e5a3aa" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">HTML</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="100" aria-valuetext="">
<div class="elementor-progress-bar" data-max="100">
<span class="elementor-progress-text"></span>
<span class="elementor-progress-percentage">100%</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-67c8bac elementor-widget elementor-widget-progress" data-id="67c8bac" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">CSS</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="87" aria-valuetext="">
<div class="elementor-progress-bar" data-max="87">
<span class="elementor-progress-text"></span>
<span class="elementor-progress-percentage">87%</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-92a6a66 elementor-widget elementor-widget-progress" data-id="92a6a66" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">PHP</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="73" aria-valuetext="">
<div class="elementor-progress-bar" data-max="73">
<span class="elementor-progress-text"></span>
<span class="elementor-progress-percentage">73%</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-99b5633 elementor-widget elementor-widget-progress" data-id="99b5633" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">WordPress</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="97" aria-valuetext="">
<div class="elementor-progress-bar" data-max="97">
<span class="elementor-progress-text"></span>
<span class="elementor-progress-percentage">97%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-fb9ff64 elementor-section-stretched animated-fast elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="fb9ff64" data-element_type="section" id="services" data-settings="{"stretch_section":"section-stretched","background_background":"classic","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5d8e4a8" data-id="5d8e4a8" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-39fd880 elementor-widget elementor-widget-heading" data-id="39fd880" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">SERVICES</h1> </div>
</div>
<div class="elementor-element elementor-element-1cb9a78 elementor-widget elementor-widget-heading" data-id="1cb9a78" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-medium">We Have Perfect Web Hosting Package for you.
We provide SSD Hosting with Top security and 99.99% up-time. We are top Domain Hosting provider in Bangladesh. </p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-3fb93b8 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3fb93b8" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6885e34" data-id="6885e34" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5b75250 elementor-view-framed elementor-shape-circle elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="5b75250" data-element_type="widget" data-settings="{"_animation":"bounceInLeft","_animation_delay":500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-" >
<i aria-hidden="true" class="far fa-file-alt"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h1 class="elementor-icon-box-title">
<span >Plan 1</span>
</h1>
<p class="elementor-icon-box-description">1 GB SSD Storage <br>
50 GB Data Transfer Monthly <br>
LiteSpeed Web Server <br>
1 Addon Domain </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-a55cc5d" data-id="a55cc5d" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-fbe9ec6 elementor-view-framed elementor-shape-circle elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="fbe9ec6" data-element_type="widget" data-settings="{"_animation":"bounceInUp","_animation_delay":1000,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-" >
<i aria-hidden="true" class="far fa-snowflake"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h1 class="elementor-icon-box-title">
<span >Plan 2</span>
</h1>
<p class="elementor-icon-box-description">2 GB SSD Storage <br>
100 GB Data Transfer Monthly <br>
LiteSpeed Web Server <br>
2 Addon Domain </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4f47f4c" data-id="4f47f4c" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-aa06978 elementor-view-framed elementor-shape-circle elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="aa06978" data-element_type="widget" data-settings="{"_animation":"bounceInDown","_animation_delay":1500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-" >
<i aria-hidden="true" class="far fa-object-ungroup"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h1 class="elementor-icon-box-title">
<span >Plan 3</span>
</h1>
<p class="elementor-icon-box-description">3 GB SSD Storage <br>
150 GB Data Transfer Monthly <br>
LiteSpeed Web Server <br>
3 Addon Domain </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-17df9bf" data-id="17df9bf" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-7da4744 elementor-view-framed elementor-shape-circle elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="7da4744" data-element_type="widget" data-settings="{"_animation":"bounceInRight","_animation_delay":2000,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-" >
<i aria-hidden="true" class="fas fa-clone"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h1 class="elementor-icon-box-title">
<span >Plan 4</span>
</h1>
<p class="elementor-icon-box-description">4 GB SSD Storage <br>
200 GB Data Transfer Monthly <br>
LiteSpeed Web Server <br>
4 Addon Domain </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-c416afe elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c416afe" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic","animation_mobile":"none"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c07d26a" data-id="c07d26a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-72ae937 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="72ae937" data-element_type="section" data-settings="{"animation":"zoomIn","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c11e700" data-id="c11e700" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-667cbc6 elementor-widget elementor-widget-heading" data-id="667cbc6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-large">Call To Action</h1> </div>
</div>
<div class="elementor-element elementor-element-e64f555 elementor-widget elementor-widget-heading" data-id="e64f555" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">We are always looking for give you the best services. That's why we are waiting for your feedback. Stay connected!</p> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0e3c936" data-id="0e3c936" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-3739c14 elementor-tablet-align-center elementor-widget elementor-widget-button" data-id="3739c14" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#contact" class="elementor-button-link elementor-button elementor-size-md" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Call To Action</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-d020077 elementor-section-stretched animated-fast elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="d020077" data-element_type="section" id="portfolio" data-settings="{"stretch_section":"section-stretched","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1f4f059" data-id="1f4f059" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-0e834d7 elementor-widget elementor-widget-heading" data-id="0e834d7" data-element_type="widget" id="#portfolio" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">PORTFOLIO</h1> </div>
</div>
<div class="elementor-element elementor-element-93dcd5c elementor-widget elementor-widget-heading" data-id="93dcd5c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-medium">It's natural that before order the service, you want to see the some works which has done by us.That's why, we are providing some portfolios for see. Hope, you will love it.</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-250a919 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="250a919" data-element_type="section" data-settings="{"stretch_section":"section-stretched","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b90aebc" data-id="b90aebc" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4ed50a9 eael-fg-hoverer-content-align-center elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-widget elementor-widget-eael-filterable-gallery" data-id="4ed50a9" data-element_type="widget" data-settings="{"columns":"3","columns_tablet":"2","columns_mobile":"1","photo_gallery":"yes"}" data-widget_type="eael-filterable-gallery.default">
<div class="elementor-widget-container">
<div id="eael-filter-gallery-wrapper-4ed50a9" class="eael-filter-gallery-wrapper" data-layout-mode="hoverer" data-mfp_caption="">
<div class="eael-filter-gallery-control">
<ul>
<li class="control all-control active" data-filter="*">All</li>
<li class="control" data-filter=".eael-cf-web-design">Web Design</li>
<li class="control" data-filter=".eael-cf-web-development">Web Development</li>
<li class="control" data-filter=".eael-cf-web-hosting">Web Hosting</li>
</ul>
</div>
<div class="eael-filter-gallery-container eael-filter-gallery-grid" data-images-per-page="" data-total-gallery-items="9" data-nomore-item-text="" data-settings="{"grid_style":"grid","popup":"media","duration":"500","gallery_enabled":"yes","post_id":7,"widget_id":"4ed50a9"}" data-gallery-items="["<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-design\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Design<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-design\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/kevin-bhagat-zNRITe8NPqY-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/kevin-bhagat-zNRITe8NPqY-unsplash.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/kevin-bhagat-zNRITe8NPqY-unsplash.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/kevin-bhagat-zNRITe8NPqY-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Design<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-design\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Design<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-development\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/maik-jonietz-_yMciiStJyY-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/maik-jonietz-_yMciiStJyY-unsplash.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/maik-jonietz-_yMciiStJyY-unsplash.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/maik-jonietz-_yMciiStJyY-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Development<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-development\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Development<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-development\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/austin-distel-VvAcrVa56fc-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/austin-distel-VvAcrVa56fc-unsplash.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/austin-distel-VvAcrVa56fc-unsplash.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/austin-distel-VvAcrVa56fc-unsplash.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Development<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-hosting\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Hosting<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-hosting\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Hosting<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>","<div class=\"eael-filterable-gallery-item-wrap eael-cf-web-hosting\">\n\t\t\t\t<div class=\"eael-gallery-grid-item\"><a href=\".\/wp-content\/uploads\/2021\/01\/sigmund-6jaBQAURBgI-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-thumbnail-wrap\"><img src=\".\/wp-content\/uploads\/2021\/01\/sigmund-6jaBQAURBgI-unsplash-scaled.jpg\" data-lazy-src=\".\/wp-content\/uploads\/2021\/01\/sigmund-6jaBQAURBgI-unsplash-scaled.jpg\" alt=\"\" class=\"gallery-item-thumbnail\"><\/div><a href=\".\/wp-content\/uploads\/2021\/01\/sigmund-6jaBQAURBgI-unsplash-scaled.jpg\" class=\"eael-magnific-link media-content-wrap\" data-elementor-open-lightbox=\"no\"><div class=\"gallery-item-caption-wrap caption-style-hoverer eael-slide-up\"><div class=\"gallery-item-hoverer-bg\"><\/div><div class=\"gallery-item-caption-over\"><h5 class=\"fg-item-title\">Web Hosting<\/h5><\/div><\/div><\/a><\/a><\/a><\/div><\/div>"]" data-init-show="9">
<div class="eael-filterable-gallery-item-wrap eael-cf-web-design">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/william-iven-ir5lIkVFqC4-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Design</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-design">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/kevin-bhagat-zNRITe8NPqY-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/kevin-bhagat-zNRITe8NPqY-unsplash.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/kevin-bhagat-zNRITe8NPqY-unsplash.jpg" data-lazy-src="./wp-content/uploads/2021/01/kevin-bhagat-zNRITe8NPqY-unsplash.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/kevin-bhagat-zNRITe8NPqY-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Design</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-design">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/charles-deluvio-HTDVSbFsy3U-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Design</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-development">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/maik-jonietz-_yMciiStJyY-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/maik-jonietz-_yMciiStJyY-unsplash.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/maik-jonietz-_yMciiStJyY-unsplash.jpg" data-lazy-src="./wp-content/uploads/2021/01/maik-jonietz-_yMciiStJyY-unsplash.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/maik-jonietz-_yMciiStJyY-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Development</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-development">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/jeff-sheldon-9dI3g8owHiI-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Development</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-development">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/austin-distel-VvAcrVa56fc-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/austin-distel-VvAcrVa56fc-unsplash.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/austin-distel-VvAcrVa56fc-unsplash.jpg" data-lazy-src="./wp-content/uploads/2021/01/austin-distel-VvAcrVa56fc-unsplash.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/austin-distel-VvAcrVa56fc-unsplash.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Development</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-hosting">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/you-x-ventures-Oalh2MojUuk-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Hosting</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-hosting">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/lauren-mancke-aOC7TSLb1o8-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Hosting</h5></div></div></a></a></a></div></div><div class="eael-filterable-gallery-item-wrap eael-cf-web-hosting">
<div class="eael-gallery-grid-item"><a href="./wp-content/uploads/2021/01/sigmund-6jaBQAURBgI-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-thumbnail-wrap"><img data-lazy- alt="" data-src="./wp-content/uploads/2021/01/sigmund-6jaBQAURBgI-unsplash-scaled.jpg" class="gallery-item-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="./wp-content/uploads/2021/01/sigmund-6jaBQAURBgI-unsplash-scaled.jpg" data-lazy-src="./wp-content/uploads/2021/01/sigmund-6jaBQAURBgI-unsplash-scaled.jpg" alt="" class="gallery-item-thumbnail"></noscript></div><a href="./wp-content/uploads/2021/01/sigmund-6jaBQAURBgI-unsplash-scaled.jpg" class="eael-magnific-link media-content-wrap" data-elementor-open-lightbox="no"><div class="gallery-item-caption-wrap caption-style-hoverer eael-slide-up"><div class="gallery-item-hoverer-bg"></div><div class="gallery-item-caption-over"><h5 class="fg-item-title">Web Hosting</h5></div></div></a></a></a></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-29dd77e elementor-section-stretched animated-fast elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="29dd77e" data-element_type="section" id="team" data-settings="{"stretch_section":"section-stretched","background_background":"classic","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7ad3bd4" data-id="7ad3bd4" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-6588f86 elementor-widget elementor-widget-heading" data-id="6588f86" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">OUR TEAM</h1> </div>
</div>
<div class="elementor-element elementor-element-80bcefb elementor-widget elementor-widget-heading" data-id="80bcefb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-medium">We are very glad to have such a talented and hard working people in our team. They are really qualified and creative team in their sector. Let's introduce some important developer!</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-83b8210 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="83b8210" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-58212a5" data-id="58212a5" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-820bab9 elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-image-box" data-id="820bab9" data-element_type="widget" data-settings="{"_animation":"zoomIn","_animation_delay":500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/christian-buehner-DItYlc26zVI-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/christian-buehner-DItYlc26zVI-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" src="./wp-content/uploads/2021/01/christian-buehner-DItYlc26zVI-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></noscript></noscript></figure><div class="elementor-image-box-content"><h1 class="elementor-image-box-title">Melton Linchon<br><span style="color:#333;font-size:16px;">Chief Executive Officer</span></h1><p class="elementor-image-box-description">Work with everything, unless you find your passion.</p></div></div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ce3863" data-id="3ce3863" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-44d9067 elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-image-box" data-id="44d9067" data-element_type="widget" data-settings="{"_animation":"zoomIn","_animation_delay":500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/mateus-campos-felipe-IL4WL6bf-h4-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/mateus-campos-felipe-IL4WL6bf-h4-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" src="./wp-content/uploads/2021/01/mateus-campos-felipe-IL4WL6bf-h4-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></noscript></noscript></figure><div class="elementor-image-box-content"><h1 class="elementor-image-box-title">Selina Johnson<br><span style="color:#333;font-size:16px;">Service Manager</span></h1><p class="elementor-image-box-description">Choose your best service and enjoy the service.</p></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b8496df elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b8496df" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5e4ee48" data-id="5e4ee48" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ab78c3a elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-image-box" data-id="ab78c3a" data-element_type="widget" data-settings="{"_animation":"zoomIn","_animation_delay":500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/etty-fidele-AzVexpHvuKY-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/etty-fidele-AzVexpHvuKY-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" src="./wp-content/uploads/2021/01/etty-fidele-AzVexpHvuKY-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></noscript></noscript></figure><div class="elementor-image-box-content"><h1 class="elementor-image-box-title">Rohinna Andarson<br><span style="color:#333;font-size:16px;">Senior Web Designer</span></h1><p class="elementor-image-box-description">Run your design, unless it's satisfid you properly.</p></div></div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-8a222e7" data-id="8a222e7" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-1162d55 elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-image-box" data-id="1162d55" data-element_type="widget" data-settings="{"_animation":"zoomIn","_animation_delay":500,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/zheka-boychenko-vPkTWyTgk8E-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" alt="" loading="lazy" data-src="./wp-content/uploads/2021/01/zheka-boychenko-vPkTWyTgk8E-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="150" height="150" src="./wp-content/uploads/2021/01/zheka-boychenko-vPkTWyTgk8E-unsplash-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></noscript></noscript></figure><div class="elementor-image-box-content"><h1 class="elementor-image-box-title">Mahina Jepson<br><span style="color:#333;font-size:16px;">Junior Web Developer</span></h1><p class="elementor-image-box-description">Development is a love cause it looks like a brain games.</p></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-bd1a361 elementor-section-stretched animated-fast elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="bd1a361" data-element_type="section" data-settings="{"stretch_section":"section-stretched","animation":"fadeInUp","animation_delay":500,"animation_mobile":"none","animation_tablet":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c5cf5c4" data-id="c5cf5c4" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5a612a1 elementor-widget elementor-widget-heading" data-id="5a612a1" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xl">PRICEING</h1> </div>
</div>
<div class="elementor-element elementor-element-b1db563 elementor-widget elementor-widget-heading" data-id="b1db563" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-medium">It's natural that before order the service, you want to see the some works which has done by us.That's why, we are providing some portfolios for see. Hope, you will love it.</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-54e704f elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="54e704f" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-f675a76" data-id="f675a76" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-a3a0193 eael-pricing-content-align-center eael-pricing-button-align-center elementor-invisible elementor-widget elementor-widget-eael-pricing-table" data-id="a3a0193" data-element_type="widget" data-settings="{"_animation":"fadeInUp","_animation_delay":400,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="eael-pricing-table.default">
<div class="elementor-widget-container">
<div class="eael-pricing style-1" >
<div class="eael-pricing-item">
<div class="header">
<h2 class="title">Startup Plan</h2>
</div>
<div class="eael-pricing-tag">
<span class="price-tag"><span class="original-price"><span class="price-currency">$</span>9.99</span></span>
<span class="price-period">/ month</span>
</div>
<div class="body">
<ul>
<li >
<span class="li-icon" style="color:#61CE70">
<i class="fas fa-check"></i>
</span>
1 GB SSD Storage </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
50 GB Data Transfer Monthly </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
1 Addon Domain </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
cPanel Control Panel </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
FREE SSL Life Time </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
FREE Weekly Backup </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
Unlimited Sub Domains </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
Unlimited Sub Databases </li>
</ul>
</div>
<div class="footer">
<a href="#" class="eael-pricing-button">
<i class="fa-icon-left"></i>
Get Started </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c00b85a" data-id="c00b85a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-87dafa1 eael-pricing-content-align-center eael-pricing-button-align-center elementor-invisible elementor-widget elementor-widget-eael-pricing-table" data-id="87dafa1" data-element_type="widget" data-settings="{"_animation":"fadeInUp","_animation_delay":800,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="eael-pricing-table.default">
<div class="elementor-widget-container">
<div class="eael-pricing style-1" >
<div class="eael-pricing-item featured ribbon-2">
<div class="header">
<h2 class="title">Business Plan</h2>
</div>
<div class="eael-pricing-tag">
<span class="price-tag"><del class="original-price">
<span class="price-currency">$</span>18.99</del>
<span class="sale-price">
<span class="price-currency">$</span>17.99</span></span>
<span class="price-period">/ month</span>
</div>
<div class="body">
<ul>
<li >
<span class="li-icon" style="color:#61CE70">
<i class="fas fa-check"></i>
</span>
2 GB SSD Storage </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
100 GB Data Transfer Monthly </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
2 Addon Domain </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
cPanel Control Panel </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
FREE SSL Life Time </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
FREE Weekly Backup </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
Unlimited Sub Domains </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
Unlimited Sub Databases </li>
</ul>
</div>
<div class="footer">
<a href="#" class="eael-pricing-button">
<i class="fa-icon-left"></i>
Get Started </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4d3d77f" data-id="4d3d77f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5bcf685 eael-pricing-content-align-center eael-pricing-button-align-center elementor-invisible elementor-widget elementor-widget-eael-pricing-table" data-id="5bcf685" data-element_type="widget" data-settings="{"_animation":"fadeInUp","_animation_delay":1200,"_animation_mobile":"none","_animation_tablet":"none"}" data-widget_type="eael-pricing-table.default">
<div class="elementor-widget-container">
<div class="eael-pricing style-1" >
<div class="eael-pricing-item">
<div class="header">
<h2 class="title">Developer Plan</h2>
</div>
<div class="eael-pricing-tag">
<span class="price-tag"><span class="original-price"><span class="price-currency">$</span>29.99</span></span>
<span class="price-period">/ month</span>
</div>
<div class="body">
<ul>
<li >
<span class="li-icon" style="color:#61CE70">
<i class="fas fa-check"></i>
</span>
3 GB SSD Storage </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
150 GB Data Transfer Monthly </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
3 Addon Domain </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
cPanel Control Panel </li>
<li >
<span class="li-icon" style="color:#00C853">
<i class="fas fa-check"></i>
</span>
FREE SSL Life Time </li>
<li >
<span class="li-icon" style="color:#00C853">