-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
1042 lines (1000 loc) · 82.3 KB
/
about.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 name="theme-color" content="#000">
<!-- General SEO meta -->
<meta name="title" content="The Orange Yak Co. | About">
<meta name="description" content="Meet the Orange Yak team.">
<meta name="keywords"
content="Development, Design, Web Design, Web Development, Websites, Apps, Animation, Video Editing, 3D modelling">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="100 days">
<meta name="author" content="The Orange Yak Co.">
<!-- Open graph -->
<meta property="og:title" content="OYC">
<meta property="og:site_name" content="The Orange Yak Co.">
<meta property="og:url" content="https://theorangeyak.co">
<meta property="og:description"
content="The Orange Yak Co. is a one-stop solution for your organisation's online presence. From websites and apps, to animation and design, we've always got your back.">
<meta property="og:type" content="website">
<meta property="og:image" content="./assets/images/yak low res.jpeg">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>OYC | About Us</title>
<link rel="icon" type="image/png" href="assets/fav png.png">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<!-- START: Styles -->
<!-- Swiper -->
<link rel="stylesheet" href="assets/vendor/swiper/dist/css/swiper.min.css" />
<!-- Fancybox -->
<link rel="stylesheet" href="assets/vendor/fancybox/dist/jquery.fancybox.min.css" />
<!-- Themebau -->
<link rel="stylesheet" href="assets/css/themebau.min.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="assets/css/custom.css">
<!-- END: Styles -->
<!-- jQuery -->
<script src="assets/vendor/jquery/dist/jquery.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XF7RKGP884"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XF7RKGP884');
</script>
</head>
<body>
<header class="navbar navbar-top navbar-expand-lg navbar-dark s-d-nav">
<div class="container">
<a class="navbar-brand" href="index.html">The Orange Yak Co.
<!-- <img width="107" src="assets/images/logo-white.svg" alt=""> -->
</a>
<a class="navbar-toggle" href="#navbar-mobile-style-2" data-fancybox data-base-class="fancybox-navbar"
data-keyboard="false" data-auto-focus="false" data-touch="false" data-close-existing="true"
data-small-btn="false" data-toolbar="false">
<span></span>
<span></span>
<span></span>
</a>
<ul class="nav navbar-nav">
<li class="nav-item navbar-dropdown">
<a href="index.html" class="nav-link">
<span class="nav-link-name">home</span>
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 5L1 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="nav-item navbar-dropdown">
<a href="projects.html" class="nav-link">
<span class="nav-link-name">projects</span>
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 5L1 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="nav-item navbar-dropdown">
<a href="services.html" class="nav-link">
<span class="nav-link-name">services</span>
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 5L1 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="nav-item navbar-dropdown active">
<a href="about.html" class="nav-link">
<span class="nav-link-name">about us</span>
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 5L1 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="nav-item navbar-dropdown">
<a href="contact.html" class="nav-link">
<span class="nav-link-name">contact</span>
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 9L5 5L1 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</li>
</ul>
<ul class="nav nav-gap-sm navbar-nav nav-social align-items-center text-white">
<li class="nav-item">
<a href="https://linkedin.com/" class="nav-link">
<svg width="7" height="15" viewBox="0 0 10 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/" class="nav-link">
<svg width="17" height="14" viewBox="0 0 25 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://instagram.com/theorangeyakco" class="nav-link">
<svg width="15" height="15" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z"
fill="currentColor" />
</svg>
</a>
</li>
</ul>
</div>
</header>
<!-- END OF LAPTOP HEADER -->
<!-- MOBILE NAVBAR -->
<div class="navbar navbar-mobile navbar-mobile-style-2 navbar-dark" id="navbar-mobile-style-2">
<div class="shape justify-content-end">
<svg data-rellax-speed="0" width="544" height="362" viewBox="0 0 544 362" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="320.5" cy="41.5" r="320.5" fill=" #202020" />
</svg>
</div>
<div class="navbar-head">
<div class="container">
<a class="navbar-brand" href="index.html">
The Orange Yak Co.
</a>
<a class="navbar-toggle" href="#" data-fancybox-close>
<span></span>
<span></span>
<span></span>
</a>
</div>
</div>
<div class="container">
<div class="row gh-1 justify-content-center">
<div class="col-12 col-md-7 col-lg-5 col-xl-4">
<div class="navbar-body">
<ul class="nav navbar-nav navbar-nav-collapse">
<li class="nav-item navbar-collapse">
<a href="#navbarCollapseHome" class="nav-link collapsed" role="button"
data-toggle="collapse" aria-expanded="false" aria-controls="navbarCollapseHome">
<a href="index.html" class="nav-link">
<span class="nav-link-name">home</span>
<svg class="collapse-icon" width="7" height="12" viewBox="0 0 7 12" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L1 1" stroke="currentColor" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round" />
</svg></a>
</a>
</li>
<li class="nav-item navbar-collapse">
<a href="#navbarCollapseProjects" class="nav-link collapsed" role="button"
data-toggle="collapse" aria-expanded="false" aria-controls="navbarCollapseProjects">
<a href="projects.html" class="nav-link">
<span class="nav-link-name">projects</span>
<svg class="collapse-icon" width="7" height="12" viewBox="0 0 7 12" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L1 1" stroke="currentColor" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round" />
</svg></a>
</a>
</li>
<li class="nav-item navbar-collapse">
<a href="#navbarCollapsePages" class="nav-link collapsed" role="button"
data-toggle="collapse" aria-expanded="false" aria-controls="navbarCollapsePages">
<a href="services.html" class="nav-link">
<span class="nav-link-name">services</span>
<svg class="collapse-icon" width="7" height="12" viewBox="0 0 7 12" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L1 1" stroke="currentColor" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round" />
</svg></a>
</a>
</li>
<li class="nav-item navbar-collapse active">
<a href="#navbarCollapseContact" class="nav-link collapsed" role="button"
data-toggle="collapse" aria-expanded="false" aria-controls="navbarCollapseContact">
<a href="about.html" class="nav-link">
<span class="nav-link-name">about us</span>
<svg class="collapse-icon" width="7" height="12" viewBox="0 0 7 12" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L1 1" stroke="currentColor" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round" />
</svg></a>
</a>
</li>
<li class="nav-item navbar-collapse">
<a href="#navbarCollapseContact" class="nav-link collapsed" role="button"
data-toggle="collapse" aria-expanded="false" aria-controls="navbarCollapseContact">
<a href="contact.html" class="nav-link">
<span class="nav-link-name">contact</span>
<svg class="collapse-icon" width="7" height="12" viewBox="0 0 7 12" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L1 1" stroke="currentColor" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round" />
</svg></a>
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-1 d-none d-md-block"></div>
<div class="col-12 col-md-4 col-lg-4 col-xl-3">
<div class="navbar-footer">
<div class="mb-60 text-white">
<p class="lead mb-17 font-weight-medium">Contact info:</p>
<ul class="list-group borderless font-size-17">
<li class="list-group-item">Email: <a
href="mailto:[email protected]?subject=Test%20Address%20Email"
class=text-white>[email protected]</a></li>
<li class="list-group-item">Phone: <a href="callto:+91 99102-31328" class=text-white>+91
99102-31328</a></li>
</ul>
</div>
<div class="mb-60 text-white">
<p class="lead mb-17 font-weight-medium">Address:</p>
<ul class="list-group borderless font-size-17">
<li class="list-group-item">TATA Raisina Residency,</li>
<li class="list-group-item">Gurgaon, IND 122101</li>
</ul>
</div>
<ul class="nav nav-gap-sm navbar-nav nav-social align-items-center mt-n10 text-white">
<li class="nav-item">
<a href="https://facebook.com/runwebrun" class="nav-link">
<svg width="8" viewBox="0 0 10 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/runwebrun" class="nav-link">
<svg width="20" viewBox="0 0 25 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://instagram.com/runwebrun" class="nav-link">
<svg width="18" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z"
fill="currentColor" />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- END OF MOBILE NAVBAR -->
<div class="content-wrap">
<div class="py-130 min-vh-100 d-flex align-items-center position-relative lines-style-3">
<div class="line text-white"></div>
<div class="background bg-dark">
<div class="background-image jarallax" data-jarallax data-speed="0.8">
<img src="assets/images/about/about-us.jpg" class="jarallax-img" alt="">
</div>
<div class="background-color" style="background-color: #0e0e0e; opacity: .2;"></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-1"></div>
<div class="col-12 col-lg-8 show-on-scroll" data-show-duration="700">
<h1 class="text-white mb-0">Meet the Orange Yak team.</h1>
</div>
</div>
</div>
</div>
<div class="py-160 bg-dark shape-parent overflow-hidden">
<div class="shape justify-content-end">
<svg class="mr-n90 mt-n160" width="641" height="641" viewBox="0 0 641 641" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="320.5" cy="320.5" r="320.5" fill="#202020" />
</svg>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10">
<div class="row gh-5 gv-5">
<div class="col-12 col-md-10 col-lg-9">
<p class="subtitle mt-n10 show-on-scroll text-white" data-show-duration="500"
data-show-distance="10" data-show-delay="50">why orange yaks</p>
<h3 class="mb-n7 show-on-scroll text-white" data-show-duration="500"
data-show-distance="10" data-show-delay="150">
chai, campfires, snow — <br>and a crazy idea 👋
</h3>
</div>
<div class="col-12 col-md-6 show-on-scroll " data-show-duration="700">
<p class="lead mb-30 text-white">
Three high-school students snuck out of their Langtang (Nepal) campsite in the
middle of the night. They trekked up a hill to a sherpa outhouse where there was a
warm fire, and chai brewing over it. Chai, campfire, snow, and the starry night sky
overhead — that's where the idea for <strong>The Orange Yak Co</strong> was born.
</p>
<p class="mb-3 text-white">
On their way back to the camp, they lost their way. Cold, terrified, and alone —
suddenly, an orange yak appeared out of the trees. The yak made no sound, but it
told them to follow it. Within 20 minutes, they could see the lights of the campsite
in the distance. But as they turned to thank the yak, it had dissapeared as
mysteriously as it had arrived.
</p>
<img class="w-100 mt-100" src="assets/images/about/about.png" alt="">
</div>
<div class="col-12 col-md-6 show-on-scroll" data-show-duration="700">
<div class="swiper swiper-button-style-3 mt-7" data-swiper-slides="1"
data-swiper-speed="600" data-swiper-loop="true" data-swiper-parallax="true">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide overflow-hidden">
<div class="swiper-image" data-swiper-parallax-x="20%">
<img class="w-100" src="assets/images/about/about3.png" alt="">
</div>
</div>
<div class="swiper-slide overflow-hidden">
<div class="swiper-image" data-swiper-parallax-x="20%">
<img class="w-100" src="assets/images/about/about2.png" alt="">
</div>
</div>
<div class="swiper-slide overflow-hidden">
<div class="swiper-image" data-swiper-parallax-x="20%">
<img class="w-100" src="assets/images/about/about1.png" alt="">
</div>
</div>
</div>
</div>
<div class="swiper-button-next bg-dark"><svg width='26' height='11'
viewBox='0 0 26 11' fill='none' xmlns='http://www.w3.org/2000/svg'>
<path d='M20.5 1L25 5.5L20.5 10' stroke='white' stroke-width='1.3'
stroke-linecap='round' stroke-linejoin='round' />
<path d='M7 5.5H25' stroke='white' stroke-width='1.3' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
<div class="swiper-button-prev bg-dark"><svg width='26' height='11'
viewBox='0 0 26 11' fill='none' xmlns='http://www.w3.org/2000/svg'>
<path d='M5.5 1L1 5.5L5.5 10' stroke='white' stroke-width='1.3'
stroke-linecap='round' stroke-linejoin='round' />
<path d='M19 5.5H1' stroke='white' stroke-width='1.3' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
</div>
<p class="pt-3 mt-100 mb-0 text-white"><br>
Four years later, and we're developing websites and high-fidelity designs for some
of the biggest companies in India. Whether it's <strong>web development, UI/UX
design, graphic design, social media marketing, SEO, app development, video
editing, or 2D and 3D animations</strong>, the spirit of the mountain still
flows through our work.
</p>
</div>
</div>
<hr class="mt-160 pb-2 bg-white">
<div class="mb-n7">
<div class="row gv-2 justify-content-around text-center">
<div class="col-sm-6 col-md-auto">
<div class="number-box show-on-scroll" data-show-duration="500"
data-show-distance="15" data-show-delay="50">
<div class="number-box-title h1 text-white">22</div>
<div class="number-box-subtitle text-white">projects</div>
</div>
</div>
<div class="col-sm-6 col-md-auto">
<div class="number-box show-on-scroll" data-show-duration="500"
data-show-distance="15" data-show-delay="150">
<div class="number-box-title h1 text-white">4</div>
<div class="number-box-subtitle text-white">years</div>
</div>
</div>
<div class="col-sm-6 col-md-auto">
<div class="number-box show-on-scroll" data-show-duration="500"
data-show-distance="15" data-show-delay="250">
<div class="number-box-title h1 text-white">34</div>
<div class="number-box-subtitle text-white">clients</div>
</div>
</div>
<div class="col-sm-6 col-md-auto">
<div class="number-box show-on-scroll" data-show-duration="500"
data-show-distance="15" data-show-delay="350">
<div class="number-box-title h1 text-white">7</div>
<div class="number-box-subtitle text-white">team members</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="py-130">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-xl-10 mt-8">
<div
class="row gh-1 gv-2 text-center text-sm-left justify-content-center justify-content-sm-between">
<div class="col-md col-lg-6">
<h2 class="display-4 mt-n30 mb-n3">Chief Yaks</h2>
</div>
<div class="d-none d-lg-block col-auto">
<hr class="mt-30 mx-2 width-70px">
</div>
<div class="col-auto">
<a target="_blank" rel="noopener noreferrer"
href="mailto:[email protected]?subject=Hey, wanted to join your team!"
class="btn btn-dark btn-with-ball">join us</a>
</div>
</div>
</div>
</div>
<div class="swiper pt-30 mt-60" data-swiper-slides="4" data-swiper-breakpoints="520:1, 828:2, 1024:3"
data-swiper-grabcursor="true" data-swiper-gap="30">
<div class="swiper-container">
<div class="swiper-wrapper flex-center">
<div class="swiper-slide">
<div class="card card-person card-image-xl bg-white">
<a href="about-me.html" class="card-img">
<img src="assets/images/team/unnamedparth.jpeg" alt="">
</a>
<div class="card-body">
<a href="about-me.html" class="card-title h4">Parth Sharma</a>
<div class="card-subtitle">Frontend Developer and UI/UX Designer</div>
<div class="card-social">
<ul class="nav nav-gap-sm align-items-center">
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='7' height='22' viewBox='0 0 10 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='17' height='21' viewBox='0 0 25 21' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='15' height='15' viewBox='0 0 22 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z'
fill='currentColor' />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card card-person card-image-xl bg-white">
<a href="about-me.html" class="card-img">
<img src="assets/images/team/poaram.png" alt="">
</a>
<div class="card-body">
<a href="about-me.html" class="card-title h4">Param Kapur</a>
<div class="card-subtitle">Backend Developer and Systems Architecture</div>
<div class="card-social">
<ul class="nav nav-gap-sm align-items-center">
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='7' height='22' viewBox='0 0 10 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='17' height='21' viewBox='0 0 25 21' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='15' height='15' viewBox='0 0 22 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z'
fill='currentColor' />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card card-person card-image-xl bg-white">
<a href="about-me.html" class="card-img">
<img src="assets/images/team/me.jpg" alt="">
</a>
<div class="card-body">
<a href="about-me.html" class="card-title h4">Vanaj Moorthy</a>
<div class="card-subtitle">Frontend Developer and Animation Creator</div>
<div class="card-social">
<ul class="nav nav-gap-sm align-items-center">
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='7' height='22' viewBox='0 0 10 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='17' height='21' viewBox='0 0 25 21' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z'
fill='currentColor' />
</svg>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<svg width='15' height='15' viewBox='0 0 22 22' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z'
fill='currentColor' />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-scrollbar"></div>
</div>
</div>
</div>
<div class="py-130 bg-dark text-white shape-parent overflow-hidden lines-style-4">
<div class="line"></div>
<div class="line"></div>
<div class="shape mt-n160">
<svg data-rellax-speed="-1" width="535" height="525" viewBox="0 0 535 525" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="214.5" cy="204.5" r="320.5" fill="#202020" />
</svg>
</div>
<div class="container">
<div class="row gh-1 gv-3">
<div class="col-lg-4 col-xl-3">
<div class="subtitle">our clients</div>
<h2 class="h3 text-white">What our client say about us</h2>
</div>
<div class="d-none d-lg-block col-lg-1 col-xl-2"></div>
<div class="col-lg-6">
<div class="swiper swiper-review-2" data-swiper-slides="1" data-swiper-gap="30"
data-swiper-grabCursor="true">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="media media-review">
<img src="assets/images/avatar/avatar-gayatri-yadv.jpg"
class="media-img rounded-circle" alt="">
<div class="media-body align-self-center">
<h5 class="media-title mt-0 text-white">Gayatri Yadav</h5>
<div class="media-subtitle">CMO, Sequoia Capital</div>
</div>
<p class="media-text mb-0 lead">“ The @actgrants website was created by 3
super talented college students Parth, Vanaj, and Param across 3
countries and 3 time zones...who have setup a design shop called Orange
Yak! Check them out on Instagram or LinkedIn! They're awesome :) ”</p>
</div>
</div>
<div class="swiper-slide">
<div class="media media-review">
<img src="assets/images/avatar/avatar-.png"
class="media-img rounded-circle" alt="">
<div class="media-body align-self-center">
<h5 class="media-title mt-0 text-white">loading</h5>
<div class="media-subtitle">loading</div>
</div>
<p class="media-text mb-0 lead">loading</p>
</div>
</div>
<div class="swiper-slide">
<div class="media media-review">
<img src="assets/images/avatar/avatar-mayoori.png"
class="media-img rounded-circle" alt="">
<div class="media-body align-self-center">
<h5 class="media-title mt-0 text-white">Mayoori Kango</h5>
<div class="media-subtitle">Head of Industry, Google India</div>
</div>
<p class="media-text mb-0 lead">“ No job is too big for OYC, they can do
anything! The best part is working with their team, they respond
immediately and find solutions. ”</p>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"><svg width='26' height='11' viewBox='0 0 26 11' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path d='M20.5 1L25 5.5L20.5 10' stroke='currentColor' stroke-width='1.3'
stroke-linecap='round' stroke-linejoin='round' />
<path d='M7 5.5H25' stroke='currentColor' stroke-width='1.3' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
<div class="swiper-button-prev"><svg width='26' height='11' viewBox='0 0 26 11' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path d='M5.5 1L1 5.5L5.5 10' stroke='currentColor' stroke-width='1.3'
stroke-linecap='round' stroke-linejoin='round' />
<path d='M19 5.5H1' stroke='currentColor' stroke-width='1.3' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
</div>
</div>
</div>
</div>
</div>
<div class="py-160">
<div class="container">
<div class="row gv-5 align-items-center justify-content-between">
<div class="col-12 col-lg-6">
<div class="row gh-1 gv-1 align-items-center">
<div class="col-12 col-sm-auto show-on-scroll" data-show-duration="600"
data-show-distance="30" data-show-origin="left">
<img width="200" src="assets/images/about-listen.jpeg" alt="">
</div>
<div class="col-12 col-sm show-on-scroll" data-show-duration="600" data-show-distance="15"
data-show-origin="left" data-show-delay="200">
<img class="w-100" src="assets/images/about-coffee.jpeg" alt="">
</div>
</div>
</div>
<div class="col-12 col-lg-5">
<div class="feature pb-5 show-on-scroll" data-show-delay=150 data-show-distance=20
data-show-duration=500>
<div class="feature-icon"><svg width='71' height='70' viewBox='0 0 71 70' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M5.18911 17.7887L35 0.57735L64.8109 17.7887V52.2113L35 69.4226L5.18911 52.2113V17.7887Z'
stroke='currentColor' />
<path
d='M18.2867 65.3084L1.0754 35.4976L18.2867 5.68667H52.7094L69.9207 35.4976L52.7094 65.3084H18.2867Z'
stroke='currentColor' />
</svg><svg width='18' height='25' viewBox='0 0 18 25' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M13.3323 14.4715C15.5391 13.1686 17 10.8995 17 8.31818C17 4.27646 13.4183 1 9 1C4.58172 1 1 4.27646 1 8.31818C1 12.3599 4.58172 15.6364 9 15.6364C10.5965 15.6364 12.0838 15.2086 13.3323 14.4715ZM13.3323 14.4715L14.7143 24L9 20.8636L3.28571 24L4.66857 14.4759M13.3323 14.4715L13.3314 14.4655'
stroke='currentColor' stroke-width='1.5' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
<div class="feature-body">
<h4 class="feature-title">Excellent Quality</h4>
<p class="feature-text">We hold ourselves and our work to extremely high
standards - we strive for perfection.</p>
</div>
</div>
<div class="feature mt-40 pb-5 show-on-scroll" data-show-delay=250 data-show-distance=20
data-show-duration=500>
<div class="feature-icon"><svg width='71' height='70' viewBox='0 0 71 70' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M5.18911 17.7887L35 0.57735L64.8109 17.7887V52.2113L35 69.4226L5.18911 52.2113V17.7887Z'
stroke='currentColor' />
<path
d='M18.2867 65.3084L1.0754 35.4976L18.2867 5.68667H52.7094L69.9207 35.4976L52.7094 65.3084H18.2867Z'
stroke='currentColor' />
</svg><svg width='23' height='23' viewBox='0 0 23 23' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M1 18.5V11.5C1 8.71523 2.10625 6.04451 4.07538 4.07538C6.04451 2.10625 8.71523 1 11.5 1C14.2848 1 16.9555 2.10625 18.9246 4.07538C20.8938 6.04451 22 8.71523 22 11.5V18.5M22 19.6667C22 20.2855 21.7542 20.879 21.3166 21.3166C20.879 21.7542 20.2855 22 19.6667 22H18.5C17.8812 22 17.2877 21.7542 16.8501 21.3166C16.4125 20.879 16.1667 20.2855 16.1667 19.6667V16.1667C16.1667 15.5478 16.4125 14.9543 16.8501 14.5168C17.2877 14.0792 17.8812 13.8333 18.5 13.8333H22V19.6667ZM1 19.6667C1 20.2855 1.24583 20.879 1.68342 21.3166C2.121 21.7542 2.71449 22 3.33333 22H4.5C5.11884 22 5.71233 21.7542 6.14992 21.3166C6.5875 20.879 6.83333 20.2855 6.83333 19.6667V16.1667C6.83333 15.5478 6.5875 14.9543 6.14992 14.5168C5.71233 14.0792 5.11884 13.8333 4.5 13.8333H1V19.6667Z'
stroke='currentColor' stroke-width='1.5' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
<div class="feature-body">
<h4 class="feature-title">Communication</h4>
<p class="feature-text">We believe that constant communication with our clients
is critical for success.</p>
</div>
</div>
<div class="feature mt-40 show-on-scroll" data-show-delay=350 data-show-distance=20
data-show-duration=500>
<div class="feature-icon"><svg width='71' height='70' viewBox='0 0 71 70' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M5.18911 17.7887L35 0.57735L64.8109 17.7887V52.2113L35 69.4226L5.18911 52.2113V17.7887Z'
stroke='currentColor' />
<path
d='M18.2867 65.3084L1.0754 35.4976L18.2867 5.68667H52.7094L69.9207 35.4976L52.7094 65.3084H18.2867Z'
stroke='currentColor' />
</svg><svg width='24' height='21' viewBox='0 0 24 21' fill='none'
xmlns='http://www.w3.org/2000/svg'>
<path
d='M21.3036 2.67974C20.766 2.14721 20.1278 1.72477 19.4253 1.43656C18.7228 1.14834 17.9699 1 17.2095 1C16.4491 1 15.6961 1.14834 14.9936 1.43656C14.2912 1.72477 13.6529 2.14721 13.1153 2.67974L11.9997 3.7844L10.8841 2.67974C9.79827 1.60458 8.32556 1.00056 6.78997 1.00056C5.25437 1.00056 3.78167 1.60458 2.69584 2.67974C1.61001 3.7549 1 5.21313 1 6.73364C1 8.25415 1.61001 9.71238 2.69584 10.7875L11.9997 20L21.3036 10.7875C21.8414 10.2553 22.268 9.62328 22.5591 8.9277C22.8502 8.23212 23 7.48657 23 6.73364C23 5.98071 22.8502 5.23516 22.5591 4.53958C22.268 3.84399 21.8414 3.21201 21.3036 2.67974Z'
stroke='currentColor' stroke-width='1.5' stroke-linecap='round'
stroke-linejoin='round' />
</svg></div>
<div class="feature-body">
<h4 class="feature-title">Reliability</h4>
<p class="feature-text">When we commit, you can rest assured that we won't fail
to deliver.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="pt-80">
<hr class="mt-0 mb-100 pb-7">
<div class="row gh-1 gv-3 text-center text-lg-left text-xl-left justify-content-md-center">
<div class="d-none d-xl-block col-lg-1"></div>
<div class="col-12 col-lg-4">
<p class="subtitle mt-n10">our clients</p>
<h2 class="h3">We've worked with 20+ companies</h2>
</div>
<div class="d-none d-lg-block col-lg-2 col-xl-1"></div>
<div class="col-md-8 col-lg ml-lg-n30 text-center">
<div class="row gh-1 gv-3 align-items-center justify-content-between">
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="50" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style="width: 120px; height: 45px;" src="assets/images/logos/ttc.png">
</a>
</div>
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="100" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style="width: 150px; height: 30px;" src="assets/images/clients/seqouoia.png">
</a>
</div>
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="150" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style=" height: 45px;" src="assets/images/logos/attic.png">
</a>
</div>
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="200" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style="width: 115px; height: 93px;" src="assets/images/logos/act logo.png">
</a>
</div>
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="250" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style=" height: 93px;" src="assets/images/logos/qdt.png">
</a>
</div>
<div class="col-6 col-sm-auto show-on-scroll" data-show-delay="300" data-show-duration="500"
data-show-distance="20">
<a href="#" class="brand text-grey">
<img style="width: 140px;" src="assets/images/logos/indyfit.png">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="pt-160 pb-130 text-center text-md-left">
<hr class="mt-0 mb-100 pb-7">
<div
class="row gv-1 pb-7 mb-n30 align-items-center justify-content-center justify-content-md-between">
<div class="col-md-10 col-lg-8 mr-md-auto">
<div class="interactive-links">
<img class="interactive-links-image" src="./assets/images/yak low res.jpeg" width="230"
alt="">
<a href="contact.html" class="nav-link display-4"><u>Let’s work</u> together</a>
</div>
</div>
<div class="col-auto">
<a href="contact-1.html" class="btn btn-clean mt-17 mt-md-0 mr-xl-100">
<svg class="icon-arrow icon-arrow-right" width="69" height="30" viewBox="0 0 69 30"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M54 2L67 15L54 28" stroke="currentColor" stroke-width="2.4"
stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 15L67 15" stroke="currentColor" stroke-width="2.4"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<footer class="footer bg-dark text-white shape-parent overflow-hidden py-130">
<div class="shape align-items-end justify-content-end">
<svg data-rellax-speed="-1" class="mb-n130" width="525" height="641" viewBox="0 0 525 641" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="320.5" cy="320.5" r="320.5" fill=" #202020" />
</svg>
</div>
<div class="container mb-n5">
<div class="row justify-content-between mb-100 gh-1 gv-4">
<div class="col-lg-3">
<a href="index.html">
<h3 style="color: white;">The Orange <br>Yak Co.</h3>
</a>
<p class="mb-0">a one-stop solution for your organisation's online presence.</p>
</div>
<div class="d-none d-lg-block col-2"></div>
<div class="col-lg-6">
<p class="subtitle mb-30 text-muted">drop your email — we'll reach out!</p>
<form action="#">
<div class="form-group-overlay">
<input class="form-control form-control-white" type="email" placeholder="Your Email *">
<a href="#" class="btn btn-clean btn-with-ball text-white">send</a>
</div>
</form>
</div>
<div class="d-none d-lg-block col-1"></div>
</div>
<div class="row justify-content-between gh-1 gv-4 mb-30">
<div class="col-lg-3">
<ul class="nav flex-column text-white">
<li class="nav-item">
<a href="callto:+91 99102-31328" class="nav-link">+91 99102-31328</a>
</li>
<li class="nav-item">
<a href="mailto:[email protected]" class="nav-link">[email protected]</a>
</li>
</ul>
</div>
<div class="d-none d-lg-block col-2"></div>
<div class="col-12 col-lg-6">
<div class="row gh-1 gv-1">
<div class="col-12 col-lg-4">
<ul class="nav flex-column text-white">
<li class="nav-item">
<a href="about.html" class="nav-link">About Us</a>
</li>
<li class="nav-item">
<a href="services.html" class="nav-link">Services</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">Our Team</a>
</li>
<li class="nav-item">
<a href="https://forms.gle/i82p6iz2R8hhC2K16" class="nav-link">Careers</a>
</li>
</ul>
</div>
<!-- <div class="col-12 col-lg-4">
<ul class="nav flex-column text-white">
<li class="nav-item">
<a href="#" class="nav-link">Work process</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">FAQ</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Our blog</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Contacts</a>
</li>
</ul>
</div> -->
<div class="col-12 col-lg-4">
<ul class="nav flex-column text-white">
<li class="nav-item">
<a href="contact.html" class="nav-link">Contact Us</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Privacy</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
<div class="d-none d-lg-block col-1"></div>
</div>
<div class="row justify-content-between mt-100 mt-lg-0">
<div class="col-auto">
<ul class="nav text-white align-items-center">
<li class="nav-item">
<a href="https://facebook.com/" class="nav-link">
<svg width="10" height="22" viewBox="0 0 10 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.17421 3.65234H9.99996V0.154687C9.68557 0.107422 8.60224 0 7.34088 0C4.70831 0 2.90529 1.82188 2.90529 5.16914V8.25H0V12.1602H2.90529V22H6.46588V12.1602H9.25375L9.69693 8.25H6.46588V5.55586C6.46588 4.42578 6.7424 3.65234 8.17421 3.65234Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/" class="nav-link">
<svg width="25" height="21" viewBox="0 0 25 21" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M22.0706 5.51356C22.086 5.73504 22.086 5.95656 22.086 6.17804C22.086 12.9334 17.0783 20.7172 7.92575 20.7172C5.10601 20.7172 2.48661 19.8787 0.283203 18.4232C0.683835 18.4707 1.069 18.4865 1.48505 18.4865C3.81167 18.4865 5.95347 17.6797 7.6638 16.3033C5.47581 16.2558 3.64221 14.7845 3.01046 12.7594C3.31865 12.8069 3.6268 12.8385 3.9504 12.8385C4.39723 12.8385 4.84411 12.7752 5.2601 12.6645C2.97968 12.1898 1.2693 10.1332 1.2693 7.64935V7.58609C1.93183 7.96579 2.70231 8.20309 3.5189 8.2347C2.17837 7.31709 1.30013 5.75086 1.30013 3.97894C1.30013 3.02972 1.54661 2.15959 1.97807 1.40019C4.42801 4.50103 8.11063 6.52604 12.24 6.74756C12.163 6.36787 12.1168 5.97239 12.1168 5.57687C12.1168 2.76076 14.3356 0.466797 17.0937 0.466797C18.5266 0.466797 19.8209 1.0838 20.73 2.0805C21.8548 1.85902 22.9334 1.43184 23.8887 0.846495C23.5189 2.03307 22.7331 3.02977 21.7008 3.66255C22.7023 3.55186 23.673 3.26702 24.5667 2.87155C23.8888 3.88403 23.0413 4.78577 22.0706 5.51356Z"
fill="currentColor" />
</svg>
</a>
</li>
<li class="nav-item">
<a href="https://instagram.com/theorangeyakco" class="nav-link">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.2827 5.3166C8.24087 5.3166 5.78732 7.8148 5.78732 10.912C5.78732 14.0092 8.24087 16.5074 11.2827 16.5074C14.3245 16.5074 16.7781 14.0092 16.7781 10.912C16.7781 7.8148 14.3245 5.3166 11.2827 5.3166ZM11.2827 14.5497C9.31698 14.5497 7.70998 12.9183 7.70998 10.912C7.70998 8.90563 9.3122 7.27425 11.2827 7.27425C13.2532 7.27425 14.8554 8.90563 14.8554 10.912C14.8554 12.9183 13.2484 14.5497 11.2827 14.5497ZM18.2846 5.08772C18.2846 5.81331 17.7107 6.39282 17.0029 6.39282C16.2902 6.39282 15.7211 5.80844 15.7211 5.08772C15.7211 4.36699 16.295 3.78261 17.0029 3.78261C17.7107 3.78261 18.2846 4.36699 18.2846 5.08772ZM21.9243 6.4123C21.843 4.66404 21.4508 3.11545 20.1929 1.83956C18.9399 0.563678 17.419 0.164355 15.7019 0.0766992C13.9323 -0.0255664 8.62827 -0.0255664 6.85865 0.0766992C5.14643 0.159486 3.62552 0.558809 2.36766 1.83469C1.10979 3.11058 0.722392 4.65917 0.636302 6.40743C0.535865 8.20925 0.535865 13.6098 0.636302 15.4117C0.717609 17.1599 1.10979 18.7085 2.36766 19.9844C3.62552 21.2603 5.14165 21.6596 6.85865 21.7473C8.62827 21.8495 13.9323 21.8495 15.7019 21.7473C17.419 21.6645 18.9399 21.2652 20.1929 19.9844C21.446 18.7085 21.8382 17.1599 21.9243 15.4117C22.0247 13.6098 22.0247 8.21412 21.9243 6.4123ZM19.6381 17.345C19.2651 18.2995 18.5429 19.0348 17.6007 19.4195C16.1898 19.9893 12.8419 19.8578 11.2827 19.8578C9.72352 19.8578 6.37081 19.9844 4.96469 19.4195C4.02727 19.0397 3.30507 18.3043 2.92724 17.345C2.36766 15.9084 2.49679 12.4995 2.49679 10.912C2.49679 9.32443 2.37244 5.91071 2.92724 4.47899C3.30029 3.52451 4.02248 2.78917 4.96469 2.40446C6.37559 1.83469 9.72352 1.96618 11.2827 1.96618C12.8419 1.96618 16.1946 1.83956 17.6007 2.40446C18.5381 2.7843 19.2603 3.51964 19.6381 4.47899C20.1977 5.91558 20.0686 9.32443 20.0686 10.912C20.0686 12.4995 20.1977 15.9133 19.6381 17.345Z"
fill="currentColor" />
</svg>
</a>
</li>
</ul>
</div>