-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
708 lines (645 loc) · 34.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="../img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../img/favicon/favicon-16x16.png">
<link rel="manifest" href="../img/favicon/site.webmanifest">
<!--Styles-->
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/slick-theme.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<!--Scripts-->
<script src="js/lib/jquery-3.5.1.min.js" defer></script>
<script src="js/lib/slick.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js" defer></script>
<script src="js/lib/jquery.validate.min.js" defer></script>
<script src="js/lib/jquery.mask.min.js" defer></script>
<script src="js/script.js" defer></script>
<title>Plastering</title>
</head>
<body>
<!--Header-->
<header class="header">
<div class="container header__container">
<!--logo-->
<div class="logo header__logo">
<img src="img/logo.png" alt="logo" class="logo__icon">
<div class="logo__text">
<p class="logo__text-title">HYPSOLITE</p>
<span class="logo__text-subtitle">Plastering of walls</span>
</div>
</div>
<!--Phone & button-->
<div class="header__contacts">
<a href="tel:+74957710508" class="header__contacts-phone">+7 495 771 05 08</a>
<button class="btn btn-primary header__contacts-button" data-toggle="button">Get the consultation</button>
</div>
</div>
<div class="container header__container">
<!--header content-->
<div class="header__content">
<!--content text-->
<div class="header__content-text">
<h1 class="header__title">Mechanized plastering of walls</h1>
<p class="header__subtitle">Perfectly smooth walls in the shortest possible time</p>
<div class="header__pricetag">
<small class="header__pricetag-text">Cost of work<br> from <strong>300</strong> rub/м<sup>2</sup></small>
</div>
<p class="header__payment">Payment after delivery!</p>
</div>
<!--header form-->
<div class="header__form-wrap">
<form action="send.php" method="post" class="form header__form">
<p class="from-title header__form-title">To calculate the exact cost, order <strong>departure of the measurer</strong></p>
<fieldset>
<legend>Your name</legend>
<input class="form-input header__form-input" type="text" name="userName">
</fieldset>
<fieldset>
<legend>Phone number</legend>
<input class="form-input header__form-input" type="tel" name="userPhone" inputmode="tel">
</fieldset>
<button class="btn btn-primary form-button header__form-button">Leave a request</button>
<p class="header__form-text">We will arrive on the same day*</p>
</form>
<small class="header__workdays">* - measurements are carried out on working days Mon-Fri from 9:00 to 18:00</small>
</div>
</div>
</div>
</header>
<!--main-->
<main class="main">
<!--advantage-->
<section class="section advantage">
<!--container-->
<div class="container advantage__container">
<h2 class="section__title advantage__title">Benefits of working with us</h2>
<!--advantage row-->
<div class="row advantage__row">
<div class="advantage__column">
<img src="img/advantage-1.png" alt="advantage icon" class="advantage__column-icon">
<p class="advantage__column-title">Pay after the fact</p>
<span class="advantage__column-text">You pay for the work performed only after they have been completed. No hidden surcharges or milestones.</span>
</div>
<div class="advantage__column">
<img src="img/advantage-2.png" alt="advantage icon" class="advantage__column-icon">
<p class="advantage__column-title">We conclude an agreementр</p>
<span class="advantage__column-text">Before starting work, we conclude a contract for a legal entity. You can be sure that all obligations will be fulfilled.</span>
</div>
<div class="advantage__column">
<img src="img/advantage-3.png" alt="advantage icon" class="advantage__column-icon">
<p class="advantage__column-title">Right on time</p>
<span class="advantage__column-text">We work strictly according to the deadlines specified in the contract. If we are late, you pay less</span>
</div>
<div class="advantage__column">
<img src="img/advantage-4.png" alt="advantage icon" class="advantage__column-icon">
<p class="advantage__column-title">Save on materials</p>
<span class="advantage__column-text">We are a structural subdivision of a supplier of building mixtures <span
class="secondary">gicema.ru</span> and we give you the best prices.</span>
</div>
</div>
</div>
</section>
<!--price-->
<section class="section price">
<div class="container price__container">
<!--heading-->
<div class="price__heading">
<div class="price__heading-column"></div>
<div class="price__heading-column">
<h2 class="price__title">Prices</h2>
<p class="price__subtitle">Choose the option that suits you:</p>
</div>
<div class="price__heading-column">
<button class="btn btn-primary price__heading-button" data-toggle="button">Calculate the exact cost</button>
</div>
</div>
<!--row & columns-->
<div class="price__row">
<div class="price__column card">
<h3 class="price__column-title">Plaster with your material</h3>
<img src="img/price-img-1.jpg" alt="price image" class="price__column-image">
<span class="price__column-pricetag">from <strong>300</strong> rub/м<sup>2</sup></span>
<button class="ul-button">What is included in the price?</button>
<ul class="price__column-list">
<li>Carrying out works</li>
<li>Cleaning</li>
</ul>
<button class="btn btn-primary price__button" data-toggle="button">Order</button>
</div>
<div class="price__column card">
<h3 class="price__column-title">Plaster for putty</h3>
<img src="img/price-img-2.jpg" alt="price image" class="price__column-image">
<span class="price__column-pricetag">from <strong>530</strong> rub/м<sup>2</sup></span>
<button class="ul-button">What is included in the price?</button>
<ul class="price__column-list">
<li>Material delivery and lifting</li>
<li>Carrying out works</li>
<li>Cleaning</li>
<li>2 year warranty</li>
</ul>
<button class="btn btn-primary price__button" data-toggle="button">Order</button>
</div>
<div class="price__column card">
<h3 class="price__column-title">Wallpaper plaster</h3>
<img src="img/price-img-3.jpg" alt="price image" class="price__column-image">
<span class="price__column-pricetag">from <strong>560</strong> rub/м<sup>2</sup></span>
<button class="ul-button">What is included in the price?</button>
<ul class="price__column-list">
<li>Material delivery and lifting</li>
<li>Carrying out works</li>
<li>Cleaning</li>
<li>2 year warranty</li>
<li>You can immediately glue the wallpaper</li>
</ul>
<button class="btn btn-primary price__button" data-toggle="button">Order</button>
</div>
</div>
</div>
</section>
<!--feedback-->
<section class="section feedback">
<div class="container feedback__container">
<h2 class="section__title feedback__title">Reviews</h2>
<div class="feedback-slider">
<div class="feedback-slider-item">
<div class="feedback__row">
<div class="feedback__column">
<div class="fotorama" data-nav="thumbs" data-arrows="false">
<img src="img/feedback/photo/1.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/2.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/3.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/4.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/5.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/6.jpeg" alt="" class="fotorama-item">
</div>
</div>
<div class="feedback__column">
<p>Object: Moscow, Nakhimovsky prospect, 10</p>
<p>Area: <strong>357 м2</strong></p>
<p>Completed for: <strong>10 days</strong></p>
<p>Value: <strong>550 rubles per square meter</strong></p>
<p>Features: <strong>the unevenness of the walls reached 6 cm</strong></p>
<div class="client">
<img src="img/feedback/avatar.jpg" alt="client picture">
<div class="client__name">
<span>Customer</span>
<p>Nakhimov Artyom</p>
</div>
</div>
<p class="feedback__comment">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus
accumsan et viverra justo commodo. Proin sodales pulvinar tempor.
</p>
</div>
</div>
</div>
<div class="feedback-slider-item">
<div class="feedback__row">
<div class="feedback__column">
<div class="fotorama" data-nav="thumbs" data-arrows="false">
<img src="img/feedback/photo/1.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/2.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/3.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/4.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/5.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/6.jpeg" alt="" class="fotorama-item">
</div>
</div>
<div class="feedback__column">
<p>Object: Moscow, Nakhimovsky prospect, 10</p>
<p>Area: <strong>357 м2</strong></p>
<p>Completed for: <strong>10 days</strong></p>
<p>Value: <strong>550 rubles per square meter</strong></p>
<p>Features: <strong>the unevenness of the walls reached 6 cm</strong></p>
<div class="client">
<img src="img/feedback/avatar.jpg" alt="client picture">
<div class="client__name">
<span>Customer</span>
<p>Nakhimov Artyom</p>
</div>
</div>
<p class="feedback__comment">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus
accumsan et viverra justo commodo. Proin sodales pulvinar tempor.
</p>
</div>
</div>
</div>
<div class="feedback-slider-item">
<div class="feedback__row">
<div class="feedback__column">
<div class="fotorama" data-nav="thumbs" data-arrows="false">
<img src="img/feedback/photo/1.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/2.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/3.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/4.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/5.jpg" alt="" class="fotorama-item">
<img src="img/feedback/photo/6.jpeg" alt="" class="fotorama-item">
</div>
</div>
<div class="feedback__column">
<p>Object: Moscow, Nakhimovsky prospect, 10</p>
<p>Area: <strong>357 м2</strong></p>
<p>Completed for: <strong>10 days</strong></p>
<p>Value: <strong>550 rubles per square meter</strong></p>
<p>Features: <strong>the unevenness of the walls reached 6 cm</strong></p>
<div class="client">
<img src="img/feedback/avatar.jpg" alt="client picture">
<div class="client__name">
<span>Customer</span>
<p>Nakhimov Artyom</p>
</div>
</div>
<p class="feedback__comment">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus
accumsan et viverra justo commodo. Proin sodales pulvinar tempor.
</p>
</div>
</div>
</div>
</div>
<form action="send.php" method="post" class="form feedback__form">
<h3 class="from-title feedback__form-title">Do you want the same? Leave your contact details</h3>
<div class="feedback__form-input--wrap">
<fieldset>
<legend>Your name</legend>
<input class="form-input feedback__form-input" type="text" name="userName">
</fieldset>
<fieldset>
<legend>Phone number</legend>
<input class="form-input feedback__form-input" type="tel" name="userPhone" inputmode="tel">
</fieldset>
</div>
<button class="btn btn-primary form-button feedback__form-button">Leave a request</button>
<img src="img/feedback/hand.png" alt="picture of the sanding hand" class="feedback__form-image">
</form>
<span class="feedback__callback">We will call you back soon</span>
</div>
</section>
<!--structure-->
<section class="section structure">
<div class="container">
<h2 class="section__title structure__title">Scheme of work</h2>
<p class="section__subtitle structure__subtitle">Working on your object will include the following steps:</p>
<div class="row structure__row">
<div class="structure__column">
<div class="structure__column-icon--wrap">
<img src="img/structure/books.png" alt="picture of the books" class="structure__column-icon">
</div>
<p class="structure__column-title">Request</p>
<span class="structure__column-text">Leave an online application or call <a href="tel:+74957710508">+7 495 771 05 08</a></span>
</div>
<div class="structure__column">
<div class="structure__column-icon--wrap">
<img src="img/structure/truck.png" alt="picture of the truck" class="structure__column-icon">
</div>
<p class="structure__column-title">Departure of a specialist</p>
<span class="structure__column-text">Within 1 working day, a specialist comes to you who will take measurements for the exact cost of work</span>
</div>
<div class="structure__column">
<div class="structure__column-icon--wrap">
<img src="img/structure/notebook.png" alt="picture of the notebook" class="structure__column-icon">
</div>
<p class="structure__column-title">Preparation of contract</p>
<span class="structure__column-text">We prepare a contract and agree with you</span>
</div>
<div class="structure__column">
<div class="structure__column-icon--wrap">
<img src="img/structure/tool-box.png" alt="picture of the toolbox" class="structure__column-icon">
</div>
<p class="structure__column-title">Beginning of work</p>
<span class="structure__column-text">We deliver materials, equipment, sign a contract and start work</span>
</div>
<div class="structure__column">
<div class="structure__column-icon--wrap">
<img src="img/structure/calculator.png" alt="picture of the calculator" class="structure__column-icon">
</div>
<p class="structure__column-title">Completion of work</p>
<span class="structure__column-text">After completing the work, you check the quality and sign the delivery certificate, make the payment.</span>
</div>
</div>
</div>
</section>
<!--package-->
<section class="section package">
<div class="container package__container">
<h2 class="section__title package__title">Everything is 100% included!</h2>
<p class="section__subtitle package__subtitle">When performing work with our material, the price includes:</p>
<div class="row package__row">
<div class="package__column">
<img src="img/package/1.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Material:</p>
<small class="package__column-small">plaster, primer or concrete contact, beacons, mesh at the joints</small>
</div>
</div>
<div class="package__column">
<img src="img/package/2.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Delivery of equipment and materials to the site</p>
</div>
</div>
<div class="package__column">
<img src="img/package/3.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Surface preparation </p>
<small class="package__column-small">(cleaning, priming)</small>
</div>
</div>
<div class="package__column">
<img src="img/package/4.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Installation of beacons</p>
</div>
</div>
<div class="package__column">
<img src="img/package/5.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Surface plastering</p>
</div>
</div>
<div class="package__column">
<img src="img/package/6.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Removing beacons</p>
</div>
</div>
<div class="package__column">
<img src="img/package/7.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Polishing</p>
</div>
</div>
<div class="package__column">
<img src="img/package/8.png" alt="package icon" class="package__column-icon">
<div class="package__column-text">
<p class="package__column-title">Cleaning and garbage disposal</p>
</div>
</div>
</div>
</div>
</section>
<!--solutions-->
<section class="section solutions">
<div class="container solutions__container">
<img class="solutions__image" src="img/solutions/woman.png" alt="picture of the woman in PPE">
<h2 class="section__title solutions__title">We will dispel all fears</h2>
<div class="row solutions__row">
<div class="solutions__column problems">
<h3 class="solutions__column-title">What problems can there beы:</h3>
<ul class="solutions__column-list">
<li>
<img src="img/solutions/red-cross.png" alt="red cross">
Walls and corners will be uneven
</li>
<li>
<img src="img/solutions/red-cross.png" alt="red cross">
Repair will take many months
</li>
<li>
<img src="img/solutions/red-cross.png" alt="red cross">
Difficulties with the delivery and unloading of materials
</li>
<li>
<img src="img/solutions/red-cross.png" alt="red cross">
There will be debris and dust after work
</li>
</ul>
</div>
<div class="solutions__column">
<h3 class="solutions__column-title dark">Our solutions:</h3>
<ul class="solutions__column-list">
<li>
<img src="img/solutions/checked-symbol.png" alt="checked symbol">
High qualifications of specialists + minimum 5 years experience = perfectly smooth surfaces
</li>
<li>
<img src="img/solutions/checked-symbol.png" alt="checked symbol">
We observe the timing that are spelled out in the contract. At the apartment of 135 m2 leaves 3 to 5 days
</li>
<li>
<img src="img/solutions/checked-symbol.png" alt="checked symbol">
Delivery of material and lifting for free
</li>
<li>
<img src="img/solutions/checked-symbol.png" alt="checked symbol">
We remove and unload trash after work
</li>
</ul>
</div>
</div>
<!--mobile version apears on breakpoint 576px-->
<div class="solutions__mobile">
<h4 class="section__subtitle solutions__subtitle">What problems can there be:</h4>
<p class="solutions__question">Walls and corners will be uneven</p>
<div class="solutions__answer">
<p>Solution:</p>
<span>High qualifications of specialists + minimum 5 years experience = perfectly smooth surfaces</span>
</div>
<p class="solutions__question">Ремонт затянется на долгие месяцы</p>
<div class="solutions__answer">
<p>Solution:</p>
<span>We observe the timing that are spelled out in the contract. At the apartment of 135 m2 leaves 3 to 5 days</span>
</div>
<p class="solutions__question">Difficulties with the delivery and unloading of materials</p>
<div class="solutions__answer">
<p>Solution:</p>
<span>Delivery of material and lifting for free</span>
</div>
<p class="solutions__question">There will be debris and dust after work</p>
<div class="solutions__answer">
<p>Solution:</p>
<span>We remove and unload trash after work</span>
</div>
</div>
</div>
</section>
<!--materials-->
<section class="section materials">
<div class="container materials__container">
<h2 class="section__title materials__title">Materials</h2>
<p class="section__subtitle materials__subtitle">We only work with high-quality, proven materials, the following manufacturers.:</p>
<!--materials slider-->
<div class="row materials__row">
<div class="materials__column">
<img src="img/materials/1.png" alt="picture of materials" class="materials__column-image">
<p class="materials__column-title">Knauf</p>
<span class="materials__column-info">MP-75 <span class="strong">245</span> rub/bag</span>
<a href="#" class="materials__column-certificate">Certificate</a>
</div>
<div class="materials__column">
<img src="img/materials/2.png" alt="picture of materials" class="materials__column-image">
<p class="materials__column-title">Volma</p>
<span class="materials__column-info">Aqua layer <span class="strong">245</span> rub/bag <br> Gypsum Active <span class="strong">245</span> rub/bag</span>
<a href="#" class="materials__column-certificate">Certificate</a>
</div>
<div class="materials__column">
<img src="img/materials/3.png" alt="picture of materials" class="materials__column-image">
<p class="materials__column-title">Forman</p>
<span class="materials__column-info">Aqua Layer <span class="strong">245</span> rub/bag <br> Gypsum Active <span class="strong">245</span> rub/bag</span>
<a href="#" class="materials__column-certificate">Certificate</a>
</div>
<div class="materials__column">
<img src="img/materials/4.png" alt="picture of materials" class="materials__column-image">
<p class="materials__column-title">Ceresit</p>
<span class="materials__column-info">Aqua Layer <span class="strong">245</span> rub/bag <br> Gypsum Active <span class="strong">245</span> rub/bag</span>
<a href="#" class="materials__column-certificate">Sertificate</a>
</div>
</div>
</div>
</section>
<!--workinfo-->
<section class="section workinfo">
<div class="container">
<div class="row workinfo__row">
<div class="workinfo__column">
<h3 class="workinfo__title">See <br> how we work</h3>
<p class="workinfo__subtitle">Want to make sure the professionalism of our employees? </p>
<p class="workinfo__subtitle">You can do this by having arrived on one of our objects, and watching the progress of work. See equipment, materials and performance.</p>
</div>
<div class="workinfo__column">
<!--workinfo form-->
<div class="workinfo__form-wrap">
<form action="send.php" method="post" class="form workinfo__form">
<p class="from-title workinfo__form-title">Leave contact details for communication</p>
<fieldset>
<legend>Your name</legend>
<input class="form-input workinfo__form-input" type="text" name="userName">
</fieldset>
<fieldset>
<legend>Phone number</legend>
<input class="form-input workinfo__form-input" type="tel" name="userPhone" inputmode="tel">
</fieldset>
<button class="btn btn-primary form-button workinfo__form-button">Sign up for viewing</button>
<p class="workinfo__form-text">We will pick up the subject nearest to you</p>
</form>
</div>
</div>
</div>
</div>
</section>
<!--extra works-->
<section class="section extra">
<div class="container extra__container">
<h2 class="section__title extra__title light">Additional services</h2>
<p class="section__subtitle extra__subtitle light">In addition to plaster fish, you can order our following services.</p>
<div class="row extra__row">
<div class="extra__column">
<img src="img/extra/1.jpg" alt="picture of extra works" class="extra__column-image">
<p class="extra__column-title">Installation of wiring</p>
<button class="btn btn-primary extra__column-btn" data-toggle="button">Price</button>
</div>
<div class="extra__column">
<img src="img/extra/2.jpg" alt="picture of extra works" class="extra__column-image">
<p class="extra__column-title">Floor screed</p>
<button class="btn btn-primary extra__column-btn" data-toggle="button">Price</button>
</div>
<div class="extra__column">
<img src="img/extra/3.jpg" alt="picture of extra works" class="extra__column-image">
<p class="extra__column-title">Plumbing work</p>
<button class="btn btn-primary extra__column-btn" data-toggle="button">Price</button>
</div>
</div>
</div>
</section>
<section class="section contacts">
<div class="container contacts__container">
<div class="row contacts__row">
<div class="contacts__col">
<h2 class="contacts__title">Contacts</h2>
<p class="contacts__address">Office adress:</p>
<p class="contacts__address">Moscow, Kopean highway, 12, office 34</p>
<div class="map">
<script src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3Aeb138de6268879e8a90fa9ec8c01df16877b381deab127b062c2398e17005bfb&max-width=621&height=185&lang=en_RU&scroll=false"
defer></script>
</div>
<p class="contacts__address">Phone number:</p>
<a href="tel:74957710508" class="contacts__number"><strong> +7 495 771 05 08</strong></a>
<p class="contacts__email">
E-mail: <br>
<a class="secondary" href="mailto:order@gipsolit.ru">order@gipsolit.ru</a>
<br>
</p>
<p class="contacts__info">
Requisites: <br>
INN 35453453 ОGRN 34234234
</p>
</div>
<div class="contacts__col">
<div class="contacts__form-wrap">
<form action="send.php" method="post" class="form contacts__form">
<p class="from-title contacts__form-title">Leave contact details for communication</p>
<fieldset>
<legend>Your name</legend>
<input class="form-input contacts__form-input" type="text" name="userName">
</fieldset>
<fieldset>
<legend>Phone number</legend>
<input class="form-input contacts__form-input" type="tel" name="userPhone" inputmode="tel">
</fieldset>
<fieldset>
<legend>Ваш email</legend>
<input class="form-input contacts__form-input" type="email" name="userEmail" inputmode="email">
</fieldset>
<fieldset>
<legend>Your message</legend>
<input class="form-input contacts__form-input" type="text" name="userMessage">
</fieldset>
<button class="btn btn-primary form-button contacts__form-button">Sign up for viewing</button>
</form>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__container container">
<div class="footer__row row">
<!--logo-->
<div class="logo footer__logo">
<img src="img/logo.png" alt="logo" class="logo__icon">
<div class="logo__text">
<p class="logo__text-title">Plaster</p>
<span class="logo__text-subtitle">Stuccoing wall</span>
</div>
</div>
<!--contact phone-->
<a href="tel:+74957710508" class="footer__phone">+7 495 771 05 08</a>
<!--email-->
<div class="footer__email">
<a class="secondary" href="mailto:order@gipsolit.ru">order@gipsolit.ru</a>
<p>Mon-Fri: from 9:00 to 18:00</p>
</div>
</div>
</div>
</footer>
<div class="modal">
<div class="modal__dialog">
<img class="modal__close" src="img/close.svg" alt="close popUp">
<div class="modal__form-wrap">
<form action="send.php" method="post" class="form modal__form">
<p class="from-title modal__form-title">Leave your name and phone number, and our manager will contact you.</p>
<fieldset>
<legend>Your name</legend>
<input class="form-input modal__form-input" type="text" name="userName">
</fieldset>
<fieldset>
<legend>Phone number</legend>
<input class="form-input modal__form-input" type="tel" name="userPhone" inputmode="tel">
</fieldset>
<button class="btn btn-primary form-button modal__form-button">Leave the request</button>
</form>
<small class="modal__workdays">* - reverse calls are carried out on working days Mon-Fri from 9:00 to 18:00</small>
</div>
</div>
</div>
</body>
</html>