-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
830 lines (830 loc) · 41.1 KB
/
index.html
File metadata and controls
830 lines (830 loc) · 41.1 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
<!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>Slash soft</title>
<link rel="stylesheet" href="./css/reset.css">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css">
<script src="https://kit.fontawesome.com/c983106ad6.js" crossorigin="anonymous"></script>
</head>
<body>
<header id="home_page">
<div class="home_page_wrapper flex_column">
<div class="button__menu">
<div class="dash">
</div>
</div>
<aside class="home_page_nav">
<img class="home_page_link" src="./uploads/images/Logo.svg" alt="Slash Soft">
<ul class="home_page_nav_list flex_column">
<li><a class="services_link" href="">SERVICES</a></li>
<li><a class="about_us_link" href="">ABOUT US</a></li>
<li><a class="cases_link" href="">CASES</a></li>
<li><a class="workflow_link" href="">WORKFLOW</a></li>
<li><a class="our_team_link" href="">OUR TEAM</a></li>
<li><a class="technology_link" href="">TECHNOLOGY</a></li>
<li><a class="faq_link" href="">FAQ</a></li>
<li><a class="contact_us_link" href="">CONTACT US</a></li>
</ul>
</aside>
<div class="home_page_inner">
<img src="./uploads/images/Logo.svg" alt="Slash Soft">
<div class="burger_menu">
<div class="home_page_nav">
<ul class="home_page_nav_list flex_column">
<li><a class="services_link" href="">SERVICES</a></li>
<li><a class="about_us_link" href="">ABOUT US</a></li>
<li><a class="cases_link" href="">CASES</a></li>
<li><a class="workflow_link" href="">WORKFLOW</a></li>
<li><a class="our_team_link" href="">OUR TEAM</a></li>
<li><a class="technology_link" href="">TECHNOLOGY</a></li>
<li><a class="faq_link" href="">FAQ</a></li>
<li><a class="contact_us_link" href="">CONTACT US</a></li>
</ul>
</div>
<div class="contacts_container">
<div class="social_container">
<a href=""><img src="./uploads/images/in_black.svg" alt=""></a>
<a href=""><img src="./uploads/images/Instagram_black.svg" alt=""></a>
</div>
</div>
</div>
<div class="about_us">
<h2 class="section_caption">
What We Offer
</h2>
<h1 class="section_title">
Our E-Commerce Solution Your Online Trade Vision
</h1>
<p class="description">
We have expertise in creating online stores: in 3 years we have created
and modified more than 20 online stores, we know all the pitfalls very well. We will help you create
a product for your budget.
</p>
<button class="button__colored contact_us_link">Discuss my project</button>
<button class="button__transparent services_link"><span class="services_link">Explore</span> <i
class="fas fa-arrow-down services_link"></i></button>
</div>
<div class="home_page_image_container"><img class="home_page_image" src="./uploads/images/Main%20Screen.svg"
height="454" width="553" alt="Main Screen">
<img class="home_page_gradient" src="./uploads/images/Gradient.svg">
</div>
<div class="features flex">
<p class="description">Develop e-commerce software solutions</p>
<p class="description">Audit and technical support for existing solutions</p>
<p class="description">Manual and automatic quality control</p>
</div>
</div>
</div>
</header>
<section id="services">
<div class="services_wrapper flex">
<div class="services_inner">
<h2 class="section_caption">
Services
</h2>
<h1 class="section_title">
What We Do?
</h1>
<div class="capabilities">
<div class="capability flex">
<span class="description">01</span>
<img src="./uploads/images/Develop.png" alt="Develop">
<div>
<h3 class="capability_title">Develop an online store from scratch</h3>
<ul>
<li class="description">
Develop stores or catalogs for Web and Mobile.</li>
<li class="description">
Develop various modules, packages for integration with <div class="word_description">3-rd party services
<div>
<h3>
<span class="dot description">3-rd party services</span>
<button><img src="./uploads/images/close.svg" alt=""></button>
</h3>
<p class="description">
For example: CRM or ERP system, 3-rd party database.
</p>
</div>
</div>
</li>
<li class="description">
Develop highload custom solutions based on <div class="word_description">Symfony
<div>
<h3>
<span class="dot description">Symfony</span>
<button><img src="./uploads/images/close.svg" alt=""></button>
</h3>
<p class="description">
Symfony is a PHP open-source framework. It's a good tool for Web Developer.
</p>
</div>
</div> or <div class="word_description">Spring Framework
<div>
<h3>
<span class="dot description">Spring Framework</span>
<button><img src="./uploads/images/close.svg" alt=""></button>
</h3>
<p class="description">
Spring is a java based framework. It's a time-tested tool which is used by Netflix, Hybris, etc. Top #1 according to Java Frameworks ranking.
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="capability flex">
<span class="description">02</span>
<img src="./uploads/images/Support.png" alt="Develop">
<div>
<h3 class="capability_title">Audit and technical support for existing solutions</h3>
<ul>
<li class="description">Evaluate maintainability, performance, extensibility of your
codebase.
</li>
<li class="description">Setup <div class="word_description">CI/CD
<div>
<h3>
<span class="dot description">CI/CD</span>
<button><img src="./uploads/images/close.svg" alt=""></button>
</h3>
<p class="description">
With a use of CI/CD updates are delivered to website automatically.
</p>
</div>
</div> and the Agile workflow process.
</li>
<li class="description">Review and update product’s UI/UX.
</li>
</ul>
</div>
</div>
<div class="capability flex">
<span class="description">03</span>
<img src="./uploads/images/QA.png" alt="Develop">
<div>
<h3 class="capability_title">Manual & automated QA</h3>
<ul>
<li class="description">Analyze user-stories to improve business cases.
</li>
<li class="description">Prevent issues before and during development stage
</li>
<li class="description">Automated testing reduces costs and accelerates process.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="about_us">
<div class="about_us_wrapper flex">
<div class="about_us_container">
<h2 class="section_caption">
About Us
</h2>
<h1 class="section_title">
We Are Slash-Soft
</h1>
<p class="description">
Our values shape the way we work with our clients, delivering outstanding user experience supported by
cutting-edge technologies.
</p>
</div>
<div class="about_us_advantages flex_column">
<div class="about_us_advantage">
<h2 class="advantage_title">
We make a qualitative assessment
</h2>
<p class="description">
Thanks to our narrow specialization, we evaluate the work on the project in detail and accurately.
We break down and schedule all tasks by the hour and provide reporting.
You will clearly see the path to the final product, as well as what you will spend your money on and
what you can save on.
</p>
</div>
<div class="about_us_advantage">
<h2 class="advantage_title">
Regular visible deliverables
</h2>
<p class="description">
Thanks to agile development, we divide work into sprints.
Closing each sprint with the consent of the customer, thereby we guarantee each time a part of the
work completed that satisfies the client.
</p>
</div>
<div class="about_us_advantage">
<h2 class="advantage_title">
Close communication with team
</h2>
<p class="description">
A small team, which gives the least time for communication and coordination.
Close communication for in-depth product exploration. We close the entire cycle from the technical
task to its deployment.
</p>
</div>
<div class="about_us_advantage">
<h2 class="advantage_title">
We take into work the existing projects
</h2>
<p class="description">
We take into work not only new projects, but existing ones as well. We work on any projects of the customer and support them, regardless of the
technology stack used. We are interested in your good sales, since most likely you will come to us for the implementation of
new ideas.
</p>
</div>
</div>
</div>
</section>
<section id="cases">
<div class="cases_wrapper flex">
<div class="cases_inner">
<div class="cases_container">
<h2 class="section_caption">
Cases
</h2>
<h1 class="section_title">
We Have Solutions For Business Inquiries or Issue
</h1>
</div>
<div class="solution_offer flex">
<h2 class="solution_title">
Food Delivery
</h2>
<div class="solution_buttons_container">
<button class="button__back"></button>
<button class="button__next"></button>
</div>
</div>
<div class="slider_container flex">
<div class="slider">
<div class="offer_specification flex">
<img src="./uploads/images/Case%20Image%201.png" width="443" height="294" alt="offer">
<div class="offer_description">
<h3 class="offer_description_title">
Client
</h3>
<p class="description">
Supermarket chain which has more than 15 stores spread across the country.
</p>
<h3 class="offer_description_title">
Task
</h3>
<p class="description">
To provide a set of services from “Functional requirements” to “Administrator’s guide”
for managing and monitoring website.
</p>
<h3 class="offer_description_title">
Work
</h3>
<p class="description">
Since development time was limited, we decided to split our team.
Part of our team was dedicated to develop a graphical design working with the client, at
the same time the backend team was working on technical design.
When graphical design was ready, it was passed to the frontend team, which was able to
create layouts.
</p>
</div>
</div>
<div class="offer_result flex">
<div class="offer_result_description">
<h3 class="offer_description_title">
Result
</h3>
<p class="description">
Thanks to our well-worked team, we were able to finish the project in 2 months.
The supermarket chain launched the website with product catalog and discount program
integration.
</p>
<h3 class="offer_description_title">
Next to develop according to roadmap:
</h3>
<ul>
<li class="description">
Delivery system
</li>
<li class="description">
Mobile applications
</li>
<li class="description">
Smart stock management system
</li>
</ul>
</div>
<div class="offer_discus flex_column">
<h3 class="offer_discus_title">
We provide a free audit for your project
</h3>
<button class="button__transparent contact_us_link">Discuss my project</button>
</div>
</div>
</div>
<div class="slider">
<div class="offer_specification flex">
<img src="./uploads/images/Case%20Image%202.png" width="443" height="294" alt="offer">
<div class="offer_description">
<h3 class="offer_description_title">
Client
</h3>
<p class="description">
Fashion apparel retailer.
</p>
<h3 class="offer_description_title">
Task
</h3>
<p class="description">
Figure out main customer groups and develop multiple graphical designs to fit them.
Design and implement workflow for client and B2B customers.
Develop a mobile application.
</p>
<h3 class="offer_description_title">
Work
</h3>
<p class="description">
We developed a functional requirements. Client and ui/ux designer worked on design
concept.
Working in collaboration with client we decided to split website into 3 graphical
designs according to the selling clothes.
Secondly we developed registration module based on B2B model. Added a feature to display different prices for different customers.
</p>
</div>
</div>
<div class="offer_result flex">
<div class="offer_result_description">
<h3 class="offer_description_title">
Result
</h3>
<p class="description">
Developed a unique catalog for each group of users, to increase user’s engagement and
sales conversion.
Due to detailed requirements analysis, we found out, that all B2B requirements would be
covered by Magento platform, though we had to implement custom modules for the following
tasks:
</p>
<ul>
<li class="description">
Switch between B2B and B2C version of the website.
</li>
<li class="description">
Custom pricing scheme
</li>
<li class="description">
Recommendation system based on AI integration
</li>
</ul>
</div>
<div class="offer_discus flex_column">
<h3 class="offer_discus_title">
We provide a free audit for your project
</h3>
<button class="button__transparent contact_us_link">Discuss my project</button>
</div>
</div>
</div>
<div class="slider">
<div class="offer_specification flex">
<img src="./uploads/images/Case%20Image%203.png" width="443" height="294" alt="offer">
<div class="offer_description">
<h3 class="offer_description_title">
Client
</h3>
<p class="description">
Union of furniture manufacturers.
</p>
<h3 class="offer_description_title">
Task
</h3>
<p class="description">
To develop a website with integrated furniture constructor, customized for each
manufacturer, with ability to provide a detailed information about current order
status from submitting and fulfilling to customer’s review.
</p>
<h3 class="offer_description_title">
Work
</h3>
<p class="description">
Due to many manufacturers we decided to unify a set of processes. Split task to
basically 2 global tasks: Provide ability for customer to shop as on regular B2C e-commerce website and allow manufacturers to work in their administration panel.
</p>
</div>
</div>
<div class="offer_result flex">
<div class="offer_result_description">
<h3 class="offer_description_title">
Result
</h3>
<p class="description">
Using the division of tasks we develop a webstore with orders created by adjustable
templates and detailed status information. For small business, we give an
opportunity to unity by one brand with different furniture but with the same
standard. For each furniture store we developed a custom template for their own
tasks.
</p>
<ul style="visibility: hidden">
<li class="description">
Switch between B2B and B2C version of the website.
</li>
<li class="description">
Custom pricing scheme
</li>
<li class="description">
Recommendation system based on AI integration
</li>
</ul>
</div>
<div class="offer_discus flex_column">
<h3 class="offer_discus_title">
We provide a free audit for your project
</h3>
<button class="button__transparent contact_us_link">Discuss my project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="workflow">
<div class="workflow_wrapper flex">
<div class="workflow_inner">
<div class="workflow_container">
<h2 class="section_caption">
Workflow
</h2>
<h1 class="section_title">
How We Do It?
</h1>
</div>
<div class="workflow_stages">
<img src="./uploads/images/Assessment%20and%20decomposition.svg" alt="workflow">
<div class="stage_cycle flex_column">
<div class="stage_circle flex">
<span class="stage_number">01</span>
</div>
<div class="stage_line"></div>
<div class="stage_circle flex">
<span class="stage_number">02</span>
</div>
<div class="stage_line"></div>
<div class="stage_circle flex">
<span class="stage_number">03</span>
</div>
</div>
<div class="stage_description">
<h3 class="stage_description_title">Assessment and decomposition of the project</h3>
<ul>
<li class="description">
We interview the customer's working group, collect briefs and build an idea of the project.
</li>
<li class="description">
We will compile business requirements based on the collected data.
</li>
<li class="description">
Thanks to the document, you will see what you pay for and how long it will take for the
project.
</li>
</ul>
</div>
<img src="./uploads/images/Sprint%20planning.svg" alt="workflow">
<div class="stage_description">
<h3 class="stage_description_title">Sprint planning</h3>
<ul>
<li class="description">
We agree on the key tasks of the sprint and fix them, with a duration of 1-2 weeks.
</li>
<li class="description">
Project creation roadmap.
</li>
<li class="description">
According to the data, the client understands and validates the state of readiness of the
project.
</li>
</ul>
</div>
<img src="./uploads/images/Agile%20methodology.svg" alt="workflow">
<div class="stage_description">
<h3 class="stage_description_title">Development using agile methodology</h3>
<ul>
<li class="description">
Taking a sprint with a bunch of tasks into work, our employees implement and test the task,
after which we provide a demo to the customer.
</li>
<li class="description">
The client validates the work and agrees on the next set of tasks.
</li>
<li class="description">
Close and continuous execution of tasks brings the product as close as possible to the
customer's vision.
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="our_team">
<div class="our_team_wrapper flex">
<div class="our_team_inner">
<div class="our_team_title_container">
<h2 class="section_caption">
Our Team
</h2>
<h1 class="section_title">
E-Commerce Experts Today
</h1>
</div>
<div class="our_team_container">
<div class="developer">
<img src="./uploads/images/Aliaksei.svg" alt="Aliaksei">
<h2 class="developers_name">
Aliaksei
</h2>
<p class="developers_position">
CTO
</p>
<p class="description">
Designs and develops a product.
</p>
</div>
<div class="developer">
<img src="./uploads/images/Ilya.svg" alt="Ilya">
<h2 class="developers_name">
Ilya
</h2>
<p class="developers_position">
PROJECT MANAGER
</p>
<p class="description">
Draw up a technical assignment and accompany the customer on the project.
</p>
</div>
<div class="developer">
<img src="./uploads/images/Lesha.svg" alt="Lesha">
<h2 class="developers_name">
Lesha
</h2>
<p class="developers_position">
FRONT-END & MOBILE DEVELOPER
</p>
<p class="description">
Will develop the visual part of the project.
</p>
</div>
<div class="developer">
<img src="./uploads/images/Nikolay.svg" alt="Nikolay">
<h2 class="developers_name">
Nikolay
</h2>
<p class="developers_position">
BACK-END DEVELOPER
</p>
<p class="description">
Implements business tasks at the application level.
</p>
</div>
<div class="developer">
<img src="./uploads/images/Christina.svg" alt="Christina">
<h2 class="developers_name">
Christina
</h2>
<p class="developers_position">
QA
</p>
<p class="description">
Controls the correctness and quality of the product.
</p>
</div>
<div class="developer">
<img src="./uploads/images/Sasha.svg" alt="Sasha">
<h2 class="developers_name">
Sasha
</h2>
<p class="developers_position">
DEVOPS
</p>
<p class="description">
Integrates third-party services and implements API.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="technology">
<div class="technology_wrapper flex">
<div class="technology_inner">
<div class="technology_title_container">
<h2 class="section_caption">
Technology
</h2>
<h1 class="section_title">
Technology in Action
</h1>
</div>
<div class="technology_options flex">
<button class="button__platforms underline">Platforms and frameworks</button>
<button class="button__languages">Languages</button>
<button class="button__other">Other</button>
</div>
<div class="technology_slider_container flex">
<div class="technology_slide">
<img src="./uploads/images/Magento.svg" alt="Magento">
<img src="./uploads/images/Symfony.svg" alt="Symfony">
<img src="./uploads/images/Atg.svg" alt="Atg">
<img src="./uploads/images/Spring.svg" alt="Spring">
</div>
<div class="technology_slide">
<img src="./uploads/images/Php.svg" alt="Php">
<img src="./uploads/images/Java.svg" alt="Java">
<img src="./uploads/images/JS.svg" alt="JS">
</div>
<div class="technology_slide">
<img src="./uploads/images/Docker.svg" alt="Docker">
<img src="./uploads/images/Kubernetes.svg" alt="Kubernetes.svg">
<img src="./uploads/images/Jenkins.svg" alt="Jenkins">
</div>
</div>
</div>
</div>
</section>
<section id="faq">
<div class="faq_wrapper flex">
<div class="faq_inner">
<div class="faq_title_container">
<h2 class="section_caption">
FAQ
</h2>
<h1 class="section_title">
Popular Questions
And Their Answers
</h1>
</div>
<div class="faq_chat">
<div class="faq_chat_slider flex_column">
<div class="question">
What can you offer to me? 👀
</div>
<div class="answer">
<p class="description">
We provide custom solutions for e-commerce, technologies we use are:
</p>
<ul>
<li>
<div class="dot description">Taking a sprint with
<div class="word_description">a bunch
<div>
<h3>
<span class="dot description">a bunch</span>
<button><img src="./uploads/images/close.svg" alt=""></button>
</h3>
<p class="description">
Taking a sprint with a bunch of tasks into work, our employees implement
and test the task,
after which we provide a demo to the customer.
</p>
</div>
</div>
of tasks into work, our
employees
implement and test the task,
after which we provide a demo to the customer.
</div>
</li>
<li><p class="dot description">The client validates the work and agrees on the next set of
tasks.</p></li>
<li><p class="dot description">Close and continuous execution of tasks brings the product as
close as possible to the customer's vision.</p></li>
</ul>
</div>
<div class="question">
How do you work?
</div>
<div class="answer">
<p class="description">
typing...
</p>
</div>
</div>
</div>
<div class="faq_buttons_container flex">
<button class="button__question button__colored">
How do you work? <img src="./uploads/images/chat.svg" alt="">
</button>
<button class="chat button__transparent">
View all
</button>
</div>
</div>
</div>
</section>
<section id="contact_us">
<div class="contact_us_wrapper flex">
<div class="contact_us_inner">
<div class="contact_us_title_container flex">
<div>
<h2 class="section_caption">
Contact Us
</h2>
<h1 class="section_title">
Tell Us About Your IdeasWe'll Do The Rest!
</h1>
</div>
<p class="description">
We provide a free consultation
on your project within 24 hours.
</p>
</div>
<form id="contacts_form" class="contacts_form flex" action="">
<div class="subject_container">
<h2 class="form_title"><span class="numbering description">01</span>Pick a subject</h2>
<div class="subject flex">
<input type="radio" checked id="consultation" name="subject">
<label for="consultation">
<img src="./uploads/images/consultation.svg" alt="Consultation">
<span class="description">
Consultation
</span></label>
<input type="radio" id="development" name="subject">
<label for="development"><img src="./uploads/images/Development.svg" alt="Development">
<span class="description">
Development
</span></label>
<input type="radio" id="audit" name="subject">
<label for="audit"><img src="./uploads/images/Audit.svg" alt="Audit and support">
<span class="description">
Audit and support
</span></label>
<input type="radio" id="qa" name="subject">
<label for="qa"><img src="./uploads/images/QA.svg" alt="QA">
<span class="description">
Manual & automated QA
</span></label>
</div>
</div>
<div class="user_information">
<div>
<h2 class="form_title"><span class="numbering description">02</span>Wright more about it</h2>
<div class="name_container"><input type="text" id="name" name="Full Name"
placeholder="Full Name"></div>
<div class="email_container"><input type="text" id="email" name="email" placeholder="Email">
</div>
<textarea placeholder="Your Message"></textarea>
</div>
<div class="flex">
<div class="flex">
<input type="checkbox" id="agree">
<label class="agree_label" for="agree"><span
class="description">I agree to terms and conditions</span>
</label>
</div>
<button type="submit" class="button__colored button__submit">Send Message <img
src="./uploads/images/Vector.svg" alt="">
</button>
</div>
</div>
</form>
</div>
</div>
</section>
<footer id="footer_menu">
<div class="footer_menu_wrapper flex">
<div class="footer_menu_inner flex">
<div class="logo_container">
<img src="./uploads/images/Logo%20(2).svg" class="home_page_link" alt="Slash Soft">
<p class="description">
E-commerce software development company
</p>
</div>
<ul class="footer_nav_list flex">
<li><a class="about_us_link" href="">About Us</a></li>
<li><a class="services_link" href="">Services</a></li>
<li><a class="workflow_link" href="">Workflow</a></li>
<li><a class="our_team_link" href="">Our Team</a></li>
<li><a class="faq_link" href="">FAQ</a></li>
<li><a class="contact_us_link" href="">Contact Us</a></li>
</ul>
<div class="social_container">
<a href=""><img src="./uploads/images/in.svg" alt=""></a>
<a href=""><img src="./uploads/images/instagram.svg" alt=""></a>
</div>
</div>
</div>
<div class="footer_info flex">
<a href="" class="description">2020 @ Slash-Soft – All Rights Reserved</a>
<a href="" class="description">Terms And Conditions</a>
<a href="" class="description">Privacy Policy</a>
</div>
</footer>
<div class="backdrop"></div>
<script defer src="./script.js"></script>
</body>
</html>