-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.htm
1240 lines (1238 loc) · 106 KB
/
test.htm
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="ua">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>This is template title</title>
<meta name="description" content="This description was created by Serejka">
<meta property="og:title" content="Unique page title - My Site">
<meta property="og:description" content="Page description">
<meta property="og:image" content="https://www.mywebsite.com/image.jpg">
<meta property="og:image:alt" content="Image description">
<meta property="og:locale" content="en_GB">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.mywebsite.com/page">
<meta name="twitter:card" content="summary_large_image">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#FF00FF">
<meta name="msapplication-navbutton-color" content="#FF00FF">
<meta name="apple-mobile-web-app-status-bar-style" content="#FF00FF">
<link rel="canonical" href="https://www.mywebsite.com/page">
<link rel="preconnect" href="//fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="//fonts.gstatic.com" crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2" as="font"
crossorigin>
<link rel="preload" href="//fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2" as="font"
crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap"
rel="stylesheet">
<style></style>
<link rel="preload" href="css/main-rest.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="css/main-rest.css">
</noscript>
<script>/*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
/* This file is meant as a standalone workflow for
- testing support for link[rel=preload]
- enabling async CSS loading in browsers that do not support rel=preload
- applying rel preload css once loaded, whether supported or not.
*/
!function (n) {
"use strict";
n.loadCSS || (n.loadCSS = function () {
});
var o = loadCSS.relpreload = {};
if (o.support = function () {
var e;
try {
e = n.document.createElement("link").relList.supports("preload")
} catch (t) {
e = !1
}
return function () {
return e
}
}(), o.bindMediaToggle = function (t) {
var e = t.media || "all";
function a() {
t.addEventListener ? t.removeEventListener("load", a) : t.attachEvent && t.detachEvent("onload", a), t.setAttribute("onload", null), t.media = e
}
t.addEventListener ? t.addEventListener("load", a) : t.attachEvent && t.attachEvent("onload", a), setTimeout(function () {
t.rel = "stylesheet", t.media = "only x"
}), setTimeout(a, 3e3)
}, o.poly = function () {
if (!o.support()) for (var t = n.document.getElementsByTagName("link"), e = 0; e < t.length; e++) {
var a = t[e];
"preload" !== a.rel || "style" !== a.getAttribute("as") || a.getAttribute("data-loadcss") || (a.setAttribute("data-loadcss", !0), o.bindMediaToggle(a))
}
}, !o.support()) {
o.poly();
var t = n.setInterval(o.poly, 500);
n.addEventListener ? n.addEventListener("load", function () {
o.poly(), n.clearInterval(t)
}) : n.attachEvent && n.attachEvent("onload", function () {
o.poly(), n.clearInterval(t)
})
}
"undefined" != typeof exports ? exports.loadCSS = loadCSS : n.loadCSS = loadCSS
}("undefined" != typeof global ? global : this);</script>
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MXW35L8');</script>
</head>
<body class="is-landing-page">
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MXW35L8" height="0" width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<div class="page">
<div class="page__inner">
<div class="page__header">
<header class="header">
<div class="header__layout-left"><span class="logo header__logo"><img class="logo__img"
src="images/logo-header.svg"
alt="Opensource International"
width="230" height="44"></span>
</div>
<div class="header__layout-right">
<button class="btn header-toggle header__components-toggle js-header-components-toggle"
type="button"><span class="header-toggle__wrapper" aria-hidden="true"><span
class="header-toggle__line"></span> <span class="header-toggle__line"></span> <span
class="header-toggle__line"></span> </span><span class="sr-only">Відкрити навігацію</span>
</button>
<div class="header__components js-header-components">
<div class="header__components-inner">
<div class="header__components-close">
<button type="button" class="header__close js-header-components-close"><span
class="header__close-lines" aria-hidden="true"></span> <span class="sr-only">Закрити навігацію</span>
</button>
</div>
<div class="header__nav">
<nav class="main-nav js-main-nav" role="navigation" aria-label="Главная навигация">
<ul class="main-nav__list">
<li class="main-nav__item"><a href="#about" title="Перейти к секции Про нас"
class="main-nav__link js-page-anchor">Про нас</a>
</li>
<li class="main-nav__item"><a href="#technologies"
title="Перейти к секции Технології"
class="main-nav__link js-page-anchor">Технології</a>
</li>
<li class="main-nav__item"><a href="#vacancy" title="Перейти к секции Вакансії"
class="main-nav__link js-page-anchor">Вакансії</a>
</li>
<li class="main-nav__item"><a href="#contacts" title="Перейти к секции Контакти"
class="main-nav__link js-page-anchor">Контакти</a>
</li>
</ul>
</nav>
</div>
<div class="header__social-links">
<ul class="social-links">
<li class="social-links__item"><a class="btn is-circle social-links__link" href="#"
target="_blank" title="Наш telegram"><span
class="fab fa-telegram-plane" aria-hidden="true"></span><span
class="sr-only">Наш telegram</span></a></li>
<li class="social-links__item"><a class="btn is-circle social-links__link" href="#"
target="_blank" title="Наш instagram"><span
class="fab fa-instagram" aria-hidden="true"></span><span class="sr-only">Наш instagram</span></a>
</li>
<li class="social-links__item"><a class="btn is-circle social-links__link" href="#"
target="_blank" title="Наш linkedin"><span
class="fab fa-linkedin-in" aria-hidden="true"></span><span class="sr-only">Наш linkedin</span></a>
</li>
</ul>
</div>
<div class="header__langs">
<ul class="langs">
<li class="langs__item"><span class="langs__link is-active"><abbr
class="langs__abbr" lang="ua" title="Українська">UA</abbr></span></li>
<li class="langs__item"><a href="home-ru.html" class="langs__link"><abbr
class="langs__abbr" lang="ru" title="Русский">RU</abbr></a></li>
</ul>
</div>
<a class="btn header-cta js-page-anchor header__call-btn"
href="#contacts">Зв'язатися</a></div>
</div>
</div>
</header>
</div>
<div class="page__main-wrapper">
<main class="page__main" role="main" id="main">
<section class="section banner">
<div class="container is-large">
<div class="banner__wrap">
<div class="banner__content"><h1 class="banner__title"><span>Ми діджиталізуємо</span>
публічний простір Франції</h1>
<p class="banner__subtitle">Командний дух, стандарти якості, постійні інновації: наші
цінності на службі у вашій кар’єрі!</p><a class="btn js-page-anchor banner__btn"
href="#vacancy">Приєднуйся до нашої
команди</a></div>
<div class="banner__image"><img src="images/banners/banner-image.png"
alt="Технiка с логотипом opensourse"></div>
</div>
<div class="decor is-waves is-single banner__waves-decor"></div>
<div class="decor is-circle is-xlarge banner__circle-decor-left"></div>
<div class="decor is-circle is-xlarge banner__circle-decor-right"></div>
</div>
</section>
<section class="section statistics">
<div class="container">
<div class="statistics__wrap">
<div class="title is-hidden section__title"><h2 class="title__content">Статистика</h2></div>
<ul class="list flex-row statistics__list">
<li class="list__item col-lg-3 col-md-6 col-sm-12 statistics__item"><p
class="statistics__text"><span class="statistics__number">+40%</span>річного
приросту</p></li>
<li class="list__item col-lg-3 col-md-6 col-sm-12 statistics__item"><p
class="statistics__text"><span class="statistics__number">+130</span>компаньйонів
</p></li>
<li class="list__item col-lg-3 col-md-6 col-sm-12 statistics__item"><p
class="statistics__text"><span class="statistics__number">+300</span>успішних
проектів</p></li>
<li class="list__item col-lg-3 col-md-6 col-sm-12 statistics__item"><p
class="statistics__text"><span class="statistics__number">100%</span>задоволених
клієнтів</p></li>
</ul>
</div>
<div class="decor is-dots is-large statistics__dots-decor"></div>
</div>
</section>
<section class="section general-info" id="about">
<div class="container">
<div class="general-info__wrap">
<div class="general-info__images">
<div class="general-info__image"><img src="images/about/about-image-1.png"
alt="Фото спiвробiтникiв opensourse"></div>
<div class="general-info__image"><img src="images/about/about-image-2.png"
alt="Фото спiвробiтникiв opensourse"></div>
<div class="decor is-circle general-info__circle-decor"></div>
<div class="decor is-dots is-large general-info__dots-decor"></div>
</div>
<div class="general-info__content"><p class="general-info__subtitle">5 років досвіду</p>
<h2 class="general-info__title"><span>Ми надихаємось</span> модерновими дизайнерськими
рішеннями, сучасними трендами у сфері<br>веб-розробки та власним досвідом.</h2>
<p class="general-info__teaser">Проекти, які ми створюємо, щороку завойовують
нагороди<br>у міжнародних конкурсах і надихають своїх користувачів. Твоя кар`єра в
OSI – це крок назустріч новим можливостям<br>та професійному зростанню у середовищі
сучасного IT. Працюючи разом з нами, ти отримаєш можливість поринути в web-всесвіт,
розвинути свої технічні навички, познайомитись з цікавими проектами та отримати
релевантний досвід.</p>
<div class="general-info__infos">
<ul class="list-infos">
<li class="info-item is-tertiary list-infos__item"><p
class="info-item__content"><span class="fas fa-users info-item__icon"
aria-hidden="true"></span> <span
class="info-item__text-wrap"><span class="info-item__title">Командна робота</span> <span
class="info-item__text">OSI – це не тільки потужна команда, що створює сайти світового класу, але і справжня сім'я, що шанує найголовніші людські цінності.</span></span>
</p></li>
<li class="info-item is-tertiary list-infos__item"><p
class="info-item__content"><span class="fas fa-user-tie info-item__icon"
aria-hidden="true"></span> <span
class="info-item__text-wrap"><span class="info-item__title">Експертний підхід</span> <span
class="info-item__text">Співпраця з OSI – це твій шанс опанувати інноваційні технології на реальних проектах.</span></span>
</p></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="section technology" id="technologies">
<div class="container">
<div class="title is-hidden section__title"><h2 class="title__content">Технології</h2></div>
<div class="technology__block">
<div class="swiper-container technology__swiper">
<div class="swiper-wrapper">
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/typo3.svg"
alt="typo3"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/drupal.svg"
alt="drupal"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/wordpress.svg"
alt="wordpress"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/react.svg"
alt="react"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/lmysql.svg"
alt="lmysql"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/ansible.svg"
alt="ansible"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/css.svg"
alt="css"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/docker.svg"
alt="docker"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/flutter.svg"
alt="flutter"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/git.svg"
alt="git"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/html.svg"
alt="html"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/jenkins.svg"
alt="jenkins"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/JQuery.svg"
alt="JQuery"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/js.svg"
alt="js"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/linux.svg"
alt="linux"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/mariadb.svg"
alt="mariadb"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/nginx.svg"
alt="nginx"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/php.svg"
alt="php"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/proxmox.svg"
alt="proxmox"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/symfony.svg"
alt="symfony"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/ts.svg"
alt="ts"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/vue-js.svg"
alt="vue-js"></div>
</div>
<div class="technology__swiper-item swiper-slide">
<div class="technology__swiper-svg"><img src="images/technology/wordpress.svg"
alt="wordpress"></div>
</div>
</div>
</div>
<div class="technology__swiper-button is-prev"><span aria-hidden="true"
class="far fa-angle-left"></span> <span
class="sr-only">Вперед</span></div>
<div class="technology__swiper-button is-next"><span aria-hidden="true"
class="far fa-angle-right"></span>
<span class="sr-only">Назад</span></div>
</div>
</div>
</section>
<section class="section development" id="development">
<div class="container">
<div class="title is-center section__title"><h2 class="title__content">Напрями розробки</h2>
</div>
<ul class="list flex-row">
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M462.6,0.1H0.2V413h231.2v99.1h280.8V198.3h-49.5V0.1z M446.1,16.6v49.5H16.7V16.6H446.1z M16.7,396.5V82.7h429.4v115.6
H285.8l-54.4,54.4v44.7H74.5c-22.8,0-41.3,18.5-41.3,41.3c0,22.8,18.5,41.3,41.3,41.3h156.9v16.5H16.7z M132.3,363.5v-16.5H281v16.5
H132.3z M74.5,363.5c-13.7,0-24.8-11.1-24.8-24.8s11.1-24.8,24.8-24.8h8.3v49.5H74.5z M99.3,313.9h16.5v49.5H99.3V313.9z
M297.5,317.6l47.2,17.7c1.4,0.5,2.4,1.9,2.4,3.4c0,1.5-1,2.9-2.4,3.4l-47.2,17.7V317.6z M281,330.4H132.3v-16.5H281V330.4z
M281,226.5v21.4h-21.4L281,226.5z M495.7,495.6H247.9V380h42.8l59.7-22.4c7.8-2.9,13.1-10.5,13.1-18.9c0-8.4-5.3-16-13.1-18.9
l-59.7-22.4h-42.8v-33h49.5v-49.5h198.2V495.6z M49.7,49.6H33.2V33.1h16.5V49.6z M82.8,49.6H66.2V33.1h16.5V49.6z M115.8,49.6H99.3
V33.1h16.5V49.6z M479.1,247.8H314v-16.5h165.2V247.8z M314,280.9v-16.5h165.2v16.5H314z M380.1,297.4h99.1v16.5h-99.1V297.4z
M380.1,330.4h99.1v16.5h-99.1V330.4z M380.1,363.5h99.1V380h-99.1V363.5z M264.4,396.5h214.7V413H264.4V396.5z M264.4,429.5h214.7
V446H264.4V429.5z M462.6,462.5h16.5v16.5h-16.5V462.5z M264.4,462.5h181.7v16.5H264.4V462.5z M214.9,99.2H33.2v82.6h181.7V99.2z
M198.4,165.3H49.7v-49.5h148.6V165.3z M214.9,198.3H33.2v82.6h181.7V198.3z M198.4,264.4H49.7v-49.5h148.6V264.4z"/></svg></span>
<h3 class="development-item__title">UI/UX</h3>
<p class="development-item__teaser">Проектування та дизайнерська робота у створенні
сучасних<br>і зручних для користувачів інтерфейсів.</p></article>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M0,429.4h66.1v57.8c0,13.7,11.1,24.8,24.8,24.8h330.3c13.7,0,24.8-11.1,24.8-24.8v-57.8H512V0H0V429.4z M429.4,487.2
c0,4.5-3.7,8.3-8.3,8.3H90.8c-4.5,0-8.3-3.7-8.3-8.3V355.1c0-4.5,3.7-8.3,8.3-8.3h113.9c4.9,0,9.7-1.4,13.7-4.2l16.4-11
c1.4-0.9,2.9-1.4,4.6-1.4h181.7c4.5,0,8.3,3.7,8.3,8.3V487.2z M445.9,412.9v-74.3c0-13.7-11.1-24.8-24.8-24.8H239.5
c-4.9,0-9.7,1.4-13.7,4.2l-16.5,11c-1.4,0.9-2.9,1.4-4.6,1.4H90.8c-13.7,0-24.8,11.1-24.8,24.8v57.8H16.5V82.6h479v330.3H445.9z
M495.5,16.5v49.5h-479V16.5H495.5z M49.5,49.5H33V33h16.5V49.5z M82.6,49.5H66.1V33h16.5V49.5z M115.6,49.5H99.1V33h16.5V49.5z
M99.1,479h181.7V363.4H99.1V479z M115.6,445.9h16.5v16.5h-16.5V445.9z M231.2,429.4h-16.5v-16.5h16.5V429.4z M247.7,412.9h16.5
v16.5h-16.5V412.9z M181.7,429.4v-16.5h16.5v16.5H181.7z M231.2,445.9v16.5h-82.6v-16.5H231.2z M214.7,396.4v-16.5h16.5v16.5H214.7z
M198.2,396.4h-16.5v-16.5h16.5V396.4z M165.2,396.4h-16.5v-16.5h16.5V396.4z M165.2,412.9v16.5h-16.5v-16.5H165.2z M132.1,429.4
h-16.5v-16.5h16.5V429.4z M247.7,462.5v-16.5h16.5v16.5H247.7z M264.3,396.4h-16.5v-16.5h16.5V396.4z M132.1,379.9v16.5h-16.5v-16.5
H132.1z M297.3,479h115.6V363.4H297.3V479z M313.8,445.9h16.5v16.5h-16.5V445.9z M363.4,412.9v16.5h-16.5v-16.5H363.4z M346.8,396.4
v-16.5h16.5v16.5H346.8z M379.9,412.9h16.5v16.5h-16.5V412.9z M363.4,445.9v16.5h-16.5v-16.5H363.4z M330.3,429.4h-16.5v-16.5h16.5
V429.4z M379.9,462.5v-16.5h16.5v16.5H379.9z M396.4,396.4h-16.5v-16.5h16.5V396.4z M330.3,379.9v16.5h-16.5v-16.5H330.3z
M310.7,137.4l90.6,72.5l-90.6,72.5l-10.3-12.9l74.5-59.6l-74.5-59.6L310.7,137.4z M211.6,150.3l-74.5,59.6l74.5,59.6l-10.3,12.9
l-90.6-72.5l90.6-72.5L211.6,150.3z M277.4,121.2l15.6,5.3l-58.4,172l-15.6-5.3L277.4,121.2z"/></svg></span>
<h3 class="development-item__title">Frontend</h3>
<p class="development-item__teaser">Розробка користувацького інтерфейсу і
функцій,<br>які працюють на стороні клієнта веб-сайту або програми.</p>
</article>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M479.6,73.8l9.6-19.2l-31.8-31.8l-19.2,9.6c-9.2-5.4-18.9-9.4-29.1-12.1L402.3,0h-44.9l-6.8,20.3
c-10.2,2.7-20,6.7-29.1,12.1l-19.2-9.6l-31.8,31.8l9.6,19.2c-5.4,9.2-9.4,18.9-12.1,29.1l-20.3,6.8v22.5H41.3
C18.5,132.1,0,150.7,0,173.4v247.7c0,22.8,18.5,41.3,41.3,41.3h107.4v33h-33V512h280.8v-16.5h-33v-33h107.4
c22.8,0,41.3-18.5,41.3-41.3V109.7l-20.3-6.8C489,92.7,485,82.9,479.6,73.8z M346.8,495.5H165.2v-33h181.7V495.5z M470.7,445.9H41.3
c-13.7,0-24.8-11.1-24.8-24.8v-8.3h479v8.3C495.5,434.8,484.4,445.9,470.7,445.9z M495.5,396.4h-479v-223
c0-13.7,11.1-24.8,24.8-24.8h206.5v6l20.3,6.8c2.7,10.2,6.7,20,12.1,29.1l-9.6,19.2l31.8,31.8l19.2-9.6c9.2,5.4,18.9,9.4,29.1,12.1
l6.8,20.3h44.9l6.8-20.3c10.2-2.7,20-6.7,29.1-12.1l19.2,9.6l31.8-31.8l-9.6-19.2c5.4-9.2,9.4-18.9,12.1-29.1l3.8-1.3V396.4z
M495.5,140.4v2.3l-17.8,5.9l-1,4.6c-2.5,11.5-7,22.4-13.5,32.4l-2.5,4l8.4,16.8l-14.9,14.9l-16.9-8.4l-4,2.5
c-10,6.4-20.9,11-32.4,13.5l-4.6,1l-6,17.8h-21.1l-5.9-17.8l-4.6-1c-11.5-2.5-22.4-7-32.4-13.5l-4-2.5l-16.9,8.4l-14.9-14.9
l8.4-16.8l-2.5-4c-6.4-10-11-20.9-13.5-32.4l-1-4.6l-17.8-5.9v-21.1l17.8-5.9l1-4.6c2.5-11.5,7-22.4,13.5-32.4l2.5-4l-8.4-16.8
l14.9-14.9l16.9,8.4l4-2.5c10-6.4,20.9-11,32.4-13.5l4.6-1l6-17.8h21.1l5.9,17.8l4.6,1c11.5,2.5,22.4,7,32.4,13.5l4,2.5l16.9-8.4
l14.9,14.9l-8.4,16.8l2.5,4c6.4,10,11,20.9,13.5,32.4l1,4.6l17.8,5.9V140.4z M379.9,49.5c-45.5,0-82.6,37-82.6,82.6
s37,82.6,82.6,82.6s82.6-37,82.6-82.6S425.4,49.5,379.9,49.5z M379.9,198.2c-36.4,0-66.1-29.6-66.1-66.1s29.6-66.1,66.1-66.1
s66.1,29.6,66.1,66.1S416.3,198.2,379.9,198.2z M379.9,99.1c-18.2,0-33,14.8-33,33s14.8,33,33,33s33-14.8,33-33
S398.1,99.1,379.9,99.1z M379.9,148.6c-9.1,0-16.5-7.4-16.5-16.5s7.4-16.5,16.5-16.5c9.1,0,16.5,7.4,16.5,16.5
S389,148.6,379.9,148.6z M74.3,173.4h8.3v16.5h-8.3c-4.5,0-8.3,3.7-8.3,8.3v8.3c0,9.9-4.3,18.7-11.2,24.8
c6.9,6.1,11.2,14.9,11.2,24.8v8.3c0,4.6,3.7,8.3,8.3,8.3h8.3V289h-8.3c-13.7,0-24.8-11.1-24.8-24.8V256c0-9.1-7.4-16.5-16.5-16.5
V223c9.1,0,16.5-7.4,16.5-16.5v-8.3C49.5,184.5,60.7,173.4,74.3,173.4z M322.1,297.3v16.5c-9.1,0-16.5,7.4-16.5,16.5v8.3
c0,13.7-11.1,24.8-24.8,24.8h-8.3v-16.5h8.3c4.5,0,8.3-3.7,8.3-8.3v-8.3c0-9.9,4.3-18.7,11.2-24.8c-6.9-6.1-11.2-14.9-11.2-24.8
v-8.3c0-4.6-3.7-8.3-8.3-8.3h-8.3v-16.5h8.3c13.7,0,24.8,11.1,24.8,24.8v8.3C305.5,289.9,313,297.3,322.1,297.3z M99.1,181.7H256
v16.5H99.1V181.7z M132.1,214.7H256v16.5H132.1V214.7z M115.6,231.2H99.1v-16.5h16.5V231.2z M99.1,247.7H256v16.5H99.1V247.7z
M99.1,280.8H256v16.5H99.1V280.8z M239.5,313.8H256v16.5h-16.5V313.8z M223,330.3H99.1v-16.5H223V330.3z M99.1,346.8H256v16.5H99.1
V346.8z"/></svg></span>
<h3 class="development-item__title">Backend</h3>
<p class="development-item__teaser">Розробка апаратно-програмних засобів, за
допомогою яких реалізована логіка роботи сайту та взаємодія з базами даних.</p>
</article>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M256,313.8c-22.8,0-41.3,18.5-41.3,41.3c0,22.8,18.5,41.3,41.3,41.3s41.3-18.5,41.3-41.3C297.3,332.3,278.8,313.8,256,313.8
z M256,379.9c-13.7,0-24.8-11.1-24.8-24.8s11.1-24.8,24.8-24.8s24.8,11.1,24.8,24.8S269.7,379.9,256,379.9z M247.7,33h66.1v16.5
h-66.1V33z M247.7,66.1h66.1v16.5h-66.1V66.1z M198.2,99.1h115.6v16.5H198.2V99.1z M198.2,132.1h115.6v16.5H198.2V132.1z
M198.2,165.2h115.6v16.5H198.2V165.2z M396.4,264.3h49.5v82.6h-99.1v-14.2l-20.3-6.8l9.6-19.1L304.3,275l-19.1,9.6l-6.8-20.3h-14.2
v-49.5h82.6v-99.1h99.1v46.1L427,142.8l-11.7,11.7l38.9,38.9l38.9-38.9l-11.7-11.7l-18.9,18.9V99.1H346.8V0H219.5l-54.4,54.4v44.7
H49.5v62.6l-18.9-18.9l-11.7,11.7l38.9,38.9l38.9-38.9L85,142.8l-18.9,18.9v-46.1h99.1v99.1h82.6v49.5h-14.2l-6.8,20.3l-19.1-9.6
l-31.8,31.8l9.6,19.1l-20.3,6.8v14.2H66.1v-82.6h49.5v-66.1H0v66.1h49.5v133.3c-14.2,3.7-24.8,16.5-24.8,31.9c0,18.2,14.8,33,33,33
s33-14.8,33-33c0-15.3-10.6-28.2-24.8-31.9v-34.2h49.5V464c-9.6,3.4-16.5,12.5-16.5,23.3c0,13.7,11.1,24.8,24.8,24.8
s24.8-11.1,24.8-24.8c0-10.8-6.9-19.8-16.5-23.3V363.4h33v14.2l20.3,6.8l-9.6,19.1l31.8,31.8l19.1-9.6l6.8,20.3h44.9l6.8-20.3
l19.1,9.6l31.8-31.8l-9.6-19.1l20.3-6.8v-14.2h33V464c-9.6,3.4-16.5,12.5-16.5,23.3c0,13.7,11.1,24.8,24.8,24.8s24.8-11.1,24.8-24.8
c0-10.8-6.9-19.8-16.5-23.3V363.4h49.5v34.2c-14.2,3.7-24.8,16.5-24.8,31.9c0,18.2,14.8,33,33,33s33-14.8,33-33
c0-15.3-10.6-28.2-24.8-31.9V264.3H512v-66.1H396.4V264.3z M214.7,28.2v21.4h-21.4L214.7,28.2z M181.7,66.1h49.5V16.5h99.1v181.7
H181.7V66.1z M16.5,214.7h82.6v33H16.5V214.7z M74.3,429.4c0,9.1-7.4,16.5-16.5,16.5s-16.5-7.4-16.5-16.5c0-9.1,7.4-16.5,16.5-16.5
S74.3,420.3,74.3,429.4z M123.9,495.5c-4.6,0-8.3-3.7-8.3-8.3c0-4.5,3.7-8.3,8.3-8.3s8.3,3.7,8.3,8.3
C132.1,491.8,128.4,495.5,123.9,495.5z M330.3,365.7l-18.9,6.3l-1.4,3.6c-0.4,1.1-0.8,2.1-1.3,3.1l-1.6,3.6l8.9,17.9l-14.9,14.9
l-17.9-8.9l-3.6,1.6c-1,0.5-2,0.9-3.1,1.3l-3.7,1.4l-6.3,19h-21.1l-6.3-19l-3.7-1.4c-1-0.4-2.1-0.8-3.1-1.3l-3.6-1.6l-17.9,8.9
L196,400.2l8.9-17.9l-1.6-3.6c-0.5-1-0.9-2.1-1.3-3.1l-1.4-3.6l-18.9-6.3v-21.1l18.9-6.3l1.4-3.6c0.4-1.1,0.8-2.1,1.3-3.1l1.6-3.6
L196,310l14.9-14.9l17.9,8.9l3.6-1.6c1-0.5,2-0.9,3.1-1.3l3.7-1.4l6.3-19h21.1l6.3,19l3.7,1.4c1,0.4,2.1,0.8,3.1,1.3l3.6,1.6
l17.9-8.9L316,310l-8.9,17.9l1.6,3.6c0.5,1,0.9,2.1,1.3,3.1l1.4,3.6l18.9,6.3V365.7z M388.1,495.5c-4.6,0-8.3-3.7-8.3-8.3
c0-4.5,3.7-8.3,8.3-8.3s8.3,3.7,8.3,8.3C396.4,491.8,392.7,495.5,388.1,495.5z M470.7,429.4c0,9.1-7.4,16.5-16.5,16.5
c-9.1,0-16.5-7.4-16.5-16.5c0-9.1,7.4-16.5,16.5-16.5C463.3,412.9,470.7,420.3,470.7,429.4z M412.9,214.7h82.6v33h-82.6V214.7z"/></svg></span>
<h3 class="development-item__title">QA & Testing</h3>
<p class="development-item__teaser">Забезпечення контроля якості розробки
програмного продукта та аналіз на відповідність вимогам замовника сайту.</p>
</article>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M477.5,181.7H345.4v-16.5h132.1V181.7z M461,198.2H345.4v16.5H461V198.2z M419.7,132.1h90.8v115.6H312.3v-49.5h-79.8
l-101.9,78.4v37.2h57.8v82.6h-57.8v50.7c14.2,3.7,24.8,16.5,24.8,31.9c0,18.2-14.8,33-33,33s-33-14.8-33-33
c0-15.4,10.6-28.2,24.8-31.9v-50.7H56.3v-82.6h57.8v-37.2L1.5,189.9l112.6-86.6V64.9C99.9,61.2,89.4,48.4,89.4,33
c0-18.2,14.8-33,33-33c15.3,0,28.2,10.6,31.9,24.8h265.4V132.1z M122.4,462.5c-9.1,0-16.5,7.4-16.5,16.5c0,9.1,7.4,16.5,16.5,16.5
s16.5-7.4,16.5-16.5C138.9,469.9,131.5,462.5,122.4,462.5z M171.9,330.3H72.8v49.5h99.1V330.3z M122.4,49.5
c9.1,0,16.5-7.4,16.5-16.5s-7.4-16.5-16.5-16.5s-16.5,7.4-16.5,16.5S113.3,49.5,122.4,49.5z M216.2,189.9l-93.8-72.2l-93.8,72.2
l93.8,72.2L216.2,189.9z M312.3,181.7v-49.5h90.8V41.3H154.2c-3,11.6-12,20.6-23.6,23.6v38.4l101.9,78.4H312.3z M494,148.6H328.8
v82.6H494V148.6z M485.7,454.2H221.5V305.5h264.3V454.2z M469.2,322.1H238v115.6h231.2V322.1z M271,338.6h-16.5v16.5H271V338.6z
M452.7,338.6H287.5v16.5h165.2V338.6z M452.7,371.6H287.5v16.5h165.2V371.6z M271,371.6h-16.5v16.5H271V371.6z M271,404.6h-16.5
v16.5H271V404.6z M452.7,404.6H287.5v16.5h165.2V404.6z"/></svg></span>
<h3 class="development-item__title">Architecture</h3>
<p class="development-item__teaser">Проектування архітектури клієнтської та
операційної частин проекту, реалізація технології «клієнт-сервер»<br>для сайту
замовника.</p></article>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="development-item"><span class="development-item__svg"><svg
aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path
d="M82.6,82.6H66.1V66.1h16.5V82.6z M115.6,66.1H99.1v16.5h16.5V66.1z M297.3,66.1h-16.5v33h16.5V66.1z M264.3,66.1h-16.5v33
h16.5V66.1z M231.2,66.1h-16.5v33h16.5V66.1z M66.1,247.7h16.5v-16.5H66.1V247.7z M99.1,247.7h16.5v-16.5H99.1V247.7z M214.7,264.3
h16.5v-33h-16.5V264.3z M280.8,148.6v16.5h16.5v-16.5H280.8z M247.7,165.2h16.5v-16.5h-16.5V165.2z M66.1,181.7h16.5v-33H66.1V181.7
z M99.1,181.7h16.5v-33H99.1V181.7z M132.1,181.7h16.5v-33h-16.5V181.7z M66.1,313.8h132.1v49.5H66.1V313.8z M82.6,346.8h99.1v-16.5
H82.6V346.8z M66.1,396.4h16.5v-16.5H66.1V396.4z M99.1,396.4h16.5v-16.5H99.1V396.4z M132.1,396.4h16.5v-16.5h-16.5V396.4z
M165.2,396.4h16.5v-16.5h-16.5V396.4z M512,363.4c0,82-66.7,148.6-148.6,148.6c-58.2,0-108.6-33.7-133-82.6H24.8
C11.1,429.4,0,418.3,0,404.6V24.8C0,11.1,11.1,0,24.8,0h313.8c13.7,0,24.8,11.1,24.8,24.8v189.9C445.3,214.7,512,281.4,512,363.4z
M371.6,231.6v14.2c0,8.2,4.6,15.6,11.9,19.3c13,6.5,21.1,19.6,21.1,34.1v2.2c0,10.2-4,19.8-11.2,27l-7.3,7.3
c-4.1,4.1-6.3,9.5-6.3,15.3v2.2c0,8.2,4.6,15.7,11.9,19.3l10.2,5.1c3,1.5,6.3,2.3,9.7,2.3h5.7c8.9,0,16.8-5.3,20.1-13.6l1.5-3.7
c5.8-14.6,19.7-24,35.4-24h18.7C481.9,280.2,432.3,235.4,371.6,231.6z M24.8,412.9H33V33h297.3v185.5c5.4-1.2,10.9-2.2,16.5-2.9
V24.8c0-4.5-3.7-8.3-8.3-8.3H24.8c-4.6,0-8.3,3.7-8.3,8.3v379.9C16.5,409.2,20.2,412.9,24.8,412.9z M313.8,223.4v-8.7H49.5v66.1
h190.3C257.5,254.4,283.4,234.2,313.8,223.4z M313.8,49.5H49.5v66.1h264.3V49.5z M49.5,198.2h264.3v-66.1H49.5V198.2z M223.4,412.9
c-5.5-15.5-8.7-32.2-8.7-49.5c0-23.8,5.7-46.1,15.7-66.1H49.5v115.6H223.4z M363.4,495.5c19.2,0,37.4-4.2,53.9-11.6l-4.6-6.9
c-2.6-3.9-7-6.2-11.7-6.2h-7c-16.9,0-30.6-13.7-30.6-30.6c0-4.3-1.9-8.3-5.3-11l-24.5-19.6c-7.3-5.8-11.5-14.5-11.5-23.9v-8.3
c0-7.7-6.3-14-14-14h-9c-14.5,0-27.1-10.3-30-24.6l-1.1-5.4c-1.3-6.5-7.1-11.3-13.8-11.3h-16.3c-4.3,13-6.7,26.9-6.7,41.3
C231.2,436.2,290.5,495.5,363.4,495.5z M495.5,363.4c0-2.8-0.2-5.5-0.4-8.3h-20.6c-8.9,0-16.8,5.3-20.1,13.6l-1.5,3.7
c-5.8,14.6-19.7,24-35.4,24h-5.7c-5.9,0-11.8-1.4-17.1-4l-10.2-5.1c-13-6.5-21.1-19.6-21.1-34.1V351c0-10.2,4-19.8,11.2-27l7.3-7.3
c4.1-4.1,6.3-9.5,6.3-15.3v-2.2c0-8.2-4.6-15.7-11.9-19.3c-13-6.5-21.1-19.6-21.1-34.1v-14.2c-48.6,3-90,32.3-110.4,73.9h9.5
c14.5,0,27.1,10.3,30,24.6l1.1,5.4c1.3,6.5,7.1,11.3,13.8,11.3h9c16.9,0,30.6,13.7,30.6,30.6v8.3c0,4.3,1.9,8.3,5.3,11l24.5,19.6
c7.3,5.8,11.5,14.5,11.5,23.9c0,7.7,6.3,14,14,14h7c10.2,0,19.8,5.1,25.4,13.6l5.5,8.3C470,452.9,495.5,411.1,495.5,363.4z"/></svg></span>
<h3 class="development-item__title">DevOps</h3>
<p class="development-item__teaser">Практики організації створення та оновлення
програмних продуктів і послуг, інформаційно-технологічного обслуговування та
зближення робочих процесів один з одним.</p></article>
</li>
</ul>
<div class="decor is-waves development__waves-decor"></div>
<div class="decor is-dots is-large development__dots-decor"></div>
</div>
</section>
<section class="section vacancy" id="vacancy">
<div class="container">
<div class="title is-center is-inverted section__title"><h2 class="title__content">Вакансії</h2>
</div>
<ul class="list flex-row">
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="vacancy-item"><h3 class="vacancy-item__title">Frontend developer</h3>
<p class="vacancy-item__teaser">HTML5/CSS3, JavaScript/ES6/jQuery (DOM, BOM),
SASS/LESS/Stylus/PostCSS</p>
<button class="btn vacancy-item__button" data-fancybox type="button"
data-src="#vacancy-popup-fe" data-modal="true"><span aria-hidden="true"
class="far fa-info-circle"></span>
<span class="vacancy-item__button-text">Детальна інформація</span></button>
</article>
<div class="vacancy-popup" id="vacancy-popup-fe"><h2 class="vacancy-popup__title">
Frontend developer</h2>
<button data-fancybox-close class="vacancy-popup__close">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 25.7 25.7">
<polygon
points="25,25.7 12.9,13.6 0.7,25.7 0,25 12.1,12.9 0,0.7 0.7,0 12.9,12.1 25,0 25.7,0.7 13.6,12.9 25.7,25 "/>
</svg>
<span class="sr-only">Закрити</span></button>
<div class="vacancy-popup__content">
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Основні скіли</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
HTML5/CSS3
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
JavaScript/ES6/jQuery (DOM, BOM)
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
SASS/LESS/Stylus/PostCSS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Gulp/Grunt
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
BEM/SMACSS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
UX/UI
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
GIT
</li>
</ul>
</div>
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">Буде
плюсом</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Pug/Nunjucks
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Webpack
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Bootstrap/Foundation/Bulma та іншими
фреймворками
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з React/Vue/Angular
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Знання англійської мови (intermediate)
</li>
</ul>
</div>
</div>
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Робочі обов'язки</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка клієнтських вебсайтів
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Створення та підтримка веб-сервісів компанії
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Продовження розробки та модернізація мобільних додатків
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка SPA
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Співпраця з командою backend та PM
</li>
</ul>
</div>
<div class="vacancy-popup__links"><a class="btn vacancy-popup__link -phone"
href="tel:+0012345678900"><span
class="fas fa-mobile-alt" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Подзвонити</span> </a><a
class="btn vacancy-popup__link -questionnaire"><span
class="fas fa-file-signature" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Заповнити заявку на вакансію</span></a>
</div>
</div>
</div>
</div>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="vacancy-item"><h3 class="vacancy-item__title">WordPress integrator</h3>
<p class="vacancy-item__teaser">PHP 5/7, MySQL, Git, Composer, Docker</p>
<button class="btn vacancy-item__button" data-fancybox type="button"
data-src="#vacancy-popup-wordpress-integrator" data-modal="true"><span
aria-hidden="true" class="far fa-info-circle"></span> <span
class="vacancy-item__button-text">Детальна інформація</span></button>
</article>
<div class="vacancy-popup" id="vacancy-popup-wordpress-integrator"><h2
class="vacancy-popup__title">WordPress integrator</h2>
<button data-fancybox-close class="vacancy-popup__close">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 25.7 25.7">
<polygon
points="25,25.7 12.9,13.6 0.7,25.7 0,25 12.1,12.9 0,0.7 0.7,0 12.9,12.1 25,0 25.7,0.7 13.6,12.9 25.7,25 "/>
</svg>
<span class="sr-only">Закрити</span></button>
<div class="vacancy-popup__content">
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Основні скіли</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
PHP 5/7
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
MySQL
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Git
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Composer
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Docker
</li>
</ul>
</div>
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">Буде
плюсом</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Bedrock stack
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з ACF Pro
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Знання англійської мови (рівень, достатній для розуміння
технічної документації)
</li>
</ul>
</div>
</div>
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Робочі обов'язки</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка плагінів для WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка тем для WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Підтримка існуючих проектів на WordPress CMS
</li>
</ul>
</div>
<div class="vacancy-popup__links"><a class="btn vacancy-popup__link -phone"
href="tel:+0012345678900"><span
class="fas fa-mobile-alt" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Подзвонити</span> </a><a
class="btn vacancy-popup__link -questionnaire"><span
class="fas fa-file-signature" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Заповнити заявку на вакансію</span></a>
</div>
</div>
</div>
</div>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="vacancy-item"><h3 class="vacancy-item__title">WordPress PHP
developer</h3>
<p class="vacancy-item__teaser">PHP 5/7, MySQL, Git, Composer, Docker</p>
<button class="btn vacancy-item__button" data-fancybox type="button"
data-src="#vacancy-popup-wordpress-php" data-modal="true"><span
aria-hidden="true" class="far fa-info-circle"></span> <span
class="vacancy-item__button-text">Детальна інформація</span></button>
</article>
<div class="vacancy-popup" id="vacancy-popup-wordpress-php"><h2
class="vacancy-popup__title">WordPress PHP developer</h2>
<button data-fancybox-close class="vacancy-popup__close">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 25.7 25.7">
<polygon
points="25,25.7 12.9,13.6 0.7,25.7 0,25 12.1,12.9 0,0.7 0.7,0 12.9,12.1 25,0 25.7,0.7 13.6,12.9 25.7,25 "/>
</svg>
<span class="sr-only">Закрити</span></button>
<div class="vacancy-popup__content">
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Основні скіли</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
PHP 5/7
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
MySQL
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Git
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Composer
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Docker
</li>
</ul>
</div>
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">Буде
плюсом</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Bedrock stack
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з ACF Pro
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Знання англійської мови (рівень, достатній для розуміння
технічної документації)
</li>
</ul>
</div>
</div>
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Робочі обов'язки</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка плагінів для WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка тем для WordPress CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Підтримка існуючих проектів на WordPress CMS
</li>
</ul>
</div>
<div class="vacancy-popup__links"><a class="btn vacancy-popup__link -phone"
href="tel:+0012345678900"><span
class="fas fa-mobile-alt" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Подзвонити</span> </a><a
class="btn vacancy-popup__link -questionnaire"><span
class="fas fa-file-signature" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Заповнити заявку на вакансію</span></a>
</div>
</div>
</div>
</div>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="vacancy-item"><h3 class="vacancy-item__title">TYPO3 PHP developer</h3>
<p class="vacancy-item__teaser">PHP 5/7, MySQL, Git, Composer, Docker</p>
<button class="btn vacancy-item__button" data-fancybox type="button"
data-src="#vacancy-popup-php" data-modal="true"><span aria-hidden="true"
class="far fa-info-circle"></span>
<span class="vacancy-item__button-text">Детальна інформація</span></button>
</article>
<div class="vacancy-popup" id="vacancy-popup-php"><h2 class="vacancy-popup__title">TYPO3
PHP developer</h2>
<button data-fancybox-close class="vacancy-popup__close">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 25.7 25.7">
<polygon
points="25,25.7 12.9,13.6 0.7,25.7 0,25 12.1,12.9 0,0.7 0.7,0 12.9,12.1 25,0 25.7,0.7 13.6,12.9 25.7,25 "/>
</svg>
<span class="sr-only">Закрити</span></button>
<div class="vacancy-popup__content">
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Основні скіли</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
PHP 5/7
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
MySQL
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Git
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Composer
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Docker
</li>
</ul>
</div>
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">Буде
плюсом</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з TYPO3 CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Symfony Framework
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Solr
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Досвід роботи з Redis
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Знання англійської мови (рівень, достатній для розуміння
технічної документації)
</li>
</ul>
</div>
</div>
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Робочі обов'язки</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розробка та підтримка розширень для TYPO3 CMS
</li>
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Підтримка існуючих проектів на TYPO3 CMS
</li>
</ul>
</div>
<div class="vacancy-popup__links"><a class="btn vacancy-popup__link -phone"
href="tel:+0012345678900"><span
class="fas fa-mobile-alt" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Подзвонити</span> </a><a
class="btn vacancy-popup__link -questionnaire"><span
class="fas fa-file-signature" aria-hidden="true"></span> <span
class="vacancy-popup__link-text">Заповнити заявку на вакансію</span></a>
</div>
</div>
</div>
</div>
</li>
<li class="list__item col-lg-4 col-md-6 col-sm-12">
<article class="vacancy-item"><h3 class="vacancy-item__title">QA engineer</h3>
<p class="vacancy-item__teaser">Контроль якості та моніторинг розроблюваних
продуктів</p>
<button class="btn vacancy-item__button" data-fancybox type="button"
data-src="#vacancy-popup-qa" data-modal="true"><span aria-hidden="true"
class="far fa-info-circle"></span>
<span class="vacancy-item__button-text">Детальна інформація</span></button>
</article>
<div class="vacancy-popup" id="vacancy-popup-qa"><h2 class="vacancy-popup__title">QA
engineer</h2>
<button data-fancybox-close class="vacancy-popup__close">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 25.7 25.7">
<polygon
points="25,25.7 12.9,13.6 0.7,25.7 0,25 12.1,12.9 0,0.7 0.7,0 12.9,12.1 25,0 25.7,0.7 13.6,12.9 25.7,25 "/>
</svg>
<span class="sr-only">Закрити</span></button>
<div class="vacancy-popup__content">
<div class="vacancy-popup__content-column">
<div class="vacancy-popup__info"><h3 class="vacancy-popup__info-title">
Основні скіли</h3>
<ul class="list vacancy-popup__list">
<li class="vacancy-popup__listitem"><span aria-hidden="true"
class="far fa-chevron-right"></span>
Розуміння циклу розробки сайту