-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1485 lines (1388 loc) · 90.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Moneo - Outsource Software & Product Development Company</title>
<meta type="description" content="We offer you the expertise you’ve been looking for to build stable, scalable and, advanced products. No compromises, only promises that are held.">
<link rel="icon" href="./assets/images/favicon.svg">
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Moneo - Outsource Software & Product Development Company" />
<meta property="og:description" content="We offer you the expertise you’ve been looking for to build stable, scalable and, advanced products. No compromises, only promises that are held." />
<meta property="og:url" content="https://itsmoneo.com/" />
<meta property="og:site_name" content="Moneo" />
<meta property="og:image" content="https://itsmoneo.com/assets/images/social.jpg"/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="We offer you the expertise you’ve been looking for to build stable, scalable and, advanced products. No compromises, only promises that are held." />
<meta name="twitter:title" content="Moneo - Outsource Software & Product Development Company" />
<meta name="twitter:site" content="@itsmoneo" />
<meta name="twitter:creator" content="@itsmoneo" />
<meta name="twitter:image" content="https://itsmoneo.com/assets/images/social.jpg"/>
<link rel="canonical" href="https://itsmoneo.com/" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.4/tiny-slider.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lazyload.min.js"></script>
<script src="https://cdn.tailwindcss.com?plugins=line-clamp"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Raleway', 'sans-serif'],
},
colors: {
primary: '#06141B',
gray: {
1: '#333333',
2: '#4F4F4F',
3: '#828282',
4: '#BDBDBD',
5: '#E0E0E0',
6: '#F2F2F2',
},
cerulean: {
500: '#14A2DF',
700: '#1465A5',
},
royalblue: {
0: '#F6FBFD',
100: '#E7F7FD',
200: '#C3E7FB'
},
yellow: '#FFBC27',
orange: '#FF7425',
},
}
}
}
</script>
<style type="text/tailwindcss">
@layer utilities {
html {
scroll-behavior: smooth;
}
:root {
font-variant-ligatures: none;
}
.nav-item {
@apply block p-2 text-gray-6 text-sm font-semibold tracking-[.02em];
}
.page-title {
@apply lg:text-[52px] lg:leading-[60px] text-5xl;
background: linear-gradient(269.21deg, #14A2DF 3.6%, #5ECEFF 78.92%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
h2 {
@apply font-bold text-gray-1 lg:text-5xl text-4xl lg:leading-[56px];
}
h4 {
@apply text-2xl font-semibold text-gray-1;
}
h5 {
@apply lg:text-xl text-lg font-semibold text-gray-1;
}
.heading-title {
@apply text-cerulean-500 text-xs font-bold tracking-[.02em] uppercase;
}
.technologies-tab-btn {
@apply font-semibold py-4 text-gray-1 rounded lg:h-20 h-16 xl:px-10 md:px-5 px-10 text-lg tracking-[.02em] lg:w-auto w-full;
}
.technologies-tab-btn:not(.active):hover {
@apply bg-gray-6;
}
.technologies-tab-btn.active {
@apply bg-primary text-gray-6;
}
.technologies-tab {
@apply max-w-[1180px] hidden lg:flex-row flex-col justify-between mx-auto pt-10 lg:pb-20 pb-8 xl:px-0 px-6;
}
.technologies-tab.active {
@apply flex;
}
.backdrop {
@apply absolute inset-0 bg-black bg-opacity-60 transition duration-300;
}
.backdrop.passive {
@apply bg-opacity-0;
}
@media (max-width: 768px) {
.backdrop {
@apply hidden;
}
}
}
</style>
</head>
<body class="antialiased lining-nums">
<div class="bg-primary lg:h-[900px] h-[1024px]">
<img src="./assets/images/hero-bg.png" class="absolute z-0 top-0 lg:block hidden max-h-[757px] left-0 right-0 mx-auto" alt="">
<nav class="relative z-10 max-w-[1180px] mx-auto lg:h-20 h-16 flex items-center justify-between xl:px-0 px-6 lg:pt-20 pt-6">
<a href="">
<img src="./assets/images/logo.svg" class="lg:w-auto w-24" alt="Moneo" title="Moneo">
</a>
<div class="flex lg:gap-8 gap-4 lg:pr-8">
<a href="#case-studies" class="nav-item">Case Studies</a>
<a href="#contact" class="nav-item">Contact</a>
</div>
</nav>
<div class="relative z-10 overflow-hidden xl:mt-[140px] mt-10 xl:px-0 px-6 xl:pb-0 pb-8">
<div class="max-w-[1180px] w-full mx-auto flex xl:flex-row flex-col xl:justify-between">
<div class="xl:min-w-[500px] flex-1 xl:mb-0 mb-10 xl:mr-24 xl:pb-8">
<h4 class="font-semibold text-2xl text-gray-6 mb-2">Outsource</h4>
<h1 class="page-title font-bold mb-6">Software & Product Development Company</h1>
<p class="text-lg font-medium text-gray-4 mb-6 xl:max-w-[464px]">We offer you the expertise you’ve been looking for to build stable, scalable and, advanced products. No compromises, only promises that are held.</p>
<a href="#contact" class="flex justify-center bg-cerulean-500 hover:bg-cerulean-700 rounded py-4 text-gray-6 font-semibold text-base max-w-[166px] w-full">
Contact Us
</a>
</div>
<div class="relative">
<div class="hero-slider flex gap-x-1">
<div class="relative rounded-lg mb-2.5 w-full md:mr-5" style="background: radial-gradient(101.99% 101.99% at 50% 50%, #B0FCFF 0%, #52696A 100%);">
<img src="./assets/images/karaca-mockup.png" alt="Karaca Home">
<div class="backdrop passive"></div>
</div>
<div class="relative rounded-lg mb-2.5 w-full md:mr-5" style="background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #FFDBBF 100%);">
<img src="./assets/images/kitapyurdu-mockup.png" alt="Kitapyurdu">
<div class="backdrop"></div>
</div>
<div class="relative rounded-lg mb-2.5 w-full md:mr-5" style="background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #FFECB1 100%);">
<img src="./assets/images/kommunity-mockup.png" alt="Kommunity">
<div class="backdrop"></div>
</div>
</div>
<div class="flex justify-between items-center absolute max-w-[584px] left-0 right-0 lg:pl-1">
<div id="hero-slider-title" class="text-white font-bold text-lg">Karaca</div>
<div class="flex items-center gap-2">
<button id="hero-prev-btn">
<img src="./assets/icons/arrow-left.svg" class="passive" alt="">
<img src="./assets/icons/arrow-right.svg" class="active hidden transform rotate-180" alt="">
</button>
<button id="hero-next-btn">
<img src="./assets/icons/arrow-right.svg" alt="">
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-[1180px] mx-auto -mt-16 bg-white lg:pt-20 pt-12 xl:px-0 px-6">
<div class="max-w-[980px] mx-auto">
<div class="max-w-[738px] lg:mb-16 mb-10">
<div class="heading-title lg:mb-10 mb-6">Engagement Models</div>
<h2>We can develop for you in different models</h2>
</div>
<div class="flex lg:gap-16 gap-10 flex-wrap justify-between">
<div class="md:max-w-[380px]">
<img data-src="./assets/images/solution-1.png" class="mb-4 lazy" alt="">
<h4 class="mb-4">Extended Team</h4>
<p class="text-base line-clamp-3 text-ellipsis text-gray-2 mb-3 extended-team">Hire us as an extended team of your organization. Each and every team member here at Moneo has been given a vital role of different organizations from conglomerates to start-ups. Over the years, we have worked as remote workers, freelancers, in-housers and contractors. Harness this unique expertise and let us provide your business with a reliable team.</p>
<button onclick="readMore(this, '.extended-team')" class="flex items-center space-x-2 group">
<span class="text-base font-semibold text-cerulean-500 group-hover:text-cerulean-700">Read more</span>
<svg width="24" height="24" class="text-cerulean-500 group-hover:text-cerulean-700 transform transition-rotate duration-150 rotate-0" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 16.5L4.5 8.99995L5.55 7.94995L12 14.4L18.45 7.94995L19.5 8.99995L12 16.5Z" fill="currentColor"/>
</svg>
</button>
</div>
<div class="md:max-w-[428px] lg:p-6">
<img data-src="./assets/images/solution-2.png" class="mb-4 lazy" alt="">
<h4 class="mb-4">Managed Products</h4>
<p class="text-base line-clamp-3 text-ellipsis text-gray-2 mb-3 managed-products">Hire us as the dedicated product managers for your organization. If you are in search of a professional and dependable team for a new, side or a booming product, Moneo is here to get it up-and-running flawlessly with cutting-edge technology and solid proficiency.</p>
<button onclick="readMore(this, '.managed-products')" class="flex items-center space-x-2 group">
<span class="text-base font-semibold text-cerulean-500 group-hover:text-cerulean-700">Read more</span>
<svg width="24" height="24" class="text-cerulean-500 group-hover:text-cerulean-700 transform transition-rotate duration-150 rotate-0" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 16.5L4.5 8.99995L5.55 7.94995L12 14.4L18.45 7.94995L19.5 8.99995L12 16.5Z" fill="currentColor"/>
</svg>
</button>
</div>
<div class="md:max-w-[380px]">
<img data-src="./assets/images/solution-3.png" class="mb-4 lazy" alt="">
<h4 class="mb-4">Managed Services</h4>
<p class="text-base line-clamp-3 text-ellipsis text-gray-2 mb-3 managed-services">Hire us as the managed services providers on a proactive basis. Together with your dedicated team, we determine the services your business needs and customize the scope of requirements in a sustainable and profitable way that suits your urgencies and priorities the best.</p>
<button onclick="readMore(this, '.managed-services')" class="flex items-center space-x-2 group">
<span class="text-base font-semibold text-cerulean-500 group-hover:text-cerulean-700">Read more</span>
<svg width="24" height="24" class="text-cerulean-500 group-hover:text-cerulean-700 transform transition-rotate duration-150 rotate-0" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 16.5L4.5 8.99995L5.55 7.94995L12 14.4L18.45 7.94995L19.5 8.99995L12 16.5Z" fill="currentColor"/>
</svg>
</button>
</div>
<div class="md:max-w-[428px] lg:p-6 p-4 bg-cerulean-500">
<img data-src="./assets/images/solution-4.png" class="mb-4 lazy" alt="">
<h4 class="mb-4 text-white">Custom Tailored Service</h4>
<p class="text-base line-clamp-3 text-ellipsis text-white mb-3">Hire us as the tailored service and technology partner. If your business is in need of a custom-designed services, let’s talk about it.</p>
<a href="#contact" class="flex items-center text-base font-semibold text-white">
<span class="mr-2">Contact us</span>
<img data-src="./assets/icons/chevron-right.svg" class="lazy" alt="">
</a>
</div>
</div>
</div>
<div class="lg:mt-[140px] mt-20">
<div class="heading-title lg:mb-10 mb-6">Services</div>
<div class="flex lg:flex-row flex-col flex-shrink justify-between">
<div class="lg:max-w-[380px] lg:mb-0 mb-8">
<h2 class="lg:mb-12 mb-8">Services we offer expertise</h2>
<img data-src="./assets/images/dynorender.png" class="lg:w-auto w-full lazy" alt="">
</div>
<div class="flex flex-wrap justify-between lg:gap-x-10 lg:gap-y-14 gap-y-10 max-w-[680px]">
<div class="xl:max-w-[320px] md:max-w-[275px] w-full">
<h4 class="lg:mb-6 mb-4">Back End Development</h4>
<div class="space-y-4">
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="lazy mr-2" alt="">
<div class="text-base font-medium text-gray-2">Scalable Architecture</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="lazy mr-2" alt="">
<div class="text-base font-medium text-gray-2">REST Services</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="lazy mr-2" alt="">
<div class="text-base font-medium text-gray-2">Microservices</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="lazy mr-2" alt="">
<div class="text-base font-medium text-gray-2">MVC Architecture</div>
</div>
</div>
</div>
<div class="xl:max-w-[320px] md:max-w-[275px] w-full">
<h4 class="lg:mb-6 mb-4">Front End Development</h4>
<div class="space-y-4">
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Single Page Applications</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">PSD / Figma to HTML</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Responsive Design</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Web Performance</div>
</div>
</div>
</div>
<div class="xl:max-w-[320px] md:max-w-[275px] w-full">
<h4 class="lg:mb-6 mb-4">Cloud</h4>
<div class="space-y-4">
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Amazon Web Services</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Google Cloud</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Microsoft Azure</div>
</div>
</div>
</div>
<div class="xl:max-w-[320px] md:max-w-[275px] w-full">
<h4 class="lg:mb-6 mb-4">DevOps</h4>
<div class="grid grid-cols-2 gap-y-4 gap-x-6">
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">CI / CD</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Kubernetes</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Monitoring</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Docker</div>
</div>
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">Cloud Native</div>
</div>
</div>
</div>
<div class="xl:max-w-[320px] md:max-w-[275px] w-full">
<h4 class="lg:mb-6 mb-4">Mobile Development</h4>
<div class="space-y-4">
<div class="flex items-center">
<img data-src="./assets/icons/check-circle.svg" class="mr-2 lazy" alt="">
<div class="text-base font-medium text-gray-2">React Native (iOS & Android)</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="lg:mt-[140px] mt-20 xl:px-0 px-6" style="background: linear-gradient(180deg, #F6FBFD 0%, rgba(246, 251, 253, 0) 100%);">
<div class="h-px bg-royalblue-200 max-w-[1340px] mx-auto"></div>
<div class="max-w-[1180px] mx-auto lg:pt-20 mt-12 lg:pb-24 pb-8">
<div class="max-w-[968px] lg:mb-16 mb-10">
<div class="heading-title lg:mb-10 mb-6">Stages</div>
<h2 class="mb-6">Our development stages</h2>
<p class="text-base font-medium text-gray-2">Modernizing and restructuring software doesn’t have to mean rebuilding your product from scratch. We’ll carefully analyze your product and business situation to deliver a cost-effective solution.</p>
</div>
<div class="flex flex-wrap lg:gap-x-5 lg:gap-y-16 gap-y-10 justify-around">
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
1/6
</div>
<div>
<h4 class="mb-4">Requirement gathering and analysis</h4>
<p class="text-base font-medium text-gray-2">During this phase, all the relevant information is collected from the customer to develop a product as per their expectation. Any ambiguities must be resolved in this phase only.</p>
</div>
</div>
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
2/6
</div>
<div>
<h4 class="mb-4">Design</h4>
<p class="text-base font-medium text-gray-2">In this phase, the requirement gathered in the SRS document is used as an input and software architecture that is used for implementing system development is derived.</p>
</div>
</div>
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
3/6
</div>
<div>
<h4 class="mb-4">Implementation or coding</h4>
<p class="text-base font-medium text-gray-2">Implementation/Coding starts once the developer gets the Design document. The Software design is translated into source code. All the components of the software are implemented in this phase.</p>
</div>
</div>
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
4/6
</div>
<div>
<h4 class="mb-4">Testing</h4>
<p class="text-base font-medium text-gray-2">Testing starts once the coding is complete and the modules are released for testing. In this phase, the developed software is tested thoroughly and any defects found are assigned to developers to get them fixed.</p>
</div>
</div>
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
5/6
</div>
<div>
<h4 class="mb-4">Deployment</h4>
<p class="text-base font-medium text-gray-2">Once the product is tested, it is deployed in the production environment or first UAT (User Acceptance testing) is done depending on the customer expectation. If the customer finds the application as expected, then sign off is provided by the customer to go live.</p>
</div>
</div>
<div class="max-w-[380px] flex">
<div class="relative mr-4 text-xs text-cerulean-500 font-semibold tracking-[.02em] -top-px">
6/6
</div>
<div>
<h4 class="mb-4">Maintenance</h4>
<p class="text-base font-medium text-gray-2">After the deployment of a product on the production environment, maintenance of the product i.e. if any issue comes up and needs to be fixed or any enhancement is to be done is taken care by the developers.</p>
</div>
</div>
</div>
</div>
</div>
<div class="lg:mt-[140px] mt-20 xl:px-0 px-6 max-w-[1180px] mx-auto">
<div class="lg:mb-16 mb-10">
<div class="heading-title lg:mb-10 mb-6">Workflow</div>
<h2 class="mb-6">Product Oriented and <br> Excellence-driven Workflow</h2>
<div class="flex lg:flex-row flex-col justify-between">
<p class="text-base font-medium text-gray-2 max-w-[900px] lg:mb-0 mb-4">We ensure that you are one step ahead of your competitors by keeping our workflow up-to-date with current and correct methodologies in order to meet your needs.</p>
<div class="flex items-center lg:justify-start justify-end space-x-4">
<button id="workflow-prev-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-gray-4">
<img data-src="./assets/icons/arrow-left.svg" class="lazy passive" alt="">
<img data-src="./assets/icons/arrow-right.svg" class="lazy active hidden transform rotate-180" alt="">
</button>
<button id="workflow-next-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-cerulean-500">
<img data-src="./assets/icons/arrow-right.svg" class="lazy" alt="">
</button>
</div>
</div>
</div>
<div class="workflow-slider flex gap-x-1">
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-royalblue-0 lg:mr-4">
<img data-src="./assets/images/agile.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em]">Agile Methodology</h5>
<p class="text-base font-medium text-gray-2">
Collaboration, self-organization and cross-functional teams. These are not just fancy terms, they are the definition of how we approach Agile software development and be ready for unpredictibility.
</p>
</div>
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-primary lg:mr-4">
<img data-src="./assets/images/tech.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em] text-gray-6">Up-to-date Technologies</h5>
<p class="text-base font-medium text-gray-6">
Each project comes with its own unique requirements. While we always keep that in mind, we also constantly follow best practises across the industry, with a twist: We only provide our customers with the proven ones.
</p>
</div>
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-royalblue-0 lg:mr-4">
<img data-src="./assets/images/solid.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em]">SOLID Architecture</h5>
<p class="text-base font-medium text-gray-2">
Clean, sustainable, scalable and testable code is what we are proud of the most. That is why providing the state-of-the-art architecture to our customers is priority number one for us.
</p>
</div>
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-primary lg:mr-4">
<img data-src="./assets/images/style.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em] text-gray-6">Software Craftmanship with Style</h5>
<p class="text-base font-medium text-gray-6">
You design apps, websites, services, interactions and workflows. We design how it all fits into one reliable, and maintainable clean codebase.
</p>
</div>
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-royalblue-0 lg:mr-4">
<img data-src="./assets/images/full-scale.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em]">Full-scale Code Review</h5>
<p class="text-base font-medium text-gray-2">
Creating a non-threatening and collaborative environment for code review is an essential part of what we do. In order to excel at software development and create pixel-perfect systems, we offer you with conscious and systematic code review.
</p>
</div>
<div class="lg:px-10 px-8 lg:pt-8 pt-6 max-w-[346px] lg:h-[400px] h-[360px] bg-primary lg:mr-4">
<img data-src="./assets/images/test.svg" class="lazy lg:mb-6 mb-4" alt="">
<h5 class="lg:mb-8 mb-6 tracking-[.02em] text-gray-6">Repetitive Testing</h5>
<p class="text-base font-medium text-gray-6">
Either it be in the early stages of development or before a big release, we believe in the power of iterative testing. Our methodologies and tools we use to test ensure a healthy and functional system overall.
</p>
</div>
</div>
</div>
<div class="lg:mt-[140px] mt-20">
<div class="bg-royalblue-0 lg:pt-20 pt-12 xl:px-0 px-6">
<div class="max-w-[1180px] mx-auto mb-8">
<div class="max-w-[980px] lg:mb-16 mb-10">
<div class="heading-title lg:mb-10 mb-6">Technologıes</div>
<h2>Our technology & tool stack</h2>
</div>
<div class="flex flex-wrap gap-5">
<button
onclick="changeActiveTab('backend')"
class="backend technologies-tab-btn active">Back End Development</button>
<button
onclick="changeActiveTab('frontend')"
class="frontend technologies-tab-btn">Front End Development</button>
<button
onclick="changeActiveTab('mobile')"
class="mobile technologies-tab-btn">Mobile Development</button>
<button
onclick="changeActiveTab('ui_ux')"
class="ui_ux technologies-tab-btn">UI/UX Design</button>
</div>
</div>
<div class="h-px bg-royalblue-200 max-w-[1180px] mx-auto"></div>
</div>
<div>
<div class="backend technologies-tab active">
<div class="max-w-[480px] lg:mb-0 mb-10 xl:mr-24">
<p class="text-base font-medium text-gray-2 lg:mb-8 mb-3">Businesses deserve to be handled flawlessly. Exceptional engineering practices of Moneo provides you with tailored back-end solutions that are globally reliable and stable.</p>
</div>
<div class="grid lg:grid-cols-4 grid-cols-3 gap-y-6 gap-x-4 w-full" style="height: max-content">
<div class="flex items-center">
<img data-src="./assets/images/technologies/php.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">PHP</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/node-js.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Node.js</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/mysql.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">MySQL</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/elasticsearch.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Elasticsearch</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/laravel.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Laravel</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/go.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Go</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/docker.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Docker</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/aws.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">AWS</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/redis.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Redis</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/mongo-db.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">MongoDB</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/symfony.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Symfony</div>
</div>
</div>
</div>
<div class="frontend technologies-tab">
<div class="max-w-[480px] lg:mb-0 mb-10 xl:mr-24">
<p class="text-base font-medium text-gray-2 lg:mb-8 mb-3">Whether it is the product or the business itself, it should shine through at first sight. Great businesses and remarkable products deserve the best software craftsmanship, pixel-perfect technical usability and the highest quality of code in web development.</p>
<a href="" class="flex items-center text-cerulean-500 space-x-3 text-base font-medium" style="display: none">
<span>Learn more</span>
<img data-src="./assets/icons/arrow-right.svg" alt="">
</a>
</div>
<div class="grid lg:grid-cols-4 grid-cols-3 gap-y-6 gap-x-4 w-full" style="height: max-content">
<div class="flex items-center">
<img data-src="./assets/images/technologies/react-native.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">React</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/type-script.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">TypeScript</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/angular.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Angular</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/vue.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Vue</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/java-script.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">JavaScript</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/git.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Git</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/sass.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Sass</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/graphql.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">GraphQL</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/storybook.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Storybook</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/webpack.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Webpack</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/gulp.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Gulp</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/jest.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Jest</div>
</div>
</div>
</div>
<div class="mobile technologies-tab">
<div class="max-w-[480px] lg:mb-0 mb-10 xl:mr-24">
<p class="text-base font-medium text-gray-2 lg:mb-8 mb-3">We develop not only eye-catching and user-oriented interfaces, but also performance mobile applications for iOS and Android that offer the perfect experience in all interfaces in a sustainable and scalable way.</p>
<a href="" class="flex items-center text-cerulean-500 space-x-3 text-base font-medium" style="display: none">
<span>Learn more</span>
<img data-src="./assets/icons/arrow-right.svg" alt="">
</a>
</div>
<div class="grid lg:grid-cols-4 grid-cols-3 gap-y-6 gap-x-4 w-full" style="height: max-content">
<div class="flex items-center">
<img data-src="./assets/images/technologies/react-native.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">React Native</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/type-script.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">TypeScript</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/firebase.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Firebase</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/mix-panel.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Mixpanel</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/one-signal.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">OneSignal</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/detox.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Detox</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/branch.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Branch</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/graphql.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">GraphQL</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/prettier.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Prettier</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/flutter.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Flutter</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/kotlin.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Kotlin</div>
</div>
<div class="flex items-center">
<img data-src="./assets/images/technologies/java.png" class="lazy" alt="">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] ml-2">Java</div>
</div>
</div>
</div>
<div class="ui_ux technologies-tab">
<div class="max-w-[480px] lg:mb-0 mb-10 xl:mr-24">
<p class="text-base font-medium text-gray-2 lg:mb-8 mb-3">We provide to create human-computer interactions using the latest technologies and design trends. By taking part in every stage of product development, we analyze users and design meaningful interfaces for the target.</p>
<a href="" class="flex items-center text-cerulean-500 space-x-3 text-base font-medium" style="display: none">
<span>Learn more</span>
<img data-src="./assets/icons/arrow-right.svg" class="lazy" alt="">
</a>
</div>
<div class="w-full grid lg:grid-cols-3 grid-cols-2 gap-y-6 gap-x-10" style="height: max-content">
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">User Experience Design</div>
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">User Interface Design</div>
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">Interaction Design</div>
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">Responsive Design</div>
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">Wireframing</div>
<div class="text-sm font-medium text-gray-2 tracking-[.02em] max-w-[180px] w-full">Prototyping</div>
</div>
</div>
</div>
</div>
<div id="case-studies"></div>
<div class="lg:mt-[140px] mt-20 max-w-[1180px] mx-auto xl:px-0 px-6">
<div class="heading-title lg:mb-20 mb-8">case studies</div>
<div class="flex lg:flex-row flex-col lg:items-center justify-between lg:mb-[72px] mb-10">
<h2 class="lg:mb-0 mb-4">Our projects with unique experience.</h2>
<div class="flex items-center lg:justify-start justify-end space-x-4">
<button id="case-study-prev-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-gray-4">
<img data-src="./assets/icons/arrow-left.svg" class="lazy passive" alt="">
<img data-src="./assets/icons/arrow-right.svg" class="lazy active hidden transform rotate-180" alt="">
</button>
<button id="case-study-next-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-cerulean-500">
<img data-src="./assets/icons/arrow-right.svg" class="lazy" alt="">
</button>
</div>
</div>
<div class="case-studies-slider flex gap-x-1">
<div class="relative text-white w-full lg:h-[550px] h-[440px] p-10 pr-0 lg:mr-4 bg-cover lazy" data-bg="./assets/images/case-studies/kitapyurdu.png">
<h3 class="text-3xl font-bold mb-2">Kitapyurdu</h3>
<p class="text-lg font-medium">E-Commerce</p>
<a href="javascript:void(0)" onclick="showModal('#kitapyurdu-case-study-modal')" class="absolute bottom-10 left-8 px-4 py-2 border border-white rounded-sm font-medium text-lg hover:bg-white hover:text-gray-1">Download Case Study</a>
</div>
<div class="relative text-white w-full lg:h-[550px] h-[440px] p-10 pr-0 lg:mr-4 bg-cover lazy" data-bg="./assets/images/case-studies/kommunity.png">
<h3 class="text-3xl font-bold mb-2">Kommunity</h3>
<p class="text-lg font-medium">All in one social event platform</p>
<a href="javascript:void(0)" onclick="showModal('#kommunity-case-study-modal')" class="absolute bottom-10 left-8 px-4 py-2 border border-white rounded-sm font-medium text-lg hover:bg-white hover:text-gray-1">Download Case Study</a>
</div>
<div class="relative text-white w-full lg:h-[550px] h-[440px] p-10 pr-0 lg:mr-4 bg-cover lazy" data-bg="./assets/images/case-studies/karaca.png">
<h3 class="text-3xl font-bold mb-2">Karaca</h3>
<p class="text-lg font-medium">E-Commerce</p>
<a href="javascript:void(0)" onclick="showModal('#karaca-case-study-modal')" class="absolute bottom-10 left-8 px-4 py-2 border border-white rounded-sm font-medium text-lg hover:bg-white hover:text-gray-1">Download Case Study</a>
</div>
<div class="relative text-white w-full lg:h-[550px] h-[440px] p-10 pr-0 lg:mr-4 bg-cover lazy" data-bg="./assets/images/case-studies/transiyzi.png">
<h3 class="text-3xl font-bold mb-2">Transiyzi</h3>
<p class="text-lg font-medium">Localization SaaS</p>
<a href="javascript:void(0)" onclick="showModal('#transiyzi-case-study-modal')" class="absolute bottom-10 left-8 px-4 py-2 border border-white rounded-sm font-medium text-lg hover:bg-white hover:text-gray-1">Download Case Study</a>
</div>
</div>
</div>
<div class="lg:mt-[140px] mt-20 max-w-[1180px] mx-auto xl:px-0 px-6">
<div class="heading-title lg:mb-20 mb-12">happy clients</div>
<div class="lg:flex lg:flex-wrap lg:justify-center grid grid-cols-2 md:grid-cols-3 max-w-[1152px] mx-auto gap-y-4 lg:gap-x-0 gap-x-4">
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/kommunity-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/zorlu-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/karaca-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/kitapyurdu-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/vispera-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/genc-sigorta-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/teknasyon-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/duguncom-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/isbak-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/netlog-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/conectohub-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/transiyzi-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/nettunet-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/anneysencom-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="border-b border-gray-5 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/dcey-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:border-b-0 border-b border-gray-5 lg:pb-0 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/akrepcom-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="lg:border-b-0 border-b border-gray-5 lg:pb-0 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/yeniben-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="lg:border-b-0 border-b border-gray-5 lg:pb-0 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/penguen-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="lg:border-b-0 border-b border-gray-5 lg:pb-0 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/ability-pool-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
<div class="xl:block hidden mx-4 w-px h-[118px] bg-gray-5"></div>
<div class="lg:border-b-0 border-b border-gray-5 lg:pb-0 pb-4">
<div class="lg:min-w-[204px] lg:max-w-auto max-w-[160px] lg:h-[118px] h-24 flex items-center justify-center group md:mx-auto xl:mx-0">
<img data-src="./assets/images/happy-clients/dynorender-black.png" class="opacity-60 group-hover:opacity-100 transition-opacity duration-100 lazy" alt="">
</div>
</div>
</div>
</div>
<div class="lg:mt-28 mt-20 xl:px-0 px-6 max-w-[1180px] mx-auto">
<div class="testimonials-slider">
<div>
<div class="flex lg:flex-row flex-col justify-center items-center">
<div class="lg:max-w-[380px] lg:mr-24">
<div class="heading-title mb-8">Testimonials</div>
<h4 class="font-medium lg:mb-8 mb-4">Teknasyon</h4>
<p class="text-lg font-medium text-gray-2 lg:mb-10 mb-6">They were always looking for other ways to help us — it felt like a real partnership. </p>
<div class="text-base lg:mb-8">
<div class="font-bold text-cerulean-500">FATİH ÜSTÜNDAĞ</div>
<div class="font-semibold text-gray-2">Teknasyon, CTO</div>
</div>
</div>
<img data-src="./assets/images/testimonials/fatih-ustundag.png" class="lazy" alt="">
</div>
</div>
<div>
<div class="flex lg:flex-row flex-col justify-center items-center">
<div class="lg:max-w-[380px] lg:mr-24">
<div class="heading-title mb-8">Testimonials</div>
<h4 class="font-medium lg:mb-8 mb-4">Düğün.com</h4>
<p class="text-lg font-medium text-gray-2 lg:mb-10 mb-6">It has been a pleasure to work with such a steady, supportive and flexible development partner. </p>
<div class="text-base lg:mb-8">
<div class="font-bold text-cerulean-500">MÜMİN AYDIN</div>
<div class="font-semibold text-gray-2">Düğün.com, CTO</div>
</div>
</div>
<img data-src="./assets/images/testimonials/mumin-aydin.png" class="lazy" alt="">
</div>
</div>
<div>
<div class="flex lg:flex-row flex-col justify-center items-center">
<div class="lg:max-w-[380px] lg:mr-24">
<div class="heading-title mb-8">Testimonials</div>
<h4 class="font-medium lg:mb-8 mb-4">Kitapyurdu</h4>
<p class="text-lg font-medium text-gray-2 lg:mb-10 mb-6">They are determined, passionate, and unbelievably committed to your success as a company. </p>
<div class="text-base lg:mb-8">
<div class="font-bold text-cerulean-500">SADİ KİZİR</div>
<div class="font-semibold text-gray-2">Kitapyurdu, CEO</div>
</div>
</div>
<img data-src="./assets/images/testimonials/sadi-kiriz.png" class="lazy" alt="">
</div>
</div>
</div>
<div class="max-w-[800px] mx-auto relative lg:-top-6 lg:mt-0 mt-6">
<div class="flex lg:justify-start justify-center items-center space-x-4">
<button id="testimonial-prev-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-gray-4">
<img data-src="./assets/icons/arrow-left.svg" class="lazy passive" alt="">
<img data-src="./assets/icons/arrow-right.svg" class="lazy active hidden transform rotate-180" alt="">
</button>
<button id="testimonial-next-btn" class="h-10 w-10 flex items-center justify-center rounded-full border border-cerulean-500">
<img data-src="./assets/icons/arrow-right.svg" class="lazy" alt="">
</button>
</div>
</div>
</div>
<div id="contact"></div>
<div class="lg:mt-[140px] mt-20 bg-royalblue-0 lg:pt-20 pt-12 lg:pb-24 pb-16 relative xl:px-0 px-6">
<div class="max-w-[580px] mx-auto relative z-10">
<h2 class="lg:text-[52px] text-4xl lg:leading-[60px]">Have an idea?</h2>
<h2 class="lg:text-[52px] text-4xl lg:leading-[60px] text-cerulean-500">Let's develop together.</h2>
</div>
<img data-src="./assets/images/footer-vector.png" class="lazy absolute left-0 right-0 bottom-0 w-full" alt="">
</div>
<footer class="bg-primary lg:pt-20 pt-10 lg:pb-[110px] pb-16 xl:px-0 px-6">
<div class="max-w-[1180px] mx-auto flex lg:flex-row flex-col justify-between">
<div class="lg:mb-0 mb-10">
<div class="mb-6">
<img data-src="./assets/images/logo.svg" class="lazy" alt="">
</div>
<div class="max-w-[564px]">
<div class="text-base font-medium text-gray-3 lg:mb-8 mb-5">Outsource Software & Product Development Company</div>
<div class="max-w-[448px]">
<div class="flex lg:flex-row flex-col lg:items-center justify-between lg:pr-6 lg:mb-4 mb-1 lg:gap-y-0 gap-y-3">
<a href="tel:+902129510992" class="flex items-center">
<img data-src="./assets/icons/phone.svg" class="lazy" alt="">
<div class="text-gray-6 font-medium text-base ml-4">+90 212 951 09 92</div>
</a>
<a href="mailto:[email protected]" class="flex items-center">
<img data-src="./assets/icons/mail-filled.svg" class="lazy" alt="">
<div class="text-gray-6 font-medium text-base ml-4">[email protected]</div>
</a>
</div>
<a href="https://goo.gl/maps/DsyDLBxzaRzYnxUi8" target="_blank" rel="noreferrer" class="flex items-center lg:mb-4 mb-1">
<img data-src="./assets/icons/round-place.svg" class="lazy" alt="">
<div class="text-gray-6 font-medium text-base ml-4">Dumlupınar Mah. Pelin Sok. No:51 D:132 Kadıköy/İstanbul</div>
</a>
<a href="https://goo.gl/maps/HDGZpj3VrMNVApzKA" target="_blank" rel="noreferrer" class="flex items-center">
<img data-src="./assets/icons/round-place.svg" class="lazy" alt="">
<div class="text-gray-6 font-medium text-base ml-4">Bilişim Vadisi Teknoloji Geliştirme Bölgesi. Muallimköy Mh. Deniz Cd. No:143/5 41400 Gebze/Kocaeli</div>
</a>
</div>
</div>
</div>
<div>
<div class="text-white text-base font-semibold mb-4">Follow us</div>
<div class="flex items-center gap-4 -ml-2">
<a href="https://kommunity.com/moneo" target="_blank" rel="noreferrer">
<img data-src="./assets/icons/kommunity.svg" class="lazy" alt="">
</a>
<a href="https://twitter.com/itsmoneo" target="_blank" rel="noreferrer" class="p-1.5">
<img data-src="./assets/icons/twitter.svg" class="lazy" alt="">
</a>
<a href="https://www.linkedin.com/company/itsmoneo" target="_blank" rel="noreferrer">
<img data-src="./assets/icons/linkedin.svg" class="lazy" alt="">
</a>
</div>
</div>
</div>
</footer>
<div id="scroll-to-top" class="flex hidden justify-end max-w-[1180px] mx-auto fixed lg:bottom-24 bottom-16 xl:right-0 lg:left-0 right-6 z-40">
<button class="rounded-full p-2 bg-royalblue-100" onclick="window.scrollTo(0, 0)">
<img src="./assets/icons/chevron-up.svg" alt="">
</button>
</div>
<div id="kommunity-case-study-modal" class="fixed z-50 inset-0 overflow-y-auto ease-in-out duration-300 opacity-0 hidden"
aria-labelledby="modal-title" role="dialog" aria-modal="true">
<div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
<div class="fixed inset-0 bg-black bg-opacity-70 transition-opacity" onclick="hideModal('#kommunity-case-study-modal')"
aria-hidden="true"></div>