-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-accessible.html
1051 lines (706 loc) · 82.6 KB
/
index-accessible.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="">
<meta name="description" content="">
<title>My Landing Page</title>
<!-- Loading Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Loading Template CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600&display=swap" rel="stylesheet">
<!-- Font Favicon -->
<link rel="shortcut icon" href="">
<style>
p, .team-info p, ul, ol{
color: #333!important;
font-style: normal;
}
.home-section .row{
background-color: rgb(51,51,51);
padding: 20px;
}
.register-form{
display: flex;
flex-direction: column;
}
.register-form label{
text-align: left;
color: #fff;
font-weight: bold;
}
h1 {
font-size: 2rem!important;
line-height: 1.5!important;
}
h2 {
font-size: 2rem!important;
line-height: 1.5!important;
}
h3 {
font-size: 1.5rem!important;
line-height: 1.5!important;
}
p {
font-size: 1rem!important;
line-height: 1.5!important;
}
a{
font-size: 1rem!important;
}
a:focus, a:active, a:visited, .tab-example:focus,
#register-form input.register-input:focus, #register-form select.register-input:focus,
input.register-submit:focus,
.tab-container [role=tab][aria-selected=true]:focus-visible,
.tab-container [role=tab]:focus-visible{
outline: 2px dashed #000;
}
#logo{
font-size: 1.2rem;
color: #333!important;
}
.section-bg-1,.section-bg-2, .section-bg-overlay, .price-box-grey,
.navbar-fixed-top .navbar-nav > li > a.discover-btn,
.btn-red
{
background: #1C8062;
border: 1px solid #1C8062;
}
ul.pricing-list li.price-tag a, .navbar-fixed-top .navbar-nav > li > a.discover-btn:hover{
color:#1C8062!important;
border: 1px solid #1C8062;
}
.white-text{
color: white!important;
}
.btn-white, input.register-submit, .btn-white:hover, .btn-white-border:hover,
.navbar-fixed-top .navbar-nav > li > a:hover{
color: #1C8062!important;
}
.navbar-fixed-top .navbar-nav > li > a:hover{
border-bottom: 1px solid #1C8062;
}
ul.footer_social li a svg{
fill: #1C8062;
}
.tab-container [role=tab][aria-selected=true]::after, .btn-red:hover{
background: #1C8062;
}
</style>
</head>
<body>
<!--begin header -->
<header class="header">
<!--begin navbar-fixed-top -->
<nav class="navbar navbar-expand-lg navbar-default navbar-fixed-top">
<!--begin container -->
<div class="container">
<!--begin logo -->
<div class="navbar-brand">
<svg aria-hidden="true" width="288" height="66" viewBox="0 0 288 66" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M33.5 21.75C33.5 27.9632 28.4632 33 22.25 33H11V21.75C11 15.5368 16.0368 10.5 22.25 10.5C28.4632 10.5 33.5 15.5368 33.5 21.75Z" fill="#17CF97"/>
<path d="M33.5 44.25C33.5 38.0368 38.5368 33 44.75 33H56V44.25C56 50.4632 50.9632 55.5 44.75 55.5C38.5368 55.5 33.5 50.4632 33.5 44.25Z" fill="#17CF97"/>
<path d="M11 44.25C11 50.4632 16.0368 55.5 22.25 55.5H33.5V44.25C33.5 38.0368 28.4632 33 22.25 33C16.0368 33 11 38.0368 11 44.25Z" fill="#17CF97"/>
<path d="M56 21.75C56 15.5368 50.9632 10.5 44.75 10.5H33.5V21.75C33.5 27.9632 38.5368 33 44.75 33C50.9632 33 56 27.9632 56 21.75Z" fill="#17CF97"/>
<path d="M70.6836 43V40.8638L72.5757 40.4976V27.7412L70.6836 27.375V25.2266H72.5757H77.8491L82.6953 37.6167H82.7686L87.4561 25.2266H94.6338V27.375L92.7295 27.7412V40.4976L94.6338 40.8638V43H87.2729V40.8638L89.2627 40.4976V37.0918L89.3237 29.0718L89.2505 29.0596L83.9404 42.7559H81.2427L75.8105 29.1694L75.7373 29.1816L75.9448 36.7256V40.4976L78.0444 40.8638V43H70.6836ZM99.6509 48.3345C99.3416 48.3345 99.012 48.306 98.6621 48.249C98.3203 48.2002 97.9948 48.131 97.6855 48.0415L98.0884 45.4292C98.243 45.4618 98.4139 45.4862 98.6011 45.5024C98.7882 45.5187 98.951 45.5269 99.0894 45.5269C99.6021 45.5269 100.046 45.3926 100.42 45.124C100.794 44.8555 101.067 44.4689 101.238 43.9644L101.531 43.1465L97.1118 32.1724L95.4883 31.9404V29.792H102.495V31.9404L100.884 32.1846L102.959 38.0073L103.215 38.7275H103.289L105.742 32.1602L104.167 31.9404V29.792H110.698V31.9404L109.209 32.1479L104.167 44.9653C103.923 45.5757 103.61 46.1331 103.228 46.6377C102.853 47.1504 102.373 47.5614 101.787 47.8706C101.209 48.1799 100.497 48.3345 99.6509 48.3345ZM117.729 43V40.8638L119.622 40.4976V27.7412L117.729 27.375V25.2266H119.622H123.186H125.334V27.375L123.186 27.7412V40.2656H128.203L128.374 37.6655H131.096V43H117.729ZM136.882 43.2563C135.572 43.2563 134.53 42.9064 133.757 42.2065C132.984 41.4985 132.598 40.5382 132.598 39.3257C132.598 38.4956 132.821 37.7673 133.269 37.1406C133.725 36.514 134.392 36.0216 135.271 35.6636C136.158 35.3055 137.249 35.1265 138.542 35.1265H140.288V34.1499C140.288 33.5151 140.101 33.0024 139.727 32.6118C139.36 32.2131 138.807 32.0137 138.066 32.0137C137.684 32.0137 137.342 32.0625 137.041 32.1602C136.74 32.2497 136.463 32.3799 136.211 32.5508L135.93 34.2964H133.367L133.318 30.8662C134.01 30.4756 134.758 30.1582 135.564 29.9141C136.37 29.6699 137.269 29.5479 138.262 29.5479C139.987 29.5479 141.35 29.9507 142.351 30.7563C143.352 31.5539 143.853 32.6973 143.853 34.1865V39.6309C143.853 39.8099 143.853 39.9889 143.853 40.168C143.861 40.3389 143.877 40.5057 143.901 40.6685L145.281 40.8638V43H140.862C140.772 42.7721 140.683 42.528 140.593 42.2676C140.504 42.0072 140.439 41.7467 140.398 41.4863C139.975 42.0234 139.474 42.4548 138.896 42.7803C138.327 43.0977 137.655 43.2563 136.882 43.2563ZM137.834 40.6196C138.331 40.6196 138.803 40.5098 139.25 40.29C139.698 40.0622 140.044 39.7651 140.288 39.3989V37.3115H138.53C137.749 37.3115 137.155 37.4906 136.748 37.8486C136.349 38.2067 136.15 38.638 136.15 39.1426C136.15 39.6146 136.296 39.9808 136.589 40.2412C136.89 40.4935 137.306 40.6196 137.834 40.6196ZM146.416 43V40.8638L148.125 40.4976V32.3066L146.233 31.9404V29.792H151.445L151.604 31.6841C152.043 31.0086 152.585 30.4837 153.228 30.1094C153.879 29.735 154.619 29.5479 155.449 29.5479C156.759 29.5479 157.785 29.967 158.525 30.8052C159.266 31.6434 159.636 32.9577 159.636 34.748V40.4976L161.345 40.8638V43H154.534V40.8638L156.06 40.4976V34.7603C156.06 33.8732 155.885 33.2466 155.535 32.8804C155.185 32.506 154.664 32.3188 153.972 32.3188C153.459 32.3188 153.012 32.4287 152.629 32.6484C152.255 32.86 151.942 33.1652 151.689 33.564V40.4976L153.13 40.8638V43H146.416ZM167.449 43.2563C166.399 43.2563 165.496 42.9878 164.739 42.4507C163.99 41.9054 163.416 41.1486 163.018 40.1802C162.619 39.2036 162.419 38.0643 162.419 36.7622V36.5059C162.419 35.1143 162.619 33.8976 163.018 32.856C163.424 31.8143 164.002 31.0046 164.751 30.4268C165.5 29.8408 166.395 29.5479 167.437 29.5479C168.161 29.5479 168.796 29.6943 169.341 29.9873C169.886 30.2721 170.358 30.679 170.757 31.208V26.4717L168.853 26.1055V23.957H170.757H174.321V40.4976L176.03 40.8638V43H171.233L170.964 41.3887C170.549 41.999 170.053 42.4629 169.475 42.7803C168.905 43.0977 168.23 43.2563 167.449 43.2563ZM168.511 40.4854C169.007 40.4854 169.443 40.3796 169.817 40.168C170.191 39.9564 170.505 39.6512 170.757 39.2524V33.6494C170.513 33.2262 170.203 32.9007 169.829 32.6729C169.455 32.4368 169.023 32.3188 168.535 32.3188C167.941 32.3188 167.453 32.4979 167.07 32.856C166.696 33.2059 166.419 33.6942 166.24 34.3208C166.069 34.9474 165.984 35.6758 165.984 36.5059V36.7622C165.984 37.9178 166.179 38.8293 166.57 39.4966C166.96 40.1558 167.607 40.4854 168.511 40.4854ZM177.056 43V40.8638L178.777 40.4976V32.3066L176.873 31.9404V29.792H182.341V40.4976L184.05 40.8638V43H177.056ZM178.655 26.9966V23.957H182.341V26.9966H178.655ZM185.112 43V40.8638L186.821 40.4976V32.3066L184.929 31.9404V29.792H190.142L190.3 31.6841C190.74 31.0086 191.281 30.4837 191.924 30.1094C192.575 29.735 193.315 29.5479 194.146 29.5479C195.456 29.5479 196.481 29.967 197.222 30.8052C197.962 31.6434 198.333 32.9577 198.333 34.748V40.4976L200.042 40.8638V43H193.23V40.8638L194.756 40.4976V34.7603C194.756 33.8732 194.581 33.2466 194.231 32.8804C193.881 32.506 193.36 32.3188 192.668 32.3188C192.156 32.3188 191.708 32.4287 191.326 32.6484C190.951 32.86 190.638 33.1652 190.386 33.564V40.4976L191.826 40.8638V43H185.112ZM206.89 48.3345C206.222 48.3345 205.474 48.249 204.644 48.0781C203.813 47.9072 203.081 47.6631 202.446 47.3457L203.105 44.8066C203.675 45.0508 204.277 45.242 204.912 45.3804C205.555 45.5269 206.153 45.6001 206.707 45.6001C207.659 45.6001 208.354 45.3356 208.794 44.8066C209.242 44.2777 209.465 43.5412 209.465 42.5972V41.7305C209.075 42.2269 208.615 42.6053 208.086 42.8657C207.557 43.1261 206.951 43.2563 206.267 43.2563C205.193 43.2563 204.269 42.9878 203.496 42.4507C202.723 41.9054 202.133 41.1445 201.726 40.168C201.319 39.1914 201.116 38.0562 201.116 36.7622V36.5059C201.116 35.1143 201.319 33.8976 201.726 32.856C202.133 31.8143 202.715 31.0046 203.472 30.4268C204.229 29.8408 205.136 29.5479 206.194 29.5479C206.983 29.5479 207.663 29.7147 208.232 30.0483C208.802 30.3739 209.286 30.8418 209.685 31.4521L209.941 29.792H213.042V42.6094C213.042 43.7731 212.794 44.7822 212.297 45.6367C211.809 46.4912 211.105 47.1545 210.186 47.6265C209.266 48.0985 208.167 48.3345 206.89 48.3345ZM207.268 40.4854C207.773 40.4854 208.208 40.3877 208.574 40.1924C208.94 39.9889 209.237 39.696 209.465 39.3135V33.5762C209.237 33.1774 208.936 32.8682 208.562 32.6484C208.196 32.4287 207.769 32.3188 207.28 32.3188C206.67 32.3188 206.174 32.4979 205.791 32.856C205.409 33.2059 205.128 33.6942 204.949 34.3208C204.77 34.9393 204.68 35.6676 204.68 36.5059V36.7622C204.68 37.9178 204.88 38.8293 205.278 39.4966C205.677 40.1558 206.34 40.4854 207.268 40.4854ZM212.59 32.3677L211.04 29.792H214.592V31.9404L212.59 32.3677ZM221.733 43V40.8638L223.625 40.4976V27.7412L221.733 27.375V25.2266H223.625H230.193C231.552 25.2266 232.724 25.4666 233.708 25.9468C234.693 26.4188 235.45 27.082 235.979 27.9365C236.508 28.7829 236.772 29.7716 236.772 30.9028C236.772 32.034 236.508 33.0269 235.979 33.8813C235.45 34.7277 234.693 35.3869 233.708 35.8589C232.724 36.3228 231.552 36.5547 230.193 36.5547H227.19V40.4976L229.094 40.8638V43H221.733ZM227.19 33.8081H230.193C231.186 33.8081 231.934 33.5396 232.439 33.0024C232.952 32.4572 233.208 31.7655 233.208 30.9272C233.208 30.0728 232.952 29.3688 232.439 28.8154C231.934 28.2539 231.186 27.9731 230.193 27.9731H227.19V33.8081ZM242.278 43.2563C240.968 43.2563 239.926 42.9064 239.153 42.2065C238.38 41.4985 237.993 40.5382 237.993 39.3257C237.993 38.4956 238.217 37.7673 238.665 37.1406C239.12 36.514 239.788 36.0216 240.667 35.6636C241.554 35.3055 242.644 35.1265 243.938 35.1265H245.684V34.1499C245.684 33.5151 245.496 33.0024 245.122 32.6118C244.756 32.2131 244.202 32.0137 243.462 32.0137C243.079 32.0137 242.738 32.0625 242.437 32.1602C242.135 32.2497 241.859 32.3799 241.606 32.5508L241.326 34.2964H238.762L238.713 30.8662C239.405 30.4756 240.154 30.1582 240.959 29.9141C241.765 29.6699 242.664 29.5479 243.657 29.5479C245.382 29.5479 246.746 29.9507 247.747 30.7563C248.748 31.5539 249.248 32.6973 249.248 34.1865V39.6309C249.248 39.8099 249.248 39.9889 249.248 40.168C249.256 40.3389 249.272 40.5057 249.297 40.6685L250.676 40.8638V43H246.257C246.168 42.7721 246.078 42.528 245.989 42.2676C245.899 42.0072 245.834 41.7467 245.793 41.4863C245.37 42.0234 244.87 42.4548 244.292 42.7803C243.722 43.0977 243.051 43.2563 242.278 43.2563ZM243.23 40.6196C243.726 40.6196 244.198 40.5098 244.646 40.29C245.094 40.0622 245.439 39.7651 245.684 39.3989V37.3115H243.926C243.145 37.3115 242.55 37.4906 242.144 37.8486C241.745 38.2067 241.545 38.638 241.545 39.1426C241.545 39.6146 241.692 39.9808 241.985 40.2412C242.286 40.4935 242.701 40.6196 243.23 40.6196ZM257.769 48.3345C257.101 48.3345 256.353 48.249 255.522 48.0781C254.692 47.9072 253.96 47.6631 253.325 47.3457L253.984 44.8066C254.554 45.0508 255.156 45.242 255.791 45.3804C256.434 45.5269 257.032 45.6001 257.585 45.6001C258.538 45.6001 259.233 45.3356 259.673 44.8066C260.12 44.2777 260.344 43.5412 260.344 42.5972V41.7305C259.954 42.2269 259.494 42.6053 258.965 42.8657C258.436 43.1261 257.83 43.2563 257.146 43.2563C256.072 43.2563 255.148 42.9878 254.375 42.4507C253.602 41.9054 253.012 41.1445 252.605 40.168C252.198 39.1914 251.995 38.0562 251.995 36.7622V36.5059C251.995 35.1143 252.198 33.8976 252.605 32.856C253.012 31.8143 253.594 31.0046 254.351 30.4268C255.107 29.8408 256.015 29.5479 257.073 29.5479C257.862 29.5479 258.542 29.7147 259.111 30.0483C259.681 30.3739 260.165 30.8418 260.564 31.4521L260.82 29.792H263.921V42.6094C263.921 43.7731 263.673 44.7822 263.176 45.6367C262.688 46.4912 261.984 47.1545 261.064 47.6265C260.145 48.0985 259.046 48.3345 257.769 48.3345ZM258.147 40.4854C258.652 40.4854 259.087 40.3877 259.453 40.1924C259.819 39.9889 260.116 39.696 260.344 39.3135V33.5762C260.116 33.1774 259.815 32.8682 259.441 32.6484C259.075 32.4287 258.647 32.3188 258.159 32.3188C257.549 32.3188 257.052 32.4979 256.67 32.856C256.287 33.2059 256.007 33.6942 255.828 34.3208C255.649 34.9393 255.559 35.6676 255.559 36.5059V36.7622C255.559 37.9178 255.758 38.8293 256.157 39.4966C256.556 40.1558 257.219 40.4854 258.147 40.4854ZM263.469 32.3677L261.919 29.792H265.471V31.9404L263.469 32.3677ZM272.747 43.2563C271.485 43.2563 270.382 42.9797 269.438 42.4263C268.494 41.8647 267.762 41.0957 267.241 40.1191C266.729 39.1426 266.472 38.0277 266.472 36.7744V36.2861C266.472 34.9759 266.716 33.8162 267.205 32.8071C267.693 31.7899 268.381 30.9924 269.268 30.4146C270.163 29.8286 271.217 29.5397 272.429 29.5479C273.625 29.5479 274.631 29.7839 275.444 30.2559C276.258 30.7279 276.877 31.4074 277.3 32.2944C277.723 33.1815 277.935 34.2557 277.935 35.5171V37.458H270.171L270.146 37.5312C270.195 38.109 270.338 38.6258 270.574 39.0815C270.818 39.5291 271.16 39.8831 271.599 40.1436C272.039 40.3958 272.572 40.522 273.198 40.522C273.849 40.522 274.456 40.4406 275.017 40.2778C275.587 40.1069 276.14 39.8587 276.677 39.5332L277.642 41.7305C277.096 42.1699 276.409 42.5361 275.579 42.8291C274.757 43.1139 273.813 43.2563 272.747 43.2563ZM270.195 35.1021H274.602V34.7847C274.602 34.2476 274.529 33.7878 274.382 33.4053C274.244 33.0146 274.016 32.7135 273.699 32.502C273.389 32.2904 272.987 32.1846 272.49 32.1846C272.018 32.1846 271.619 32.3107 271.294 32.563C270.968 32.8071 270.712 33.1449 270.525 33.5762C270.346 34.0075 270.224 34.4958 270.159 35.041L270.195 35.1021Z" fill="#17CF97"/>
</svg>
</div>
<!--end logo -->
<!--begin navbar-toggler -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><svg xmlns="http://www.w3.org/2000/svg" width="20px" height="20px" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg></span>
</button>
<!--end navbar-toggler -->
<!--begin navbar-collapse -->
<div class="navbar-collapse collapse" id="navbarCollapse">
<!--begin navbar-nav -->
<ul class="navbar-nav ml-auto">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#portfolio">Work</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li class="discover-link"><a href="#contact" class="discover-btn">Contact Us</a></li>
</ul>
<!--end navbar-nav -->
</div>
<!--end navbar-collapse -->
</div>
<!--end container -->
</nav>
<!--end navbar-fixed-top -->
</header>
<!--end header -->
<main>
<!--begin home section -->
<section class="home-section" id="home">
<div class="home-section-overlay"></div>
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-8-->
<div class="col-md-8 mx-auto text-center">
<h1>MyLandingPage</h1>
<p class="hero-text white-text">Excepteur sentum occaecat cupidatat nonet proident, vante nislatum quistamused officiatumes ets deserunt etimus nets.</p>
<a href="#about" class="btn-red scrool">Get Started Now</a><br>
</div>
<!--end col-md-12-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end home section -->
<!--begin partners-section-->
<div class="partners-section">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col-sm-12-->
<div class="col-md-10 mx-auto text-center partners">
<p class="partners-title">Partners</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg" height="40px" class="partners" alt="amazon logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg" height="128px" class="partners" alt="apple logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg" height="128px" class="partners" alt="google logo">
</div>
<!--end col-sm-12-->
</div>
<!--end row-->
</div>
<!--end container-->
</div>
<!--end partners-section-->
<!--begin section-white -->
<section class="section-white" id="about">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center margin-bottom-10">
<h2 class="section-title">What We Do</h2>
<p class="section-subtitle">Dicover how our amazing team can help your business.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin services-wrapper -->
<div class="services-wrapper">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services green">
<h3>Google Analitycs</h3>
<p>Curabitur quam etsum lacus net netsum nulat iaculis etsimun vitae etsum nisle varius netsum.</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services red">
<h3>Brand Awareness</h3>
<p>Curabitur quam etsum lacus net netsum nulat iaculis etsimun vitae etsum nisle varius netsum.</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services yellow">
<h3>Graphic Design</h3>
<p>Curabitur quam etsum lacus net netsum nulat iaculis etsimun vitae etsum nisle varius netsum.</p>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</div>
<!--end services-wrapper -->
</section>
<!--end section-white -->
<!--begin team section -->
<section class="section-white" id="team">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center">
<h2 class="section-title">Meet Our Team</h2>
<p class="section-subtitle">Discover more about our high performing team.</p>
</div>
<!--end col-md-12 -->
<!--begin team-item -->
<div class="col-sm-12 col-md-4 text-center margin-top-30">
<img src="https://images.unsplash.com/photo-1506863530036-1efeddceb993?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1044&q=80" class="team-img green width-100" alt="photo CHRISTINA">
<div class="team-item">
<b>CHRISTINA HAWKINS</b>
<div class="team-info green"><p>Head of SEO</p></div>
<p>Johnathan is our co-founder and has developed search strategies for a variety of clients for over 5 years.</p>
</div>
</div>
<!--end team-item -->
<!--begin team-item -->
<div class="col-sm-12 col-md-4 text-center margin-top-30">
<img src="https://images.unsplash.com/photo-1506863530036-1efeddceb993?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1044&q=80" class="team-img red width-100" alt="photo ANDRES">
<div class="team-item">
<b>ANDRES JOHANSON</b>
<div class="team-info red"><p>Marketing Manager</p></div>
<p>Andres fell in love with marketing at the school and looks forward to being part of the industry for years.</p>
</div>
</div>
<!--end team-item -->
<!--begin team-item -->
<div class="col-sm-12 col-md-4 text-center margin-top-30">
<img src="https://images.unsplash.com/photo-1506863530036-1efeddceb993?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1044&q=80" class="team-img yellow width-100" alt="photo ALEXANDRA">
<div class="team-item">
<b>ALEXANDRA SMITHS</b>
<div class="team-info yellow"><p>SEO Specialist</p></div>
<p>Graduating with a degree in Spanish, English and French, she has always loved writing.</p>
</div>
</div>
<!--end team-item -->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end team section-->
<!--begin section-grey -->
<section class="section-grey">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row align-items-center">
<!--begin col-md-6-->
<div class="col-md-6 padding-bottom-30">
<div class="right-dots-img margin-right-15">
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="width-100 bottom-margins-images" alt="photo team">
</div>
</div>
<!--end col-sm-6-->
<!--begin col-md-6-->
<div class="col-md-6">
<h2>Discover how we can help you to grow your business fast.</h2>
<p>Velis demo enim ipsam voluptatem quia voluptas sit aspernatur netsum lorem fugit, seditum netis velas matrix net nesciunt.</p>
<ul class="benefits">
<li><i class="fas fa-check"></i> <b>Quias netus magni</b> netsum eos qui ratione sequi.</li>
<li><i class="fas fa-check"></i> Venis ratione sequi netus <b>enim quia tempor</b> magni.</li>
<li><i class="fas fa-check"></i> Enim <b>ipsam netus</b> voluptatem quia voluptas.</li>
</ul>
<a href="#" class="btn-red small scrool">Discover More</a>
</div>
<!--end col-md-6-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end section-grey-->
<!--begin portfolio section -->
<section class="section-white" id="portfolio">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center margin-bottom-30">
<h2 class="section-title">Our Portfolio</h2>
<p class="section-subtitle">Dicover the latest projects accomplished for my clients.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin container -->
<div class="container padding-bottom-30">
<!--begin row-->
<div class="row">
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-12 p-0 m-0">
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1502945015378-0e284ca1a5be?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="width-100" alt="screenshot web agency landing page">
</figure>
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1507238691740-187a5b1d37b8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=755&q=80" class="width-100" alt="screenshot ben kolde landing page">
</figure>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 p-0 m-0">
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1526572195979-0f8a7ea44489?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80" class="width-100" alt="screenshot rucksack landing page">
</figure>
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1522542550221-31fd19575a2d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="width-100" alt="handwriting wireframe">
</figure>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 p-0 m-0">
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="width-100" alt="screenshot dashboard analitycs">
</figure>
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1481487196290-c152efe083f5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1562&q=80" class="width-100" alt="screenshot cooking website">
</figure>
<figure class="gallery-insta">
<img src="https://images.unsplash.com/photo-1562577309-4932fdd64cd1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80" class="width-100" alt="screenshot social media">
</figure>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end portfolio section -->
<!--begin section-bg-2 -->
<section class="section-bg-2">
<div class="section-bg-overlay"></div>
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col md 7 -->
<div class="col-md-7 mx-auto text-center">
<p>
<svg id="logo-21" width="74" height="60" viewBox="0 0 74 60" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24.5459 20.621C24.5459 20.4686 24.5459 18.2513 24.5459 18.2513H23.2283C23.2283 18.2513 23.2283 20.4342 23.2283 20.5031C23.2283 20.9062 22.8547 21.1766 22.2254 21.1766C21.5666 21.1766 21.2077 20.916 21.2077 20.4981C21.2077 20.4293 21.2077 18.2513 21.2077 18.2513H19.8753C19.8753 18.2513 19.8753 20.3211 19.8753 20.4981C19.8753 21.6682 20.834 22.1648 22.1713 22.1648C23.602 22.1648 24.5459 21.6633 24.5459 20.621Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M28.9833 22.1107V21.0832H26.6333V18.2513H25.3009V22.1107H28.9833Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M32.943 19.2199V18.2513H28.3363V19.2199H29.9636V22.1107H31.3107V19.2199H32.943Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M34.7143 22.1107V18.2513H33.3623V22.1107H34.7143Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M40.9172 22.1107V18.2513H39.2505L38.1984 20.567L37.1955 18.2513H35.4747V22.1107H36.7284V20.0262L37.633 22.1107H38.754L39.6684 20.0262V22.1107H40.9172Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M43.0054 21.3978H45.09L45.4293 22.1107H46.8501L44.9032 18.2513H43.3152L41.2552 22.1107H42.6465L43.0054 21.3978ZM44.6721 20.5325H43.4381L43.9248 19.6033L44.0723 19.2494L44.21 19.5984L44.6721 20.5325Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M51.029 19.2199V18.2513H46.4225V19.2199H48.0498V22.1107H49.397V19.2199H51.029Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M55.509 22.1107V21.152H52.742V20.6505H55.396V19.7115H52.742V19.2149H55.475V18.2513H51.444V22.1107H55.509Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M29.9232 24.1623H28.6498C28.6498 24.1623 27.8189 26.591 27.8189 26.65C27.8189 26.591 27.0421 24.1623 27.0421 24.1623H25.6606C25.6606 24.1623 24.8887 26.591 24.8887 26.65C24.8887 26.591 24.0529 24.1623 24.0529 24.1623H22.6222L24.0677 28.0217H25.5082C25.5082 28.0217 26.285 25.7159 26.2899 25.652C26.2948 25.7159 27.0667 28.0217 27.0667 28.0217H28.5121L29.9232 24.1623Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M31.6655 28.0217V24.1623H30.3135V28.0217H31.6655Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M36.9245 28.0217V24.1623H35.6659V26.2616L33.8124 24.1623H32.4259V28.0217H33.6944V25.8732L35.6069 28.0217H36.9245Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M42.1914 28.0217V24.1623H40.9328V26.2616L39.0793 24.1623H37.6929V28.0217H38.9613V25.8732L40.8738 28.0217H42.1914Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M47.0257 28.0217V27.063H44.2578V26.5615H46.9126V25.6225H44.2578V25.1259H46.9913V24.1623H42.9598V28.0217H47.0257Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M52.223 25.3373C52.223 24.9883 52.139 24.7375 51.962 24.5556C51.731 24.3098 51.333 24.1623 50.723 24.1623H47.6506V28.0217H48.9633V26.6599H50.158L51.117 28.0217H52.582L51.417 26.4484C51.677 26.4091 51.889 26.2518 52.026 26.065C52.149 25.8929 52.223 25.6372 52.223 25.3373ZM50.945 25.4602C50.945 25.5242 50.935 25.6028 50.9 25.6618C50.851 25.7601 50.723 25.7995 50.512 25.7995H48.9682V25.0964H50.487C50.694 25.0964 50.832 25.1308 50.9 25.2587C50.935 25.3078 50.945 25.3865 50.945 25.4602Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M25.1002 31.8187C25.1002 31.7556 25.1002 29.9328 25.1002 29.9328H24.6399C24.6399 29.9328 24.6399 31.7481 24.6399 31.789C24.6399 32.227 24.2278 32.4758 23.6338 32.4758C22.9322 32.4758 22.5869 32.2085 22.5869 31.7853C22.5869 31.7444 22.5869 29.9328 22.5869 29.9328H22.1229C22.1229 29.9328 22.1229 31.6999 22.1229 31.7704C22.1229 32.5426 22.7243 32.8841 23.6153 32.8841C24.5359 32.8841 25.1002 32.5203 25.1002 31.8187Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M28.4031 32.847V32.4201H26.3947V29.9328H25.9307V32.847H28.4031Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M31.0399 30.356V29.9328H27.9437V30.356H29.2579V32.847H29.7257V30.356H31.0399Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M34.3395 30.7569C34.3395 30.549 34.2949 30.3968 34.217 30.2743C34.0796 30.0701 33.816 29.9328 33.378 29.9328H31.4921V32.847H31.9487V31.6182H33.2777L34.0907 32.847H34.6253L33.7455 31.5402C33.9682 31.5143 34.1427 31.388 34.2355 31.2247C34.3024 31.1133 34.3395 30.95 34.3395 30.7569ZM33.8791 30.794C33.8791 30.8757 33.8606 30.976 33.8272 31.0428C33.7678 31.1504 33.6304 31.2061 33.4077 31.2098H31.9524C31.9524 31.2024 31.9524 30.3486 31.9524 30.3486H33.3223C33.6007 30.3486 33.7492 30.4154 33.8272 30.5416C33.8606 30.601 33.8791 30.7012 33.8791 30.794Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M35.6606 32.1268H37.476L37.8472 32.847H38.3447L36.8671 29.9328H36.3214L34.7956 32.847H35.2819L35.6606 32.1268ZM37.2829 31.7147H35.8611L36.4513 30.5973L36.5813 30.3263L36.7112 30.5973L37.2829 31.7147Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M43.053 32.5686C43.1681 32.4349 43.2201 32.2456 43.2201 32.0414C43.2201 31.8484 43.1644 31.6553 43.0493 31.5365C42.9342 31.4252 42.7486 31.3324 42.5444 31.3138C42.6632 31.2952 42.756 31.221 42.8191 31.143C42.9194 31.0279 42.9787 30.8423 42.9787 30.6567C42.9787 30.4599 42.9194 30.2817 42.7931 30.1592C42.6558 30.0219 42.4219 29.9328 42.0952 29.9328H40.135V32.847H42.24C42.6335 32.847 42.9082 32.7468 43.053 32.5686ZM42.4998 30.7495C42.4998 30.8794 42.459 30.9945 42.3885 31.0613C42.3179 31.1393 42.1991 31.1727 42.0729 31.1727H40.5879V30.3337H41.9875C42.1583 30.3337 42.2882 30.3671 42.3773 30.4488C42.4553 30.523 42.4998 30.6307 42.4998 30.7495ZM42.6483 32.2864C42.5555 32.3904 42.3959 32.4424 42.162 32.4424H40.5879V31.5774H42.1732C42.3885 31.5774 42.537 31.6219 42.6261 31.7073C42.7077 31.7853 42.7412 31.8855 42.7412 32.0006C42.7412 32.1194 42.7152 32.2196 42.6483 32.2864Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M46.5903 32.847V32.4201H44.3258V31.5885H46.5012V31.1653H44.3258V30.356H46.5643V29.9328H43.8728V32.847H46.5903Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M50.217 31.9857C50.217 31.5105 49.902 31.2655 49.126 31.1764C48.9957 31.1579 48.7135 31.1282 48.5613 31.1096C47.8411 31.0242 47.6221 30.9277 47.6221 30.679C47.6221 30.4377 47.8634 30.3003 48.591 30.3003C49.155 30.3003 49.445 30.4117 49.59 30.6121C49.631 30.6678 49.653 30.7347 49.664 30.7866H50.161C50.147 30.7012 50.113 30.5824 50.061 30.4859C49.861 30.1407 49.449 29.8919 48.591 29.8919C47.5664 29.8882 47.1432 30.2595 47.1432 30.7198C47.1432 31.1801 47.4736 31.414 48.3312 31.5143C48.4797 31.5328 48.7432 31.5625 48.8732 31.5774C49.538 31.659 49.746 31.7593 49.746 32.0377C49.746 32.2939 49.508 32.4795 48.7469 32.4795C48.1233 32.4795 47.7891 32.3681 47.6555 32.1528C47.6147 32.0934 47.5887 32.0006 47.585 31.9375H47.0949C47.1061 32.0711 47.1432 32.2159 47.21 32.331C47.4031 32.6837 47.856 32.8879 48.7321 32.8879C49.779 32.8879 50.217 32.55 50.217 31.9857Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M53.546 30.356V29.9328H50.45V30.356H51.764V32.847H52.232V30.356H53.546Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M20.8088 35.38C20.8088 35.083 20.7494 34.8825 20.6491 34.7303C20.5081 34.5112 20.2333 34.3962 19.7544 34.3962H17.9131V37.3104H18.3734V36.36C18.3734 36.36 19.6728 36.36 19.7359 36.36C20.1851 36.3563 20.4932 36.2524 20.6566 36.0148C20.7605 35.87 20.8088 35.6621 20.8088 35.38ZM20.341 35.38C20.341 35.5284 20.3261 35.6398 20.2779 35.7141C20.1925 35.8514 20.018 35.9368 19.6579 35.9368C19.6245 35.9368 18.3734 35.9368 18.3734 35.9368V34.812H19.6728C20.0106 34.812 20.1851 34.8899 20.2779 35.0421C20.3224 35.1089 20.341 35.2315 20.341 35.38Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M24.169 37.3104V36.8835H21.9044V36.0519H24.0799V35.6287H21.9044V34.8194H24.143V34.3962H21.4515V37.3104H24.169Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M27.7104 35.2203C27.7104 35.0124 27.6659 34.8602 27.5879 34.7377C27.4505 34.5335 27.187 34.3962 26.7489 34.3962H24.863V37.3104H25.3196V36.0816H26.6487L27.4617 37.3104H27.9963L27.1164 36.0036C27.3392 35.9777 27.5137 35.8514 27.6065 35.6881C27.6733 35.5767 27.7104 35.4134 27.7104 35.2203ZM27.2501 35.2574C27.2501 35.3391 27.2315 35.4394 27.1981 35.5062C27.1387 35.6138 27.0013 35.6695 26.7786 35.6732H25.3233C25.3233 35.6658 25.3233 34.812 25.3233 34.812H26.6932C26.9716 34.812 27.1201 34.8788 27.1981 35.005C27.2315 35.0644 27.2501 35.1646 27.2501 35.2574Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M31.1522 34.8194V34.3962H28.5609V37.3104H29.0212V36.0705H31.0557V35.6361H29.0212V34.8194H31.1522Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M33.2651 34.3442C32.6451 34.3442 32.2182 34.4964 31.9137 34.8157C31.6576 35.0644 31.5462 35.4097 31.5462 35.844C31.5462 36.3192 31.691 36.6756 31.9583 36.9169C32.2442 37.2028 32.6822 37.3512 33.2651 37.3512C33.8665 37.3512 34.3342 37.2028 34.6127 36.902C34.854 36.657 34.9802 36.3081 34.9802 35.8403C34.9802 35.3874 34.8725 35.0421 34.6164 34.7971C34.3231 34.4927 33.885 34.3442 33.2651 34.3442ZM33.2651 36.9355C32.8567 36.9355 32.5671 36.8464 32.3481 36.6682C32.1254 36.4863 32.0177 36.2078 32.0177 35.8514C32.0177 35.5173 32.1105 35.2389 32.2887 35.0718C32.4929 34.8788 32.8047 34.7637 33.2614 34.7637C33.7328 34.7637 34.0261 34.8751 34.2451 35.0681C34.4308 35.2315 34.5124 35.521 34.5124 35.8477C34.5124 36.1781 34.4271 36.4603 34.2377 36.631C34.0187 36.8352 33.7106 36.9355 33.2651 36.9355Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M38.4634 35.2203C38.4634 35.0124 38.4188 34.8602 38.3409 34.7377C38.2035 34.5335 37.9399 34.3962 37.5019 34.3962H35.616V37.3104H36.0726V36.0816H37.4016L38.2147 37.3104H38.7492L37.8694 36.0036C38.0921 35.9777 38.2666 35.8514 38.3594 35.6881C38.4263 35.5767 38.4634 35.4134 38.4634 35.2203ZM38.003 35.2574C38.003 35.3391 37.9845 35.4394 37.9511 35.5062C37.8917 35.6138 37.7543 35.6695 37.5316 35.6732H36.0763C36.0763 35.6658 36.0763 34.812 36.0763 34.812H37.4462C37.7246 34.812 37.8731 34.8788 37.9511 35.005C37.9845 35.0644 38.003 35.1646 38.003 35.2574Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M42.9038 37.3104V34.3962H42.3024L41.1033 36.7944L39.9264 34.3962H39.3139V37.3104H39.7557V35.0681L40.8545 37.3104H41.3371L42.462 35.0681V37.3104H42.9038Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M44.2075 36.5902H46.0229L46.3941 37.3104H46.8916L45.414 34.3962H44.8683L43.3425 37.3104H43.8288L44.2075 36.5902ZM45.8298 36.1781H44.408L44.9982 35.0607L45.1282 34.7897L45.2581 35.0607L45.8298 36.1781Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M50.236 37.3104V34.3962H49.794V36.6607L47.864 34.3962H47.3405V37.3104H47.7897V35.031L49.735 37.3104H50.236Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M54.241 36.2227H53.758C53.743 36.3563 53.691 36.49 53.598 36.5902C53.398 36.8241 53.079 36.9243 52.589 36.9243C52.177 36.9243 51.735 36.8092 51.523 36.5085C51.412 36.3675 51.341 36.1596 51.341 35.8477C51.341 35.5693 51.39 35.3614 51.497 35.2203C51.675 34.9345 52.05 34.786 52.578 34.786C53.09 34.786 53.413 34.927 53.584 35.1238C53.68 35.2277 53.736 35.3503 53.754 35.495H54.237C54.222 35.3317 54.17 35.1386 54.059 34.9753C53.821 34.6226 53.383 34.3442 52.581 34.3442C51.817 34.3442 51.36 34.5892 51.107 34.9567C50.944 35.1683 50.862 35.4653 50.862 35.844C50.862 36.2672 50.963 36.5791 51.137 36.7981C51.39 37.1434 51.876 37.3512 52.611 37.3512C53.365 37.3512 53.814 37.1248 54.037 36.7647C54.163 36.5902 54.226 36.3823 54.241 36.2227Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M57.563 37.3104V36.8835H55.298V36.0519H57.474V35.6287H55.298V34.8194H57.537V34.3962H54.845V37.3104H57.563Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M23.6118 40.2054L24.167 41.9142H25.9637L24.5102 42.9703L25.0654 44.679L23.6118 43.623L22.1582 44.679L22.7135 42.9703L21.2599 41.9142H23.0566L23.6118 40.2054Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M30.0214 40.2055L30.5879 41.9142H32.4213L30.9381 42.9703L31.5046 44.6791L30.0214 43.623L28.5382 44.6791L29.1047 42.9703L27.6215 41.9142H29.4549L30.0214 40.2055Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M36.3803 40.2055L36.9469 41.9142H38.7802L37.297 42.9703L37.8636 44.6791L36.3803 43.623L34.8971 44.6791L35.4636 42.9703L33.9804 41.9142H35.8138L36.3803 40.2055Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M42.7394 40.2055L43.3059 41.9142H45.1393L43.6561 42.9703L44.2226 44.6791L42.7394 43.623L41.2562 44.6791L41.8227 42.9703L40.3395 41.9142H42.1729L42.7394 40.2055Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M49.149 40.2055L49.704 41.9142H51.501L50.047 42.9703L50.602 44.6791L49.149 43.623L47.6953 44.6791L48.2506 42.9703L46.797 41.9142H48.5937L49.149 40.2055Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M26.726 11.3762L27.1458 12.6682H28.5043L27.4053 13.4667L27.8251 14.7586L26.726 13.9602L25.627 14.7586L26.0468 13.4667L24.9478 12.6682H26.3063L26.726 11.3762Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M31.5723 11.3744L32.0007 12.6664H33.3868L32.2654 13.4649L32.6937 14.7568L31.5723 13.9583L30.4508 14.7568L30.8792 13.4649L29.7577 12.6664H31.1439L31.5723 11.3744Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M36.3801 11.3744L36.8084 12.6664H38.1946L37.0732 13.4649L37.5015 14.7568L36.3801 13.9583L35.2586 14.7568L35.687 13.4649L34.5655 12.6664H35.9517L36.3801 11.3744Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M41.1886 11.3744L41.6169 12.6664H43.0031L41.8817 13.4649L42.31 14.7568L41.1886 13.9583L40.0671 14.7568L40.4955 13.4649L39.374 12.6664H40.7602L41.1886 11.3744Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M46.0341 11.3744L46.4539 12.6664H47.8124L46.7134 13.4649L47.1332 14.7568L46.0341 13.9583L44.9351 14.7568L45.3549 13.4649L44.2559 12.6664H45.6143L46.0341 11.3744Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M7.3764 34.6304C5.5238 23.0395 10.9306 11.5717 21.7547 6.6471L21.8546 6.8667C11.1394 11.7417 5.7773 23.0973 7.6146 34.5923C9.6473 47.3096 19.9067 54.9366 32.4702 55.3043L32.4631 55.5455C19.8017 55.1749 9.43 47.4789 7.3764 34.6304Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M19.4078 9.6052C17.4075 9.6508 15.0664 10.7788 13.685 12.4172C14.7928 13.4459 16.5752 13.0656 17.8579 12.8552C19.6886 12.555 21.6354 11.9734 23.3629 11.1501C22.6526 9.6381 20.7392 9.5749 19.4078 9.6052Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M17.8347 7.1376C16.6499 8.9832 15.2379 10.8175 13.7013 12.4328C12.4157 11.226 13.1917 9.2177 13.7164 7.9688C14.6669 5.7058 16.9458 3.7543 19.3283 2.7558C19.9822 4.2435 18.5619 6.0048 17.8347 7.1376Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M13.6194 14.7807C11.7464 15.4465 10.1369 17.3207 9.3288 19.2023C10.6756 19.8285 12.2067 18.9242 13.3268 18.3221C14.8648 17.4953 16.4339 16.3545 17.6685 15.0343C16.553 13.8573 14.8592 14.3401 13.6194 14.7807Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M11.349 12.9365C10.939 15.0415 10.2516 17.2233 9.3488 19.2119C7.773 18.4687 7.833 16.3401 7.9005 14.9855C8.0157 12.6734 9.3092 10.0368 11.1101 8.3612C12.2126 9.5432 11.6102 11.5956 11.349 12.9365Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M10.0155 21.4625C8.4548 22.6937 7.5088 24.9754 7.2897 27.0129C8.7661 27.1824 9.9462 25.8388 10.8243 24.917C12.0198 23.6619 13.1515 22.0877 13.8702 20.4408C12.4628 19.673 11.0321 20.6605 10.0155 21.4625Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M7.3115 20.4231C7.5898 22.5488 7.5904 24.8485 7.312 27.0157C5.595 26.8048 5.0255 24.7432 4.6891 23.4499C4.1083 21.2175 4.4977 18.3339 5.6291 16.1637C7.043 16.9464 7.1337 19.0644 7.3115 20.4231Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M8.7907 28.756C7.5557 30.5651 7.1214 33.4002 7.6768 35.679C9.3088 35.2926 10.1178 33.4449 10.7674 32.14C11.6307 30.4057 12.3604 28.3824 12.6216 26.3973C10.8515 26.0289 9.6042 27.5642 8.7907 28.756Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M5.5487 28.5731C6.5109 30.8008 7.2618 33.2527 7.7012 35.6735C5.8295 36.0756 4.4824 34.1102 3.6998 32.807C2.3065 30.4872 1.9006 27.2713 2.411 24.4961C4.1241 24.8396 4.9624 27.2161 5.5487 28.5731Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M9.6546 36.6271C8.9915 38.8217 9.4524 41.8052 10.795 43.8684C12.2704 42.9078 12.4746 40.7936 12.6837 39.2777C12.9594 37.2773 13.0892 35.0613 12.7467 32.987C10.8596 33.2279 10.0975 35.161 9.6546 36.6271Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M6.3752 37.5666C8.0308 39.4663 9.558 41.6323 10.8175 43.8542C9.1093 44.9206 7.1048 43.4637 5.8891 42.4327C3.7324 40.6038 2.332 37.4953 2 34.5647C3.7948 34.3235 5.3765 36.4205 6.3752 37.5666Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M13.1341 44.0967C13.2764 46.6512 14.9395 49.3317 17.1539 50.8574C18.2233 49.3933 17.553 47.15 17.1882 45.5841C16.6971 43.4758 16.0174 41.2804 15.0073 39.3324C13.2459 40.2632 13.0404 42.4144 13.1341 44.0967Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M10.1558 46.2545C12.5549 47.5876 14.9471 49.1607 17.1713 50.8346C15.8393 52.5886 13.1769 51.8892 11.5265 51.3254C8.6181 50.3319 6.0252 47.7129 4.6709 44.8032C6.388 43.9187 8.7386 45.467 10.1558 46.2545Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M19.9669 50.3374C21.4068 52.9652 24.6881 54.6795 27.7781 55.0922C28.1107 53.1818 26.0436 51.2903 24.9172 50.0529C23.3135 48.2912 21.6424 46.463 19.7688 44.9398C18.3651 46.5696 19.1072 48.7685 19.9669 50.3374Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M17.9105 53.6678C21.1836 54.0081 24.5122 54.498 27.7834 55.0629C27.4711 57.4733 23.646 57.8623 21.9095 58.0046C18.349 58.2964 14.3882 56.8652 11.6303 54.4558C13.0001 52.844 16.167 53.4866 17.9105 53.6678Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M24.2149 4.624C22.0174 5.2509 19.4452 6.4402 18.1745 8.6356C20.481 8.3842 22.7479 7.5635 24.9648 6.9382C27.448 6.2377 30.0627 5.7138 32.4669 4.7469C29.8339 3.6935 26.7301 3.9064 24.2149 4.624Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M66.728 34.5923C68.565 23.0973 63.203 11.7419 52.488 6.8667L52.588 6.6471C63.412 11.5718 68.819 23.0395 66.966 34.6304C64.913 47.4789 54.541 55.1749 41.8796 55.5455L41.8726 55.3043C54.436 54.9366 64.695 47.3096 66.728 34.5923Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M54.935 9.6052C56.935 9.6508 59.276 10.7788 60.658 12.4172C59.55 13.4459 57.767 13.0656 56.485 12.8552C54.654 12.555 52.707 11.9734 50.98 11.1501C51.69 9.6381 53.603 9.5749 54.935 9.6052Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M56.508 7.1376C57.693 8.9832 59.105 10.8175 60.641 12.4328C61.927 11.226 61.151 9.2177 60.626 7.9688C59.676 5.7058 57.397 3.7543 55.014 2.7558C54.36 4.2435 55.781 6.0048 56.508 7.1376Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M60.724 14.7807C62.597 15.4465 64.206 17.3207 65.014 19.2023C63.667 19.8285 62.136 18.9242 61.016 18.3221C59.478 17.4953 57.909 16.3545 56.675 15.0343C57.79 13.8573 59.484 14.3401 60.724 14.7807Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M62.994 12.9365C63.404 15.0415 64.091 17.2233 64.994 19.2119C66.57 18.4687 66.51 16.3401 66.442 14.9855C66.327 12.6734 65.034 10.0368 63.233 8.3612C62.13 9.5432 62.733 11.5956 62.994 12.9365Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M64.327 21.4625C65.888 22.6937 66.834 24.9754 67.053 27.0129C65.577 27.1824 64.397 25.8388 63.519 24.917C62.323 23.6619 61.191 22.0877 60.473 20.4408C61.88 19.673 63.311 20.6605 64.327 21.4625Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M67.032 20.4231C66.753 22.5486 66.753 24.8485 67.031 27.0157C68.748 26.8048 69.318 24.7432 69.654 23.4499C70.235 21.2175 69.845 18.3339 68.714 16.1637C67.3 16.9464 67.209 19.0644 67.032 20.4231Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M65.552 28.756C66.787 30.5651 67.221 33.4002 66.666 35.679C65.034 35.2926 64.225 33.445 63.575 32.14C62.712 30.4057 61.982 28.3824 61.721 26.3973C63.491 26.0289 64.739 27.5642 65.552 28.756Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M68.794 28.5731C67.832 30.8008 67.081 33.2527 66.642 35.6735C68.513 36.0756 69.86 34.1102 70.643 32.807C72.036 30.4872 72.442 27.2713 71.932 24.4961C70.219 24.8396 69.38 27.2161 68.794 28.5731Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M64.688 36.6271C65.351 38.8217 64.891 41.8052 63.548 43.8684C62.073 42.9078 61.868 40.7936 61.659 39.2777C61.384 37.2773 61.254 35.0613 61.596 32.987C63.483 33.2279 64.245 35.161 64.688 36.6271Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M67.967 37.5666C66.312 39.4664 64.785 41.6323 63.525 43.8542C65.233 44.9206 67.238 43.4637 68.454 42.4327C70.61 40.6038 72.011 37.4953 72.343 34.5647C70.548 34.3235 68.966 36.4205 67.967 37.5666Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M61.208 44.0967C61.066 46.6512 59.403 49.3317 57.189 50.8574C56.119 49.3933 56.79 47.1501 57.154 45.5841C57.645 43.4758 58.325 41.2804 59.335 39.3324C61.097 40.2632 61.302 42.4144 61.208 44.0967Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M64.187 46.2545C61.788 47.5876 59.396 49.1607 57.172 50.8346C58.504 52.5886 61.166 51.8892 62.816 51.3254C65.725 50.3319 68.318 47.7129 69.672 44.8032C67.955 43.9187 65.604 45.467 64.187 46.2545Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M54.376 50.3374C52.936 52.9652 49.655 54.6795 46.5646 55.0922C46.232 53.1818 48.299 51.2903 49.426 50.0529C51.029 48.2912 52.7 46.463 54.574 44.9398C55.978 46.5696 55.235 48.7685 54.376 50.3374Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M56.432 53.6678C53.159 54.0081 49.831 54.498 46.5592 55.0629C46.8716 57.4733 50.697 57.8623 52.433 58.0046C55.994 58.2964 59.955 56.8652 62.712 54.4558C61.343 52.844 58.176 53.4866 56.432 53.6678Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M50.128 4.624C52.325 5.2509 54.898 6.4402 56.168 8.6356C53.862 8.3842 51.595 7.5635 49.378 6.9382C46.8948 6.2377 44.2801 5.7138 41.8759 4.7469C44.509 3.6935 47.6127 3.9064 50.128 4.624Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M38.6004 3.4879L37.4729 1L36.3666 3.4416L33.7937 1.8464L35.447 5.3207H39.5586L41.1522 1.8464L38.6004 3.4879Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M39.5322 5.8606H35.4141V6.4683H39.5322V5.8606Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> <path d="M37.7674 52.8718L38.431 54.914H40.5783L38.8411 56.1761L39.5046 58.2183L37.7674 56.9562L36.0302 58.2183L36.6938 56.1761L34.9566 54.914H37.1039L37.7674 52.8718Z" class="ccustom" fill="#ffffff" stop-color="#ffffff"></path> </svg>
</p>
<h2 class="white-text">Award-Winning Agency</h2>
<p class="white-text">Utise wisi enim minim veniam, quis et stationes ullamcorper nets suscipit ets lobotis nisle consequat nihis etim aspernatur netsum.</p>
<a href="#" class="btn-white small scrool">Discover More</a>
<a href="#" class="btn-white-border small scrool">Get In Touch</a>
</div>
<!--end col md 7-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end section-bg-2 -->
<!--begin features section -->
<section class="section-white" id="features">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title">Amazing Features</h2>
<p class="section-subtitle">Quis autem velis ets reprehender net etid quiste voluptate.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
<!--begin row -->
<div class="row">
<!--begin col-md-4-->
<div class="col-md-4">
<div class="feature-box light-green">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M191.1 224c0-17.72-14.34-32.04-32-32.04L144 192c-35.34 0-64 28.66-64 64.08v47.79C80 339.3 108.7 368 144 368H160c17.66 0 32-14.36 32-32.06L191.1 224zM256 0C112.9 0 4.583 119.1 .0208 256L0 296C0 309.3 10.75 320 23.1 320S48 309.3 48 296V256c0-114.7 93.34-207.8 208-207.8C370.7 48.2 464 141.3 464 256v144c0 22.09-17.91 40-40 40h-110.7C305 425.7 289.7 416 272 416H241.8c-23.21 0-44.5 15.69-48.87 38.49C187 485.2 210.4 512 239.1 512H272c17.72 0 33.03-9.711 41.34-24H424c48.6 0 88-39.4 88-88V256C507.4 119.1 399.1 0 256 0zM368 368c35.34 0 64-28.7 64-64.13V256.1C432 220.7 403.3 192 368 192l-16 0c-17.66 0-32 14.34-32 32.04L320 335.9C320 353.7 334.3 368 352 368H368z"/></svg>
<div class="feature-box-text">
<h3>Support 24/7</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4">
<div class="feature-box light-blue">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M319.9 320c57.41 0 103.1-46.56 103.1-104c0-57.44-46.54-104-103.1-104c-57.41 0-103.1 46.56-103.1 104C215.9 273.4 262.5 320 319.9 320zM369.9 352H270.1C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h327.2C499.3 512 512 500.1 512 485.3C512 411.7 448.4 352 369.9 352zM512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM183.9 216c0-5.449 .9824-10.63 1.609-15.91C174.6 194.1 162.6 192 149.9 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C196.7 280.2 183.9 249.7 183.9 216zM128 160c44.18 0 80-35.82 80-80S172.2 0 128 0C83.82 0 48 35.82 48 80S83.82 160 128 160zM551.9 192h-61.84c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 33.71-12.78 64.21-33.16 88h199.7C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192z"/></svg>
<div class="feature-box-text">
<h3>User Friendly</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md 4-->
<div class="col-md-4">
<div class="feature-box orange">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M256 32V51.2C329 66.03 384 130.6 384 208V226.8C384 273.9 401.3 319.2 432.5 354.4L439.9 362.7C448.3 372.2 450.4 385.6 445.2 397.1C440 408.6 428.6 416 416 416H32C19.4 416 7.971 408.6 2.809 397.1C-2.353 385.6-.2883 372.2 8.084 362.7L15.5 354.4C46.74 319.2 64 273.9 64 226.8V208C64 130.6 118.1 66.03 192 51.2V32C192 14.33 206.3 0 224 0C241.7 0 256 14.33 256 32H256zM224 512C207 512 190.7 505.3 178.7 493.3C166.7 481.3 160 464.1 160 448H288C288 464.1 281.3 481.3 269.3 493.3C257.3 505.3 240.1 512 224 512z"/></svg>
<div class="feature-box-text">
<h3>Notifications</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
<!--begin row -->
<div class="row">
<!--begin col-md-4-->
<div class="col-md-4">
<div class="feature-box dark-blue">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M152 0H154.2C186.1 0 215.7 16.91 231.9 44.45L256 85.46L280.1 44.45C296.3 16.91 325.9 0 357.8 0H360C408.6 0 448 39.4 448 88C448 102.4 444.5 115.1 438.4 128H480C497.7 128 512 142.3 512 160V224C512 241.7 497.7 256 480 256H32C14.33 256 0 241.7 0 224V160C0 142.3 14.33 128 32 128H73.6C67.46 115.1 64 102.4 64 88C64 39.4 103.4 0 152 0zM190.5 68.78C182.9 55.91 169.1 48 154.2 48H152C129.9 48 112 65.91 112 88C112 110.1 129.9 128 152 128H225.3L190.5 68.78zM360 48H357.8C342.9 48 329.1 55.91 321.5 68.78L286.7 128H360C382.1 128 400 110.1 400 88C400 65.91 382.1 48 360 48V48zM32 288H224V512H80C53.49 512 32 490.5 32 464V288zM288 512V288H480V464C480 490.5 458.5 512 432 512H288z"/></svg>
<div class="feature-box-text">
<h3>Accesibility</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4">
<div class="feature-box light-red">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M400 96L399.1 96.66C394.7 96.22 389.4 96 384 96H256C239.5 96 223.5 98.08 208.2 102C208.1 100 208 98.02 208 96C208 42.98 250.1 0 304 0C357 0 400 42.98 400 96zM384 128C387.5 128 390.1 128.1 394.4 128.3C398.7 128.6 402.9 129 407 129.6C424.6 109.1 450.8 96 480 96H512L493.2 171.1C509.1 185.9 521.9 203.9 530.7 224H544C561.7 224 576 238.3 576 256V352C576 369.7 561.7 384 544 384H512C502.9 396.1 492.1 406.9 480 416V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H256V480C256 497.7 241.7 512 224 512H192C174.3 512 160 497.7 160 480V416C125.1 389.8 101.3 349.8 96.79 304H68C30.44 304 0 273.6 0 236C0 198.4 30.44 168 68 168H72C85.25 168 96 178.7 96 192C96 205.3 85.25 216 72 216H68C56.95 216 48 224.1 48 236C48 247 56.95 256 68 256H99.2C111.3 196.2 156.9 148.5 215.5 133.2C228.4 129.8 241.1 128 256 128H384zM424 240C410.7 240 400 250.7 400 264C400 277.3 410.7 288 424 288C437.3 288 448 277.3 448 264C448 250.7 437.3 240 424 240z"/></svg>
<div class="feature-box-text">
<h3>Cost Control</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4">
<div class="feature-box dark-green">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M416 176C416 78.8 322.9 0 208 0S0 78.8 0 176c0 39.57 15.62 75.96 41.67 105.4c-16.39 32.76-39.23 57.32-39.59 57.68c-2.1 2.205-2.67 5.475-1.441 8.354C1.9 350.3 4.602 352 7.66 352c38.35 0 70.76-11.12 95.74-24.04C134.2 343.1 169.8 352 208 352C322.9 352 416 273.2 416 176zM599.6 443.7C624.8 413.9 640 376.6 640 336C640 238.8 554 160 448 160c-.3145 0-.6191 .041-.9336 .043C447.5 165.3 448 170.6 448 176c0 98.62-79.68 181.2-186.1 202.5C282.7 455.1 357.1 512 448 512c33.69 0 65.32-8.008 92.85-21.98C565.2 502 596.1 512 632.3 512c3.059 0 5.76-1.725 7.02-4.605c1.229-2.879 .6582-6.148-1.441-8.354C637.6 498.7 615.9 475.3 599.6 443.7z"/></svg>
<div class="feature-box-text">
<h3>Chat With Friends</h3>
<p>Utise wisi enim minim veniam, quis tation ullamcorper suscipit et loboti nisl consequat nihis.</p>
</div>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end features section -->
<!--begin pricing section -->
<section class="section-grey" id="pricing">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row align-items-center">
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-12">
<h2>Great pricing plans tailored to your business.</h2>
<p>Quis autem velis ets reprehender net etid quiste nets voluptate utised etum nets.</p>
<!--begin row-->
<div class="row">
<!--begin col-md-5-->
<div class="col-md-5 col-sm-6">
<!--begin testim-platform-->
<div class="testim-platform">
<p>TrustPilot</p>
<div class="testim-rating">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" width="20px"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" width="20px"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" width="20px"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" width="20px"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" width="20px"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M288 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.995 275.8 .0131 287.1-.0391L288 439.8zM433.2 512C432.1 512.1 431 512.1 429.9 512H433.2z"/></svg> </div>
</div>
<!--end testim-platform-->
</div>
<!--end col-sm-5-->
</div>
<!--end row-->
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6">
<div class="price-box-white">
<ul class="pricing-list">
<li class="price-title">MONTHLY</li>
<li class="price-value">$19</li>
<li class="price-subtitle">Per Month</li>
<li class="price-tag"><a href="#">GET STARTED</a></li>
<li class="price-text">First two weeks free.</li>
<li class="price-text">Amazing freatures.</li>
</ul>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-6">
<div class="price-box-grey">
<ul class="pricing-list">
<li class="price-title">ANNUALY</li>
<li class="price-value">$29</li>
<li class="price-subtitle">Per Year</li>
<li class="price-tag"><a href="#">GET STARTED</a></li>
<li class="price-text">First two weeks free.</li>
<li class="price-text">Save 45% with this plan</li>
<li class="price-text">Amazing freatures.</li>
</ul>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end pricing section -->
<!--begin faq section -->
<section class="section-white" id="faq">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title">Frequently Asked Questions</h2>
<p class="section-subtitle">Quis autem velis ets reprehender net etid quiste voluptate.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
<!--begin row -->
<div class="row">
<div id="tab-example" class="tab-container">
<ul aria-controls="tab-example" role="tablist">
<li role="tab" aria-controls="tab-example_1" tabindex="0" aria-selected="true">Velit ut tortizi pretium viverra suspendisse?</li>
<li role="tab" aria-controls="tab-example_2" tabindex="0" aria-selected="false">Maecenas volutpat blandit etiam?</li>
<li role="tab" aria-controls="tab-example_3" tabindex="0" aria-selected="false">Nibh sit amet aliquam commodo?</li>
<li role="tab" aria-controls="tab-example_4" tabindex="0" aria-selected="false">Quis et stationes ullamcorper nets suscipit?</li>
</ul>
<div>
<div id="tab-example_1" role="tabpanel">
<p>
Utise wisi enim minim veniam, quis et stationes ullamcorper nets suscipit ets lobotis nisle consequat nihis etim. Quis autem velis ets reprehender net etid quiste voluptate velite esse sedis.
</p>
</div>
<div id="tab-example_2" role="tabpanel">
<p>
Aenean a augue sem. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer sollicitudin lacus dolor, sit amet auctor sem congue id. Praesent pharetra euismod facilisis. Maecenas aliquet, lorem sit amet molestie convallis, mi augue faucibus
nulla, non rutrum felis nisi sed quam. Proin luctus, enim eget congue venenatis, quam ex gravida quam, sit amet congue erat ipsum ut libero. Nam maximus elit quis nisl imperdiet, ornare faucibus nulla suscipit. Integer iaculis sagittis nulla vel
commodo. Donec laoreet commodo elementum. Integer ex eros, varius nec blandit eleifend, fermentum id dui. Suspendisse nisl nulla, laoreet et turpis id, rhoncus bibendum elit.
</p>
</div>
<div id="tab-example_3" role="tabpanel">
<p>
Suspendisse risus dui, volutpat sit amet tristique at, mattis at velit. Aenean eget tempor nunc. Sed pulvinar nisl non condimentum hendrerit. Morbi lorem magna, laoreet a porta ut, accumsan ac justo. Aliquam fermentum justo eget ante gravida posuere.
Phasellus libero dui, mollis vel sapien luctus, sodales fermentum eros. Fusce pellentesque iaculis odio vitae rutrum. In hac habitasse platea dictumst. Suspendisse mollis suscipit aliquam. Aenean a mi libero. Sed dapibus est vitae nisi auctor
maximus. Cras eu scelerisque est. Duis a vestibulum elit, auctor pretium ex. Phasellus gravida, odio quis tincidunt posuere, nibh magna sodales nunc, ac tincidunt dui sapien facilisis erat. Pellentesque habitant morbi tristique senectus et netus
et malesuada fames ac turpis egestas.
</p>
</div>
<div id="tab-example_4" role="tabpanel">
<p>
Aenean a augue sem. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer sollicitudin lacus dolor, sit amet auctor sem congue id. Praesent pharetra euismod facilisis. Maecenas aliquet, lorem sit amet molestie convallis, mi augue faucibus
nulla, non rutrum felis nisi sed quam. Proin luctus, enim eget congue venenatis, quam ex gravida quam, sit amet congue erat ipsum ut libero. Nam maximus elit quis nisl imperdiet, ornare faucibus nulla suscipit. Integer iaculis sagittis nulla vel
commodo. Donec laoreet commodo elementum. Integer ex eros, varius nec blandit eleifend, fermentum id dui. Suspendisse nisl nulla, laoreet et turpis id, rhoncus bibendum elit.
</p>
</div>
</div>
</div>
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end faq section -->
<!--begin contact section -->
<section class="section-bg-1" id="contact">
<div class="section-bg-overlay"></div>
<!--begin container-->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title white-text">Start Your Free 14-Day Trial</h2>
<p class="section-subtitle white-text">For any other inquiries please <a href="#" class="register-link">get in touch here</a> or call us <b>+12 345 678 90</b></p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
<!--begin row-->
<div class="row justify-content-md-center">
<!--begin col-md-8-->
<div class="col-md-6 text-center margin-top-10">
<!--begin register-form-wrapper-->
<div class="register-form-wrapper">
<!--begin form-->
<div>
<!--begin success message -->
<p class="register_success_box" style="display:none;">We received your message and you will hear from us soon. Thank You!</p>
<!--end success message -->
<!--begin register form -->
<form id="register-form" class="register-form register" action="" method="post">
<label for="register_names">Company Name (required):</label>
<input class="register-input name-input white-input" required="" id="register_names" name="register_names" placeholder="Company Name" type="text">
<label for="register_email">Email Adress (required)</label>
<input class="register-input name-email white-input" required="" id="register_email" name="register_email" placeholder="Email Adress" type="email">
<input value="Start Trial" class="register-submit" type="submit">
</form>
<!--end register form -->
<p class="register-form-terms white-text">Free 14-Day Trial • Money Back Guarantee</p>
</div>
<!--end form-->
</div>
<!--end register-form-wrapper-->
</div>
<!--end col-md-8-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end contact section -->
</main>
<!--begin footer -->
<footer class="footer">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-5 -->
<div class="col-md-5">
<p>© 2022 <span class="template-name">My Landing Page</span></p>