-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
599 lines (563 loc) · 23.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Steko</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
@font-face {
font-family: SF-Display; /* Имя шрифта */
src: url(fonts/SF-Pro-Display-Regular.otf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: SF-Text; /* Имя шрифта */
src: url(fonts/SF-Pro-Text-Regular.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: Avenir; /* Имя шрифта */
src: url(fonts/AvenirNext.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: AvenirBold; /* Имя шрифта */
src: url(fonts/AvenirNextCyr-Bold.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: Montserrat; /* Имя шрифта */
src: url(fonts/Montserrat-Regular.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: MontserratBold; /* Имя шрифта */
src: url(fonts/Montserrat-Bold.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
font-family: MontserratMedium; /* Имя шрифта */
src: url(fonts/Montserrat-Medium.ttf); /* Путь к файлу со шрифтом */
}
</style>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header>
<div class="layout-header">
<div id="nav-container">
<div class="toggle-icon">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
<div class="nav-logo">
<a href="">
<img id="biz_logo" src="img/steko-biz-logo.png">
<img id="logo_green" src="img/logo-green.png">
</a>
</div>
<nav id="menu">
<ul>
<li>
<a class="navi" href="#list1">Home</a>
</li>
<li>
<a class="navi" href="#list2">Recource</a>
</li>
<li>
<a class="navi" href="#list3">About us</a>
</li>
<li>
<a class="navi" href="#list4">Product</a>
</li>
<li>
<a class="navi" href="#list8">Contacts</a>
</li>
</ul>
</nav>
<!-- <div class="nav-lang">
<a class="nav-lang-active" href="">En</a>
<a href="">Ar</a>
</div> -->
</div>
</header>
<main class="main">
<div class="mob_menu">
<div class="mob-nav-lang">
<a class="mob-nav-lang-active" href="">En</a>
<a href="">Ar</a>
</div>
<div class="mob-logo">
<img src="img/logo-green.png">
</div>
<ul class="mob_ul">
<li>
<a class="mob_navi" href="#list1">Home</a>
</li>
<li>
<a class="mob_navi" href="#list2">Reference</a>
</li>
<li>
<a class="mob_navi" href="#list3">About us</a>
</li>
<li>
<a class="mob_navi" href="#list4">Product</a>
</li>
<li>
<a class="mob_navi" href="#list8">Contacts</a>
</li>
</ul>
</div>
<section id="list1" class="main-page">
<div class="screen-video">
<video class="vid" autoplay loop muted>
<source src="video/steko.v4.mp4" type="video/mp4">
</video>
</div>
<div class="layout layout-main">
<div class="main-desc">
<div class="desc-left">
<h1>Steko</h1>
<div class="desc-link">
<a href="">
<!-- <img src="img/green-around.png"> -->
<p>Window company</p>
</a>
</div>
</div>
<div class="desc-right">
<h2>perfect <br> windows <br> technology</h2>
<ul>
<li>
<p>- Innovative PVC profile</p>
</li>
<li>
<p>- Modern aluminum systems</p>
</li>
<li>
<p>- Exclusive multifunctional glass</p>
</li>
<li>
<p>- Reliable hardware</p>
</li>
</ul>
</div>
</div>
<div class="desc-contact">
<h3>Export Department:</h3>
<p>[email protected]</p>
<p>+48 537 294 533</p>
</div>
</div>
<!-- <div class="navigat">
<div class="line one"></div>
<div class="line two"></div>
<div class="line three"></div>
<div class="line four"></div>
<div class="line five"></div>
</div> -->
</section>
<section id="list2" class="ceo">
<div class="layout layout-ceo">
<div class="name">
<h3>Sergei Polozhai</h3>
<p>General Director</p>
<img src="img/S.png">
</div>
<div class="foto-ceo">
<img id="icon_sv" src="img/polozhai.png">
<img id="icon_sv_mob" src="img/sv.png">
</div>
<div class="disc-ceo">
<h2>Reference</h2>
<p>Steko is a major manufacturer of PVC windows with an annual capacity of more than 1,000,000 designs. Large production, 12 years of experience, the use of high-quality components and modern technologies make us the leader in this industry.<br><br>
We offer not simple windows – we offer innovation.<br><br>
I kindly invite you to cooperate and guarantee that our cooperation will be successful and profitable.
</p>
</div>
</div>
</section>
<section id="list3" class="about">
<div class="layout layout-about">
<div class="about-left">
<div class="count count-one">
<h6>Windows produced in 12 years</h6>
<p>43 000 000</p>
</div>
<div class="count count-two">
<h6>Units per day</h6>
<p>5000</p>
</div>
<div class="count count-three">
<h6>12 years on the market</h6>
<p>12</p>
</div>
</div>
<div class="about-right">
<h2>About <span>Steko</span></h2>
<p>Steko is a modern, dynamic company. On the basis of our own production (more than 14,000 square meters) we create products that people need today - energy-efficient windows, doors and facades that meet international quality standards.</p>
</div>
</div>
</section>
<section id="list4" class="profil">
<div class="layout layout-profil">
<div class="center profil-s">
<div class="desc-profil">
<h2>Profile <span>S300</span></h2>
<p>Profile S300 suits for solving simple and complex problems in architecture and construction. Lightweight and durable profile has good performance characteristics, guarantees protection against increased temperature. The reasonable price of the profile system S300 will make it possible to implement large-scale projects and to glaze any object in a profitable way.</p>
<ul>
<li>
<p><span>Number of chambers:</span> 3</p>
</li>
<li>
<p><span>Profile width: 58мм</span></p>
</li>
<li>
<p><span>Frame height:</span> 62мм</p>
</li>
<li>
<p><span>Glazed unit width:</span> 24мм, 33мм</p>
</li>
<li>
<p><span>Outer wall thickness:</span> 2,6мм</p>
</li>
<li>
<p><span>Soundproofing:</span> VDI 2719</p>
</li>
<li>
<p><span>Noise insulation class:</span> II до IV</p>
</li>
<li>
<p><span>Thermal transmittance:</span> R=0.63 m<sup>2</sup>K/Bт</p>
</li>
</ul>
</div>
<div class="profil-img pvc">
<img src="img/s300.png">
</div>
</div>
</div>
</section>
<section id="list5" class="alum-profil">
<div class="layout layout-profil">
<div class="center center-profil">
<div class="alum-profil-img">
<img src="img/kmd70.png">
</div>
<div class="desc-alum-profil">
<h2>Aluminium <span>profile</span></h2>
<p>Aluminum constructions from Steko allow to embody any design decision, they are durable, resistant to corrosion, high temperatures, deformations and other environmental influences. Aluminum profile perfectly goes with other materials and can be implemented in any color or texture of wood.<br><br>
We work with world famous brands of aluminum profiles and components: Schuco, Reynaers, Aluprof, Alutech and today we offer:</p>
<ul>
<li>
<p>- front glazing</p>
</li>
<li>
<p>- sliding systems</p>
</li>
<li>
<p>- folding aluminum systems</p>
</li>
<li>
<p>- automatic doors and windows</p>
</li>
<li>
<p>- zenithal lanterns</p>
</li>
</ul>
</div>
</div>
<div class="bottom-block-right alum-block">
<p>technology design</p>
</div>
</div>
</section>
<!-- <section class="glass">
<div class="layout layout-profil">
<div class="center">
<div class="desc-profil">
<h2>Энергосберегающие стекло <span>i-Glass</span> Steko</h2>
<p>Энергосберегающее стекло i-glass в составе стеклопакета делает конструкцию энергоэффективной в целом. Установленное внутри помещения, это стекло работает как отражатель и помогает сохранять прохладу в доме. Энергосберегающее стекло i-glass подходит для остекления как металлопластиковыми, так алюминиевыми конструкциями.</p>
</div>
<div class="profil-img glass-img">
<img src="img/iGlass.png">
<div class="icon cold-icon">
<img src="img/cold.png">
</div>
<div class="icon hot-icon">
<img src="img/hot.png">
</div>
</div>
</div>
<div class="bottom-block-left glass-block">
<p>for your comfort</p>
</div>
195.13.199.232 leed.steko.com.ua
</div>
</section> -->
<section id="list6" class="double-silver">
<div class="layout layout-profil">
<div class="center center-profil">
<div class="alum-profil-img double-silver-img">
<img src="img/iGlass.png">
<div class="icon cold-silver-icon">
<img src="img/cold.png">
<p>Keeps coolness</p>
</div>
<div class="icon time-silver-icon">
<img src="img/time.png">
<p>Protects from ultraviolet radiation</p>
</div>
<div class="icon sun-silver-icon">
<img src="img/sun.png">
<p>Transmits 72% of sunlight</p>
</div>
</div>
<div class="desc-alum-profil">
<h2>Multifuncional glass <span>Double Silver Steko</span></h2>
<p>Multifuncional glass Double Silver Steko is used for different purposes simultaneously. Thanks to special silver ions this glass:</p>
<ul>
<li>
<p>- protects from harmful ultraviolet radiation</p>
</li>
<li>
<p>- reflects heat energy, preventing overheating of the room</p>
</li>
<li>
<p>- keeps coolness indoors</p>
</li>
<li>
<p>- guarantees light transmission over 72%</p>
</li>
<li>
<p>- provides a comfortable microclimate</p>
</li>
<li>
<p>- eliminates surfaces’ discoloration</p>
</li>
<li>
<p>- improves the look of the facade</p>
</li>
</ul>
<br>
<p>The multifunctional glass Double Silver Steko is installed from the outside by its coating inside the glass unit. It is also used for any type of glazing.</p>
</div>
</div>
<div class="bottom-block-right double-silver-block">
<p>cold at summer</p>
</div>
</div>
</section>
<section id="list7" class="system">
<div class="layout layout-profil">
<div class="center">
<div class="desc-profil">
<h2><span>Sliding systems </span> from Steko</h2>
<p>Sliding systems from Steko provide an opportunity to make rational use of space, glaze large window and door aperture, guarantee tightness, sound insulation and coolness in the room while increasing the illuminated area. We offer two types of sliding systems:</p>
<ul>UPVC :
<li>
<p>- Tilt and Slide with Roto Patio hardware</p>
</li>
<li>
<p>- Sliding with Vorne hardware</p>
</li>
</ul>
<ul>Aluminium:
<li>
<p>- lightweight of the profile PR-26 PROFILCO for creating small-sizestructures</p>
</li>
<li>
<p>- durable of the profile PR-35 PROFILCO - for creating large-size structures</p>
</li>
<li>
<p>- Schüco folding systems for creating sliding structures of any width and configuration</p>
</li>
</ul>
</div>
<div class="profil-img system-img">
<img src="img/window.png">
</div>
</div>
<div class="bottom-block-left system-block">
<p>free movement</p>
</div>
<div class="bottom-block">
<img src="img/roto.png">
<img src="img/vorne.png">
</div>
</div>
</section>
</main>
<footer id="list8">
<div class="layout layout-footer">
<div class="center center-footer">
<div class="footer-right">
<div class="adress">
<h2>Office</h2>
<div class="contact">
<p>Ukraine<br>
Dnipro, 11, Artilna str.
</p>
<p>Ukraine,<br>
Lviv, Nadychi,<br>
3B Hrushevskoho str.
</p>
</div>
</div>
<div class="adress-contact">
<h2>Contact us</h2>
<div class="contact">
<p>[email protected] <br><br>
+380 68 055 22 11
</p>
</div>
</div>
</div>
<div class="footer-left">
<h2>Messange us</h2>
<form id="form_pop" onsubmit="return false;">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<textarea name="message" placeholder="Message"></textarea>
<button>send</button>
</form>
</div>
</div>
</div>
</footer>
<script src='js/main.js' ></script>
</body>
</html>
<!-- <h1 style="text-align: center;">
Условия доставки и монтажа розничной сети Steko</h1>
<p>
</p>
<div>
<div>
<img alt="Доставка и монтаж" src="/dostavka%20i%20montazh.jpg" style="text-align: justify; width: 400px; height: 546px; float: right; margin-left: 20px; margin-right: 20px;" title="Доставка и монтаж" /></div>
<h2 style="text-align: justify;">
Доставка:</h2>
</div>
<div>
<p style="text-align: justify;">
<span style="font-size:14px;">Во всех крупных городах Украины, в том числе в тех, где представлены фирменные салоны Steko, компания осуществляет БЕСПЛАТНАЯ ДОСТАВКА с подъемом на этаж ДО КВАРТИРЫ ПОКУПАТЕЛЯ собственными грузчиками. </span></p>
<p style="text-align: justify;">
<span style="font-size:14px;">Информация о стоимости доставки по другим городам, а также правила оформления заказа продукции по телефону: 050 050 55 00</span></p>
<h2 style="text-align: justify;">
Монтаж:</h2>
<h3>
Простой:</h3>
<p style="text-align: justify;">
<span style="font-size:14px;">В монтаж входит: демонтаж старых конструкций, вынос старых конструкций на этаж. Монтаж стандартных конструкций в типовых помещениях. Стандартные конструкции монтируются в кирпичные, блочные, панельные дома при помощи анкерных пластин и монтажной пены без использования гидро- и пароизоляционных материалов.</span></p>
<h3 style="text-align: justify;">
Сложный:</h3>
<p style="text-align: justify;">
<span style="font-size: 14px; text-align: justify;">В монтаж входит: демонтаж металлопластиковых конструкций с сохранением их целостности (чтобы окно можно было еще куда-нибудь применить). Входные двери, которые ставятся не на анкерные пластины, а на анкера, конструкции собирающиеся через соединители и с расширителями. Монтаж через анкерное крепление с наличием козырьков, отливов, нащельников и т.д. Монтаж входных дверей с дверной створкой (с наличием доводчика). Монтаж МПК площадью более 4-х - 5-ти квадратных метров. Теплый монтаж с использованием внутренней ленты, внешней ленты, ПСУЛ. Работа на высоте.Монтаж нестандартных входных дверей, а также нестандартные конструкци.</span><span style="font-size: 14px; text-align: justify; white-space: pre;"> </span></p>
<p style="text-align: justify;">
<span style="font-size: 14px; text-align: justify;">Монтаж крупногабаритных сборных конструкций (эркерный разворот, статические соединители, расширители и т.п.), раздвижные системы.</span></p>
<h3 style="text-align: justify;">
Сверхсложный:</h3>
<p style="text-align: justify;">
<span style="font-size:14px;">Монтаж по ГОСТу, сварочные работы и вынос. Дополнительное " сбивание" стены, откосов, дополнительное утепление откосов. Монтаж фасадных изделий с использованием статических усилителей. Монтаж нестандартных конструкций (арки, трапеции, треугольники и т.д.) Монтаж изделий, расположенных на высоте (балконы,лоджии и т.д.) либо с использованием строительных лесов. Монтаж изделий через эркерное соединение с козырьками, отливами, нащельниками. Монтаж фасадных изделий с использованием статических усилителей. Монтаж дорогостоящих конструкций (нестандартной ламинации, СП с пленкой, фурнитуры под покраску).</span></p>
<p style="text-align: justify;">
</p>
<p style="text-align: justify;">
</p>
<table align="center" border="4" cellpadding="4" cellspacing="4" style="width: 700px;">
<tbody>
<tr>
<td style="width: 194px; text-align: center;">
Города</td>
<td style="width: 273px; text-align: center;">
МОНТАЖ цена за кв.м, грн</td>
<td style="width: 180px; text-align: center;">
Замер</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<span><em><strong> простой</strong></em></span></td>
</tr>
<tr>
<td style="width: 194px; text-align: center;">
Все города (кроме Киева)</td>
<td style="width: 273px; text-align: center;">
190</td>
<td style="width: 180px; text-align: center;">
100</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<span><strong><em> сложный</em></strong></span></td>
</tr>
<tr>
<td style="width: 194px; text-align: center;">
Все города (кроме Киева)</td>
<td style="width: 273px; text-align: center;">
250</td>
<td style="width: 180px; text-align: center;">
100</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<strong><em> сверхсложный</em></strong></td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center;">
<strong><span><span>Примечание: </span></span></strong><span><span>стоимость дополнительных работ при сверхсложном монтаже оговаривается индивидуально с заказчиком</span></span></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">
</p>
<table align="center" border="4" cellpadding="4" cellspacing="4" style="width: 700px;">
<tbody>
<tr>
<td style="width: 193px; text-align: center;">
Города</td>
<td style="width: 278px; text-align: center;">
МОНТАЖ цена за кв.м, грн</td>
<td style="width: 178px; text-align: center;">
Замер</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<em><strong> простой</strong></em></td>
</tr>
<tr>
<td style="width: 193px; text-align: center;">
Киева</td>
<td style="width: 278px; text-align: center;">
250</td>
<td style="width: 178px; text-align: center;">
200</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<strong><em> сложный</em></strong></td>
</tr>
<tr>
<td style="width: 193px; text-align: center;">
Киева</td>
<td style="width: 278px; text-align: center;">
320</td>
<td style="width: 178px; text-align: center;">
200</td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center; background-color: #cccccc;">
<strong><em> сверхсложный</em></strong></td>
</tr>
<tr>
<td colspan="3" style="width: 193px; text-align: center;">
<strong><span><span>Примечание: </span></span></strong><span><span>стоимость дополнительных работ при сверхсложном монтаже оговаривается индивидуально с заказчиком</span></span></td>
</tr>
</tbody>
</table>
<p>
</p>
<p>
</p>
<p style="text-align: center;">
<iframe allow="autoplay; encrypted-media" allowfullscreen="" frameborder="0" height="480" src="https://www.youtube.com/embed/jpdd5fIQ-18" width="854"></iframe></p>
<p style="text-align: center;">
<img src="http://www.steko.com.ua/img/dostavka_i_montag.jpg" style="max-width: 490px;" /></p>
</div> -->