-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathdevelopment-services.sass
More file actions
3111 lines (2978 loc) · 131 KB
/
development-services.sass
File metadata and controls
3111 lines (2978 loc) · 131 KB
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
@import "../_includes/scroll-progress-button"
$modal-z-index: 13000
$modal-background-color: rgba(0, 0, 0, 0.4)
$modal-content-background-color: #fefefe
$modal-content-border: 1px solid #888
$form-element-label-color: rgba(0, 0, 0, 0.54)
$form-control-border: 1px solid rgba(0, 0, 0, 0.12)
$button-background-color: #2A7DEC
$font-style-normal: normal
$light-text-color: #FAFBFC
$dark-text-color: #212529
@mixin background
&:before
content: ""
position: absolute
width: 100vw
height: 100%
background-color: #F4F8FE
z-index: -1
left: 49.4%
transform: translateX(-50%)
top: 0
@mixin expandable-header($icon: "\f078")
display: flex
justify-content: space-between
align-items: center
position: relative
cursor: pointer
&::after
content: $icon
color: #6B7178
font-family: 'Font Awesome 5 Free'
font-size: 14px
font-weight: 900
line-height: 1
display: block
position: absolute
top: 20px
right: 10px
transform: rotate(0deg)
transition: transform 0.6s
@mixin expandable-rotated($deg: 180deg)
&::after
transform: rotate($deg)
@mixin content-container($marginBottom)
margin-bottom: $marginBottom
@mixin text-styles($font-size)
font-size: $font-size
font-weight: 400
line-height: 140%
@mixin fade-in-animation($delay: 400ms, $duration: 1000ms, $timing-function: cubic-bezier(0.5, 0.35, 0.15, 1))
animation: fadein $duration $timing-function $delay forwards
opacity: 0
.animation-prepare
opacity: 0
transform: translateY(50px)
.animation-trigger
opacity: 1
transform: translateY(0)
transition: opacity 1s ease, transform 1s ease
.visible-no-anim
opacity: 1
transform: translateY(0)
transition: none
#development-services
.noToc
position: relative
.content-wrapper
width: 100%
display: flex
justify-content: center
flex-direction: column
align-items: center
position: relative
> *
width: 100%
max-width: 1920px
position: relative
z-index: 3
#content-mvp
z-index: 2
border-radius: 10px
background: rgba(255,255,255,0.2)
box-shadow: 0px 0px 10px 0px rgba(21,29,111,0.08)
backdrop-filter: blur(25px)
#content-market-solution
z-index: 1
background-color: white
#content-get-in-touch
display: flex
flex-direction: row
align-items: unset
justify-content: space-between
padding: 0 130px
max-width: 1920px
#hero
padding-top: 80px
.hero
padding-top: 80px
#first-screen
&:before
content: ""
position: absolute
height: 100%
background-color: #F4F8FE
z-index: -1
top: 0
width: 100vw
left: 50vw
transform: translateX(-50%)
min-height: calc(100vh - 80px)
width: 100%
overflow: hidden
margin-bottom: 100px
position: relative
.hero-container
height: calc(100vh - 80px - 178px)
width: 100%
max-width: 1400px
margin: 0 auto
display: flex
align-items: center
.text
margin: auto 0
width: 35%
#hero-content
width: 100%
display: flex
flex-direction: column
gap: 12px
margin-bottom: 32px
.cdu-title
color: #202021
font-size: 56px
font-style: normal
font-weight: 600
line-height: 72px
letter-spacing: -0.14px
.cdu-sub-title
color: #3A3B3D
font-size: 20px
font-style: normal
font-weight: 400
line-height: 32px
letter-spacing: 0.15px
.request-consultation
padding: 16px 24px
background-color: #2A7DEC
color: white
border-radius: 5px
font-size: 20px
font-weight: 500
.hero-images
position: relative
margin-top: 93px
img
position: absolute
width: 100%
height: auto
.main
position: static
max-width: 900px
@include fade-in-animation(400ms)
.top
top: 41px
left: 107px
max-width: 407px
@media (max-width: 1700px)
max-width: 306px
@include fade-in-animation(600ms)
.right
right: -195px
top: 78px
max-width: 434px
@media (max-width: 1700px)
max-width: 399px
@include fade-in-animation(800ms)
.bottom
bottom: 66px
left: 36px
max-width: 477px
@media (max-width: 1700px)
max-width: 387px
@include fade-in-animation(900ms)
.statistics
position: absolute
bottom: 0
width: 100%
display: flex
justify-content: center
gap: 150px
padding: 40px 0
z-index: 10
&:before
content: ""
position: absolute
height: 100%
background-color: #899AAB
z-index: -1
top: 0
width: 100vw
height: 100%
left: 50vw
transform: translateX(-50%)
.block
text-align: center
p
color: #fff
p:first-child
font-size: 64px
font-weight: 500
line-height: 58px
margin-bottom: 16px
display: flex
justify-content: center
section
padding-top: 0
padding-left: 0
padding-right: 0
.development-services
display: flex
justify-content: center
.development-services-container
width: 1400px
.custom-solutions
@include content-container(100px)
.custom-solutions-wrapper
h2
font-size: 36px
font-weight: 500
line-height: 48px
margin-bottom: 50px
text-align: center
.custom-solution-container
display: flex
gap: 16px
.cards
width: 45%
.expansion-panel
overflow: hidden
width: 90%
padding: 16px
border-radius: 24px
.images
display: none
.expansion-header
padding: 10px
padding-left: 16px
@include expandable-header()
&.expanded
background: #F4F8FE
.expansion-header
padding-left: 16px
padding-bottom: 0
&:after
transform: rotate(180deg)
.expansion-title
color: #000
font-weight: 500
.expansion-title
margin: 0
font-size: 28px
font-weight: 400
line-height: 44px
color: #3D3D3D
.expansion-content
max-height: 0
overflow: hidden
text-align: left
.expansion-buttons
margin-bottom: 16px
display: flex
justify-content: flex-start
flex-wrap: wrap
gap: 12px
.tag
padding: 4px 12px
border: 1px solid #2A7DEC
border-radius: 6px
color: #2A7DEC
.expansion-text
font-size: 16px
font-weight: 400
line-height: 28px
span
margin-bottom: 8px
font-size: 18px
font-weight: 500
display: block
&.expanded
.expansion-content
overflow: visible
padding: 16px
max-height: 1000px
.images
display: block
width: 55%
margin: auto
.client-feedback-cards
display: flex
flex-direction: column
gap: 15px
.client-info
padding: 24px
display: flex
flex-direction: column
border-radius: 24px
.client-avatar-container
display: flex
justify-content: flex-start
gap: 12px
padding-bottom: 16px
margin-bottom: 12px
.client-avatar-img
&.blank
background-color: #C4C4C4
min-width: 120px
border-radius: 12px
width: 120px
height: 120px
img
width: 120px
height: 120px
.client-feedback
color: #3D3D3D
font-size: 14px
font-weight: 400
line-height: 24px
text-align: start
border-left: 1px solid #2A7DEC
padding-left: 12px
font-style: italic
.read-more-link
color: #3D3D3D
font-style: normal
text-decoration: underline
& > div:last-child
margin-left: 146px
font-size: 16px
font-weight: 500
line-height: 28px
&.no-margin
margin-left: 0
.project-screen-container
min-height: 370px
padding: 5px
display: flex
flex-direction: column
align-items: center
border-radius: 12px
margin-bottom: 50px
.project-screen
position: relative
img
height: auto
width: 100%
border-radius: 5px
div
position: absolute
width: 100%
height: 100%
z-index: -1
border-radius: 24px
&.bg-1
right: -81px
top: 46px
border: 1.5px solid #3E9AF8
&.bg-2
left: -61px
top: -33px
z-index: -2
border: 1.5px solid #D1E9FF
&.bg-3
right: -57px
top: -65px
background: #F4F8FE
border: none
z-index: -3
.buttons-block
display: flex
flex-direction: row
justify-content: center
gap: 32px
margin-bottom: 72px
@media screen and (max-width: 599px)
flex-direction: column
width: 100%
a.button
width: 100%
.button
width: 208px
text-align: center
.button.view-live-demo
background-color: unset
color: #2A7DEC
border: 1px solid #2A7DEC
.button.contact-us
color: #FFF
cursor: pointer
p.feedback-heading
color: #000
text-align: center
font-size: 28px
font-weight: 500
line-height: 44px
.our-customers
width: 100%
display: flex
flex-direction: column
align-items: center
z-index: 1
border-radius: 10px
background: rgba(255, 255, 255, 0.20)
backdrop-filter: blur(25px)
margin-bottom: 40px
& > div
position: relative
width: 90vw
overflow: hidden
&:before, &:after
position: absolute
top: 0
width: 15vw
height: 100%
content: ""
z-index: 1
pointer-events: none
&:before
left: 0
background: linear-gradient(to right, #fff 40%, transparent 100%)
&:after
right: 0
background: linear-gradient(to left, #fff 40%, transparent 100%)
.title
color: #3D3D3D
text-align: center
font-size: 16px
font-weight: 400
line-height: 28px
padding: 40px 0
.customer-logos
display: flex
align-items: center
gap: 150px
animation-name: running
animation-duration: 25s
animation-iteration-count: infinite
animation-timing-function: linear
position: relative
.logo
filter: grayscale(100%)
opacity: 0.6
&:hover
filter: unset
opacity: unset
.vision-section
padding: 100px 0
@include background
.vision-wrapper
position: relative
display: flex
flex-direction: row
justify-content: space-between
align-items: center
z-index: 0
background-color: white
padding: 46px
border-radius: 24px
border: 1px solid #2A7DEC
box-shadow: 0 26px 40px 0 rgba(42, 125, 236, 0.08)
.vision-info
display: flex
flex-direction: column
justify-content: space-between
gap: 26px
width: 100%
z-index: 1
.vision-header
display: flex
gap: 40px
.vision-title
.vision-img
max-width: 234px
height: auto
margin-bottom: 16px
.vision-img-mobile
display: none
.vision-text
.name
color: #212529
font-size: 24px
font-weight: 500
line-height: 36px
.title
color: #212529
font-size: 18px
font-weight: 400
line-height: 30px
.vision-descr
.text-wrap
height: fit-content
padding-left: 17px
border-left: 3px solid #2A7DEC
margin-bottom: 16px
p
color: #212121
font-size: 16px
font-weight: 400
line-height: 28px
&:first-child
margin-bottom: 12px
.vision-footer
display: flex
justify-content: space-between
align-items: center
border-top: 1px solid #E5EFFC
padding-top: 32px
.vision-footer-text
color: #212121
font-size: 36px
font-weight: 500
line-height: 48px
button
font-size: 20px
width: 300px
padding: 16px 24px
#case-studies-clients
padding: 100px 0
h2
text-align: center
font-size: 36px
font-weight: 500
color: #212121
margin-bottom: 56px
.wrap
display: flex
flex-wrap: wrap
gap: 32px
min-height: 299px
margin-bottom: 26px
.client-card
position: relative
width: 445px
height: 299px
border-radius: 24px
background-position: center
background-size: cover
color: #fff
overflow: hidden
.bg-wrap
width: 100%
height: 100%
background-position: center
background-size: cover
&:hover
&:after
transform: scale(1.2)
.content
.footer
padding-bottom: 45px
.stats
p
.short
opacity: 0
.long
opacity: 1
&:after
content: ""
position: absolute
top: 0
right: 0
bottom: 0
left: 0
background: inherit
background-size: cover
transform-origin: center
transition: transform .5s
.content
height: 100%
position: relative
z-index: 1
display: flex
flex-direction: column
justify-content: space-between
align-items: flex-start
padding: 20px
text-decoration: none
color: #fff
.header
display: flex
justify-content: space-between
width: 100%
.glass-tag
color: #1C1C1B
background: rgba(255, 255, 255, 0.60)
font-size: 14px
font-weight: 500
line-height: 24px
padding: 4px 8px
backdrop-filter: blur(5px)
-webkit-backdrop-filter: blur(5px)
border-radius: 6px
border: 1px solid rgba(255, 255, 255, 0.3)
position: relative
overflow: hidden
&:before
content: ''
position: absolute
top: 0
left: 0
right: 0
height: 1px
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8),transparent)
&:after
content: ''
position: absolute
top: 0
left: 0
width: 1px
height: 100%
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3))
.logo
height: 36px
.footer
transition: all .5s
& > p
font-size: 18px
font-weight: 500
line-height: 30px
transition: all .5s
padding-bottom: 12px
margin-bottom: 12px
border-bottom: 1px solid #B9C0C5
.stats
display: flex
min-height: 60px
p
font-size: 14px
font-weight: 400
line-height: 24px
transition: all .5s
width: 129px
&:last-child
width: auto
.num
font-size: 24px
font-weight: 500
line-height: 36px
.short, .long
position: absolute
transition: opacity 0.5s linear
.long
opacity: 0
.services
padding: 100px 0
@include background
.services-container
display: flex
flex-direction: column
align-items: center
margin-bottom: 56px
.services-title
font-size: 36px
font-weight: 500
margin-bottom: 20px
.services-sub-title
max-width: 900px
font-size: 18px
font-weight: 400
line-height: 30px
margin-bottom: 56px
color: #424242
text-align: center
.cards
display: flex
flex-wrap: wrap
gap: 16px
.expansion-card
width: calc(33.333% - 10.7px)
max-height: 104px
padding: 24px
border-radius: 24px
box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.08)
background: white
transition: max-height 0.4s ease-in-out
overflow: hidden
.expansion-header
padding-bottom: 20px
@include expandable-header()
.expansion-title
display: flex
gap: 24px
align-items: center
h3
max-width: 280px
@include text-styles(20px)
color: $dark-text-color
.header-icon
height: 48px
width: 48px
&.expanded
max-height: 370px
.expansion-header
border-bottom: 1px solid #BDBDBD
@include expandable-rotated(180deg)
.expansion-content
overflow: visible
max-height: 1000px
opacity: 1
.expansion-content
padding: 24px
max-height: 0
overflow: hidden
text-align: left
opacity: 0
transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out, padding 0.4s ease-in-out
ul
display: flex
flex-direction: column
gap: 8px
li
list-style-type: disc
font-size: 14px
font-weight: 400
line-height: 24px
color: #424242
li::marker
color: #2A7DEC
.get-in-touch-section
.get-in-touch-container
background: white
overflow: hidden
position: relative
display: flex
justify-content: space-between
align-items: center
padding: 48px
border-radius: 24px
box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.08)
button
width: 300px
font-size: 20px
padding: 16px 24px
button.create-perfect-solution
width: 370px
.get-in-touch-title
color: #212121
font-size: 36px
font-weight: 500
line-height: 48px
text-align: left
.industries
padding: 100px 0
.industries-container
width: 100%
display: flex
flex-direction: column
align-items: center
.industries-title
font-size: 36px
font-weight: 500
line-height: 48px
color: #212121
margin-bottom: 20px
.industries-subtitle
margin-bottom: 64px
color: #424242
font-size: 18px
font-weight: 400
max-width: 900px
text-align: center
line-height: 30px
.content-container
max-height: 700px
display: flex
gap: 32px
.menu
overflow-y: scroll
max-width: 50%
width: 50%
scrollbar-width: thin
scrollbar-color: #ADB5BD transparent
padding-right: 16px
.menu-item
display: flex
align-items: center
gap: 12px
padding: 20px 32px
cursor: pointer
&:hover
h3
color: black
.menu-item-header
display: flex
align-items: center
justify-content: start
width: 100%
gap: 10px
margin: 0 10px
h3
font-size: 24px
font-weight: 400
line-height: 36px
color: #3D3D3D
&.active
border-radius: 24px
background: #F4F8FE
.menu-item-header
h3
color: #000000
.industries-card
max-width: 50%
display: flex
position: relative
overflow: hidden
flex-direction: column
gap: 32px
.card-img
max-width: 407px
height: auto
position: absolute
bottom: 0
right: 0
.card-container
.card-text-container
font-size: 16px
font-weight: 400
line-height: 28px
color: #212121
.card-descr
margin-bottom: 32px
ul
display: flex
flex-direction: column
gap: 12px
padding-left: 20px
li
list-style-type: disc
color: #3D3D3D
li::marker
color: #2A7DEC
.industries-card.inline
color: #343A40
display: none
.trusted-partner
padding: 100px 0 0
text-align: center
@include background
.trusted-partner-title
font-size: 36px
font-weight: 500
line-height: 48px
margin-bottom: 40px
.trusted-partner-container
position: relative
display: flex
flex-direction: column
gap: 40px
color: #212529
.trusted-partner-header
display: flex
flex-direction: column
justify-content: center
align-items: center
gap: 32px
.trusted-tips
display: flex
gap: 120px
.trusted-tip
display: flex
flex-direction: column
gap: 12px
align-items: center
color: #202021
font-size: 24px
font-weight: 500
line-height: 36px
&::before
content: "\f00c"
color: #FAFBFC
font-family: 'Font Awesome 5 Free'
background-color: #2A7DEC
border-radius: 50%
font-size: 19px
font-weight: 600
line-height: 2.2
display: block
width: 40px
height: 40px
.trusted-partner-header-descr
p
color: #202021
font-size: 24px
font-weight: 500
line-height: 36px
.trusted-partner-footer
display: flex
flex-direction: row-reverse
gap: 32px
.wrap
display: flex
flex-direction: column
.trusted-partner-descr
display: flex
flex-direction: column
gap: 12px
border-left: 3px solid #2A7DEC
padding-left: 17px
margin-bottom: 32px
p
line-height: 28px
font-size: 16px
color: #202021
font-weight: 400
text-align: start
.trusted-partner-avatar
display: flex
flex-direction: column
align-items: center
gap: 16px
.avatar
max-width: 220px
height: auto
.avatar-mobile
display: none
.trusted-partner-text
.name
font-size: 24px
font-weight: 500
line-height: 36px
color: #212529
.title
font-size: 18px
font-weight: 400
color: #212529