-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
studio.html
1099 lines (1072 loc) · 56.8 KB
/
studio.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" oncontextmenu="return false;">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hypercritical ✦ Studio</title>
<meta name="description" content="Contact us now" />
<meta name="keywords" content="Welcome ,Studio, view studio,uzitrake , Hypercritical" />
<meta name="author" content="uzitrake" />
<meta name="theme-color" content="#fc1234" />
<meta http-equiv="Cache-Control" content="max-age=31536000" />
<link id="browser_favicon" rel="icon" href="assets/masks/hypercritical-main-logo.png" />
<link
fetchpriority="high"
rel="preload"
href="fonts/MonumentExtended-Regular.woff"
as="font"
type="font/woff"
crossorigin
/>
<link rel="manifest" href="includes/manifest.json" />
<link fetchpriority="high" rel="preload" href="assets/images/works/Hypercritical-hero.webp" as="image" />
<link rel="stylesheet" href="css/studio.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/preloader.css" />
<link rel="stylesheet" href="css/transition.css" />
<link rel="stylesheet" href="css/multi-menu.css" />
</head>
<body>
<div id="overlay" style="transform: scale(0)"></div>
<div id="backdrop" class="backdrop"></div>
<div class="transition-in">
<div class="mid-transition-wrapper">
<div class="mid-transition">
<span class="mid-transition-text">HC</span>
<span id="loader-trans"></span>
</div>
</div>
</div>
<div class="transition-out">
<div class="mid-transition-wrapper">
<div class="mid-transition">
<span class="mid-transition-text">HC</span>
</div>
</div>
</div>
<div class="partner-modal snipedblack" id="partner-modal"></div>
<div class="sniper">
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="100% "
viewbox="0 0 170 170"
class="cursor-border snipersvg"
style="animation: auto ease 0s 1 normal none running none"
>
<path
d="M0 0 C4.34586828 -0.39507893 6.32003497 -0.45331002 10 2 C10.39507893 6.34586828 10.45331002 8.32003497 8 12 C3.65413172 12.39507893 1.67996503 12.45331002 -2 10 C-2.39507893 5.65413172 -2.45331002 3.67996503 0 0 Z "
fill="var(--main-sub)"
transform="translate(131,129)"
/>
<path
d="M0 0 C4.34586828 -0.39507893 6.32003497 -0.45331002 10 2 C10.39507893 6.34586828 10.45331002 8.32003497 8 12 C3.65413172 12.39507893 1.67996503 12.45331002 -2 10 C-2.39507893 5.65413172 -2.45331002 3.67996503 0 0 Z "
fill="var(--main-sub)"
transform="translate(31,129)"
/>
<path
d="M0 0 C4.34586828 -0.39507893 6.32003497 -0.45331002 10 2 C10.39507893 6.34586828 10.45331002 8.32003497 8 12 C3.65413172 12.39507893 1.67996503 12.45331002 -2 10 C-2.39507893 5.65413172 -2.45331002 3.67996503 0 0 Z "
fill="var(--main-sub)"
transform="translate(131,29)"
/>
<path
d="M0 0 C4.34586828 -0.39507893 6.32003497 -0.45331002 10 2 C10.39507893 6.34586828 10.45331002 8.32003497 8 12 C3.65413172 12.39507893 1.67996503 12.45331002 -2 10 C-2.39507893 5.65413172 -2.45331002 3.67996503 0 0 Z "
fill="var(--main-sub)"
transform="translate(31,29)"
/>
</svg>
</div>
<div class="nav">
<div class="padding_global nav_padding">
<div class="nav_grid">
<div class="nav_logo_parent" onclick="window.open('index')">Hypercritical</div>
<div class="est_nav">
<svg
xmlns="http://www.w3.org/2000/svg"
class="mid-moon"
height="20px"
viewBox="7.80069 -0.000757502 3.6 3.301"
>
<path
d="M 8.7375 3.3 c -0.015 0 -0.0255 -0.0075 -0.0345 -0.0135 c -0.1305 -0.075 -0.2505 -0.162 -0.36 -0.264 a 2.073 2.073 90 0 1 -0.477 -0.795 a 1.629 1.629 90 0 1 -0.06 -0.588 c 0.012 -0.1695 0.045 -0.336 0.1125 -0.495 c 0.0345 -0.081 0.075 -0.162 0.117 -0.24 a 1.623 1.623 90 0 1 0.39 -0.471 A 1.767 1.767 90 0 1 9.675 0.0015 c 0.8355 0.036 1.4895 0.609 1.6725 1.332 a 1.71 1.71 90 0 1 -0.189 1.302 a 1.7745 1.7745 90 0 1 -0.6255 0.6315 c -0.018 0.012 -0.036 0.021 -0.054 0.03 c -0.0075 -0.0075 0 -0.009 0 -0.0135 l 0.0105 -0.0105 a 1.419 1.419 90 0 0 0.2115 -0.285 a 1.1385 1.1385 90 0 0 0.111 -0.9105 a 0.99 0.99 90 0 0 -0.2025 -0.3615 a 1.236 1.236 90 0 0 -0.7005 -0.42 a 1.488 1.488 90 0 0 -0.93 0.1125 a 1.26 1.26 90 0 0 -0.5115 0.4905 c -0.0435 0.075 -0.069 0.1575 -0.09 0.24 c -0.0255 0.105 -0.039 0.2115 -0.033 0.321 c 0.009 0.171 0.057 0.333 0.135 0.486 a 1.4325 1.4325 90 0 0 0.255 0.348 c 0.003 0 0.003 0 0.0045 0.006 Z"
/>
</svg>
</div>
<link rel="stylesheet" href="css/multi-menu.css" /><svg class="hidden">
<symbol id="icon-arrow" viewBox="0 0 24 24">
<title>arrow</title>
<polygon points="6.3,12.8 20.9,12.8 20.9,11.2 6.3,11.2 10.2,7.2 9,6 3.1,12 9,18 10.2,16.8 " />
</symbol>
<symbol id="icon-drop" viewBox="0 0 24 24">
<title>drop</title>
<path
d="M12,21c-3.6,0-6.6-3-6.6-6.6C5.4,11,10.8,4,11.4,3.2C11.6,3.1,11.8,3,12,3s0.4,0.1,0.6,0.3c0.6,0.8,6.1,7.8,6.1,11.2C18.6,18.1,15.6,21,12,21zM12,4.8c-1.8,2.4-5.2,7.4-5.2,9.6c0,2.9,2.3,5.2,5.2,5.2s5.2-2.3,5.2-5.2C17.2,12.2,13.8,7.3,12,4.8z"
/>
<path
d="M12,18.2c-0.4,0-0.7-0.3-0.7-0.7s0.3-0.7,0.7-0.7c1.3,0,2.4-1.1,2.4-2.4c0-0.4,0.3-0.7,0.7-0.7c0.4,0,0.7,0.3,0.7,0.7C15.8,16.5,14.1,18.2,12,18.2z"
/>
</symbol>
<symbol id="icon-menu" viewBox="0 0 119 25">
<title>menu</title>
<path
d="M 0.053 7.899 L -0.139 0.148 L 100 0 L 100 8 L 0.148 8.186 Z Z M 0 28 L 0 20 L 71 20 L 71 28 L 0 28 Z"
/>
</symbol>
<symbol id="icon-close" viewBox="0 0 24 24">
<title>close</title>
<path
d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z"
fill-rule="nonzero"
/>
</symbol>
<symbol id="arrow-left" viewBox="0 0 21.1 13.2">
<g>
<polygon
points="6.5,12.8 0.5,6.8 0.3,6.5 0.5,6.3 6.5,0.3 7.1,0.8 1.7,6.2 20.8,6.2 20.8,6.9 1.7,6.9 7.1,12.3 "
/>
<path
d="M6.5,0l1,0.8L2.3,6h18.7v1.2H2.3l5.2,5.2l-1,0.8L0.3,7L0,6.5L6.5,0z M6.8,0.9L6.5,0.7L0.6,6.6l0.1,0.1l5.8,5.8l0.2-0.2
L1.1,6.7h19.5V6.5H1.1L6.8,0.9z"
/>
</g>
</symbol>
<symbol id="arrow-right" viewBox="0 0 21.1 13.2">
<g>
<polygon
points="14.6,0.3 20.5,6.3 20.8,6.6 20.5,6.8 14.6,12.8 13.9,12.3 19.4,6.9 0.2,6.9 0.2,6.2 19.4,6.2 13.9,0.8 "
/>
<path
d="M14.6,13.2l-1-0.8l5.2-5.2H0V6h18.7l-5.2-5.2l1-0.8l6.2,6.2l0.3,0.5L14.6,13.2z M14.3,12.3l0.2,0.2l5.9-5.9l-0.1-0.1
l-5.8-5.8l-0.2,0.2L20,6.5H0.5v0.2H20L14.3,12.3z"
/>
</g>
</symbol>
</svg>
<main>
<div class="hidcontent">
<div class="background" style="background-image: var(--website-color)"></div>
<h2 class="hidcontent__title" onclick="window.open(index)">Hypercritical</h2>
<p class="hidcontent__tagline">Hypercritical is the best experience website</p>
</div>
<nav class="menuUzi targeted">
<div class="menuUzi__item menuUzi__item--1" data-direction="bt">
<div class="menuUzi__item-inner">
<div class="mainmenuUzi">
<a href="index" class="mainmenuUzi__item transit">Home</a>
<a href="services" class="mainmenuUzi__item transit">services</a>
<a href="works" class="mainmenuUzi__item transit">Work</a>
<a href="process" class="mainmenuUzi__item transit">Process</a>
<a href="studio" class="mainmenuUzi__item transit">studio</a>
<a href="contact" class="mainmenuUzi__item transit">Contact</a>
</div>
<p class="label label--topleft label--vert-mirror">the important stuff</p>
<p class="label label--bottomright label--vert">Hypercritical studio</p>
</div>
</div>
<div class="menuUzi__item menuUzi__item--2" data-direction="lr">
<div class="menuUzi__item-inner">
<div class="menuUzi__item-map"></div>
<a href="#" class="menuUzi__item-hoverlink">Hypercritical</a>
</div>
</div>
<div class="menuUzi__item menuUzi__item--3" data-direction="bt">
<div class="menuUzi__item-inner">
<div class="sidemenuUzi">
<a href="studio" class="sidemenuUzi__item transit" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">The studio</span></a
>
<a href="privacy" class="sidemenuUzi__item transit" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">Privacy</span></a
>
<a href="terms" class="sidemenuUzi__item transit" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">Terms</span></a
>
<a href="#" class="sidemenuUzi__item" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">••••</span></a
>
<a href="login" class="sidemenuUzi__item transit" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">Enter</span></a
>
<a href="membership_signup" class="sidemenuUzi__item transit" data-cursor="-medium -exclusion"
><span class="sidemenuUzi__item-inner">Join</span></a
>
<a href="#" class="sidemenuUzi__item"><span class="sidemenuUzi__item-inner">•••</span></a>
</div>
</div>
</div>
<div class="menuUzi__item menuUzi__item--4" data-direction="rl">
<div class="menuUzi__item-inner">
<p class="label label--topleft label--line">Reach us now</p>
<a href="contact" class="menuUzi__item-link transit"
><div class="reachussvg">
<img
src="assets/svg/9.b586fa93.webp"
data-label="image"
alt="contact button 2"
class="contact-emoji"
data-label=""
/></div
></a>
<div class="yearnow">©2024</div>
</div>
</div>
<div class="menuUzi__item menuUzi__item--5" data-direction="tb">
<div class="menuUzi__item-inner">
<p class="label label--topleft label--vert-mirror">Our socials</p>
<ul class="socials-sidemenu">
<li data-cursor="-medium -exclusion">
<a class="instagram transit" target="_blank" aria-label="instagram">Instagram</a>
</li>
<li data-cursor="-medium -exclusion">
<a class="twitter transit" target="_blank" aria-label="twitter">X</a>
</li>
<li data-cursor="-medium -exclusion">
<a class="github transit" target="_blank" aria-label="github">Github</a>
</li>
<li data-cursor="-medium -exclusion">
<a class="dribble transit" target="_blank" aria-label="dribble">Dribble</a>
</li>
</ul>
</div>
</div>
<button class="action action--menuUzi" aria-label="sidemenu button open">
<div class="both-icon-menu">
<div class="menu_button_wrapper">
<div class="menu_button_line">
<div class="menu_dot menu-dot-line"></div>
<div class="menu_line menu-dot-line"></div>
</div>
<div class="menu_button_line">
<div class="menu_dot menu-dot-line"></div>
<div class="menu_line menu-dot-line"></div>
</div>
</div>
<div class="menu-name">Menu</div>
</div>
</button>
<button class="action action--close" aria-label="sidemenu button close">
<svg class="icon icon-cursor icon--close" height="12px"><use xlink:href="#icon-close"></use></svg>
</button>
</nav>
</main>
</div>
</div>
<div class="below-line"><span></span></div>
</div>
<div id="smooth-wrapper">
<div id="smooth-content">
<main>
<section class="hero-studio" data-cursor="-exclusion">
<div class="studio-name">Studio</div>
<div class="studio-mini">
<div class="expla-left">
<span> We are the leading studio in creating digital products and experiences </span>
</div>
</div>
<div class="hero-circles"></div>
<div class="below-hero">
<div class="est-hero">
<svg
height="15px"
width="15px"
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 31.955 31.955"
xml:space="preserve"
>
<g>
<path
style="fill: var(--color-bg)"
d="M27.25,4.655C20.996-1.571,10.88-1.546,4.656,4.706C-1.571,10.96-1.548,21.076,4.705,27.3
c6.256,6.226,16.374,6.203,22.597-0.051C33.526,20.995,33.505,10.878,27.25,4.655z"
></path>
<path
style="fill: var(--color-bg)"
d="M13.288,23.896l-1.768,5.207c2.567,0.829,5.331,0.886,7.926,0.17l-0.665-5.416
C17.01,24.487,15.067,24.5,13.288,23.896z M8.12,13.122l-5.645-0.859c-0.741,2.666-0.666,5.514,0.225,8.143l5.491-1.375
C7.452,17.138,7.426,15.029,8.12,13.122z M28.763,11.333l-4.965,1.675c0.798,2.106,0.716,4.468-0.247,6.522l5.351,0.672
C29.827,17.319,29.78,14.193,28.763,11.333z M11.394,2.883l1.018,5.528c2.027-0.954,4.356-1.05,6.442-0.288l1.583-5.137
C17.523,1.94,14.328,1.906,11.394,2.883z"
></path>
<circle style="fill: var(--color-bg)" cx="15.979" cy="15.977" r="6.117"></circle>
</g>
</svg>
<span class="est-year"></span>
</div>
<div class="div-svg" style="translate: none; rotate: none; scale: none; transform: translate(0px, 0px)">
<svg width="100px" height="100px" viewBox="0 0 122 122" xmlns="http://www.w3.org/2000/svg">
<g
id="uziarrow"
stroke="#000"
stroke-width="1"
fill="var(--color-bg)"
fill-rule="evenodd"
class="arrowpathx"
>
<g transform="translate(-708.000000, -686.000000)">
<g transform="translate(-80.000000, -40.000000)">
<g
transform="translate(849.000000, 787.000000) rotate(-90.000000) translate(-849.000000, -787.000000) translate(788.500000, 726.500000)"
>
<path
d="M60.3350676,121 C28.435962,121 2.30293504,96.3124824 -5.80202553e-13,65.0014602 L5.01493731,65.0009291 C7.30597108,93.5478009 31.1985233,116 60.3350676,116 C89.4716118,116 113.364164,93.5478009 115.655198,65.0009291 L120.670135,65.0014602 C118.3672,96.3124824 92.2341732,121 60.3350676,121 Z M60.3350676,0 C91.8942018,0 117.809509,24.164097 120.588405,54.9997073 L115.566015,55.0003864 C112.8048,26.9302982 89.1309815,5 60.3350676,5 C31.5391536,5 7.86533522,26.9302982 5.10412061,55.0003864 L0.0817305225,54.9997073 C2.86062643,24.164097 28.7759334,0 60.3350676,0 Z"
fill="var(--color-bg)"
fill-rule="nonzero"
class="arrow-pathy"
></path>
<path
d="M39,65.5523815 L61.5,88 L84,65.5523815 M62.0937592,87.0815576 L62.0937592,32.6920602"
stroke="var(--color-bg)"
stroke-width="5"
data-rotate="90"
fill="none"
class="arrowpathz"
></path>
</g>
</g>
</g>
</g>
</svg>
</div>
</div>
</section>
<section class="below-studio-hero">
<div class="below-studio-outer-wrapper">
<div class="below-studio-inner-wrapper">
<div class="studio-intro">
<h1 class="h1 split-text">Your creative partner for B2B brand and identity transformation.</h1>
</div>
<div class="side-innovate">
<img src="assets/svg/648b1f3d306a4f9cadfc0aca_inspiring.svg" alt="" srcset="" />
</div>
</div>
</div>
</section>
<section class="intro-story">
<div class="story-wrapper">
<div class="story-wrapper-inner snipedblack">
<div class="title-story">Our story</div>
<div class="story-right">
<div class="header"></div>
<div class="genesis-story">
<span
>Hypercritical—Studio is a creative office based Kenya. With a strong focus on modern development
& design the studio creates websites, mobile apps and brands for clients large and small across
the world
<div class="founder">
<div>Founder :</div>
<a
href=""
aria-label="designer"
class="designer"
data-status="Designer"
data-heading="Uzitrake"
data-intro="👋 Hello! I'm a developer from Kenya, deeply immersed in the tech industry. My expertise lies in Web development, UI/UX design, software development and with a broad skill set in network engineering. Eager to help, design, and tackle new challenges in the tech industry.
"
data-logo="assets/images/logos/partners/uzitrake.webp"
data-link="https://vickkie.github.io"
>
<span>uzitrake.</span>
<!-- <span class="designer-svg"
><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="none">
<path
fill="var(--color-bg)"
d="M7.74 36.752c-.552-.712-1.128-1.62-1.728-2.724-.6-1.096-1.108-2.408-1.524-3.936-.408-1.536-.612-3.312-.612-5.328 0-1.368.128-2.692.384-3.972a23.62 23.62 0 0 1 1.02-3.588c.424-1.112.88-2.088 1.368-2.928.488-.848.964-1.512 1.428-1.992l.24.276c-.24.456-.508 1.108-.804 1.956-.296.848-.58 1.828-.852 2.94a37.595 37.595 0 0 0-.684 3.54 27.292 27.292 0 0 0-.264 3.792c0 2.008.136 3.772.408 5.292.28 1.52.604 2.8.972 3.84.376 1.048.708 1.876.996 2.484l-.348.348zm35.34 0-.336-.348c.288-.608.616-1.436.984-2.484.376-1.04.7-2.32.972-3.84s.408-3.284.408-5.292c0-1.272-.088-2.536-.264-3.792a33.091 33.091 0 0 0-.684-3.54 32.253 32.253 0 0 0-.852-2.94c-.296-.848-.564-1.5-.804-1.956l.24-.276c.464.48.94 1.144 1.428 1.992.496.84.952 1.816 1.368 2.928.424 1.104.764 2.3 1.02 3.588.264 1.28.396 2.604.396 3.972 0 2.016-.208 3.792-.624 5.328-.408 1.528-.912 2.84-1.512 3.936-.6 1.104-1.18 2.012-1.74 2.724zM33.001 24.408l-4.032 3.376V25.08H17.833v-1.328h11.136v-2.736l4.032 3.392z"
/></svg
></span> -->
</a>
<style></style>
<a
id="w-node-a48ad027-07aa-8164-38c3-7175c3cabe5c-c2f7bfab"
href=""
class="button-x is-down designer"
aria-label="designer"
data-status="Designer"
data-heading="Uzitrake"
data-intro="👋 Hello! I'm a developer from Kenya, deeply immersed in the tech industry. My expertise lies in Web development, UI/UX design, software development and with a broad skill set in network engineering. Eager to help, design, and tackle new challenges in the tech industry.
"
data-logo="assets/images/logos/partners/uzitrake.webp"
data-link="https://vickkie.github.io"
><div class="arrow-block is--small" bis_skin_checked="1">
<img
src="https://cdn.prod.website-files.com/65f4c8ffbf63aa3dc2f7bfac/65f4d81a0401bc4c08320104_arrow.webp"
loading="lazy"
id="w-node-a48ad027-07aa-8164-38c3-7175c3cabe5e-c2f7bfab"
alt=""
class="arrow-icon is--small"
/>
</div>
<div class="button-line is--top-left" style="width: 0.65625px" bis_skin_checked="1"></div>
<div class="button-line is--top-right" style="width: 0.65625px" bis_skin_checked="1"></div>
<div class="button-line is--bottom-left" style="width: 0.65625px" bis_skin_checked="1"></div>
<div class="button-line is--bottom-right" style="width: 0.65625px" bis_skin_checked="1"></div>
<div class="button-line is--medium is--top"></div>
<div class="button-line is--medium is--bottom"></div
></a>
</div>
</span>
</div>
</div>
<div class="story-left">
<img src="assets/images/works/company-mask.webp" alt="" srcset="" />
</div>
</div>
<div class="story-stats" data-cursor="-exclusion">
<div class="proof-experience">
<div class="years-xp">
<span class="xp-head"></span>
<span class="xp-footer">YEARS X-PERIENCE</span>
</div>
<div class="projects-xp">
<span class="xp-head">10+</span>
<span class="xp-footer">PROFFESIONAL PROJECTS</span>
</div>
<div class="more-xp">
<span class="xp-head">3</span>
<span class="xp-footer">DESIGN AWARDS</span>
</div>
</div>
</div>
</div>
</section>
<section class="container-x main-cont">
<section class="cont m-cont-2">
<section class="cont sm-cont-21">
<p class="cont-category">Products Approval ❃</p>
<div>
<h1 class="display-1">97.5+</h1>
<div class="line"></div>
<div class="sm-cont-21__footer">
<i class="ri-lightbulb-line"></i>
</div>
</div>
<div class="campaign-cont">
<div class="campaign campaign-1 campaign-line">
<p>Based Country</p>
<div></div>
<p class="campaign-info">Kenya★</p>
</div>
<div class="campaign campaign-2 campaign-line">
<p>Working</p>
<p class="campaign-info">Worldwide</p>
</div>
<div class="campaign-3">
<div class="campaign campaign-31">
<p>Timely Delivery</p>
<p class="campaign-info progress-value">0%</p>
</div>
<div class="progress">
<div class="color"></div>
</div>
</div>
</div>
</section>
</section>
</section>
<section class="why-workus white-section" data-cursor="-exclusion">
<div class="why-workus-header">
<span> Benefits of <br />working with us </span>
</div>
<div class="why-box-wrapper">
<div class="why-box">
<div class="why-left">
<svg class="cb-svgsprite -star2"><use xlink:href="/assets/svg/svgsprites.svg#star2"></use></svg>
<p class="why-main">Budget-Friendly</p>
</div>
<div class="why-right">
<p>
We understand the importance of maximizing your resources. We offer cost-effective solutions without
compromising on quality. Our streamlined processes and efficient workflows enable us to deliver
exceptional results within your budget constraints, ensuring you get the most value for your
investment.
</p>
</div>
</div>
<div class="why-box">
<div class="why-left">
<svg class="cb-svgsprite -star2"><use xlink:href="/assets/svg/svgsprites.svg#star2"></use></svg>
<p class="why-main">Startup Support Specialists</p>
</div>
<div class="why-right">
<p>
As a startup ourselves, we understand the challenges and aspirations of budding businesses.
Hypercritical is your trusted partner on the journey to success. We provide tailored solutions
designed to accelerate your growth, from eye-catching websites that captivate your audience to
strategic guidance that helps you navigate the digital landscape.
</p>
</div>
</div>
<div class="why-box">
<div class="why-left">
<svg class="cb-svgsprite -star2 rotater">
<use xlink:href="/assets/svg/svgsprites.svg#star3"></use>
</svg>
<p class="why-main">Timezone is not a ting</p>
</div>
<div class="why-right">
<p>
Concerned on distance , timezone? Worry not. At Hypercritical, we prioritize seamless communication
and adaptability to accommodate clients across different time zones. Our team works around the clock
to ensure accessibility and responsiveness, making it easy for you to stay connected and informed
regardless of your location.
</p>
</div>
</div>
<div class="why-box">
<div class="why-left">
<svg class="cb-svgsprite -star2"><use xlink:href="/assets/svg/svgsprites.svg#star2"></use></svg>
<p class="why-main">Innovative Solutions, Every Time</p>
</div>
<div class="why-right">
<p>
Innovation is at the core of our ethos. We thrive on pushing boundaries and exploring new
technologies to deliver cutting-edge solutions. From responsive designs to interactive elements, we
infuse creativity into every project to keep you ahead of the curve.
</p>
</div>
</div>
<div class="why-box">
<div class="why-left">
<svg class="cb-svgsprite -star2"><use xlink:href="/assets/svg/svgsprites.svg#star2"></use></svg>
<p class="why-main">Reliable Support, Always</p>
</div>
<div class="why-right">
<p>
Our commitment doesn't end with the launch of your website. We provide ongoing support and
maintenance to keep your digital presence running smoothly. Whether it's troubleshooting technical
issues or implementing updates, you can count on us to be there every step of the way
</p>
</div>
</div>
</div>
<div class="why-footer magnetic-parent">
<div>
<div class="why-footer-top">making you just</div>
<div class="why-footer-bottom">
eye
<span class="eye-wrapper">
<span class="eye-el circle-radius abs-center pabs inline_block magnetic"
><span class="eye-el-inner circle-radius pabs abs-center inline_block"></span
></span>
</span>
grabbing
</div>
</div>
</div>
</section>
<div class="clientel">
<div class="clientel-head">
<div class="clientel-head-inner" data-cursor-show data-cursor-text="Visit!">Our partners</div>
</div>
<div class="clientel-body">
<span class="partner-logo" data-cursor="-blink">
<img
class="partner"
alt="vicstatelogo partner"
src="assets/images/logos/partners/fela.svg"
data-status="Our partner"
data-heading="Fela studio"
data-intro="A Toronto and Los Angeles-based production company that specializes in making cutting-edge content in the realm of music videos, commercials, documentaries and films."
data-logo="assets/images/logos/partners/fela.svg"
data-link="https://fela.tv"
/>
</span>
<span class="partner-logo" data-cursor="-blink">
<img
class="partner"
alt="vicstatelogo partner"
src="assets/images/logos/partners/noomoLogo2.svg"
data-status="Our partner"
data-heading="Noomo Agency
"
data-intro="Noomo is a boutique and award-winning
digital design agency specializing in creating interactive digital experiences, websites, applications, and
immersive experiences."
data-logo="assets/images/logos/partners/noomoLogo2.svg"
data-link="https://noomoagency.com/ "
/>
</span>
<span class="partner-logo" data-cursor="-blink">
<img
class="partner"
alt="awwwards partner"
src="assets/images/logos/partners/awards.svg"
data-status="Our partner"
data-heading="Awwwards"
data-intro="Awwwards is a prestigious
company that recognizes and promotes the best web design and development projects from around the world,
showcasing innovative and creative websites that push the boundaries of design and functionality."
data-logo="assets/images/logos/partners/awards.svg"
data-link="https://awwwards.com"
/>
</span>
<span class="partner-logo" data-cursor="-blink"
><img
class="vicstatelogo-large partner"
alt="vicstatelogo"
src="assets/images/logos/partners/Felicity.svg"
data-status="Our partner"
data-heading="Felicity"
data-intro="Felicity's clothing line, based in Kenya, embodies a unique blend of contemporary elegance and African inspiration, drawn from diverse cultural influences and the vibrant spirit of Kenya."
data-logo="assets/images/logos/partners/Felicity.svg"
data-link="https://www.facebook.com/felicitysKE/"
/></span>
<span class="partner-logo" data-cursor="-blink"
><img
class="vicstatelogo-small partner"
alt="vicstatelogo-small"
src="assets/images/logos/partners/core-water.svg"
data-status="Our partner"
data-heading="Core Water"
data-intro="Core Nutrition LLC is a company based in the United States dedicated to providing consumers with a refreshing and hydrating experience while promoting health wellness. It keeps us hydrated when working on your solutions. "
data-logo="assets/images/logos/partners/core-water.svg"
data-link="https://hydratewithcore.com/"
/></span>
<span class="partner-logo" data-cursor="-blink"
><img
alt="vicstatelogo"
class="partner"
src="assets/images/logos/partners/the37.svg"
data-status="Our partner"
data-heading="The/THIRTY7"
data-intro="The/ Thirty7 is a collective of individuals, who are passionate for visionary solutions and delivering dynamic products and brands. They recognize that implementing creative vision is a privilege shared only by those that can be ruthless in achieving goals."
data-logo="assets/images/logos/partners/the37.svg"
data-link="https://www.thethirty7.com/"
/></span>
</div>
</div>
<section class="customer-contact-wrap">
<section class="customer-says">
<div class="swiper-top">
<div class="swiper-header">
<span>Our clients says</span>
</div>
</div>
<div class="swiperx-wrapper">
<div class="before-testimonial">“</div>
<div class="swiper" data-cursor-img="assets/svg/custom-arrow.svg" data-cursor="-invisible">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="message-wrapper">
<div class="message">
<div>
I had the pleasure of collaborating with Hypercritical on a challenging web project. The
teams dedication to producing high-quality code and delivering on time is amazing, Thanks.
</div>
</div>
<div class="testimonial-bottom">
<div class="testimonial-image">
<img
src="assets/images/customers/fahaar.webp"
width="3000"
height="3000"
alt="Hypercritical customer"
loading="lazy"
data-nuxt-img=""
/>
</div>
<div class="testimonial-credits">
<div class="testimonial-name">Bahameen Fahar</div>
<div class="testimonial-company">Designer Trakexcel studio</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="message-wrapper">
<div class="message">
<div>
I stumbled upon this studio online and man, am I glad I did! They whipped up a killer
website for me that's getting loads of compliments. Super easy to work with, too. Big thumbs
up from this happy customer!
</div>
</div>
<div class="testimonial-bottom">
<div class="testimonial-image">
<img
src="assets/images/customers/mike.webp"
width="3000"
height="3000"
alt="Hypercritical customer"
loading="lazy"
data-nuxt-img=""
/>
</div>
<div class="testimonial-credits">
<div class="testimonial-name">Mike Davis</div>
<div class="testimonial-company">Fashion Stylist</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="message-wrapper">
<div class="message">
<div>
Choosing Hypercritical to develop my website was one of the best decisions I've made for my
business. The team was communicative, responsive, and incredibly skilled. The end product
exceeded my expectations, and I'm already seeing the positive impact.
</div>
</div>
<div class="testimonial-bottom">
<div class="testimonial-image">
<img
src="assets/images/customers/lucy.webp"
width="3000"
height="3000"
alt="Hypercritical customer"
loading="lazy"
data-nuxt-img=""
/>
</div>
<div class="testimonial-credits">
<div class="testimonial-name">Lucy Muthoni</div>
<div class="testimonial-company">fashion designer</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="message-wrapper">
<div class="message">
<div>
Wow, I gotta hand it to Hypercritical —they totally nailed it with my website! I was a bit
clueless about what I wanted, but they totally got my vibe and ran with it. Now I've got
this awesome site that's getting me noticed. Thanks, guys, you rock!
</div>
</div>
<div class="testimonial-bottom">
<div class="testimonial-image">
<img
src="assets/images/customers/romynul-1.webp"
width="3000"
height="3000"
alt="Hypercritical customer"
loading="lazy"
data-nuxt-img=""
/>
</div>
<div class="testimonial-credits">
<div class="testimonial-name">Romynul Shuvo</div>
<div class="testimonial-company">Tattoo artist</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="message-wrapper">
<div class="message">
<span>
I had the pleasure of collaborating with Hypercritical on a challenging web project. The
teams dedication to producing high-quality code and maintaining best practices is
exceptional.
</span>
</div>
<div class="testimonial-bottom">
<div class="testimonial-image">
<img
src="assets/images/customers/alex.avif"
width="3000"
height="3000"
alt="Hypercritical customer"
loading="lazy"
data-nuxt-img=""
/>
</div>
<div class="testimonial-credits">
<div class="testimonial-name">Alexandrie Leclerc</div>
<div class="testimonial-company">Upcoming artist</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="after-testimonial">”</div>
</div>
</section>
<div class="customer-contact">
<div class="contact-intro">
<div style="display: flex; flex-wrap: wrap">
<span>Innovative?</span>
<span>So are we.</span>
</div>
</div>
<div class="contact-boxes-wrapper">
<div class="contact-box">
<a href="contact" class="transit">
<div class="h4">Im looking to build a website</div>
<div class="contact-image">
<span class="image-wrap-box"
><img
alt="New idea?contact-us."
src="assets/images/32x-comp.jpg"
decoding="async"
data-nimg="fill"
class="Img_Img__73sGi"
/>
</span>
</div>
</a>
<div class="Trake_tile_button">
<a href="contact">
<button class="Button_Button__vVAZK button" title="View">
<span>
<div class="Button_ArrowCont__WrhN_">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
<div class="Button_Arrow__LawjV">
<svg
width="31"
height="28"
viewBox="0 0 31 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.857198 13.7372L27.9141 13.7372"
stroke="var(--color-black)"
stroke-width="3"
></path>
<path
d="M15.4561 1.39417L27.9142 13.8522L15.4561 26.3104"
stroke="var(--color-black)"
stroke-width="3"
></path>
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
</div>
</span>
</button>
</a>
</div>
</div>
<div class="contact-box">
<a href="contact" class="transit" aria-label="contact">
<div class="h4">I have a inquiry</div>
<div class="contact-image">
<span class="image-wrap-box"
><img
alt="Web design mockup."
src="assets/images/2JF5R14-scaled-1.webp"
decoding="async"
data-nimg="fill"
class="Img_Img__73sGi"
/>
</span>
</div>
</a>
<div class="Trake_tile_button">
<a href="contact">
<button class="Button_Button__vVAZK button" title="View">
<span>
<div class="Button_ArrowCont__WrhN_">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
<div class="Button_Arrow__LawjV">
<svg
width="31"
height="28"
viewBox="0 0 31 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.857198 13.7372L27.9141 13.7372"
stroke="var(--color-black)"
stroke-width="3"
></path>
<path
d="M15.4561 1.39417L27.9142 13.8522L15.4561 26.3104"
stroke="var(--color-black)"
stroke-width="3"
></path>
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
</div>
</span>
</button>
</a>
</div>
</div>
<div class="contact-box">
<a href="contact" class="transit" aria-label="to contact">
<div class="h4">I have an idea</div>
<div class="contact-image">
<span class="image-wrap-box"
><img
alt="Great pick idea"
src="assets/images/matter-hypercritical.avif"
decoding="async"
data-nimg="fill"
class="Img_Img__73sGi"
/>
</span>
</div>
</a>
<div class="Trake_tile_button">
<a href="contact">
<button class="Button_Button__vVAZK button" title="View">
<span>
<div class="Button_ArrowCont__WrhN_">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
<div class="Button_Arrow__LawjV">
<svg
width="31"
height="28"
viewBox="0 0 31 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.857198 13.7372L27.9141 13.7372"
stroke="var(--color-black)"
stroke-width="3"
></path>
<path
d="M15.4561 1.39417L27.9142 13.8522L15.4561 26.3104"
stroke="var(--color-black)"
stroke-width="3"
></path>
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="m100,0H0v100C0,44.77,44.77,0,100,0Z" fill="var(--color-thistle)"></path>
</svg>
</div>
</span>
</button>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="footer white-section" id="footer" data-cursor="-inverse">
<div class="footer-right">
<span class="large-h">H</span> <span class="large-c">C <sup>◕</sup></span>
</div>
<div class="footer-left">
<div class="sitemap">
<div class="footer-map-header">SITEMAP</div>
<ul class="flexme">
<li><a href="home" class="footer-links transit" aria-label="home link">Home</a></li>
<li><a href="services" class="footer-links transit" aria-label="services link">Services</a></li>
<li><a href="works" class="footer-links transit" aria-label="works link">Works</a></li>
<li><a href="studio" class="footer-links transit" aria-label="works link">Studio</a></li>
<li><a href="contact" class="footer-links transit" aria-label="contact-link">Contact</a></li>
<li><a href="process" class="footer-links transit" aria-label="process-link">Process</a></li>
</ul>
</div>
<div class="office">
<div class="footer-map-header">OFFICE</div>
<ul>
<li>Nairobi, Kenya<br />Moi avenue</li>