-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
635 lines (588 loc) · 39.1 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
<!DOCTYPE html>
<html>
<head>
<title>Namor Votilav</title>
<meta name="p:domain_verify" content="19ed4fa15621bea8ba88f2c15b5d92fc"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
<script name="main">
$(document).ready(function(){
var str = parseInt($(".slide").height());
$( window ).resize(function() {
str = parseInt($(".slide").height());
});
var halfstr = str/2;
$(document).scroll(function(event) {
changeTitle();
thirdReveal();
slideHor();
});
function changeTitle(){
if ($(document).scrollTop()>=0){
$(".card p").text("").append('<a href="mailto:[email protected]?subject=I want to work with you, pal.">[email protected]</a>');
$(".slide:nth-child(3)").children('div').css({
"transform": "scale(0.9)",
"-webkit-transform": "scale(0.9)"
});
}
if ($(document).scrollTop()>=halfstr){
$(".card p").text('interface designer');
$(".slide:nth-child(3)").children('div').css({
"transform": "scale(1)",
"-webkit-transform": "scale(1)"
});
}
if ($(document).scrollTop()>=halfstr+str){
$(".card p").text('digital tutor');
}
if ($(document).scrollTop()>=str*2+halfstr){
$(".card p").text('projection mapping designer');
$("#me").css({
opacity: 0
});
$(".card").css({
marginLeft: -200
});
}
if ($(document).scrollTop()>=str*3+halfstr){
$(".card p").text("designer");
$("#me").css({
opacity: 1
});
$(".card").css({
marginLeft: -550
});
}
}
// second slide drop shadow
$(document).mousemove(function(event) {
var deltaX = event.pageX - parseInt($(".slide").width())/2;
var deltaY = event.pageY - str - halfstr;
deltaX = -deltaX/16+"px";
deltaY = -deltaY/8+"px";
var shch = $("#shadows").children()
shch.each(function(index) {
$(this).css({
marginLeft: deltaX,
marginTop: deltaY
});
});
});
});
var initpos = 0;
// third slide logo reveal
function thirdReveal(){
scrpos = ($(document).scrollTop()-parseInt($(".slide").height())*1.3);
$("#svg-mask").css({
height : scrpos
});
$("#avsvg").css({
opacity : scrpos/200
});
}
// second slide hor svg scroll
function slideHor(){
var curpos = $(this).scrollTop();
if (curpos>initpos){
$("#scr").animate({marginLeft: "-=3"}, 0);
initpos = curpos-1;
}
else
{
$("#scr").animate({marginLeft: "+=3"}, 0);
initpos = curpos+1;
}
}
</script>
</head>
<body>
<div id="wrapper">
<div class="card">
<span>
<img id="me" src="img/halftone.png" alt="Me">
<h1>Namor Votilav</h1>
<p><a href="mailto:[email protected]?subject=I want to hire you, pal.">[email protected]</a></p>
</span>
</div>
<div class="slide">
<!-- title -->
<div id="piclinks">
<a href="http://behance.net/Namor"><img src="img/Be.png" alt="my portfolio on Behance"></a>
<a href="http://troevkube.ru"><img src="img/trvk.png" alt="my team"></a>
<a href="http://vk.com/namor.everyday"><img src="img/ezh.png" alt="my everydays"></a>
</div>
<span class="divider"></span>
<h2>Who is that?</h2>
<p>(scroll to find out)</p>
</div>
<div class="slide">
<!-- interface -->
<svg class="bgsvg" id="scr" width="500%" height="100%" vart="200">
<line x1="0" y1="200" x2="200" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="700" x2="700" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="1200" x2="1200" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="1700" x2="1700" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="2200" x2="2200" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="2700" x2="2700" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="3200" x2="3200" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="3700" x2="3700" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
<line x1="0" y1="4200" x2="4200" y2="0" stroke="white" stroke-width=".25" stroke-dasharray="10,5" />
</svg>
<div id="shadows">
<div id="sh1"></div>
<div id="sh2"></div>
<div id="sh3"></div>
<div id="sh4"></div>
<div id="sh5"></div>
<div id="sh6"></div>
</div>
<div id="eatout_next">
<svg name="next+fork" x="0px" y="0px" width="170px" height="45px">
<g>
<path fill="#FFFAFA" d="M29.949,20.109l-1.32-2.64h-0.12l0.384,2.64v8.76h-3.119v-16.92h2.399l6.36,8.952l1.271,2.568h0.12
l-0.384-2.568v-8.832h3.12v16.92h-2.4L29.949,20.109z"/>
<path fill="#FFFAFA" d="M51.068,27.837c-0.479,0.385-1.132,0.708-1.956,0.973c-0.824,0.264-1.7,0.396-2.628,0.396
c-1.936,0-3.352-0.563-4.248-1.691c-0.896-1.128-1.344-2.677-1.344-4.645c0-2.111,0.504-3.695,1.512-4.752
c1.008-1.056,2.424-1.584,4.248-1.584c0.608,0,1.2,0.08,1.776,0.24s1.088,0.424,1.536,0.792c0.447,0.368,0.808,0.864,1.08,1.488
c0.271,0.624,0.407,1.4,0.407,2.328c0,0.336-0.02,0.695-0.06,1.079c-0.04,0.385-0.1,0.784-0.18,1.2h-7.177
c0.048,1.008,0.308,1.769,0.777,2.28c0.471,0.513,1.232,0.768,2.284,0.768c0.654,0,1.24-0.1,1.759-0.3
c0.518-0.199,0.912-0.403,1.184-0.611L51.068,27.837z M46.615,19.029c-0.813,0-1.413,0.244-1.803,0.732s-0.624,1.14-0.704,1.956
h4.44c0.063-0.864-0.067-1.528-0.394-1.992C47.828,19.262,47.315,19.029,46.615,19.029z"/>
<path fill="#FFFAFA" d="M55.869,22.726l-3.6-5.856h3.72l1.56,2.568l0.672,1.68l0.721-1.68l1.632-2.568h3.384l-3.624,5.76
l3.864,6.24h-3.624l-1.849-2.88l-0.72-1.775l-0.768,1.775l-1.849,2.88h-3.407L55.869,22.726z"/>
<path fill="#FFFAFA" d="M64.509,16.869h1.656v-2.256l3.12-0.888v3.144h2.928v2.641h-2.928v4.607c0,0.832,0.084,1.428,0.252,1.788
s0.483,0.54,0.947,0.54c0.32,0,0.596-0.032,0.828-0.096c0.231-0.064,0.492-0.16,0.78-0.288l0.552,2.399
c-0.432,0.209-0.936,0.385-1.512,0.528c-0.576,0.145-1.16,0.216-1.752,0.216c-1.104,0-1.916-0.284-2.437-0.852
c-0.52-0.568-0.779-1.5-0.779-2.796V19.51h-1.656V16.869z"/>
</g>
<g>
<line fill="none" stroke="#FFFAFA" stroke-width="3" stroke-miterlimit="10" x1="120.667" y1="22.5" x2="148.666" y2="22.5"/>
<path fill="none" stroke="#FFFAFA" stroke-width="3" stroke-miterlimit="10" d="M148.666,16.5h-6.543
c-3.281,0-5.94,2.659-5.94,5.94v0.12c0,3.281,2.659,5.94,5.94,5.94h6.543"/>
</g>
</svg>
</div>
<div id="eatout_search">
<input type="search" disabled="true">
<svg name="search" width="425px" height="50px">
<g>
<path fill="#6D91CB" d="M31.75,30.476c0-0.683-0.251-1.236-0.752-1.664c-0.501-0.426-1.131-0.815-1.888-1.168
c-0.757-0.352-1.579-0.714-2.464-1.088c-0.885-0.373-1.707-0.832-2.464-1.375c-0.758-0.544-1.387-1.221-1.888-2.032
c-0.501-0.81-0.752-1.845-0.752-3.104c0-1.088,0.181-2.032,0.544-2.832c0.363-0.8,0.88-1.467,1.552-2
c0.672-0.533,1.466-0.928,2.384-1.184c0.917-0.256,1.941-0.384,3.072-0.384c1.301,0,2.528,0.112,3.68,0.336
c1.152,0.224,2.101,0.55,2.848,0.976l-1.376,3.68c-0.47-0.298-1.173-0.57-2.112-0.816c-0.939-0.245-1.952-0.368-3.04-0.368
c-1.024,0-1.808,0.203-2.352,0.608c-0.544,0.406-0.816,0.95-0.816,1.632c0,0.64,0.251,1.173,0.752,1.6
c0.501,0.427,1.13,0.822,1.888,1.184c0.757,0.363,1.579,0.736,2.464,1.12s1.707,0.848,2.464,1.392
c0.757,0.544,1.386,1.216,1.888,2.016c0.501,0.8,0.752,1.798,0.752,2.992c0,1.195-0.197,2.224-0.592,3.088
c-0.395,0.864-0.95,1.584-1.664,2.16c-0.715,0.576-1.579,1.003-2.592,1.28c-1.014,0.276-2.128,0.416-3.344,0.416
c-1.6,0-3.008-0.15-4.224-0.448c-1.216-0.299-2.112-0.598-2.688-0.896l1.408-3.744c0.234,0.128,0.539,0.268,0.912,0.416
c0.373,0.149,0.794,0.288,1.264,0.416c0.469,0.128,0.965,0.235,1.488,0.32c0.522,0.086,1.061,0.128,1.616,0.128
c1.301,0,2.299-0.219,2.992-0.656C31.402,32.039,31.75,31.372,31.75,30.476z"/>
<path fill="#6D91CB" d="M51.75,35.116c-0.64,0.512-1.51,0.943-2.608,1.296c-1.099,0.352-2.267,0.528-3.504,0.528
c-2.582,0-4.47-0.753-5.664-2.257c-1.195-1.504-1.792-3.567-1.792-6.191c0-2.816,0.672-4.928,2.016-6.336
c1.344-1.408,3.232-2.112,5.664-2.112c0.811,0,1.6,0.107,2.368,0.32c0.768,0.213,1.451,0.565,2.048,1.056s1.077,1.152,1.44,1.984
s0.544,1.867,0.544,3.104c0,0.448-0.027,0.928-0.08,1.44c-0.053,0.512-0.133,1.045-0.239,1.6h-9.569
c0.063,1.344,0.409,2.357,1.037,3.04c0.627,0.683,1.642,1.024,3.045,1.024c0.872,0,1.653-0.134,2.344-0.4
c0.691-0.267,1.217-0.538,1.579-0.816L51.75,35.116z M45.812,23.372c-1.083,0-1.883,0.326-2.403,0.976
c-0.52,0.651-0.833,1.52-0.938,2.608h5.92c0.085-1.152-0.09-2.037-0.525-2.656C47.43,23.682,46.745,23.372,45.812,23.372z"/>
<path fill="#6D91CB" d="M55.109,21.42c0.853-0.384,1.867-0.688,3.04-0.912c1.173-0.224,2.4-0.336,3.68-0.336
c1.109,0,2.037,0.133,2.784,0.4c0.747,0.267,1.338,0.646,1.776,1.136c0.437,0.491,0.747,1.078,0.928,1.76
c0.181,0.683,0.272,1.451,0.272,2.303c0,0.939-0.032,1.884-0.096,2.832c-0.064,0.95-0.101,1.884-0.112,2.801
c-0.011,0.917,0.016,1.808,0.08,2.672s0.224,1.68,0.48,2.448h-3.392l-0.672-2.208h-0.16c-0.427,0.661-1.019,1.231-1.776,1.712
c-0.757,0.479-1.733,0.72-2.928,0.72c-0.747,0-1.419-0.112-2.016-0.336c-0.598-0.225-1.11-0.544-1.536-0.96
c-0.427-0.416-0.758-0.906-0.992-1.473c-0.235-0.564-0.352-1.199-0.352-1.903c0-0.981,0.219-1.809,0.656-2.48
c0.437-0.672,1.066-1.216,1.888-1.632s1.803-0.704,2.944-0.864c1.141-0.159,2.416-0.208,3.824-0.144
c0.149-1.194,0.064-2.053-0.256-2.576c-0.32-0.522-1.035-0.784-2.144-0.784c-0.832,0-1.712,0.085-2.64,0.256
c-0.928,0.171-1.691,0.395-2.288,0.672L55.109,21.42z M60.389,33.324c0.832,0,1.493-0.187,1.984-0.561
c0.49-0.373,0.853-0.772,1.088-1.2v-2.079c-0.662-0.064-1.296-0.075-1.904-0.032c-0.608,0.043-1.147,0.139-1.616,0.288
c-0.47,0.149-0.843,0.362-1.12,0.64c-0.277,0.277-0.416,0.63-0.416,1.056c0,0.598,0.176,1.062,0.528,1.393
C59.285,33.159,59.771,33.324,60.389,33.324z"/>
<path fill="#6D91CB" d="M79.909,24.396c-0.661-0.234-1.259-0.352-1.792-0.352c-0.747,0-1.371,0.198-1.872,0.592
c-0.501,0.395-0.838,0.901-1.008,1.52v10.336h-4.16v-16h3.232l0.48,2.112h0.128c0.362-0.789,0.853-1.397,1.472-1.824
c0.618-0.427,1.344-0.64,2.176-0.64c0.555,0,1.184,0.118,1.888,0.352L79.909,24.396z"/>
<path fill="#6D91CB" d="M93.637,35.5c-0.64,0.47-1.414,0.827-2.32,1.072c-0.907,0.245-1.84,0.368-2.8,0.368
c-1.28,0-2.363-0.203-3.248-0.608c-0.886-0.405-1.605-0.977-2.16-1.712c-0.555-0.736-0.955-1.627-1.2-2.672
s-0.368-2.197-0.368-3.456c0-2.709,0.608-4.794,1.824-6.256c1.216-1.461,2.987-2.192,5.312-2.192c1.173,0,2.117,0.096,2.832,0.288
c0.714,0.192,1.36,0.438,1.936,0.736l-0.992,3.392c-0.491-0.234-0.976-0.416-1.456-0.544s-1.03-0.192-1.648-0.192
c-1.152,0-2.027,0.379-2.624,1.136c-0.598,0.757-0.896,1.968-0.896,3.632c0,0.683,0.074,1.312,0.224,1.888
c0.149,0.576,0.373,1.077,0.672,1.504c0.298,0.427,0.688,0.763,1.168,1.008c0.48,0.246,1.04,0.368,1.68,0.368
c0.704,0,1.301-0.09,1.792-0.271s0.928-0.4,1.312-0.656L93.637,35.5z"/>
<path fill="#6D91CB" d="M105.957,36.492v-9.088c0-1.302-0.182-2.24-0.544-2.816c-0.363-0.576-1.024-0.864-1.984-0.864
c-0.704,0-1.35,0.24-1.936,0.72c-0.587,0.48-0.976,1.093-1.168,1.84v10.208h-4.16v-22.4h4.16v8.192h0.128
c0.512-0.683,1.141-1.227,1.888-1.632c0.747-0.405,1.696-0.608,2.848-0.608c0.811,0,1.525,0.107,2.144,0.32
c0.618,0.213,1.136,0.565,1.552,1.056s0.725,1.157,0.928,2c0.202,0.843,0.304,1.883,0.304,3.12v9.952H105.957z"/>
</g>
<g>
<circle fill="none" stroke="#6D91CB" stroke-width="5" stroke-miterlimit="10" cx="397.677" cy="22.598" r="11.598"/>
<line fill="none" stroke="#6D91CB" stroke-width="5" stroke-miterlimit="10" x1="381.275" y1="39" x2="389.476" y2="30.799"/>
</g>
</svg>
</div>
<div id="BN_datetime">
<svg name="datetime" width="310px" height="175px">
<rect x="257.105" y="70.186" fill="#FFFFFF" width="30" height="21"/>
<g>
<rect x="266.605" y="75.186" fill="#636AB1" width="11" height="3"/>
<rect x="266.605" y="79.186" fill="#636AB1" width="3" height="3"/>
<rect x="270.605" y="79.186" fill="#636AB1" width="3" height="3"/>
<rect x="274.605" y="79.186" fill="#636AB1" width="3" height="3"/>
<rect x="266.605" y="83.186" fill="#636AB1" width="3" height="3"/>
<rect x="270.605" y="83.186" fill="#636AB1" width="3" height="3"/>
<rect x="274.605" y="83.186" fill="#636AB1" width="3" height="3"/>
</g>
<g>
<rect x="257.105" y="99.706" fill="#FFFFFF" width="30" height="21"/>
<circle fill="#636AB1" cx="272.105" cy="110.206" r="5.5"/>
<rect x="271.605" y="105.706" fill="#FFFFFF" width="1" height="5"/>
</g>
<rect x="127.105" y="70.186" fill="#FFFFFF" width="120" height="21"/>
<rect x="127.105" y="99.836" fill="#FFFFFF" width="120" height="21"/>
</svg>
<h2>Specify the time</h2>
<span>
<p>Date:</p>
<p>Time:</p>
<p style="font-size:10pt">*leave the fields empty if unsure</p>
</span>
</div>
<div id="BN_helpme">
<svg name="sherlock" width="315px" height="48px">
<rect fill="#BB3F40" width="315" height="48"/>
<g>
<path fill="#FFFFFF" d="M74.219,16.669v-2.063h7.066v2.063l-1.828,0.352v4.922h6.961v-4.922l-1.828-0.352v-2.063h1.828h3.41h1.828
v2.063l-1.828,0.352v12.246l1.828,0.352v2.051H84.59v-2.051l1.828-0.352v-4.688h-6.961v4.688l1.828,0.352v2.051h-7.066v-2.051
l1.816-0.352V17.021L74.219,16.669z"/>
<path fill="#FFFFFF" d="M99.133,31.915c-1.828,0-3.289-0.586-4.383-1.758s-1.641-2.66-1.641-4.465v-0.469
c0-1.883,0.518-3.434,1.553-4.652s2.424-1.824,4.166-1.816c1.711,0,3.039,0.516,3.984,1.547s1.418,2.426,1.418,4.184v1.863h-7.57
l-0.023,0.07c0.063,0.836,0.342,1.523,0.838,2.063s1.17,0.809,2.021,0.809c0.758,0,1.387-0.076,1.887-0.229
s1.047-0.393,1.641-0.721l0.926,2.109c-0.523,0.414-1.201,0.762-2.033,1.043S100.157,31.915,99.133,31.915z M98.829,21.392
c-0.633,0-1.133,0.242-1.5,0.727s-0.594,1.121-0.68,1.91l0.035,0.059h4.195v-0.305c0-0.727-0.17-1.307-0.51-1.74
S99.516,21.392,98.829,21.392z"/>
<path fill="#FFFFFF" d="M105.485,15.45v-2.063h5.25v15.879l1.652,0.352v2.051h-6.727v-2.051l1.652-0.352V15.802L105.485,15.45z"/>
<path fill="#FFFFFF" d="M113.243,21.052v-2.063h4.969l0.164,1.477c0.375-0.547,0.824-0.969,1.348-1.266s1.133-0.445,1.828-0.445
c1.57,0,2.789,0.613,3.656,1.84s1.301,2.84,1.301,4.84v0.246c0,1.875-0.434,3.383-1.301,4.523s-2.078,1.711-3.633,1.711
c-0.664,0-1.254-0.123-1.77-0.369s-0.957-0.607-1.324-1.084v3.668l1.652,0.352v2.063h-6.715v-2.063l1.652-0.352V21.403
L113.243,21.052z M123.086,25.435c0-1.195-0.199-2.164-0.598-2.906s-1.008-1.113-1.828-1.113c-0.516,0-0.955,0.105-1.318,0.316
s-0.65,0.512-0.861,0.902v5.555c0.211,0.359,0.498,0.633,0.861,0.82s0.811,0.281,1.342,0.281c0.828,0,1.436-0.324,1.822-0.973
s0.58-1.527,0.58-2.637V25.435z"/>
<path fill="#FFFFFF" d="M133.516,21.052v-2.063h5.004l0.141,1.676c0.406-0.609,0.916-1.08,1.529-1.412s1.322-0.498,2.127-0.498
c0.813,0,1.508,0.18,2.086,0.539s1.016,0.902,1.313,1.629c0.391-0.68,0.898-1.211,1.523-1.594s1.359-0.574,2.203-0.574
c1.25,0,2.236,0.432,2.959,1.295s1.084,2.178,1.084,3.943v5.273l1.652,0.352v2.051h-6.551v-2.051l1.477-0.352v-5.285
c0-0.961-0.156-1.629-0.469-2.004s-0.777-0.563-1.395-0.563c-0.484,0-0.904,0.107-1.26,0.322s-0.639,0.514-0.85,0.896
c0,0.148,0.004,0.275,0.012,0.381s0.012,0.213,0.012,0.322v5.93l1.383,0.352v2.051h-6.176v-2.051l1.383-0.352v-5.285
c0-0.938-0.156-1.6-0.469-1.986s-0.781-0.58-1.406-0.58c-0.461,0-0.865,0.088-1.213,0.264s-0.635,0.424-0.861,0.744v6.844
l1.477,0.352v2.051h-6.539v-2.051l1.652-0.352v-7.863L133.516,21.052z"/>
<path fill="#FFFFFF" d="M162.192,31.915c-1.828,0-3.289-0.586-4.383-1.758c-1.094-1.172-1.641-2.66-1.641-4.465v-0.469
c0-1.883,0.518-3.434,1.553-4.652c1.036-1.219,2.424-1.824,4.167-1.816c1.711,0,3.039,0.516,3.984,1.547s1.418,2.426,1.418,4.184
v1.863h-7.57l-0.023,0.07c0.063,0.836,0.342,1.523,0.838,2.063s1.17,0.809,2.021,0.809c0.758,0,1.387-0.076,1.887-0.229
s1.047-0.393,1.641-0.721l0.926,2.109c-0.523,0.414-1.201,0.762-2.033,1.043S163.216,31.915,162.192,31.915z M161.888,21.392
c-0.633,0-1.133,0.242-1.5,0.727s-0.594,1.121-0.68,1.91l0.035,0.059h4.195v-0.305c0-0.727-0.17-1.307-0.51-1.74
S162.575,21.392,161.888,21.392z"/>
<path fill="#FFFFFF" d="M172.856,31.212c0,0.797-0.225,1.641-0.674,2.531s-0.998,1.621-1.646,2.191l-1.688-0.914
c0.305-0.547,0.539-1.111,0.703-1.693s0.246-1.232,0.246-1.951v-2.555h3.07L172.856,31.212z"/>
<path fill="#FFFFFF" d="M193.563,20.056h-2.566l-0.445-2.344c-0.297-0.188-0.73-0.352-1.301-0.492s-1.176-0.211-1.816-0.211
c-0.938,0-1.662,0.197-2.174,0.592s-0.768,0.904-0.768,1.529c0,0.578,0.268,1.053,0.803,1.424s1.459,0.764,2.771,1.178
c1.883,0.523,3.311,1.215,4.283,2.074s1.459,1.988,1.459,3.387c0,1.461-0.578,2.613-1.734,3.457s-2.68,1.266-4.57,1.266
c-1.352,0-2.572-0.215-3.662-0.645s-1.998-1.023-2.725-1.781v-3.563h2.648l0.363,2.426c0.344,0.281,0.811,0.514,1.4,0.697
s1.248,0.275,1.975,0.275c0.938,0,1.65-0.191,2.139-0.574s0.732-0.895,0.732-1.535c0-0.656-0.232-1.184-0.697-1.582
s-1.279-0.773-2.443-1.125c-2.023-0.586-3.555-1.281-4.594-2.086s-1.559-1.906-1.559-3.305c0-1.383,0.586-2.514,1.758-3.393
s2.645-1.33,4.418-1.354c1.313,0,2.508,0.199,3.586,0.598s1.984,0.93,2.719,1.594V20.056z"/>
<path fill="#FFFFFF" d="M195.052,29.618l1.652-0.352V15.802l-1.828-0.352v-2.063h5.238v7.219c0.398-0.586,0.887-1.041,1.465-1.365
s1.219-0.486,1.922-0.486c1.328,0,2.369,0.439,3.123,1.318s1.131,2.236,1.131,4.072v5.121l1.641,0.352v2.051h-6.539v-2.051
l1.477-0.352v-5.145c0-0.984-0.174-1.682-0.521-2.092s-0.865-0.615-1.553-0.615c-0.477,0-0.893,0.086-1.248,0.258
s-0.654,0.414-0.896,0.727v6.867l1.477,0.352v2.051h-6.539V29.618z"/>
<path fill="#FFFFFF" d="M216.45,31.915c-1.828,0-3.289-0.586-4.383-1.758s-1.641-2.66-1.641-4.465v-0.469
c0-1.883,0.518-3.434,1.553-4.652s2.424-1.824,4.166-1.816c1.711,0,3.039,0.516,3.984,1.547s1.418,2.426,1.418,4.184v1.863h-7.57
l-0.023,0.07c0.063,0.836,0.342,1.523,0.838,2.063s1.17,0.809,2.021,0.809c0.758,0,1.387-0.076,1.887-0.229
s1.047-0.393,1.641-0.721l0.926,2.109c-0.523,0.414-1.201,0.762-2.033,1.043S217.474,31.915,216.45,31.915z M216.146,21.392
c-0.633,0-1.133,0.242-1.5,0.727s-0.594,1.121-0.68,1.91l0.035,0.059h4.195v-0.305c0-0.727-0.17-1.307-0.51-1.74
S216.833,21.392,216.146,21.392z"/>
<path fill="#FFFFFF" d="M223.423,29.618l1.641-0.352v-7.863l-1.816-0.352v-2.063h5.004l0.152,1.852
c0.297-0.656,0.68-1.168,1.148-1.535s1.012-0.551,1.629-0.551c0.18,0,0.369,0.014,0.568,0.041s0.365,0.061,0.498,0.1l-0.363,3.117
l-1.406-0.035c-0.5,0-0.914,0.098-1.242,0.293s-0.578,0.473-0.75,0.832v6.164l1.641,0.352v2.051h-6.703V29.618z"/>
<path fill="#FFFFFF" d="M232.317,15.45v-2.063h5.25v15.879l1.652,0.352v2.051h-6.727v-2.051l1.652-0.352V15.802L232.317,15.45z"/>
<path fill="#FFFFFF" d="M240.099,25.212c0-1.891,0.529-3.439,1.588-4.646s2.521-1.811,4.389-1.811c1.875,0,3.342,0.602,4.4,1.805
s1.588,2.754,1.588,4.652v0.246c0,1.906-0.529,3.459-1.588,4.658s-2.518,1.799-4.377,1.799c-1.883,0-3.354-0.6-4.412-1.799
s-1.588-2.752-1.588-4.658V25.212z M243.521,25.458c0,1.156,0.203,2.084,0.609,2.783s1.063,1.049,1.969,1.049
c0.883,0,1.529-0.352,1.939-1.055s0.615-1.629,0.615-2.777v-0.246c0-1.125-0.207-2.043-0.621-2.754s-1.066-1.066-1.957-1.066
s-1.539,0.355-1.945,1.066s-0.609,1.629-0.609,2.754V25.458z"/>
<path fill="#FFFFFF" d="M259.505,29.29c0.609,0,1.098-0.178,1.465-0.533s0.551-0.83,0.551-1.424h3.094l0.035,0.07
c0.031,1.281-0.449,2.354-1.441,3.217s-2.227,1.295-3.703,1.295c-1.891,0-3.348-0.598-4.371-1.793s-1.535-2.73-1.535-4.605v-0.352
c0-1.867,0.525-3.402,1.576-4.605s2.549-1.805,4.494-1.805c1.023,0,1.941,0.152,2.754,0.457s1.488,0.734,2.027,1.289l0.047,3.387
h-2.777l-0.563-1.98c-0.172-0.148-0.383-0.271-0.633-0.369s-0.535-0.146-0.855-0.146c-0.969,0-1.652,0.352-2.051,1.055
s-0.598,1.609-0.598,2.719v0.352c0,1.133,0.184,2.045,0.551,2.736S258.583,29.29,259.505,29.29z"/>
<path fill="#FFFFFF" d="M265.833,15.45v-2.063h5.238v10.594h0.762l1.969-2.777l-1.113-0.152v-2.063h6.234v2.063l-1.5,0.34
l-2.285,3.141l3.199,4.816l1.301,0.27v2.051h-5.859v-2.051l0.703-0.117l-1.945-3.141h-1.465v2.906l1.477,0.352v2.051h-6.539v-2.051
l1.652-0.352V15.802L265.833,15.45z"/>
<path fill="#FFFFFF" d="M284.911,25.786h-3.422v-11.18h3.422V25.786z M284.911,31.669h-3.422v-3h3.422V31.669z"/>
</g>
<rect fill="#7F2B2B" width="48" height="48"/>
<path fill="#EC615D" d="M35.04,32.531c-1.46-0.178-2.918-0.011-4.378,0.129c-1.072,0.102-2.657,0.458-3.625,0.945
c-1.116,0.561-2.309,1.012-3.419,1.552c-1.197,0.583-2.293,1.367-3.435,2.063c-0.287,0.175-2.882,2.024-3.03,1.718
c-0.426-0.885,0.917-2.936,1.594-3.421c0.302-0.217,1.118-1.013,1.115-1.408c-0.003-0.532-0.978-0.273-1.022-0.746
c-0.08-0.861,2.276-1.993,2.838-2.419c0.42-0.318,0.737-0.867,0.075-1.171c-0.436-0.2-1.236,0.134-1.668,0.228
c-0.451,0.098-1.211,0.489-1.649,0.193c-0.544-0.367-0.077-1.549,0.131-1.967c0.294-0.592,0.205-0.833-0.303-1.223
c-0.515-0.395-0.776-0.259-1.312,0.126c-0.473,0.34-0.681,0.774-0.809,1.329c-0.161,0.698-0.463,1.367-0.541,2.07
c-0.087,0.779-0.752,2.706-1.907,2.186c-0.643-0.29-0.627-1.048-0.867-1.615c-0.228-0.538-1.106-0.68-0.766-1.426
c0.352-0.77,2.319-1.471,2.332-0.135c0.003,0.287-0.117,0.473-0.001,0.765c0.027,0.067,0.234,0.587,0.369,0.225
c0.243-0.651,0.384-1.312,0.596-1.97c0.297-0.922,0.841-2.11,1.942-2.295c0.454-0.076,0.739-0.55,0.84-0.961
c0.17-0.69-0.139-0.811-0.748-0.857c-0.769-0.058-1.1-0.136-0.78-0.943c0.257-0.65,0.563-1.203,0.933-1.791
c0.301-0.478,0.48-0.942,0.722-1.441c0.305-0.631-0.33-1.183-0.172-1.889c0.141-0.627-0.246-0.75-0.811-0.908
c-0.621-0.173-1.134-0.43-1.651-0.812c-0.158-0.117-1.294-0.798-1.061-1.013c0.413-0.38,1.708-0.41,2.26-0.544
c0.626-0.152,1.428-0.309,1.994-0.619c0.487-0.266,0.741-0.872,1.087-1.281c0.799-0.943,1.916-1.939,3.018-2.506
c1.167-0.601,2.413-0.663,3.508-1.382c0.491-0.322,1.022-0.399,1.576-0.183c0.227,0.088,0.393,0.25,0.472,0.483
c0.112,0.327,0.9,0.574,1.173,0.741c1.179,0.717,2.012,1.39,2.7,2.596c0.791,1.388,0.884,2.712,1.152,4.259
c0.24,1.387,1.206,1.648,2.157,2.494c1.161,1.033-1.368,1.69-2.031,1.924c-0.409,0.144-1.215,0.058-1.484,0.383
c-0.378,0.456-0.844,0.746-1.131,1.293c-0.314,0.596-0.24,1.199-0.057,1.823c0.192,0.652,0.266,1.453,1.052,1.274
c0.626-0.143,1.957-0.758,2.499-0.307c0.731,0.609-1.685,2.323-1.474,2.905c0.3,0.827,1.415,1.464,1.953,2.151
c0.231,0.296,0.412,0.592,0.649,0.885C36.2,32.728,35.069,32.334,35.04,32.531C34.733,32.493,35.041,32.522,35.04,32.531z"/>
</svg>
</div>
<div id="eatout_cancel">
<svg name="cancel" width="100%" height="100%">
<g>
<path fill="#FFFAFA" d="M64.133,28.182c-1.397,0.995-3.485,1.125-5.139,0.994c-1.787-0.141-3.5-0.812-4.712-2.165
c-2.295-2.563-2.584-6.992-1.564-10.149c1.18-3.656,4.424-5.31,8.112-5.101c0.788,0.045,1.566,0.164,2.327,0.375
c0.533,0.148,0.772,0.088,0.65,0.612c-0.188,0.806-0.375,1.612-0.563,2.417c-1.491-0.712-3.851-0.803-5.3,0.034
c-1.639,0.947-2.152,2.829-2.243,4.603c-0.104,2.048,0.229,4.487,2.059,5.737c1.607,1.098,4.07,0.961,5.7-0.029
C63.685,26.4,63.909,27.291,64.133,28.182z"/>
<path fill="#FFFAFA" d="M65.765,17.565c2.344-1.056,7.55-2.026,8.947,0.956c0.724,1.547,0.381,3.496,0.3,5.139
c-0.085,1.718-0.175,3.578,0.377,5.232c-0.715,0-1.431,0-2.146,0c-0.699,0-0.646-0.818-0.833-1.432
c-0.147-0.484-0.32-0.008-0.55,0.249c-0.517,0.579-1.188,1.03-1.946,1.216c-1.54,0.379-3.38,0.036-4.311-1.347
c-0.798-1.186-0.819-2.99,0.086-4.126c1.037-1.302,2.889-1.632,4.453-1.728c0.363-0.022,0.726-0.031,1.09-0.028
c0.735,0.005,0.814,0.1,0.826-0.686c0.009-0.622-0.085-1.335-0.717-1.622c-1.314-0.596-3.584-0.076-4.832,0.504
C66.261,19.118,66.013,18.341,65.765,17.565z M69.725,26.493c0.65,0,2.304-0.458,2.304-1.35c0-0.295,0.175-1.316,0-1.53
c-1.037-0.1-2.428-0.139-3.31,0.525C67.588,24.989,68.52,26.493,69.725,26.493z"/>
<path fill="#FFFAFA" d="M85.084,28.869c0-2.262,0-4.524,0-6.786c0-0.809-0.021-1.979-0.765-2.502
c-1.078-0.757-2.581-0.073-3.192,0.938c-0.532,0.881-0.267,2.215-0.267,3.198c0,1.481,0,2.961,0,4.442
c0,0.056,0.019,0.71-0.016,0.71c-0.644,0-1.287,0-1.931,0c-0.09,0-1.174,0.02-1.174-0.018c0-0.29,0-0.581,0-0.871
c0-1.372,0-2.743,0-4.115c0-2.22,0-4.44,0-6.66c0-0.673,0.974-0.336,1.526-0.336c0.2,0,0.917-0.126,0.969,0.101
c0.112,0.494,0.225,0.989,0.337,1.483c0.431-0.216,0.826-0.833,1.265-1.146c0.686-0.49,1.456-0.72,2.295-0.764
c1.544-0.081,3.041,0.399,3.644,1.935c0.615,1.569,0.427,3.441,0.427,5.104c0,1.683,0,3.366,0,5.049
c0,0.458-0.601,0.239-0.987,0.239C86.506,28.869,85.795,28.869,85.084,28.869z"/>
<path fill="#FFFAFA" d="M99.316,28.125c-2.088,1.532-5.92,1.618-7.711-0.43c-1.752-2.004-1.762-5.83-0.789-8.182
c1.085-2.621,3.796-3.291,6.401-2.87c0.582,0.094,1.154,0.283,1.688,0.528c0.391,0.18,0.215,0.301,0.105,0.679
c-0.194,0.665-0.389,1.33-0.583,1.994c-1.029-0.491-2.372-0.814-3.468-0.34c-1.173,0.508-1.45,1.848-1.494,2.999
c-0.051,1.347,0.215,2.986,1.541,3.664c1.119,0.573,2.587,0.251,3.588-0.42C98.836,26.541,99.076,27.333,99.316,28.125z"/>
<path fill="#FFFAFA" d="M110.404,27.837c-1.684,1.351-4.393,1.676-6.439,1.158c-1.923-0.488-3.081-2.028-3.509-3.908
c-0.447-1.964-0.385-4.423,0.687-6.187c1.09-1.796,3.197-2.464,5.208-2.357c2.314,0.123,4.084,1.5,4.379,3.859
c0.136,1.084,0.024,2.191-0.182,3.259c-0.113,0.087-0.637,0-0.772,0c-2.135,0-4.27,0-6.405,0c0.06,1.256,0.517,2.52,1.831,2.897
c1.347,0.386,3.053,0.098,4.173-0.76C109.719,26.478,110.062,27.157,110.404,27.837z M105.951,19.029
c-1.599,0-2.361,1.206-2.507,2.688c1.171,0,2.343,0,3.514,0c0.767,0,0.991,0.213,0.933-0.692
C107.818,19.874,107.157,19.029,105.951,19.029z"/>
<path fill="#FFFAFA" d="M116.212,24.837c0,1.487,0.806,1.903,2.16,1.345c0.078,0.565,0.155,1.13,0.233,1.695
c0.034,0.244,0.067,0.488,0.101,0.732c0.023,0.164-1.356,0.447-1.492,0.473c-2.17,0.415-4.122-0.21-4.122-2.67
c0-2.348,0-4.696,0-7.044c0-2.404,0-4.807,0-7.211c0-0.191,2.545-0.088,2.889-0.088c0.474,0,0.231,1.178,0.231,1.566
C116.212,17.369,116.212,21.103,116.212,24.837z"/>
</g>
</svg>
</div>
<div id="eatout_sugg">
<svg name="sugg" width="100%" height="100%">
<g>
<circle fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" cx="31.203" cy="24" r="12.5"/>
<path fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M35.078,19.188c-0.397,0-0.775,0.081-1.119,0.226
c-0.34-1.209-1.438-2.101-2.756-2.101s-2.416,0.892-2.756,2.101c-0.344-0.145-0.722-0.226-1.119-0.226
c-1.588,0-2.875,1.287-2.875,2.875s1.287,2.875,2.875,2.875v5.75h7.75v-5.75c1.588,0,2.875-1.287,2.875-2.875
S36.666,19.188,35.078,19.188z"/>
<line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="27.328" y1="24.938" x2="31.203" y2="24.938"/>
</g>
</svg>
<span>Cook's suggestion</span>
</div>
</div>
<div class="slide">
<!-- recruits -->
<svg class="bgsvg" width="100%" height="100%">
<defs>
<pattern id="minorGrid" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.1"/>
</pattern>
<pattern id="grid20" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width=".25"/>
</pattern>
</defs>
<rect fill="#3d6db2" height="100%" width="100%" y="0"></rect>
<rect fill="url(#grid20)" height="100%" width="100%" y="0"></rect>
<rect fill="url(#minorGrid)" height="100%" width="100%" y="0"></rect>
</svg>
<!-- avsvg -->
<svg id="avsvg" width="100%" height="100%">
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="0" y1="99.533" x2="2.5" y2="99.533"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0328,7.0459" x1="9.546" y1="99.533" x2="658.274" y2="99.533"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="661.797" y1="99.533" x2="664.297" y2="99.533"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="0" y1="307.665" x2="2.5" y2="307.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0385,7.0538" x1="9.554" y1="307.665" x2="513.903" y2="307.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="517.43" y1="307.665" x2="519.93" y2="307.665"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="326.938" y1="0.202" x2="326.938" y2="2.702"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0937,7.1312" x1="326.938" y1="9.833" x2="326.938" y2="299.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="326.938" y1="303.231" x2="326.938" y2="305.731"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="240.095" y1="0.192" x2="240.095" y2="2.692"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0937,7.1312" x1="240.095" y1="9.823" x2="240.095" y2="299.655"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="240.095" y1="303.22" x2="240.095" y2="305.72"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="205.373" y1="0.192" x2="205.373" y2="2.692"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0937,7.1312" x1="205.373" y1="9.823" x2="205.373" y2="299.655"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="205.373" y1="303.22" x2="205.373" y2="305.72"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="118.806" y1="0.202" x2="118.806" y2="2.702"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0937,7.1312" x1="118.806" y1="9.833" x2="118.806" y2="299.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="118.806" y1="303.231" x2="118.806" y2="305.731"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="326.938" y1="427.669" x2="326.938" y2="430.169"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.08,7.112" x1="326.938" y1="437.281" x2="326.938" y2="714.142"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="326.938" y1="717.698" x2="326.938" y2="720.198"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="240.095" y1="427.665" x2="240.095" y2="430.165"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.08,7.112" x1="240.095" y1="437.277" x2="240.095" y2="714.139"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="240.095" y1="717.695" x2="240.095" y2="720.195"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="205.373" y1="427.665" x2="205.373" y2="430.165"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.08,7.112" x1="205.373" y1="437.277" x2="205.373" y2="714.139"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="205.373" y1="717.695" x2="205.373" y2="720.195"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="118.807" y1="427.669" x2="118.807" y2="430.169"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.08,7.112" x1="118.807" y1="437.281" x2="118.807" y2="714.142"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="118.807" y1="717.698" x2="118.807" y2="720.198"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="0" y1="427.665" x2="2.5" y2="427.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0385,7.0538" x1="9.554" y1="427.665" x2="513.903" y2="427.665"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="517.43" y1="427.665" x2="519.93" y2="427.665"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" x1="0" y1="368.834" x2="0.5" y2="368.834"/>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" stroke-dasharray="0.996,4.9801" x1="5.48" y1="368.834" x2="516.94" y2="368.834"/>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" x1="519.43" y1="368.834" x2="519.93" y2="368.834"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" x1="0" y1="398.218" x2="0.5" y2="398.218"/>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" stroke-dasharray="0.996,4.9801" x1="5.48" y1="398.218" x2="516.94" y2="398.218"/>
<line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" x1="519.43" y1="398.218" x2="519.93" y2="398.218"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="172.426" y1="307.72" x2="174.341" y2="306.113"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5.0551,7.0772" x1="179.763" y1="301.564" x2="511.631" y2="23.093"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="514.342" y1="20.819" x2="516.257" y2="19.212"/>
</g>
</g>
<g>
<g>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="23.732" y1="307.665" x2="25.647" y2="306.058"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="4.9826,6.9756" x1="30.991" y1="301.574" x2="385.578" y2="4.04"/>
<line fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" x1="388.25" y1="1.798" x2="390.165" y2="0.192"/>
</g>
</g>
<circle fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5,7" cx="222.872" cy="203.654" r="137.5"/>
<circle fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" stroke-dasharray="5,7" cx="222.872" cy="203.654" r="118"/>
<polyline fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" points="62.93,339.089 62.93,323.068
77.93,323.068 "/>
<polyline fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" points="77.93,378.068 62.93,378.068
62.93,362.047 "/>
<polyline fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" points="376.93,362.047 376.93,378.068
361.93,378.068 "/>
<polyline fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" points="361.93,323.068 376.93,323.068
376.93,339.089 "/>
<g>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M240.095,167.357v-9.849c0-0.701-0.568-1.268-1.268-1.268h-11.865
c-0.701,0-1.268,0.568-1.268,1.268v3.133c0,0.701,0.515,1.508,1.15,1.804l12.103,5.644
C239.58,168.385,240.095,168.058,240.095,167.357z"/>
<g>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M329.577,157.055l-88.511,74.269
c-0.537,0.45-0.972,0.247-0.972-0.453v-57.172c0-0.701-0.515-1.508-1.15-1.804l-12.103-5.644c-0.635-0.296-1.15,0.032-1.15,0.732
v75.973c0,0.701,0.515,1.508,1.15,1.804l12.103,5.644c0.635,0.296,1.585,0.171,2.121-0.279l110.916-93.069
c0.537-0.45,0.404-0.815-0.297-0.815l-19.868,0C331.117,156.24,330.114,156.605,329.577,157.055z"/>
</g>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M205.373,239.822v9.762c0,0.701,0.568,1.268,1.268,1.268h12.164
c0.701,0,1.268-0.568,1.268-1.268v-2.907c0-0.701-0.515-1.508-1.15-1.804l-12.402-5.783
C205.888,238.794,205.373,239.122,205.373,239.822z"/>
<g>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M220.074,240.336v-75.973c0-0.701-0.515-1.508-1.15-1.804
l-12.402-5.783c-0.635-0.296-1.585-0.171-2.121,0.279c-5.928,4.974-37.159,31.18-43.086,36.154
c-0.537,0.45-0.457,1.055,0.178,1.351l12.103,5.644c0.635,0.296,1.585,0.171,2.121-0.279l28.684-24.069
c0.537-0.45,0.972-0.247,0.972,0.453v41.25c0,0.701-0.515,1.028-1.15,0.732l-45.644-21.284c-0.635-0.296-1.585-0.171-2.121,0.279
l-62.974,52.839c-0.537,0.45-0.404,0.815,0.297,0.815l19.869,0c0.701,0,1.703-0.365,2.24-0.815l42.795-35.909
c0.537-0.45,1.486-0.575,2.121-0.279l58.118,27.131C219.559,241.364,220.074,241.036,220.074,240.336z"/>
</g>
<g>
<g>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M222.872,114.355c37.726,0,69.971,23.402,83.053,56.475
c0.258,0.651,0.893,0.819,1.43,0.368l9.936-8.337c0.537-0.45,0.745-1.336,0.457-1.974
c-16.316-36.138-52.649-61.299-94.876-61.299c-57.474,0-104.066,46.592-104.066,104.066c0,6.129,0.554,12.127,1.574,17.964
c0.121,0.69,0.661,0.883,1.197,0.433l11.4-9.566c0.537-0.45,0.92-1.381,0.867-2.079c-0.172-2.229-0.271-4.479-0.271-6.752
C133.573,154.336,173.554,114.355,222.872,114.355z"/>
<path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M311.879,196.564c0.187,2.34,0.293,4.702,0.293,7.09
c0,49.318-39.981,89.299-89.299,89.299c-37.83,0-70.152-23.53-83.164-56.747c-0.255-0.652-0.889-0.819-1.426-0.369l-9.947,8.347
c-0.537,0.45-0.747,1.336-0.46,1.975c16.258,36.279,52.668,61.561,94.998,61.561c57.474,0,104.066-46.592,104.066-104.066
c0-6.239-0.571-12.343-1.627-18.279c-0.123-0.69-0.664-0.882-1.201-0.431l-11.37,9.54
C312.204,194.935,311.823,195.866,311.879,196.564z"/>
</g>
</g>
</g>
</svg>
<svg id="svg-mask" width="100%">
<foreignObject width="100%" height="100%">
<img src="img/recr.png">
</foreignObject>
</svg>
<div id="about_mapping">
<h1>Live courses</h1>
<p>on 3D graphics, video compositing and projection mapping.</p>
<a href="http://vk.com/avolution_recruits">learn more</a>
</div>
</div>
<div class="slide">
<!-- mapping -->
</div>
<div class="slide">
<div id="about">
<h1>That's me.</h1>
<p>I'm a designer based in Chelyabinsk, Russia.</p>
<p>I love grids. I'm inspired by solid structures, ambient music and creative people.
I do all kinds of stuff and am willing to keep learning.</p>
<p>Wanna work together? <a href="mailto:[email protected]?subject=I definitely want to work with you, pal.">Drop me a line</a></p>
</div>
</div>
</div>
</body>
</html>