-
Notifications
You must be signed in to change notification settings - Fork 0
/
aerials.html
1177 lines (845 loc) · 69.1 KB
/
aerials.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
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<base href="./">
<title>Aerials - Ed Stone</title>
<meta property="og:title" content="Aerials - Ed Stone" />
<meta name="twitter:title" content="Aerials - Ed Stone" />
<meta name="og:image" content="assets/uploads/screenshot-2024-06-26-at-22-57-05.png?p=Qyg9Mrpx" />
<meta name="twitter:image" content="assets/uploads/screenshot-2024-06-26-at-22-57-05.png?p=Qyg9Mrpx" />
<link rel="icon" sizes="any" href="assets/svg/favicon-default.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="css/slides-customized.min.css?p=Qyg9Mrpx&rnd=803807" rel="stylesheet" type="text/css" id="js-slides-css">
<!-- Fonts and Material Icons -->
<link rel="stylesheet" as="font" href="https://fonts.googleapis.com/css2?family=Material+Icons&display=swap" id="js-google-fonts" />
<style id="js-slides-fonts">
.slides { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; }
</style>
<link href="css/custom_gRypYoFl.css?p=Qyg9Mrpx&rnd=574444" rel="stylesheet" type="text/css"> <style>
h1, .h1{letter-spacing: -0.012em;}
h1.smaller{letter-spacing: -0.012em;}
p, .p{letter-spacing: 0.011em;}
p.large{letter-spacing: 0.019em;}
p.small{letter-spacing: 0.019em;}
p.smaller{letter-spacing: 0.012em;}
.uppercase {letter-spacing: 1.35px!important;}
.button{font-size:18px; line-height:24px; letter-spacing: 0.025em !important;}
.white, .panel.white, .slides, .slide.whiteSlide{background:#FBFBFB !important;}
.slides, .slide{color:#FBFBFB;fill:#FBFBFB; /* For SVG */ }
</style>
</head>
<body class="slides stack animated noPreload">
<!-- Inline SVG library. Use it for local development. Otherwise the default SVG Library is recommended. -->
<svg xmlns="http://www.w3.org/2000/svg" style="display:none" id="customSvgLibrary"><symbol id="star" viewbox="0 0 16 15"><path d="M8 0L10.3511 4.76393L15.6085 5.52786L11.8042 9.23607L12.7023 14.4721L8 12L3.29772 14.4721L4.19577 9.23607L0.391548 5.52786L5.64886 4.76393L8 0Z"></path></symbol><symbol id="right_arrow" viewbox="0 0 17 32" fill="none"><path d="M1 1L16 16L1 31" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol id="left_arrow" viewbox="0 0 17 32" fill="none"><path d="M16 1L1 16L16 31" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol id="geo_location" viewbox="0 0 54 54"><path fill-rule="evenodd" clip-rule="evenodd" d="M54 0L0 22.59V25.53L20.52 33.48L28.44 54H31.38L54 0Z"></path></symbol><symbol id="user_experience" viewbox="0 0 54 54"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6V48C0 51.3 2.67 54 6 54H48C51.3 54 54 51.3 54 48V6C54 2.7 51.3 0 48 0H6C2.67 0 0 2.7 0 6ZM36 18C36 22.98 31.98 27 27 27C22.02 27 18 22.98 18 18C18 13.02 22.02 9 27 9C31.98 9 36 13.02 36 18ZM9 42C9 36 21 32.7 27 32.7C33 32.7 45 36 45 42V45H9V42Z"></path></symbol><symbol id="video_calls" viewbox="0 0 60 59"><path fill-rule="evenodd" clip-rule="evenodd" d="M54 0H6C2.7 0 0.03 2.655 0.03 5.9L0 59L12 47.2H54C57.3 47.2 60 44.545 60 41.3V5.9C60 2.655 57.3 0 54 0ZM48 35.4L36 25.96V35.4H12V11.8H36V21.24L48 11.8V35.4Z"></path></symbol><symbol id="notifications" viewbox="0 0 51 60"><path fill-rule="evenodd" clip-rule="evenodd" d="M48 49.4851L11.52 11.5133L3.81 3.49538L0 7.33795L8.4 15.8097V15.84C6.84 18.8354 6 22.3754 6 26.1877V41.3159L0 47.3672V50.3928H41.19L47.19 56.4441L51 52.6015L48 49.4851ZM24 59.5C27.33 59.5 30 56.8072 30 53.4487H18C18 56.8072 20.67 59.5 24 59.5ZM42 37.3523V26.2179C42 16.899 37.08 9.15333 28.5 7.0959V5.03846C28.5 2.52718 26.49 0.5 24 0.5C21.51 0.5 19.5 2.52718 19.5 5.03846V7.0959C19.05 7.18667 18.63 7.33795 18.24 7.45897C17.94 7.54974 17.64 7.67077 17.34 7.79179H17.31C17.28 7.79179 17.28 7.79179 17.25 7.82205C16.56 8.09436 15.87 8.42718 15.21 8.76C15.21 8.76 15.18 8.76 15.18 8.79026L42 37.3523Z"></path></symbol><symbol id="file_manager" viewbox="0 0 60 54"><path fill-rule="evenodd" clip-rule="evenodd" d="M54 6H44.49L39 0H21L15.51 6H6C2.7 6 0 8.7 0 12V48C0 51.3 2.7 54 6 54H54C57.3 54 60 51.3 60 48V12C60 8.7 57.3 6 54 6ZM39 40.5V33H21V40.5L10.5 30L21 19.5V27H39V19.5L49.5 30L39 40.5Z"></path></symbol><symbol id="fingerprint" viewbox="0 0 54 60"><path fill-rule="evenodd" clip-rule="evenodd" d="M44.4486 7.41C44.2085 7.41 43.9685 7.35 43.7584 7.23C37.9972 4.26 33.0162 3 27.045 3C21.1038 3 15.4626 4.41 10.3316 7.23C9.61144 7.62 8.71126 7.35 8.29117 6.63C7.90109 5.91 8.17115 4.98 8.89129 4.59C14.4724 1.56 20.5937 0 27.045 0C33.4363 0 39.0175 1.41 45.1387 4.56C45.8889 4.95 46.1589 5.85 45.7688 6.57C45.4988 7.11 44.9887 7.41 44.4486 7.41ZM1.50979 23.16C1.20972 23.16 0.909662 23.07 0.639607 22.89C-0.050534 22.41 -0.200565 21.48 0.279534 20.79C3.25014 16.59 7.03091 13.29 11.5318 10.98C20.9538 6.12 33.0162 6.09 42.4682 10.95C46.9691 13.26 50.7499 16.53 53.7205 20.7C54.2006 21.36 54.0505 22.32 53.3604 22.8C52.6703 23.28 51.7401 23.13 51.26 22.44C48.5594 18.66 45.1387 15.69 41.0879 13.62C32.4761 9.21 21.4639 9.21 12.8821 13.65C8.80128 15.75 5.38058 18.75 2.68002 22.53C2.43998 22.95 1.98988 23.16 1.50979 23.16ZM20.2636 59.37C19.8735 59.37 19.4835 59.22 19.2134 58.92C16.6029 56.31 15.1926 54.63 13.1822 51C11.1117 47.31 10.0315 42.81 10.0315 37.98C10.0315 29.07 17.6531 21.81 27.015 21.81C36.3769 21.81 43.9985 29.07 43.9985 37.98C43.9985 38.82 43.3383 39.48 42.4982 39.48C41.658 39.48 40.9979 38.82 40.9979 37.98C40.9979 30.72 34.7266 24.81 27.015 24.81C19.3034 24.81 13.0321 30.72 13.0321 37.98C13.0321 42.3 13.9923 46.29 15.8227 49.53C17.7431 52.98 19.0634 54.45 21.3738 56.79C21.944 57.39 21.944 58.32 21.3738 58.92C21.0438 59.22 20.6537 59.37 20.2636 59.37ZM41.778 53.82C38.2073 53.82 35.0566 52.92 32.4761 51.15C28.0052 48.12 25.3347 43.2 25.3347 37.98C25.3347 37.14 25.9948 36.48 26.835 36.48C27.6751 36.48 28.3353 37.14 28.3353 37.98C28.3353 42.21 30.4957 46.2 34.1565 48.66C36.2869 50.1 38.7774 50.79 41.778 50.79C42.4982 50.79 43.6984 50.7 44.8987 50.49C45.7088 50.34 46.489 50.88 46.639 51.72C46.789 52.53 46.2489 53.31 45.4088 53.46C43.6984 53.79 42.1981 53.82 41.778 53.82ZM35.7468 60C35.6268 60 35.4767 59.97 35.3567 59.94C30.5857 58.62 27.4651 56.85 24.1944 53.64C19.9936 49.47 17.6831 43.92 17.6831 37.98C17.6831 33.12 21.8239 29.16 26.925 29.16C32.026 29.16 36.1669 33.12 36.1669 37.98C36.1669 41.19 38.9574 43.8 42.4081 43.8C45.8589 43.8 48.6494 41.19 48.6494 37.98C48.6494 26.67 38.8974 17.49 26.895 17.49C18.3732 17.49 10.5716 22.23 7.06092 29.58C5.89068 32.01 5.29056 34.86 5.29056 37.98C5.29056 40.32 5.5006 44.01 7.30097 48.81C7.60103 49.59 7.21095 50.46 6.43079 50.73C5.65063 51.03 4.78045 50.61 4.5104 49.86C3.0401 45.93 2.31995 42.03 2.31995 37.98C2.31995 34.38 3.01009 31.11 4.36037 28.26C8.35118 19.89 17.203 14.46 26.895 14.46C40.5478 14.46 51.65 24.99 51.65 37.95C51.65 42.81 47.5092 46.77 42.4081 46.77C37.3071 46.77 33.1663 42.81 33.1663 37.95C33.1663 34.74 30.3757 32.13 26.925 32.13C23.4743 32.13 20.6837 34.74 20.6837 37.95C20.6837 43.08 22.6641 47.88 26.2949 51.48C29.1454 54.3 31.876 55.86 36.1069 57.03C36.917 57.24 37.3671 58.08 37.1571 58.86C37.007 59.55 36.3769 60 35.7468 60Z"></path></symbol><symbol id="logo" viewBox="0 0 30 30"><title>Slides Framework</title><path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M10 0C4.47715 0 0 4.47715 0 10V20C0 25.5228 4.47715 30 10 30H20C25.5228 30 30 25.5228 30 20V10C30 4.47715 25.5228 0 20 0H10ZM12.8872 18.3433L12.0236 20.9967H9.38721L13.4043 9.36035H16.5747L20.5861 20.9967H17.9497L17.0861 18.3433H12.8872ZM14.944 12.0194L13.5122 16.4229H16.4668L15.0349 12.0194H14.944Z"></path></symbol><symbol id="line" viewBox="0 0 448 37" fill="none"><path d="M21.3112 32C133.522 16.7952 258.116 19.1342 375.175 11.1618C385.006 10.4923 450.674 6.54352 441.038 8.14514C425.13 10.789 369.401 9.91927 353.468 9.7692C299.968 9.26526 246.5 4.17479 193.013 5.11574C130.284 6.21928 67.3277 7.0767 5 12.9543" stroke="#FFC107" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
<symbol id="close" viewBox="0 0 30 30"><path d="M15 0c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm5.7 19.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4.3-4.3-4.3 4.3c-.2.2-.4.3-.7.3s-.5-.1-.7-.3c-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.3 4.3 4.3-4.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4.3 4.3 4.3 4.3z"></path></symbol>
<symbol id="arrow-left" viewBox="0 0 29 56"><path d="M28.7.3c.4.4.4 1 0 1.4l-26.3 26.3 26.3 26.3c.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0l-27-27c-.4-.4-.4-1 0-1.4l27-27c.3-.3 1-.4 1.4 0z"></path></symbol>
<symbol id="arrow-right" viewBox="0 0 29 56"><path d="M.3 55.7c-.4-.4-.4-1 0-1.4l26.3-26.3-26.3-26.3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l27 27c.4.4.4 1 0 1.4l-27 27c-.3.3-1 .4-1.4 0z"></path></symbol>
<symbol id="back" viewBox="0 0 20 20"><path d="M2.3 10.7l5 5c.4.4 1 .4 1.4 0s.4-1 0-1.4l-3.3-3.3h11.6c.6 0 1-.4 1-1s-.4-1-1-1h-11.6l3.3-3.3c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.5-.3.7 0 .2.1.5.3.7z"></path></symbol>
<symbol id="menu" viewBox="0 0 18 18"><path d="M16 5h-14c-.6 0-1-.4-1-1 0-.5.4-1 1-1h14c.5 0 1 .4 1 1s-.4 1-1 1zm-14 5h14c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-14c-.6 0-1 .4-1 1s.4 1 1 1zm14 3h-14c-.5 0-1 .4-1 1 0 .5.4 1 1 1h14c.5 0 1-.4 1-1s-.4-1-1-1z"></path></symbol>
<symbol id="share" viewBox="0 0 18 18"><path d="M16 8c-.6 0-1 .4-1 1v6h-12v-6c0-.6-.4-1-1-1s-1 .4-1 1v6c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-6c0-.6-.4-1-1-1zm-2.3-2.3c.4-.4.4-1 0-1.4l-4-4c-.4-.4-1-.4-1.4 0l-4 4c-.4.4-.4 1 0 1.4s1 .4 1.4 0l2.3-2.3v7.6c0 .6.4 1 1 1s1-.4 1-1v-7.6l2.3 2.3c.4.4 1 .4 1.4 0z"></path></symbol>
<symbol id="arrow-down" viewBox="0 0 24 24"><path d="M12 18c-.2 0-.5-.1-.7-.3l-11-10c-.4-.4-.4-1-.1-1.4.4-.4 1-.4 1.4-.1l10.4 9.4 10.3-9.4c.4-.4 1-.3 1.4.1.4.4.3 1-.1 1.4l-11 10c-.1.2-.4.3-.6.3z"></path></symbol>
<symbol id="arrow-up" viewBox="0 0 24 24"><path d="M11.9 5.9c.2 0 .5.1.7.3l11 10c.4.4.4 1 .1 1.4-.4.4-1 .4-1.4.1l-10.4-9.4-10.3 9.4c-.4.4-1 .3-1.4-.1-.4-.4-.3-1 .1-1.4l11-10c.1-.2.4-.3.6-.3z"></path></symbol>
<symbol id="arrow-top" viewBox="0 0 18 18"><path d="M15.7 7.3l-6-6c-.4-.4-1-.4-1.4 0l-6 6c-.4.4-.4 1 0 1.4.4.4 1 .4 1.4 0l4.3-4.3v11.6c0 .6.4 1 1 1s1-.4 1-1v-11.6l4.3 4.3c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4z"></path></symbol>
<symbol id="play" viewBox="0 0 30 30"><path d="M7 30v-30l22 15z"></path></symbol>
<symbol id="chat" viewBox="0 0 18 18"><path d="M5,17c-0.2,0-0.3,0-0.4-0.1C4.2,16.7,4,16.4,4,16v-2H2c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v9 c0,1.1-0.9,2-2,2H9.3l-3.7,2.8C5.4,16.9,5.2,17,5,17z M2,12h3.5C5.8,12,6,12.2,6,12.5V14l2.4-1.8C8.6,12.1,8.8,12,9,12h7V3H2V12z M13,7H5C4.4,7,4,6.6,4,6s0.4-1,1-1h8c0.6,0,1,0.4,1,1S13.6,7,13,7z M13,10H5c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1 S13.6,10,13,10z"></path></symbol>
<symbol id="mail" viewBox="0 0 18 18"><path d="M16 2h-14c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2zm0 2v.5l-7 4.3-7-4.4v-.4h14zm-14 10v-7.2l6.5 4c.1.1.3.2.5.2s.4-.1.5-.2l6.5-4v7.2h-14z"></path></symbol>
<symbol id="sound-on" viewBox="0 0 18 18"><path d="M8.5,0.1C8.1-0.1,7.7,0,7.4,0.2L3.7,3H2C0.9,3,0,3.9,0,5v6c0,1.1,0.9,2,2,2h1.7l3.7,2.8C7.6,15.9,7.8,16,8,16 c0.2,0,0.3,0,0.4-0.1C8.8,15.7,9,15.4,9,15V1C9,0.6,8.8,0.3,8.5,0.1z M7,13l-2.4-1.8C4.4,11.1,4.2,11,4,11l-2,0l0-6h2 c0.2,0,0.4-0.1,0.6-0.2L7,3V13z M11.7,9.9l0.7,1.9C13.9,11.2,15,9.7,15,8c0-1.7-1.1-3.2-2.7-3.8l-0.7,1.9C12.5,6.4,13,7.2,13,8C13,8.9,12.5,9.6,11.7,9.9z M12.2,1.1l-0.3,2C14.3,3.5,16,5.6,16,8s-1.8,4.5-4.2,4.9l0.3,2C15.6,14.3,18,11.4,18,8C18,4.6,15.6,1.7,12.2,1.1z"></path></symbol>
<symbol id="sound-off" viewBox="0 0 18 18"><path d="M15.9,8l1.8-1.8c0.4-0.4,0.4-1,0-1.4s-1-0.4-1.4,0l-1.8,1.8l-1.8-1.8c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L13.1,8l-1.8,1.8 c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l1.8-1.8l1.8,1.8c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L15.9,8z M8.5,0.1C8.1-0.1,7.7,0,7.4,0.2L3.7,3H2C0.9,3,0,3.9,0,5v6c0,1.1,0.9,2,2,2h1.7l3.7,2.8C7.6,15.9,7.8,16,8,16 c0.2,0,0.3,0,0.4-0.1C8.8,15.7,9,15.4,9,15V1C9,0.6,8.8,0.3,8.5,0.1z M7,13l-2.4-1.8C4.4,11.1,4.2,11,4,11l-2,0l0-6h2 c0.2,0,0.4-0.1,0.6-0.2L7,3V13z"></path></symbol>
<symbol id="heart" viewBox="0 0 24 24"><path d="M17.4304 3C15.2848 3 13.4313 4.1925 12.5 5.943C11.5687 4.1925 9.71065 3 7.56957 3C4.49261 3 2 5.457 2 8.4855C2 11.514 3.90826 14.2815 6.37348 16.554C8.92543 18.903 12.5 21 12.5 21C12.5 21 16.0426 18.8625 18.6265 16.554C21.3839 14.088 23 11.514 23 8.4855C23 5.457 20.5074 3 17.4304 3Z"></path></symbol>
<symbol id="repost"> <path d="M4.72783 15.2138C6.23438 15.2138 7.45567 13.9989 7.45567 12.5002C7.45567 11.0015 6.23438 9.78662 4.72783 9.78662C3.22129 9.78662 2 11.0015 2 12.5002C2 13.9989 3.22129 15.2138 4.72783 15.2138Z"></path><path d="M19.2718 21.9999C20.7783 21.9999 21.9996 20.785 21.9996 19.2863C21.9996 17.7877 20.7783 16.5728 19.2718 16.5728C17.7652 16.5728 16.5439 17.7877 16.5439 19.2863C16.5439 20.785 17.7652 21.9999 19.2718 21.9999Z"></path><path d="M19.2718 8.42717C20.7783 8.42717 21.9996 7.21225 21.9996 5.71358C21.9996 4.21491 20.7783 3 19.2718 3C17.7652 3 16.5439 4.21491 16.5439 5.71358C16.5439 7.21225 17.7652 8.42717 19.2718 8.42717Z"></path><path d="M6.90356 11.8778L17.142 6.52295" fill="none" stroke="" stroke-miterlimit="10"></path><path d="M6.9231 13.0869L17.1616 18.4462" fill="none" stroke="" stroke-miterlimit="10"></path></symbol>
<symbol id="check" viewBox="0 0 24 24" fill="none"><path d="M3 12L9 18L21 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
<!-- social -->
<symbol id="apple" viewBox="-1 1 24 24"><path d="M17.6 13.8c0-3 2.5-4.5 2.6-4.6-1.4-2.1-3.6-2.3-4.4-2.4-1.9-.2-3.6 1.1-4.6 1.1-.9 0-2.4-1.1-4-1-2 0-3.9 1.2-5 3-2.1 3.7-.5 9.1 1.5 12.1 1 1.5 2.2 3.1 3.8 3 1.5-.1 2.1-1 3.9-1s2.4 1 4 1 2.7-1.5 3.7-2.9c1.2-1.7 1.6-3.3 1.7-3.4-.1-.1-3.2-1.3-3.2-4.9zm-3.1-9c.8-1 1.4-2.4 1.2-3.8-1.2 0-2.7.8-3.5 1.8-.8.9-1.5 2.3-1.3 3.7 1.4.1 2.8-.7 3.6-1.7z"></path></symbol>
<symbol id="dribbble" viewBox="0 0 24 24"><path d="M12 0c-6.7 0-12 5.3-12 12s5.3 12 12 12 12-5.3 12-12-5.3-12-12-12zm7.9 5.7c1.3 1.7 2.1 3.9 2.3 6.1-.4-.1-2.4-.4-4.7-.4-.8 0-1.5 0-2.3.1 0-.1-.1-.3-.3-.5l-.7-1.5c3.7-1.4 5.3-3.4 5.7-3.8zm-7.9-3.8c2.5 0 4.9.9 6.7 2.5-.3.4-1.9 2.3-5.2 3.6-1.6-2.9-3.3-5.3-3.7-5.9.6-.1 1.4-.2 2.2-.2zm-4.4 1c.4.6 2.1 3 3.7 5.8-4.4 1.2-8.2 1.2-9.2 1.2h-.1c.8-3.1 2.9-5.6 5.6-7zm-5.7 9.1v-.3h.3c1.2 0 5.6-.1 10.1-1.5l.8 1.6c-.1 0-.3 0-.4.1-5.1 1.6-7.9 6-8.3 6.7-1.6-1.7-2.5-4.1-2.5-6.6zm10.1 10.1c-2.3 0-4.4-.8-6.1-2.1.3-.5 2.4-4.4 7.9-6.3 1.3 3.6 2 6.7 2.1 7.6-1.2.6-2.6.8-3.9.8zm5.7-1.8c-.1-.8-.7-3.6-2-7.1.7-.1 1.3-.1 2-.1 2.1 0 3.7.4 4.1.5-.3 2.8-1.8 5.2-4.1 6.7z"></path></symbol>
<symbol id="facebook" viewBox="0 0 24 24"><path d="M24 1.3v21.3c0 .7-.6 1.3-1.3 1.3h-6.1v-9.3h3.1l.5-3.6h-3.6v-2.2c0-1.1.3-1.8 1.8-1.8h1.9v-3.2c-.3 0-1.5-.1-2.8-.1-2.8 0-4.7 1.7-4.7 4.8v2.7h-3.1v3.6h3.1v9.2h-11.5c-.7 0-1.3-.6-1.3-1.3v-21.4c0-.7.6-1.3 1.3-1.3h21.3c.8 0 1.4.6 1.4 1.3z"></path></symbol>
<symbol id="facebook2" viewBox="0 0 512 512"><path d="M288 176v-64c0-17.664 14.336-32 32-32h32v-80h-64c-53.024 0-96 42.976-96 96v80h-64v80h64v256h96v-256h64l32-80h-96z"></path></symbol>
<symbol id="fb-like" viewBox="0 0 20 20"><path d="M0 8v12h5v-12h-5zm2.5 10.8c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8s.8.3.8.8c0 .4-.4.8-.8.8zm3.5-.8h9.5c1.1 0 1.7-1 1.7-1.7 0-.3-.4-1-.4-1 1.4-.3 1.7-1.2 1.7-1.7-.1-.5-.3-.9-.5-1 1-.4 1.5-1.1 1.4-1.9-.1-.8-1-1.5-1-1.5 1-.6.9-1.5.9-1.5-.3-1.3-1.5-1.7-1.7-1.7h-5.6s.3-.5.3-2.4-1.3-3.6-2.6-3.6c0 0-.7.1-1 .3v3.5l-2.7 4.4v9.8z"></path></symbol>
<symbol id="instagram" viewBox="0 0 20 20"><circle cx="10" cy="10" r="3.3"></circle><path d="M13,0H7C2.2,0,0,2.2,0,7v6c0,4.8,2.1,7,7,7h6c4.8,0,7-2.2,7-7V7C20,2.2,17.9,0,13,0z M10,15.1c-2.8,0-5.1-2.3-5.1-5.1 S7.2,4.9,10,4.9s5.1,2.3,5.1,5.1S12.8,15.1,10,15.1z M15.3,5.9c-0.7,0-1.2-0.5-1.2-1.2c0-0.7,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2 C16.5,5.3,16,5.9,15.3,5.9z"></path></symbol>
<symbol id="behance" viewBox="0 0 511.958 511.958"><path d="M210.624 240.619c10.624-5.344 18.656-11.296 24.16-17.728 9.792-11.584 14.624-26.944 14.624-45.984 0-18.528-4.832-34.368-14.496-47.648-16.128-21.632-43.424-32.704-82.016-33.28h-152.896v312.096h142.56c16.064 0 30.944-1.376 44.704-4.192 13.76-2.848 25.664-8.064 35.744-15.68 8.96-6.624 16.448-14.848 22.4-24.544 9.408-14.656 14.112-31.264 14.112-49.76 0-17.92-4.128-33.184-12.32-45.728-8.288-12.544-20.448-21.728-36.576-27.552zm-147.552-90.432h68.864c15.136 0 27.616 1.632 37.408 4.864 11.328 4.704 16.992 14.272 16.992 28.864 0 13.088-4.32 22.24-12.864 27.392-8.608 5.152-19.776 7.744-33.472 7.744h-76.928v-68.864zm108.896 198.24c-7.616 3.68-18.336 5.504-32.064 5.504h-76.832v-83.232h77.888c13.568.096 24.128 1.888 31.68 5.248 13.44 6.08 20.128 17.216 20.128 33.504 0 19.2-6.912 32.128-20.8 38.976zM327.168 110.539h135.584v38.848h-135.584zM509.856 263.851c-2.816-18.08-9.024-33.984-18.688-47.712-10.592-15.552-24.032-26.944-40.384-34.144-16.288-7.232-34.624-10.848-55.04-10.816-34.272 0-62.112 10.72-83.648 32-21.472 21.344-32.224 52.032-32.224 92.032 0 42.656 11.872 73.472 35.744 92.384 23.776 18.944 51.232 28.384 82.4 28.384 37.728 0 67.072-11.232 88.032-33.632 13.408-14.144 20.992-28.064 22.656-41.728h-62.464c-3.616 6.752-7.808 12.032-12.608 15.872-8.704 7.04-20.032 10.56-33.92 10.56-13.216 0-24.416-2.912-33.76-8.704-15.424-9.28-23.488-25.536-24.512-48.672h170.464c.256-19.936-.384-35.264-2.048-45.824zm-166.88 5.984c2.24-15.008 7.68-26.912 16.32-35.712 8.64-8.768 20.864-13.184 36.512-13.216 14.432 0 26.496 4.128 36.32 12.416 9.696 8.352 15.168 20.48 16.288 36.512h-105.44z"></path></symbol>
<symbol id="linkedin" viewBox="0 0 24 24"><path d="M5.9 21.9h-4.7v-14.2h4.7v14.2zm-2.3-16.1c-1.6 0-2.6-1.1-2.6-2.5s1-2.5 2.7-2.5c1.6 0 2.6 1 2.6 2.5-.1 1.4-1.2 2.5-2.7 2.5zm19.2 16.1h-4.7v-7.6c0-2-.7-3.3-2.3-3.3-1.3 0-2.1.9-2.5 1.7-.1.3-.1.8-.1 1.2v7.9h-4.7v-14.1h4.7v2c.7-.9 1.7-2.3 4.3-2.3 3.1 0 5.5 2.1 5.5 6.4v8.2h-.2z"></path></symbol>
<symbol id="medium" viewBox="0 0 130.8 104"><path d="M15.5 21.2c.2-1.6-.5-3.2-1.7-4.3l-12.1-14.7v-2.2h38l29.3 64.4 25.8-64.4h36.2v2.2l-10.5 10c-.9.7-1.3 1.8-1.2 2.9v73.7c0 1.1.3 2.2 1.2 2.9l10.2 10v2.2h-51.3v-2.2l10.6-10.2c1-1 1-1.3 1-2.9v-59.6l-29.4 74.7h-4l-34.2-74.7v50.3c0 2.2.4 4.2 1.9 5.7l13.7 16.8v2.2h-39v-2.2l13.8-16.7c1.5-1.5 1.8-3.3 1.8-5.7l-.1-58.2z"></path></symbol>
<symbol id="pinterest" viewBox="0 0 24 24"><path d="M5.9 13.9c1.2-2-.4-2.5-.6-4-1-6.1 7.1-10.2 11.4-6 2.9 2.9 1 12-3.7 11-4.6-.9 2.2-8.1-1.4-9.5-3-1.1-4.6 3.6-3.2 5.9-.8 4-2.5 7.7-1.8 12.7 2.3-1.7 3.1-4.8 3.7-8.1 1.2.7 1.8 1.4 3.3 1.5 5.5.4 8.6-5.4 7.8-10.7-.7-4.7-5.5-7.1-10.6-6.6-4.1.4-8.1 3.7-8.3 8.3-.1 2.8.7 4.9 3.4 5.5z"></path></symbol>
<symbol id="stumbleupon" viewBox="0 0 24 24"><path d="M13.3 9.6l1.6.8 2.5-.8v-1.4c0-3-2.4-5.4-5.4-5.4s-5.4 2.4-5.4 5.4v7.5c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2h-4v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-7.5c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3l-.1 1.4zm6.6 2.9v3.2c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2l-2.5.8-1.6-.8v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-3.2h-4.1z"></path></symbol>
<symbol id="twitter" viewBox="0 1 24 23"><path d="M21.5 7.6v.6c0 6.6-5 14.1-14 14.1-2.8 0-5.4-.8-7.6-2.2l1.2.1c2.3 0 4.4-.8 6.1-2.1-2.2 0-4-1.5-4.6-3.4.3.1.6.1.9.1.5 0 .9-.1 1.3-.2-2.1-.6-3.8-2.6-3.8-5 .7.4 1.4.6 2.2.6-1.3-.9-2.2-2.4-2.2-4.1 0-.9.2-1.8.7-2.5 2.4 3 6.1 5 10.2 5.2-.1-.4-.1-.7-.1-1.1 0-2.7 2.2-5 4.9-5 1.4 0 2.7.6 3.6 1.6 1-.3 2.1-.7 3-1.3-.4 1.2-1.1 2.1-2.2 2.7 1-.1 1.9-.4 2.8-.8-.6 1.1-1.4 2-2.4 2.7z"></path></symbol>
<symbol id="tumblr" viewBox="0 0 23 23"><path d="M12.573 4.94v-4.94h-3.188c-.072.183-.11.4-.11.622-.034.107-.072.184-.072.293-.328 1.829-1.28 3.11-2.892 3.807-.476.218-.914.253-1.39.218v3.987h2.342c.039 5.603.039 8.493.039 8.64v.332c.294 2.449 1.573 3.914 3.843 4.463.914.257 1.901.366 2.892.366 1.279-.036 2.525-.256 3.771-.659v-4.685c-.731.22-1.395.402-1.977.583-1.135.333-2.087.113-2.857-.619-.073-.11-.183-.257-.221-.403-.106-.586-.178-1.206-.178-1.795v-6.222h5.083v-3.988h-5.085z"></path></symbol>
<symbol id="xing" viewBox="0 0 24 24"><path d="M3.647 4.74c-.208 0-.384.073-.472.216-.091.148-.077.338.02.531l2.34 4.051v.02l-3.678 6.49c-.096.191-.091.383 0 .531.088.142.244.236.452.236h3.461c.518 0 .767-.349.944-.669l3.737-6.608-2.38-4.15c-.172-.307-.433-.649-.964-.649h-3.46zm14.542-4.74c-.517 0-.741.326-.927.659l-7.702 13.658 4.918 9.023c.172.307.437.659.967.659h3.457c.208 0 .371-.079.459-.221.092-.148.09-.343-.007-.535l-4.88-8.915v-.023l7.664-13.551c.096-.191.098-.386.007-.534-.088-.142-.252-.221-.46-.221h-3.496z"></path></symbol>
<symbol id="whatsapp" viewBox="0 0 512 512"><path d="M256.064 0h-.128c-141.152 0-255.936 114.816-255.936 256 0 56 18.048 107.904 48.736 150.048l-31.904 95.104 98.4-31.456c40.48 26.816 88.768 42.304 140.832 42.304 141.152 0 255.936-114.848 255.936-256s-114.784-256-255.936-256zm148.96 361.504c-6.176 17.44-30.688 31.904-50.24 36.128-13.376 2.848-30.848 5.12-89.664-19.264-75.232-31.168-123.68-107.616-127.456-112.576-3.616-4.96-30.4-40.48-30.4-77.216s18.656-54.624 26.176-62.304c6.176-6.304 16.384-9.184 26.176-9.184 3.168 0 6.016.16 8.576.288 7.52.32 11.296.768 16.256 12.64 6.176 14.88 21.216 51.616 23.008 55.392 1.824 3.776 3.648 8.896 1.088 13.856-2.4 5.12-4.512 7.392-8.288 11.744-3.776 4.352-7.36 7.68-11.136 12.352-3.456 4.064-7.36 8.416-3.008 15.936 4.352 7.36 19.392 31.904 41.536 51.616 28.576 25.44 51.744 33.568 60.032 37.024 6.176 2.56 13.536 1.952 18.048-2.848 5.728-6.176 12.8-16.416 20-26.496 5.12-7.232 11.584-8.128 18.368-5.568 6.912 2.4 43.488 20.48 51.008 24.224 7.52 3.776 12.48 5.568 14.304 8.736 1.792 3.168 1.792 18.048-4.384 35.52z"></path></symbol>
<symbol id="youtube" viewBox="0 0 24 24"><path d="M23.6 6.3c-.3-1.2-1.4-2.2-2.6-2.3-3-.3-6-.3-9-.3s-6 0-9 .3c-1.2.1-2.3 1.1-2.6 2.3-.4 1.8-.4 3.8-.4 5.7 0 1.9 0 3.9.4 5.7.3 1.2 1.4 2.2 2.6 2.3 3 .3 6 .3 9 .3s6 0 9-.3c1.3-.1 2.3-1.1 2.6-2.4.4-1.7.4-3.7.4-5.6 0-1.9 0-3.9-.4-5.7zm-14.1 9v-6.6l6.5 3.3-6.5 3.3z"></path></symbol>
<symbol id="pinterest-round" viewBox="0 0 18 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0C4.02931 0 0 4.02825 0 9C0 12.8123 2.37206 16.0694 5.71954 17.3809C5.64082 16.6693 5.57062 15.5769 5.75145 14.7983C5.9142 14.0962 6.80664 10.3254 6.80664 10.3254C6.80664 10.3254 6.53753 9.78608 6.53753 8.98936C6.53753 7.73738 7.26191 6.80345 8.16606 6.80345C8.93299 6.80345 9.30422 7.37998 9.30422 8.07139C9.30422 8.84364 8.81279 9.99775 8.55856 11.0678C8.34689 11.9645 9.00851 12.6942 9.89138 12.6942C11.4912 12.6942 12.7208 11.0072 12.7208 8.57239C12.7208 6.41733 11.1731 4.91112 8.96171 4.91112C6.40137 4.91112 4.89836 6.83217 4.89836 8.81704C4.89836 9.59036 5.19513 10.42 5.56743 10.8711C5.64082 10.9604 5.65146 11.0381 5.63019 11.1295C5.56211 11.4135 5.41 12.0252 5.38022 12.1496C5.34086 12.3145 5.24938 12.3496 5.07812 12.2709C3.95485 11.7475 3.25281 10.1031 3.25281 8.78407C3.25281 5.94504 5.31533 3.33684 9.19891 3.33684C12.3209 3.33684 14.7472 5.56211 14.7472 8.53516C14.7472 11.6369 12.791 14.1334 10.0775 14.1334C9.16488 14.1334 8.30753 13.659 8.01395 13.0995C8.01395 13.0995 7.56294 14.8174 7.45337 15.2386C7.25021 16.0204 6.70134 17.0001 6.33542 17.5979C7.17681 17.8596 8.07139 18 9 18C13.9707 18 18 13.9707 18 9C18 4.02825 13.9707 0 9 0Z"></path></symbol>
<symbol id="snapchat" viewBox="0 0 17 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.66346 0H8.66271C8.64804 0 8.63425 6.66672e-08 8.62112 0.000176493C8.51644 0.00123489 8.34435 0.00291043 8.32889 0.00308685C7.9515 0.00308685 7.19642 0.0564488 6.38535 0.41481C5.92161 0.619569 5.50448 0.896432 5.1456 1.23773C4.71772 1.64438 4.36915 2.14576 4.10975 2.72815C3.72985 3.58088 3.82003 5.01719 3.89246 6.17144L3.89273 6.17324C3.90048 6.29686 3.90863 6.42594 3.91608 6.55172C3.86034 6.57734 3.76998 6.60437 3.6368 6.60437C3.42251 6.60437 3.16769 6.53579 2.87961 6.40067C2.79484 6.36116 2.69809 6.34118 2.59135 6.34118C2.41983 6.34118 2.23903 6.39172 2.08219 6.48402C1.88486 6.6 1.75736 6.76393 1.72273 6.94567C1.69991 7.06588 1.70101 7.3035 1.96469 7.54446C2.10972 7.67712 2.32278 7.79945 2.59778 7.90825C2.66994 7.93669 2.75559 7.96386 2.8463 7.99266C3.16108 8.09281 3.63751 8.24412 3.76175 8.53681C3.8247 8.68521 3.79761 8.88049 3.68143 9.11652C3.67839 9.12296 3.67535 9.12926 3.67258 9.13588C3.64354 9.20375 3.37268 9.81789 2.81709 10.4656C2.50138 10.8339 2.15365 11.1417 1.7841 11.3808C1.33305 11.6726 0.844996 11.8634 0.333634 11.9477C0.132826 11.9807 -0.0105781 12.1598 0.000612196 12.3633C0.00404859 12.4219 0.0177942 12.4804 0.0416287 12.537C0.0418049 12.5374 0.0420255 12.5377 0.0422017 12.538C0.123398 12.7281 0.31165 12.8896 0.61771 13.0321C0.991704 13.206 1.55104 13.3522 2.28004 13.4667C2.31688 13.5368 2.35512 13.713 2.38159 13.8337C2.40931 13.9619 2.43821 14.0938 2.4794 14.2339C2.52385 14.3856 2.63915 14.567 2.93534 14.567C3.04759 14.567 3.17668 14.5416 3.32616 14.5126C3.54508 14.4696 3.84444 14.411 4.21808 14.411C4.42523 14.411 4.63992 14.4292 4.85602 14.4652C5.27257 14.5346 5.63167 14.7885 6.04717 15.0826C6.65532 15.5129 7.3437 16 8.39546 16C8.42414 16 8.45291 15.9991 8.48133 15.9971C8.51609 15.9987 8.55917 16 8.60464 16C9.6567 16 10.3449 15.5127 10.9524 15.0828L10.9534 15.0819C11.369 14.7882 11.7277 14.5346 12.1441 14.4652C12.3601 14.4293 12.5747 14.411 12.782 14.411C13.1389 14.411 13.4215 14.4565 13.6739 14.5058C13.8386 14.5382 13.9666 14.5539 14.0648 14.5539L14.0744 14.554H14.0843C14.3009 14.554 14.4601 14.435 14.5209 14.2267C14.5612 14.0896 14.59 13.9608 14.6185 13.8304C14.6432 13.7174 14.6828 13.5361 14.7196 13.4652C15.4491 13.3506 16.0082 13.2046 16.3823 13.0308C16.6876 12.889 16.8756 12.7276 16.9573 12.5383C16.9818 12.4816 16.9961 12.4227 16.9994 12.3628C17.0109 12.1597 16.8672 11.9802 16.6663 11.9472C14.3936 11.5723 13.3698 9.23479 13.3275 9.13548C13.3247 9.12895 13.3217 9.12247 13.3184 9.11616C13.2023 8.88005 13.1754 8.68499 13.2384 8.53633C13.3624 8.2439 13.8385 8.09259 14.1535 7.99248C14.2447 7.96373 14.3307 7.93638 14.4023 7.90807C14.7124 7.78547 14.934 7.65247 15.0803 7.50142C15.2549 7.32136 15.2889 7.14884 15.2868 7.03594C15.2815 6.76278 15.0729 6.52005 14.741 6.4012C14.6289 6.35481 14.5011 6.33033 14.371 6.33033C14.2824 6.33033 14.1512 6.3425 14.027 6.40054C13.7611 6.52508 13.523 6.59317 13.3185 6.60287C13.2098 6.59736 13.1335 6.57377 13.0841 6.55123C13.0903 6.44468 13.0972 6.33523 13.1043 6.22109L13.1072 6.17223C13.1801 5.01723 13.2706 3.57982 12.8905 2.72647C12.63 2.14201 12.2802 1.63935 11.8506 1.23182C11.4903 0.890303 11.0718 0.613483 10.6063 0.408857C9.79641 0.0531415 9.04137 0 8.66346 0Z"></path></symbol>
<symbol id="instagram2" viewBox="0 0 18 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.00084 0C6.55657 0 6.24982 0.0106873 5.28981 0.0543748C4.33167 0.0982498 3.67766 0.249937 3.10541 0.4725C2.51346 0.702375 2.01133 1.00988 1.51108 1.51031C1.01045 2.01056 0.702945 2.51269 0.472317 3.10444C0.24919 3.67688 0.0973136 4.33106 0.0541881 5.28881C0.0112502 6.24881 0 6.55575 0 9C0 11.4443 0.0108749 11.7501 0.0543754 12.7101C0.0984383 13.6682 0.250128 14.3222 0.472505 14.8944C0.70257 15.4864 1.01007 15.9885 1.51052 16.4888C2.01058 16.9894 2.51271 17.2976 3.10428 17.5275C3.67691 17.7501 4.33111 17.9018 5.28906 17.9456C6.24907 17.9893 6.55563 18 8.99972 18C11.4442 18 11.75 17.9893 12.71 17.9456C13.6681 17.9018 14.3229 17.7501 14.8955 17.5275C15.4873 17.2976 15.9887 16.9894 16.4887 16.4888C16.9894 15.9885 17.2969 15.4864 17.5275 14.8946C17.7487 14.3222 17.9006 13.668 17.9456 12.7103C17.9888 11.7503 18 11.4443 18 9C18 6.55575 17.9888 6.249 17.9456 5.289C17.9006 4.33088 17.7487 3.67687 17.5275 3.10462C17.2969 2.51269 16.9894 2.01056 16.4887 1.51031C15.9881 1.00969 15.4875 0.702187 14.895 0.4725C14.3212 0.249937 13.6668 0.0982498 12.7087 0.0543748C11.7487 0.0106873 11.4431 0 8.99803 0H9.00084ZM8.19346 1.62188C8.43309 1.6215 8.70047 1.62188 9.00084 1.62188C11.4039 1.62188 11.6887 1.6305 12.6376 1.67363C13.5151 1.71375 13.9914 1.86038 14.3086 1.98356C14.7287 2.14669 15.0281 2.34169 15.3429 2.65669C15.6579 2.97169 15.8529 3.27169 16.0164 3.69169C16.1396 4.00856 16.2864 4.48481 16.3264 5.36231C16.3695 6.31106 16.3789 6.59606 16.3789 8.99794C16.3789 11.3998 16.3695 11.6848 16.3264 12.6336C16.2862 13.5111 16.1396 13.9873 16.0164 14.3042C15.8533 14.7242 15.6579 15.0233 15.3429 15.3381C15.0279 15.6531 14.7288 15.8481 14.3086 16.0112C13.9918 16.1349 13.5151 16.2812 12.6376 16.3213C11.6889 16.3644 11.4039 16.3738 9.00084 16.3738C6.59763 16.3738 6.31282 16.3644 5.36406 16.3213C4.48655 16.2808 4.01029 16.1342 3.69285 16.011C3.27285 15.8479 2.97284 15.6529 2.65784 15.3379C2.34284 15.0229 2.14784 14.7236 1.98433 14.3034C1.86114 13.9866 1.71433 13.5103 1.67439 12.6328C1.63127 11.6841 1.62264 11.3991 1.62264 8.99569C1.62264 6.59231 1.63127 6.30881 1.67439 5.36006C1.71452 4.48256 1.86114 4.00631 1.98433 3.68906C2.14746 3.26906 2.34284 2.96906 2.65784 2.65406C2.97284 2.33906 3.27285 2.14406 3.69285 1.98056C4.0101 1.85681 4.48655 1.71056 5.36406 1.67025C6.19431 1.63275 6.51607 1.6215 8.19346 1.61963V1.62188ZM13.805 3.11625C13.2088 3.11625 12.725 3.59944 12.725 4.19588C12.725 4.79213 13.2088 5.27588 13.805 5.27588C14.4013 5.27588 14.885 4.79213 14.885 4.19588C14.885 3.59963 14.4013 3.11587 13.805 3.11587V3.11625ZM9.00084 4.37813C6.44838 4.37813 4.37892 6.44756 4.37892 9C4.37892 11.5524 6.44838 13.6209 9.00084 13.6209C11.5533 13.6209 13.622 11.5524 13.622 9C13.622 6.44756 11.5531 4.37813 9.00066 4.37813H9.00084ZM9.00084 6C10.6576 6 12.0009 7.34306 12.0009 9C12.0009 10.6567 10.6576 12 9.00084 12C7.34389 12 6.00081 10.6567 6.00081 9C6.00081 7.34306 7.34389 6 9.00084 6Z"></path></symbol>
<symbol id="github" viewBox="0 0 18 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.00007 0C4.03012 0 0 4.13136 0 9.22785C0 13.305 2.5788 16.764 6.1548 17.9841C6.6046 18.0696 6.76973 17.784 6.76973 17.5402C6.76973 17.3202 6.76138 16.5933 6.75751 15.8222C4.25368 16.3804 3.72534 14.7334 3.72534 14.7334C3.31593 13.6668 2.72604 13.3832 2.72604 13.3832C1.90947 12.8105 2.7876 12.8222 2.7876 12.8222C3.69136 12.8873 4.16724 13.7732 4.16724 13.7732C4.96995 15.1839 6.27269 14.7761 6.78627 14.5403C6.86705 13.9439 7.10029 13.5368 7.35768 13.3063C5.35864 13.073 3.25721 12.2818 3.25721 8.74589C3.25721 7.73842 3.60879 6.91524 4.18453 6.26901C4.09108 6.03658 3.78302 5.09803 4.27171 3.82696C4.27171 3.82696 5.02748 3.57895 6.74737 4.77285C7.46529 4.56839 8.23521 4.46585 9.00007 4.46234C9.76494 4.46585 10.5355 4.56839 11.2547 4.77285C12.9725 3.57895 13.7272 3.82696 13.7272 3.82696C14.2171 5.09803 13.9089 6.03658 13.8155 6.26901C14.3925 6.91524 14.7417 7.73842 14.7417 8.74589C14.7417 12.2902 12.6363 13.0706 10.6322 13.299C10.955 13.5854 11.2426 14.1469 11.2426 15.0079C11.2426 16.2426 11.2322 17.2363 11.2322 17.5402C11.2322 17.7858 11.3942 18.0735 11.8504 17.9829C15.4245 16.7614 18 13.3036 18 9.22785C18 4.13136 13.9705 0 9.00007 0Z"></path></symbol>
<symbol id="dropbox" viewBox="0 0 19 18"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.51149 11.1287L13.4338 14.4439L15.1123 13.3277V14.579L9.51149 18L3.91065 14.579V13.3277L5.58917 14.4439L9.51149 11.1287ZM3.8646 6.86903L9.5 10.4135L5.58908 13.7384L0 10.0215L3.8646 6.86903ZM15.1355 6.86916L18.9999 10.0214L13.4109 13.7384L9.49993 10.4134L15.1355 6.86916ZM5.58909 1.8431e-05L9.49984 3.32478L3.86462 6.86906L1.80952e-05 3.717L5.58909 1.8431e-05ZM13.4109 0L19 3.71698L15.1354 6.86905L9.5 3.32477L13.4109 0Z"></path></symbol>
<symbol id="arrow-left-bold" viewBox="0 0 24 24" fill="none"><path d="M12 2.00316L2.00305 12.0001L12 21.9971" stroke-width="3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
<symbol id="arrow-right-bold" viewBox="0 0 24 24" fill="none"><path d="M12.003 21.9968L22 11.9999L12.003 2.00293" stroke-width="3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
</svg>
<!-- Navigation -->
<nav class="side stroke">
<div class="navigation default">
<ul></ul>
</div>
</nav><!-- Panel Top 06 -->
<div data-cid="panel-top-06-68fb7af5">
<nav class="panel top ">
<div class="sections desktop">
<div class="left">
<!--
<a href="#" title="Slides Framework"><img src="assets/uploads/ed-stone-logo-green-transparent.png?p=Qyg9Mrpx" width="300">
</a>
<p class="tint semiBold uppercase smallest text-cyan">
innovation • passion • quality<p>
<li><a> • </a></li>
-->
</div>
<div class="center">
<!--
<ul class="menu uppercase smallest">
<li><a href="index.html">Aerials</a></li>
<li><a href="fleet.html">Coding</a></li>
<li><a href="#3">Stills</a></li>
</ul>
-->
<!--
<ul class="menu">
<li><a href="#">Tour</a></li>
<li><a href="#">Upgrade</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Explore</a></li>
</ul>
-->
</div>
<div class="right"><span class="larger button actionButton black sidebarTrigger" data-sidebar-id="1"><svg><use href="#menu"></use></svg></span></div>
</div>
</nav>
<!-- Sidebar -->
<nav class="sidebar animated" data-sidebar-id="1">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<a href="#" title="Slides Framework"><img src="assets/uploads/ed-stone-logo-green-transparent657690.png?p=Qyg9Mrpx" width="350" class="ae-1">
</a>
<!--
<a href="#" title="Slides Framework"><img src="assets/uploads/ed-stone-logo-green-transparent-b-amber-shadow.png?p=Qyg9Mrpx" width="300">
</a>
<a href="#" title="Slides Framework"><img src="assets/uploads/ed-stone-logo-green-transparent.png?p=Qyg9Mrpx" width="300">
</a>
<a href="#" class="logo"><svg width="100" height="30"><use href="#logo"></use></svg></a>
-->
<ul class="mainMenu margin-top-3">
<li class="ae-2"><a href="#showreel">Showreel</a></li>
<li class="ae-3"><a href="#stills">Stills</a></li>
<li class="ae-4"><a href="#casestudy1">Case Study #1</a></li>
<li class="ae-5"><a href="#casestudy2">Case Study #2</a></li>
<li class="ae-6"><a href="#clients">Clients</a></li>
</ul>
<ul class="subMenu small opacity-8 ae-7">
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#our_environment">Our Environment</a></li>
<li><a href="#somerset">Somerset</a></li>
</ul>
<ul class="social opacity-8 ae-8">
<li><a href="https://www.instagram.com/ed.stone.drone/"><svg><use href="#instagram"></use></svg></a></li>
</ul>
</div>
</nav>
</div>
<!-- Slide 168 (#1) -->
<section data-cid="slide-168-821c6fca" class="slide whiteSlide" data-title="about" data-name="about">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12 align-left">
<ul class="flex verticalCenter">
<li class="col-6-12 col-tablet-1-2 col-phablet-1-1 margin-bottom-phablet-6 fromLeft">
<div class="padding-right-6 padding-right-tablet-2 padding-right-phablet-0">
<p class="margin-bottom-1 smaller uppercase bolder opacity-6 ae-1">Est</p>
<h1 class="margin-bottom-3 small ae-2">2014.</h1>
<p class="semiBold ae-2">
<b>Ed Stone</b> is a somerset based <i>Visual Artist</i>. Providing specalist drone pilot & camera operator services - highly experienced & trusted on: film, drama, tv docs, live sport & commercials. </p>
<p class="semiBold ae-3">
Passionate about the craft - working client direct from Iceland to Iraq, & regularly freelancing on projects throughout the UK. </p>
<p class="align-right smaller semiBold italic opacity-8 ae-6">CAA OA 5603 - ARPAS-UK member.</p>
<p class="semiBold smaller align-right margin-top-3 padding-left-6 opacity-7 ae-4">Netflix | Disney+ | AppleTV+ | AmazonPrime | BBC | ITV | Channel 4 | Channel 5 /// Verizon | Nike | National Trust | Canal & River Trust | End State | Sunday Times
</p>
<p class="semiBold smaller align-right margin-bottom-5 padding-left-6 opacity-7 ae-5">Loves: tech, photography, art, asian food, black comedy, UX design, computer coding & custom projects...</p>
<div class="align-center">
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-1"><svg><use href="#safe"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-2"><svg><use href="#pro"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-3"><svg><use href="#power"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-4"><svg><use href="#day-night"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-5"><svg><use href="#world-view"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-6"><svg><use href="#eightk"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-7"><svg><use href="#film"></use></svg></a>
<a href="#" class="margin-bottom-1 margin-right-2 margin-right-tablet-1 crop button hollow ae-10"><svg><use href="#passion"></use></svg></a>
</div>
</div>
</li>
<li class="col-6-12 col-tablet-1-2 col-phablet-1-1 margin-top-4 padding-bottom-12 margin-top-tablet-0 padding-bottom-tablet-7 padding-bottom-phone-4 relative align-right phablet-align-left fromRight">
<img src="assets/uploads/ed-stone-profile.png?p=Qyg9Mrpx" class="margin-right-phablet-1 margin-right-phone-0 margin-bottom-phone-8 rounded ae-4" data-action="zoom"/>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="168-12">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<div class="embedVideo popupContent shadow rounded">
<iframe data-src="https://www.youtube.com/embed/uB1-wPrW4ck" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Slide 89 (#2) -->
<section data-cid="slide-89-c6d6900d" class="slide" data-title="showreel" data-name="showreel">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<ul class="flex verticalCenter">
<li class="fix-8-12">
<div class="videoThumbnail shadow rounded popupTrigger margin-bottom-3 ae-7" data-popup-id="89-6">
<img src="assets/uploads/showreel-2024-1000px4.png?p=Qyg9Mrpx" alt="Video Thumbnail"/>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="89-6">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<div class="embedVideo popupContent shadow rounded">
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/904626573?h=7b4d62ed9c&badge=0&autopause=0&player_id=0&app_id=58479" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Slide 89 (#3) -->
<section data-cid="slide-89-155520ed" class="slide whiteSlide" data-title="case study #1" data-name="casestudy1">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<ul class="flex left verticalCenter">
<li class="col-7-12 fromBottomLeft">
<div class="fix-6-12 toLeft">
<p class="large opacity-8 margin-bottom-2 ae-1">Case Study #1</p>
<h1 class="smaller margin-bottom-2 ae-2">Bright Futures</h1>
<div class="ae-3"><p class="large opacity-8">14 day shoot in Iraq - a series of four narrative TVC's showcasing Kurdish people making a difference.</p>
</div>
<ul class="flex fixedSpaces">
<li class="col-6-12 ae-4">
<h4 class="smaller margin-top-3 margin-bottom-1">Output</h4>
<p class="opacity-8">4x TVC & Social Media.</p>
</li>
<li class="col-6-12 ae-6">
<h4 class="smaller margin-top-3 margin-bottom-1">Skills</h4>
<p class="opacity-8">Safe drone operation in minefields, mountains in -10 cold wind, hot sandy deserts, refugee camps & city centers.</p>
</li>
</ul>
</div>
</li>
<li class="col-5-12 bottom">
<div class="videoThumbnail shadow rounded popupTrigger margin-bottom-3 ae-7" data-popup-id="89-4">
<img src="assets/uploads/screenshot-2023-04-16-at-23-50-28.png?p=Qyg9Mrpx" class="wide" alt="Video Thumbnail"/>
</div>
<img src="assets/uploads/screenshot-2023-04-17-at-00-06-31.png?p=Qyg9Mrpx" data-action="zoom" class="shadow rounded ae-8" alt="Image"/>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="89-4">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<div class="embedVideo popupContent shadow rounded">
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/193619099?h=6d4d7b2a32&autopause=0&title=0&byline=0&portrait=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Clients (#4) -->
<!-- Slide 17 (#01) -->
<section data-cid="slide-01-52b20b0b" class="slide fade-2 kenBurns" data-title="clients" data-name="clients">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<ul class="flex flex-68 tintLogos equal equalMobile">
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-3">
<div class="cell"><a href="#"><img width="82" src="assets/img/brand-68-bbc.png" alt="BBC"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-4">
<div class="cell"><a href="#"><img width="86" src="assets/uploads/nt-3.png?p=4WYQ0KGn" alt="National Trust"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-5 done" style="height: 116px;">
<div class="cell"><a href="#">
<img class="ae-5" width="90" src="assets/uploads/disney.png?p=4WYQ0KGn" alt="disney"></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-6">
<div class="cell"><a href="#"><img width="300" src="assets/uploads/sunday-times-2.png?p=4WYQ0KGn" alt="Sunday Times"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-7">
<div class="cell"><a href="#"><img width="72" src="assets/uploads/kew.png?p=4WYQ0KGn" alt="Kew"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-8">
<div class="cell"><a href="#"><img width="86" src="assets/uploads/cunard.png?p=4WYQ0KGn" alt="Cunard"/></a>
</div>
</div>
</li>
<!-- Line 2 -->
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-3">
<div class="cell"><a href="#"><img width="120" src="assets/uploads/ch4.png?p=Qyg9Mrpx" alt="Channel 4"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-4">
<div class="cell"><a href="#"><img width="86" src="assets/uploads/redbull.png?p=4WYQ0KGn" alt="Redbull"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-5">
<div class="cell"><a href="#"><img width="70" src="assets/img/brand-68-nike.png" alt="Nike"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-6">
<div class="cell"><a href="#"><img width="116" src="assets/uploads/verizon.png?p=4WYQ0KGn" alt="Verizon"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-7">
<div class="cell"><a href="#"><img width="97" src="assets/uploads/edf.png?p=4WYQ0KGn" alt="EDF"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-8">
<div class="cell"><a href="#"><img width="74" src="assets/uploads/natwest.png?p=4WYQ0KGn" alt="Natwest"/></a>
</a>
</div>
</div>
</li>
<!-- Line 3 -->
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-3">
<div class="cell"><a href="#"><img width="100" src="assets/uploads/amazon.png?p=Qyg9Mrpx" alt="Amazon"/>
</a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-4">
<div class="cell"><a href="#"><img width="97" src="assets/uploads/glastonbury.png?p=4WYQ0KGn" alt="Glastonbury"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-5">
<div class="cell"><a href="#"><img width="300" src="assets/uploads/khalsa.png?p=4WYQ0KGn" alt="Khalsa Aid"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-6">
<div class="cell"><a href="#"><img width="120" src="assets/uploads/canal-river.png?p=4WYQ0KGn" alt="Canal River"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-7">
<div class="cell"><a href="#"><img width="110" src="assets/uploads/yougov.png?p=4WYQ0KGn" alt="Yougov"/></a>
</div>
</div>
</li>
<li class="col-2-12 col-tablet-1-4 col-phablet-1-3 col-phone-1-2">
<div class="table wide equalElement ae-8">
<div class="cell"><a href="#"><img width="120" src="assets/uploads/endstate.png?p=4WYQ0KGn" alt="End State"/></a>
</div>
</div>
</li>
</ul>
<p class="ae-8 margin-top-4 smallest opacity-3"> - Film - Drama - Commercials - TV - Live Sport Broadcast - Music Videos - FPV - Property - Photography - VFX Plates - 3D Mapping - Inspections - </p>
<!--
<img class="fromcenter ae-5 opacity-8" src="assets/uploads/red-star-70px.png?p=4WYQ0KGn" width="40px" >
<h3 class="smaller ae-1 opacity-9">Creative Pro's.</h3>
<h5 class="smallest ae-1 opacity-9"> - Experienced. Fully Licensed. Insured.</h5>
-->
</div>
</div>
</div>
</div>
</section>
<!--
<div class="background vimeo">
<div class="background vimeo">
<iframe src="https://player.vimeo.com/video/414324120?autoplay=1&loop=1&title=0&byline=0&portrait=0&background=1" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
-->
<!-- Slide 141 (#5) -->
<section data-cid="slide-141-37cd4427" class="slide whiteSlide" data-title="stills" data-name="stills">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<h1 class="margin-bottom-1 smallest align-left phablet-align-center ae-1">Stills</h1>
<ul class="flex fixedSpaces">
<li class="col-4-12 col-tablet-1-3 col-phablet-1-1 box-141-left">
<div class="margin-bottom-3 ae-2 ">
<img src="assets/uploads/screenshot-2019-02-05-at-19-15-13-2.png?p=Qyg9Mrpx" alt="Picture" class="margin-bottom-2 block wide rounded" data-action="zoom" />
<h4 class="crop smallest">Jule's Wedding</h4>
<p class="smallest crop opacity-8">Sigma 35mm F1.2</p>
</div>
<div class="margin-bottom-3 ae-3">
<img src="assets/uploads/screenshot-2019-02-05-at-18-50-17-2.png?p=Qyg9Mrpx" alt="Picture" class="margin-bottom-2 block wide rounded" data-action="zoom" />
<h4 class="crop smallest">Maxi Jazz - Faithless</h4>
<p class="smallest crop opacity-8">Isle of White Festival<p>
</div>
</li>
<li class="col-4-12 col-tablet-1-3 col-phablet-1-1 box-141-center">
<div class="margin-bottom-3 ae-4">
<img src="assets/uploads/screenshot-2019-02-05-at-18-49-41-2.png?p=Qyg9Mrpx" alt="Picture" class="margin-top-2 margin-top-phablet-0 margin-bottom-phablet-2 margin-bottom-2 block wide rounded" data-action="zoom" />
<h4 class="crop smallest">Frank Naish - 88</h4>
<p class="smallest crop opacity-8">Hasselblad - Ilford HP5+ Film<p>
</div>
</li>
<li class="col-4-12 col-tablet-1-3 col-phablet-1-1 box-141-right">
<div class="margin-bottom-3 ae-5">
<img src="assets/uploads/10887353-10150478572474970-4232253301919092768-o.jpg?p=Qyg9Mrpx" alt="Picture" class="margin-bottom-2 block wide rounded" data-action="zoom" />
<h4 class="crop smallest">Vicky Butterfly</h4>
<p class="smallest crop opacity-8">Bristol Museum</p>
</div>
<div class="margin-bottom-3 ae-6">
<img src="assets/uploads/screenshot-2019-02-05-at-18-51-14-3.png?p=Qyg9Mrpx" alt="Picture" class="margin-bottom-2 block wide rounded" data-action="zoom" />
<h4 class="crop smallest">Carnival Portrait</h4>
<p class="smallest crop opacity-8">Hasselblad - Kodak Portra Film</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Slide 89 - 2 (#6) -->
<section data-cid="slide-89-ca866427" class="slide" data-title="case study #2" data-name="casestudy2">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<ul class="flex left verticalCenter">
<li class="col-7-12 fromBottomLeft">
<div class="fix-6-12 toLeft">
<p class="large opacity-8 margin-bottom-2 ae-1">Case Study #2</p>
<h1 class="smaller margin-bottom-2 ae-2">Unlocking the Severn</h1>
<div class="ae-3"><p class="large opacity-8">Shoot & edit for a series of films showcasing the <i>cutting-edge heritage</i> & <i>fish pass science programme</i>; To restore the twaite shad's natural spwaning grounds. At <b>£22 million</b> this is the largest & most ambitious river restoration project of its kind in Europe!</p>
</div>
<ul class="flex fixedSpaces">
<li class="col-6-12 ae-4">
<h4 class="smaller margin-top-3 margin-bottom-1">Output</h4>
<p class="opacity-8">Web Promos, Social Media & TV - BBC Country File.</p>
</li>
<li class="col-6-12 ae-6">
<h4 class="smaller margin-top-3 margin-bottom-1">Skills</h4>
<p class="opacity-8">Drone, Ground Camera, Audio interview, Edit.</p>
</li>
</ul>
</div>
</li>
<li class="col-5-12 bottom">
<div class="videoThumbnail shadow rounded popupTrigger margin-bottom-3 ae-7" data-popup-id="89-5">
<img src="assets/uploads/ed-stone-case-study2-a.png?p=Qyg9Mrpx" class="wide" alt="Video Thumbnail"/>
</div>
<img src="assets/uploads/screenshot-2023-06-05-at-22-15-27.png?p=Qyg9Mrpx " data-action="zoom" class="shadow rounded ae-8" alt="Image"/>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="89-5">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<div class="embedVideo popupContent shadow rounded">
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/658917211?badge=0&autopause=0&player_id=0&app_id=58479" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Slide 89 (#7) -->
<section data-cid="slide-89-cfaa5bca" class="slide whiteSlide" data-title="somerset" data-name="somerset">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<ul class="flex verticalCenter">
<li class="fix-8-12">
<div class="videoThumbnail shadow rounded popupTrigger margin-bottom-3 ae-7" data-popup-id="89-7">
<img src="assets/uploads/somerset-2.png?p=Qyg9Mrpx" alt="Video Thumbnail"/>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="89-7">
<div class="close"><svg><use href="#close"></use></svg></div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<div class="embedVideo popupContent shadow rounded">
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/812490080?badge=0&autopause=0&player_id=0&app_id=58479" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Enviroment (#8) -->
<div data-cid="example-kVXhqBmd-2329f9a2">
<!-- Slide 9 (#01) -->
<section class="slide" data-title="our environment" data-name="our_environment">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-8-12 toCenter">
<!--Titles-->
<h1 class="text-green margin-bottom-2 ae-1">Our Environment.</h1>
<!--Desc.-->
<p class="large ae-2"><span class="">
We must collectively own our impact on this planet. Actively taking steps to correct those impacts. One world. One Life. Oneness. Together we defend the natural world & stand for a green & peaceful future.
</span></p>
</div>
<!--Icon Bar-->
<div class="fix-10-12 margin-top-4">
<ul class="flex flex-49 later equal">
<!--Left Icon-->
<li class="col-4-12">
<div class="fix-3-12">
<svg class="ae-3 fromCenter" width="100px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wind"></use></svg>
<!--Left Title-->
<h4 class="small equalElement ae-3">Green Energy.</h4>
<!--Left Desc.-->
<div class="ae-6"><p class="small margin-top-2">As often as possible our office & equipemnt is powered by 100% solar, wind & other renewable sources.</p>
<!--Left Button--> </div>
<a class="green button stroke flat margin-top-1 ae-6 from-bottom" href="https://green.energy" target="_blank">green.energy</a>
</div>
</li>
<!--Middle Icon-->
<li class="col-4-12">
<div class="fix-3-12">
<svg class="ae-4 fromCenter" width="100px"><use class="" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#earth"></use></svg>
<!--Middle Title-->
<h4 class="small equalElement ae-4">Carbon Footprint.</h4>
<!--Middle Desc.-->
<div class="ae-7 "><p class="small margin-top-2">Ecologi help us offset our travel C02 via brilliant environmental projects around the world.
</p>
</div>
<!--Middle Button-->
<a class="green button stroke flat margin-top-1 ae-7 from-bottom" href="http://ecologi.com" target="_blank">ecologi.com</a>
</div>
</li>
<!--Right Icon-->
<li class="col-4-12">
<div class="fix-3-12">
<span class="ae-5 fromCenter material-icons margin-top-4 margin-bottom-4">
school
</span>
<!--
<img class="margin-top-1 margin-bottom-1 ae-5" width="185px" src="assets/uploads/trees-co2-b.png?p=Qyg9Mrpx">
-->
<!--Right Title-->
<h4 class="small equalElement ae-5 ">Positive Impact.</h4>
<!--Right Desc.-->
<div class="ae-8"><p class="small margin-top-2">By banning single life plastic on sets we change unconscious habits.</p>
<!--Right Button-->
<a class="green margin-top-3 button stroke flat ae-8 from-bottom" href="htpp://greenpeace.org.uk" target="_blank">greenpeace.org.uk</a>
</div>
</li>
</li>
</div>
</ul>
</div>
</div>
</div>
</div>
<!--Background Video
<div class="background vimeo">
<div class="background vimeo">
<iframe src="https://player.vimeo.com/video/502029062?autoplay=1&loop=1&title=0&byline=0&portrait=0&background=1" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</section>
-->
<!-- Background image (off)
<div class="background" style="background-image:url(assets/img/background/img-49.jpg)"></div>
</section>-->
<!--
<h5 class="opacity-9 text-lime margin-top-1 smallest weight-7 ae-9">
</h5><br>
-->
</div>
</div>
</div>
<!--
https://player.vimeo.com/video/449116005
https://player.vimeo.com/video/414324120
https://player.vimeo.com/video/396000447
<div class="background vimeo" style="background-image: url('assets/uploads/ed-stone-web-bg.jpg?p=Qyg9Mrpx');">
<iframe src="https://player.vimeo.com/video/502029062?autoplay=1&loop=1&title=0&byline=0&portrait=0&background=1" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
-->
</section>
</div>
<!-- Contact (#9) -->
<!-- jQuery 3.4.1 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Uncompressed Scripts -->
<!-- EXAMPLE: Canvas -->
<!-- Please, note. This example is just to show how you can combine your <canvas> element as a background. -->
<!-- 1) Copy the script in the head -->
<!-- 2) Add id="cover" on the "background" element -->
<section data-cid="slide-01-675c1a33" data-cid="slide-01-0a30b85c" data-cid="slide-07-715c2444" id="intro" class="slide whiteSlide" data-title="contact" data-name="contact">
<div class="content">
<div class="container">
<div class="wrap">
<!-- Fonts and Material Icons -->
<div style="text-align: center">
<div style="display: inline-block; text-align: center;">
<a href="mailto:[email protected]"><h3>
[email protected]</h3></a>
<h3>+44 (0) 7446 870602</h3>
<br>
<h6 class=" text-red">Let's make it happen...</h6>
<h6 class="italic"> who, what, where, when, budget.</h6>
</div>
<div id="cover" class="background"></div>
</div>
<style>
.slides { font-family: 'Inter', sans-serif; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js" charset="utf-8"></script>
</div>
</div>
</div>
<script>
//Home Page Graphic
//Handles Window Resize
$(window).on("resize", function () {
resizeCanvas();
});
//adapted from https://bl.ocks.org/mbostock/3231307
var width = d3.select("#cover").node().clientWidth,
height = d3.select("#intro").node().clientHeight;
var nodes = d3.range(200).map(function() { return {radius: Math.random() * 20 + 2}; }),
root = nodes[0],
color = ['#0099cc', '#24092a', '#610527', '#F44336', '#FFC107', '#FF9800', '#FF5722'];
root.radius = 0;
root.fixed = true;
root.px = width/2;
root.py = height/2;
var force = d3.layout.force()
.gravity(0.005)
.charge(function(d, i) { return i ? 0 : -400; })
.nodes(nodes)
.size([width, height]);
force.start();
var canvas = d3.select("#cover").append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
force.on("tick", function(e) {
var q = d3.geom.quadtree(nodes),
i,
d,
n = nodes.length;
for (i = 1; i < n; ++i) q.visit(collide(nodes[i]));
context.clearRect(0, 0, width, height);
force.size([width, height]);
for (i = 1; i < n; ++i) {
context.fillStyle = color[i % color.length];
d = nodes[i];
context.moveTo(d.x, d.y);
context.beginPath();
context.arc(d.x, d.y, d.radius, 0, 2 * Math.PI);
context.fill();
}