-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
831 lines (823 loc) · 34.6 KB
/
index.html
File metadata and controls
831 lines (823 loc) · 34.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
<!DOCTYPE html>
<html lang="en">
<head>
<!-- what is the UTF-8 for? -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;900&family=Scheherazade:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="./normalize.css" rel="stylesheet" />
<link href="./styles.css" rel="stylesheet" />
<title>Grace Notes Web Solutions</title>
</head>
<body>
<div class="background">
<div class="col-a"></div>
<div class="col-b"></div>
<div class="col-c"></div>
<div class="col-d"></div>
</div>
<div id="top"></div>
<nav id="nav-mobile-bootstrap" class="navbar navbar-expand-lg navbar-dark">
<a class="nav-home navbar-brand nav-link" href="index.html">GraceNotes</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link nav-about" href="about.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link nav-portfolio" href="portfolio.html"
>Portfolio</a
>
</li>
<li class="nav-item">
<a class="nav-link nav-contact" href="contact.html">Let's Chat</a>
</li>
</ul>
</div>
</nav>
<nav id="nav-not-mobile">
<a class="nav-link nav-home" href="index.html">Home</a>
<a class="nav-link nav-about" href="about.html">About Me</a>
<a class="nav-link nav-portfolio" href="portfolio.html">Portfolio</a>
<a class="nav-link nav-contact" href="contact.html">Let's Chat</a>
</nav>
<header class="index-header">
<h1>Grace Notes</h1>
<h2>Web Solutions</h2>
</header>
<main>
<!-- typing -->
<section class="typing-container" aria-label="This is an typing section">
<p class="pre-typing">Do you find yourself asking ...</p>
<br />
<div class="typing">
<p>Why is my website ...</p>
<p id="typing"></p>
</div>
</section>
<!-- Help Text -->
<section class="back-card">
<h3>We're here to help</h3>
<p>
Websites are the home of most businesses and Grace Notes is all about
making sure that your home is warm, hospitable and going to make your
customers fall in love with you.
</p>
<p>
We’re passionate about making websites that embody your brand and help
your business to grow.
</p>
</section>
<!-- Services -->
<section></section>
<!-- Values -->
<section id="values" class="back-card">
<h3>We value ...</h3>
<div class="values-container">
<div class="value-card">
<svg
class="creativity-svg"
id="Layer_1"
enable-background="new 0 0 511.999 511.999"
height="512"
viewBox="0 0 511.999 511.999"
width="512"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<path
d="m352.795 70.325-66.833-9.788-29.962-60.537-29.963 60.537-66.833 9.788 48.315 47.204-11.342 66.587 59.823-31.364 59.823 31.364-11.343-66.587z"
fill="#ffd321"
/>
<g>
<path d="m241.012 471.751h30v40.248h-30z" fill="#fff16b" />
</g>
<g>
<path d="m241.012 276.891h30v164.858h-30z" fill="#fff16b" />
</g>
<g>
<path d="m241.012 192.422h30v54.467h-30z" fill="#fff16b" />
</g>
<g>
<path
d="m346.389 483.485h-30c0-35.708 1.062-73.232 8.764-105.742 7.84-33.095 21.87-59.32 44.153-82.532l21.643 20.775c-18.419 19.187-30.051 41.008-36.604 68.672-6.992 29.514-7.956 64.941-7.956 98.827z"
fill="#fff16b"
/>
</g>
<path
d="m429.933 221.888c-20.43 0-37.05 16.62-37.05 37.05 0 20.429 16.62 37.049 37.05 37.049 20.429 0 37.049-16.62 37.049-37.049 0-20.43-16.62-37.05-37.049-37.05z"
fill="#ffd321"
/>
<g>
<path
d="m195.622 483.485h-30c0-33.888-.964-69.314-7.955-98.827-6.554-27.664-18.185-49.485-36.604-68.672l21.642-20.775c22.284 23.212 36.314 49.438 44.154 82.532 7.702 32.51 8.763 70.034 8.763 105.742z"
fill="#fff16b"
/>
</g>
<g>
<path
d="m108.619 18.459h30v30.002h-30z"
fill="#98f9ff"
transform="matrix(.707 -.707 .707 .707 12.547 97.211)"
/>
</g>
<g>
<path
d="m108.619 158.468h30v30.002h-30z"
fill="#98f9ff"
transform="matrix(.707 -.707 .707 .707 -86.453 138.217)"
/>
</g>
<g>
<path
d="m48.615 88.463h30v30.002h-30z"
fill="#5ecbf1"
transform="matrix(.707 -.707 .707 .707 -54.527 75.285)"
/>
</g>
<g>
<path
d="m373.379 18.46h30.002v30h-30.002z"
fill="#98f9ff"
transform="matrix(.707 -.707 .707 .707 90.094 284.427)"
/>
</g>
<g>
<path
d="m373.379 158.469h30.002v30h-30.002z"
fill="#98f9ff"
transform="matrix(.707 -.707 .707 .707 -8.907 325.434)"
/>
</g>
<g>
<path
d="m433.383 88.464h30.002v30h-30.002z"
fill="#5ecbf1"
transform="matrix(.707 -.707 .707 .707 58.169 347.359)"
/>
</g>
<path
d="m82.079 221.888c-20.429 0-37.049 16.62-37.049 37.05 0 20.429 16.62 37.049 37.049 37.049s37.049-16.62 37.049-37.049c0-20.43-16.62-37.05-37.049-37.05z"
fill="#ffd321"
/>
<g>
<path d="m433.333 360.667h30v30.002h-30z" fill="#bee75e" />
</g>
<g>
<path d="m383.331 410.67h30v30.002h-30z" fill="#5bc980" />
</g>
<g>
<path d="m48.678 360.667h30v30.002h-30z" fill="#bee75e" />
</g>
<g><path d="m98.681 410.67h30v30.002h-30z" fill="#5bc980" /></g>
<g>
<path
d="m346.389 483.485h-30c0-35.708 1.062-73.232 8.764-105.742 7.84-33.095 21.87-59.32 44.153-82.532l21.643 20.775c-18.419 19.187-30.051 41.008-36.604 68.672-6.992 29.514-7.956 64.941-7.956 98.827z"
fill="#ffd321"
/>
</g>
<path
d="m429.933 221.888c-20.43 0-37.05 16.62-37.05 37.05 0 20.429 16.62 37.049 37.05 37.049 20.429 0 37.049-16.62 37.049-37.049 0-20.43-16.62-37.05-37.049-37.05z"
fill="#ffaf00"
/>
<g>
<path
d="m373.379 18.46h30.002v30h-30.002z"
fill="#5ecbf1"
transform="matrix(.707 -.707 .707 .707 90.094 284.427)"
/>
</g>
<g>
<path
d="m373.379 158.469h30.002v30h-30.002z"
fill="#5ecbf1"
transform="matrix(.707 -.707 .707 .707 -8.907 325.434)"
/>
</g>
<g>
<path
d="m433.383 88.464h30.002v30h-30.002z"
fill="#4793ff"
transform="matrix(.707 -.707 .707 .707 58.169 347.359)"
/>
</g>
<g>
<path d="m433.333 360.667h30v30.002h-30z" fill="#5bc980" />
</g>
<g>
<path d="m383.331 410.67h30v30.002h-30z" fill="#00a78e" />
</g>
<path
d="m304.48 117.529 48.315-47.204-66.833-9.788-29.962-60.537v152.752l59.823 31.364z"
fill="#ffaf00"
/>
<g fill="#ffd321">
<path d="m256 471.751h15.013v40.248h-15.013z" />
<path d="m256 276.891h15.013v164.858h-15.013z" />
<path d="m256 192.422h15.013v54.467h-15.013z" />
</g>
</g>
</svg>
<p class="value">Creativity</p>
</div>
<div class="value-card">
<svg
class="human-svg"
version="1.1"
id="Layer_2"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
enable-background="new 0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
fill="#FF916E"
d="M250.3,350.6c0.6,1.4,1.1,2.9,1.6,4.4c-1.7,5.5-3,11.1-3.5,14.4c-5.9,36.5-5.7,49-5.7,49H92.1
c0,0,24.9-109.9,25.9-129c0.2-3.8,0.2-7.3-0.1-10.6c-0.2-4.1-0.8-7.7-1.8-10.7c-5.4-17.1-31-73.7-25.5-109.3
C96,123.2,131,66.6,211.1,66.6c14.1,0,26.6,1.9,37.6,4.9c-0.5,0.1-0.9,0.3-1.4,0.5c-34.8,12.7-51.5,35.9-54.5,40.4
c-11.3,17.1-19.9,52.6-19.9,67.3c0,1.6,0,3.3,0.1,5c0.2,13.2,0.3,29.5-8.1,41.7c-11.6,16.9-18.5,27.6-16.2,34.1
c2.2,6.1,10.3,9.9,17.6,11.1c0.1,1.1,0.1,2.3,0,3.8c-0.1,2.5-0.5,5-0.9,7.2l-0.3,1.9c-0.5,3.1-0.6,5.3,0.1,6.8
c0.8,1.9,2.9,3.4,5.3,4.6c-0.9,0.6-1.5,1.3-1.9,2.1c-0.9,1.4-1.5,3.7-0.1,6.9c0.7,1.5,1.9,3,3.7,4.3c1.3,1.1,2.9,2.1,4.4,3
c3,1.9,5.8,3.6,6.1,5.7c0.1,1.7-0.7,4.9-1.5,8c-0.3,1.4-0.7,2.8-1,4.2c-1.4,6.4-2.3,13.5,1.9,18.5c5.2,5.9,16.6,10.8,30.1,10.8
c4.2,0,8.6-0.5,13.2-1.6C239.7,354.6,246.2,352.5,250.3,350.6z"
/>
</g>
</g>
<g>
<g>
<g>
<path
fill="#FF916E"
d="M355.3,259.2c-1.8,5-9.9,8.8-17.4,9.6c-0.1,0.4-0.2,0.9-0.2,1.4c-0.3,1.6-0.3,3.4-0.2,5.2
c0.2,3.3,0.9,6.6,1.3,9.4c0.3,2.5,0.5,4.4,0.1,5.3c-1.1,2.6-7.7,5-11.8,6c7.4,0.6,10.5,3.2,8.5,7.6c-0.6,1.3-1.6,2.3-2.8,3.3
c-4.3,3.4-11.1,5.7-11.6,10.7c-0.3,3,1.4,8,2.5,13.1c1.3,5.9,2.1,12-1.4,16c-6.4,7.4-23,12.4-40.5,8.4c-16.3-3.8-22.3-6-26.2-8
c-0.3-0.1-0.5-0.3-0.7-0.4c-0.2-0.4-0.4-0.8-0.6-1.2c-0.3-0.7-1-1.3-1.7-1.5c-0.8-0.2-1.7-0.1-2.3,0.3l-0.6,0.3h-0.1
c-3.2,1.7-8.5,3.7-25.5,7.7c-16.3,3.8-32-0.8-37.7-7.4c-2.6-3-1.8-8.5-0.7-13.5c0.3-1.4,0.7-2.8,1-4.1c1-3.9,1.8-7.3,1.6-9.9
c-0.5-5-4.9-7.7-8.7-10.1c-1.4-0.8-2.7-1.7-3.9-2.6c-1-0.8-1.7-1.5-2-2.2c-0.2-0.4-0.5-1.1-0.2-1.6c0.1-0.2,1-1.5,6.4-2
c1.4-0.1,2.5-1.2,2.6-2.6c0.1-1.4-0.9-2.6-2.2-3c-5.3-1.3-9.3-3.4-9.8-4.2c-0.1-0.2-0.1-1,0.3-3.8l0.3-1.9c0.4-2.4,0.8-5.1,1-7.7
c0.2-2.2,0.1-4.1-0.1-5.6c-0.1-0.8-0.2-1.4-0.5-2c-0.3-1.1-1.3-1.8-2.4-1.9c-7-0.7-13.7-4.2-14.9-7.7
c-1.5-4.2,8.3-18.4,15.5-28.9c9.4-13.7,9.3-31,9.1-45c-0.1-1.7-0.1-3.4-0.1-5c0-14,8.5-48.3,18.9-64.1
c2.9-4.3,18.6-26.2,51.7-38.2c2.9-1,5.8-2,8.8-2.8c32.3,11.6,49.1,32.8,53.5,39.4c10.9,16.5,19.4,51.5,19.4,65.7
c0,14.2-1.5,33.8,8.6,48.4C349.6,242.4,357.2,254,355.3,259.2z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<path
fill="#77D0DE"
d="M391.7,289.3c0.9,18.6,25.6,124.5,25.8,125.6c0.2,0.9-0.1,1.7-0.6,2.4c-0.6,0.7-1.4,1.1-2.2,1.1H264.2
c-0.9,0-1.7,0.7-2.3,0c-0.5-0.7-0.7-2.8-0.5-3.7c0.1-0.2-0.1-9.6-5.8-44.9c-0.6-3.5-1.9-9.3-3.7-14.9c0.9-2.9,1.9-5.7,3.1-8.2
c3.2,7.3,5.4,17.1,6.3,22.2c4.6,28.4,7.9,36.1,6.4,43.8h143.5c-4.2-20-24.3-105.7-25.2-123.1c-0.2-3.8-0.2-7.5,0.1-10.9
c0.2-4.5,0.9-8.2,1.9-11.3c1-3.2,2.7-7.8,4.9-13.5c8.7-23.2,24.9-66.3,20.6-94.6c-5.5-36.1-41.4-89.9-117.7-89.9
c-13.2,0-25.8,1.7-37.6,5c-3-1.1-6.1-2.1-9.4-3c14.5-5.2,30.3-7.7,47-7.7c80,0,117.5,56.6,123.3,94.7
c4.6,29.7-11.3,72.1-20.9,97.4c-2.1,5.5-3.7,10-4.8,13.2c-0.9,2.6-1.4,6-1.7,10C391.5,282.2,391.5,285.7,391.7,289.3z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path
fill="#DFDFDF"
d="M54.9,227.8c27.8,0,50.4,18.4,50.4,41.1c0,11.9-6.3,22.6-16.2,30.2l4.9,21.7l-22.3-13.1
c-5.2,1.5-10.9,2.4-16.8,2.4c-27.8,0-50.4-18.4-50.4-41.1C4.6,246.3,27.1,227.8,54.9,227.8z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path
fill="#606466"
d="M37,270.1c0,3.7-3,6.7-6.7,6.7c-3.7,0-6.7-3-6.7-6.7s3-6.7,6.7-6.7C34,263.4,37,266.4,37,270.1z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<path
fill="#606466"
d="M61.7,270.1c0,3.7-3,6.7-6.7,6.7s-6.7-3-6.7-6.7s3-6.7,6.7-6.7S61.7,266.4,61.7,270.1z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<path
fill="#606466"
d="M86.3,270.1c0,3.7-3,6.7-6.7,6.7s-6.7-3-6.7-6.7s3-6.7,6.7-6.7S86.3,266.4,86.3,270.1z"
/>
</g>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path
fill="#DFDFDF"
d="M429.9,114.4c-34.3,0-62.1,22.7-62.1,50.7c0,14.7,7.7,27.9,20,37.2l-6,26.8l27.5-16.2
c6.5,1.9,13.4,2.9,20.7,2.9c34.3,0,62.1-22.7,62.1-50.7C492,137.2,464.2,114.4,429.9,114.4z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<rect
x="388.1"
y="143.7"
fill="#606466"
width="83.6"
height="6.6"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect
x="388.1"
y="160.4"
fill="#606466"
width="83.6"
height="6.6"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect
x="388.1"
y="177"
fill="#606466"
width="52.5"
height="6.6"
/>
</g>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path
fill="#606466"
d="M265.1,492c-32.5,0-64-6.3-93.7-18.8c-2.4-1-3.5-3.7-2.5-6.1c1-2.4,3.7-3.5,6.1-2.5
c28.6,12,58.9,18.1,90.1,18.1c128.4,0,232.9-104.5,232.9-232.9c0-2.6,2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7
C507.4,383.3,398.7,492,265.1,492z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<polygon
fill="#606466"
points="187.6,461.1 136.3,450.1 175.2,485.3 "
/>
</g>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path
fill="#606466"
d="M31.5,210.7c-0.3,0-0.6,0-0.9-0.1c-2.5-0.5-4.2-2.9-3.7-5.4C48.2,90.6,148.4,7.5,265.1,7.5
c41.5,0,82.5,10.7,118.5,30.9c2.3,1.3,3,4.1,1.8,6.4c-1.3,2.3-4.1,3-6.4,1.8c-34.6-19.4-74-29.7-113.9-29.7
c-112.2,0-208.5,79.9-229,190.1C35.7,209.1,33.7,210.7,31.5,210.7z"
/>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<polygon
fill="#606466"
points="366.1,48.6 415.8,65.3 381.1,26 "
/>
</g>
</g>
</g>
</g>
</g>
</svg>
<p class="value">Human Centered Design</p>
</div>
<div class="value-card">
<svg
class="empathy-svg"
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background: new 0 0 512 512"
xml:space="preserve"
>
<path
style="fill: #415a6b"
d="M199.467,472.533C208,494.933,230.4,512,256,512s48-16,56.533-39.467H199.467z"
/>
<path
style="fill: #e8eae9"
d="M333.867,397.867c6.4-14.933,14.933-27.733,27.733-38.4c37.333-33.067,58.667-83.2,53.333-137.6
c-8.533-72.533-67.2-132.267-140.8-139.733C178.133,71.467,96,146.133,96,241.067c0,48,20.267,90.667,53.333,119.467
c11.733,10.667,21.333,24.533,27.733,38.4h156.8V397.867z"
/>
<path
style="fill: #344a5e"
d="M333.867,466.133v-68.267H178.133v68.267c0,10.667,8.533,19.2,19.2,19.2h117.333
C325.333,485.333,333.867,476.8,333.867,466.133z"
/>
<g>
<path
style="fill: #415a6b"
d="M334.933,420.267H177.067c-7.467,0-12.8-5.333-12.8-12.8l0,0c0-7.467,5.333-12.8,12.8-12.8h157.867
c7.467,0,12.8,5.333,12.8,12.8l0,0C347.733,414.933,342.4,420.267,334.933,420.267z"
/>
<path
style="fill: #415a6b"
d="M334.933,467.2H177.067c-7.467,0-12.8-5.333-12.8-12.8l0,0c0-7.467,5.333-12.8,12.8-12.8h157.867
c7.467,0,12.8,5.333,12.8,12.8l0,0C347.733,461.867,342.4,467.2,334.933,467.2z"
/>
</g>
<g>
<path
style="fill: #ffd15c"
d="M425.6,409.6c4.267-4.267,4.267-10.667,0-13.867l-26.667-26.667c-4.267-4.267-10.667-4.267-13.867,0
c-4.267,4.267-4.267,10.667,0,13.867l26.667,26.667C414.933,413.867,421.333,413.867,425.6,409.6z"
/>
<path
style="fill: #ffd15c"
d="M496,240c0-5.333-4.267-10.667-10.667-10.667H448c-5.333,0-10.667,4.267-10.667,10.667
c0,5.333,4.267,10.667,10.667,10.667h37.333C491.733,250.667,496,245.333,496,240z"
/>
<path
style="fill: #ffd15c"
d="M425.6,70.4c-4.267-4.267-10.667-4.267-13.867,0l-26.667,26.667c-4.267,4.267-4.267,10.667,0,13.867
c4.267,4.267,10.667,4.267,13.867,0L425.6,84.267C429.867,81.067,429.867,74.667,425.6,70.4z"
/>
<path
style="fill: #ffd15c"
d="M256,0c-5.333,0-10.667,4.267-10.667,10.667V48c0,5.333,4.267,10.667,10.667,10.667
c5.333,0,10.667-4.267,10.667-10.667V10.667C266.667,4.267,261.333,0,256,0z"
/>
<path
style="fill: #ffd15c"
d="M86.4,70.4c-4.267,4.267-4.267,10.667,0,13.867l26.667,26.667c4.267,4.267,10.667,4.267,13.867,0
c4.267-4.267,4.267-10.667,0-13.867L100.267,70.4C97.067,66.133,90.667,66.133,86.4,70.4z"
/>
<path
style="fill: #ffd15c"
d="M16,240c0,5.333,4.267,10.667,10.667,10.667H64c5.333,0,10.667-4.267,10.667-10.667
c0-6.4-4.267-10.667-10.667-10.667H25.6C20.267,230.4,16,234.667,16,240z"
/>
<path
style="fill: #ffd15c"
d="M86.4,409.6c4.267,4.267,10.667,4.267,13.867,0l26.667-26.667c4.267-4.267,4.267-10.667,0-13.867
c-4.267-4.267-10.667-4.267-13.867,0L86.4,395.733C82.133,398.933,82.133,405.333,86.4,409.6z"
/>
</g>
<path
style="fill: #f3705a"
d="M256,350.933c0,0-102.4-57.6-102.4-129.067c0-28.8,23.467-53.333,53.333-53.333
c22.4,0,41.6,13.867,49.067,33.067c7.467-19.2,26.667-33.067,49.067-33.067c28.8,0,53.333,23.467,53.333,53.333
C358.4,293.333,256,350.933,256,350.933z"
/>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
<p class="value">Empathy</p>
</div>
</div>
</section>
<!-- Portfolio Gallery Snippet -->
<section>
<h3>Check out our work</h3>
<div class="portfolio-container">
<div class="card">
<img
alt="image-link to past work in the portfolio page "
src="images/project-conf.png"
class="portfolio-img"
style="cursor: pointer"
/>
<div class="overlay">
<a class="text" href="./portfolio.html#project-form">See More</a>
</div>
</div>
<div class="card">
<img
alt="image-link to past work in the portfolio page"
src="images/project-app.png"
class="portfolio-img"
style="cursor: pointer"
/>
<div class="overlay">
<a class="text" href="./portfolio.html#project-conf">See More</a>
</div>
</div>
<div class="card">
<img
alt="image-link to past work in the portfolio page"
src="images/project-directory.png"
class="portfolio-img"
style="cursor: pointer"
/>
<div class="overlay">
<a class="text" href="./portfolio.html#project-game">See More</a>
</div>
</div>
<div class="card">
<img
alt="image-link to past work in the portfolio page"
src="images/project-gallery.png"
class="portfolio-img"
style="cursor: pointer"
/>
<div class="overlay">
<a class="text" href="./portfolio.html#project-directory"
>See More</a
>
</div>
</div>
</div>
</section>
<!-- Keen to Chat link to modal -->
<button
id="cta"
type="button"
class="btn btn-primary"
data-toggle="modal"
data-target="#modal"
data-whatever="@mdo"
>
Keen to Chat?
</button>
<!-- Modal -->
<div
class="modal fade"
id="modal"
tabindex="-1"
role="dialog"
aria-hidden="true"
>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSeaCAsYnV6-9cKwtDTPS6pV9oujDO0ewtwPcgQ8nu4WgYTDKg/viewform?embedded=true"
height="1007"
></iframe>
</div>
</div>
</div>
</div>
</main>
<footer class="index-footer">
<section class="footer-container">
<h2>Coffee's on us!</h2>
<p>
We're based in the wonderful city of Melbourne, Australia and would
love to chat in person!
</p>
<section class="footer-links index-footer">
<a href="./about.html">About Me</a>
<a href="./contact.html">Contact us</a>
<a href="./portfolio.html">Our Work</a>
</section>
<section id="footer-icons">
<a
class="socials-icon"
role="link"
tabindex="0"
style="cursor: pointer"
target="_blank"
href="https://github.com/gracemarsh"
>
<svg
viewBox="0 0 72 72"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Github</title>
<desc>Created with Sketch.</desc>
<g
id="Page-2"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
>
<g
id="Social-Icons---Rounded-Black"
transform="translate(-264.000000, -939.000000)"
>
<g id="Github" transform="translate(264.000000, 939.000000)">
<path
d="M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 Z"
id="Rounded"
fill="#000000"
></path>
<path
d="M35.9985,13 C22.746,13 12,23.7870921 12,37.096644 C12,47.7406712 18.876,56.7718301 28.4145,59.9584121 C29.6145,60.1797862 30.0525,59.4358488 30.0525,58.7973276 C30.0525,58.2250681 30.0315,56.7100863 30.0195,54.6996482 C23.343,56.1558981 21.9345,51.4693938 21.9345,51.4693938 C20.844,48.6864054 19.2705,47.9454799 19.2705,47.9454799 C17.091,46.4500754 19.4355,46.4801943 19.4355,46.4801943 C21.843,46.6503662 23.1105,48.9634994 23.1105,48.9634994 C25.2525,52.6455377 28.728,51.5823398 30.096,50.9649018 C30.3135,49.4077535 30.9345,48.3460615 31.62,47.7436831 C26.2905,47.1352808 20.688,45.0691228 20.688,35.8361671 C20.688,33.2052792 21.6225,31.0547881 23.1585,29.3696344 C22.911,28.7597262 22.0875,26.3110578 23.3925,22.9934585 C23.3925,22.9934585 25.4085,22.3459017 29.9925,25.4632101 C31.908,24.9285993 33.96,24.6620468 36.0015,24.6515052 C38.04,24.6620468 40.0935,24.9285993 42.0105,25.4632101 C46.5915,22.3459017 48.603,22.9934585 48.603,22.9934585 C49.9125,26.3110578 49.089,28.7597262 48.8415,29.3696344 C50.3805,31.0547881 51.309,33.2052792 51.309,35.8361671 C51.309,45.0917119 45.6975,47.1292571 40.3515,47.7256117 C41.2125,48.4695491 41.9805,49.9393525 41.9805,52.1877301 C41.9805,55.4089489 41.9505,58.0067059 41.9505,58.7973276 C41.9505,59.4418726 42.3825,60.1918338 43.6005,59.9554002 C53.13,56.7627944 60,47.7376593 60,37.096644 C60,23.7870921 49.254,13 35.9985,13"
fill="#FFFFFF"
></path>
</g>
</g>
</g>
</svg>
</a>
<a
class="socials-icon"
role="link"
tabindex="0"
style="cursor: pointer"
target="_blank"
href="https://www.linkedin.com/in/grace-lok-marsh/"
>
<svg
viewBox="0 0 72 72"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Linkedin</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-376.000000, -267.000000)">
<g
id="Linkedin"
transform="translate(376.000000, 267.000000)"
>
<path
d="M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 Z"
id="Round"
fill="#000000"
></path>
<path
d="M62,62 L51.315625,62 L51.315625,43.8021149 C51.315625,38.8127542 49.4197917,36.0245323 45.4707031,36.0245323 C41.1746094,36.0245323 38.9300781,38.9261103 38.9300781,43.8021149 L38.9300781,62 L28.6333333,62 L28.6333333,27.3333333 L38.9300781,27.3333333 L38.9300781,32.0029283 C38.9300781,32.0029283 42.0260417,26.2742151 49.3825521,26.2742151 C56.7356771,26.2742151 62,30.7644705 62,40.051212 L62,62 Z M16.349349,22.7940133 C12.8420573,22.7940133 10,19.9296567 10,16.3970067 C10,12.8643566 12.8420573,10 16.349349,10 C19.8566406,10 22.6970052,12.8643566 22.6970052,16.3970067 C22.6970052,19.9296567 19.8566406,22.7940133 16.349349,22.7940133 Z M11.0325521,62 L21.769401,62 L21.769401,27.3333333 L11.0325521,27.3333333 L11.0325521,62 Z"
fill="#FFFFFF"
></path>
</g>
</g>
</g>
</svg>
</a>
<a
class="socials-icon"
role="link"
tabindex="0"
style="cursor: pointer"
target="_blank"
href="https://twitter.com/gracemarsh22"
>
<svg
viewBox="0 0 72 72"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>Twitter</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g
id="Page-1"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
>
<g
id="Social-Icons---Rounded"
transform="translate(-264.000000, -43.000000)"
>
<g id="Twitter" transform="translate(264.000000, 43.000000)">
<path
d="M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 Z"
id="Rounde"
fill="#000000"
></path>
<path
d="M55.0865399,25.7148754 C55.7080938,39.5659738 45.3799204,55.0092879 27.0953855,55.0092879 C21.5344243,55.0092879 16.3579537,53.3781513 12,50.5841073 C17.2236474,51.1997641 22.4390388,49.7514374 26.5787999,46.505676 C22.2703818,46.4266549 18.6330532,43.5795371 17.3805101,39.6674038 C18.9231903,39.9622586 20.4411028,39.876161 21.8269202,39.4999263 C17.090373,38.5469556 13.8222026,34.2809966 13.9283503,29.7190034 C15.2563762,30.4561404 16.7754681,30.8996019 18.3900929,30.9491375 C14.0038331,28.0194604 12.7619048,22.2285125 15.3424738,17.8021524 C20.1981424,23.7605779 27.4539289,27.6809671 35.6390977,28.0925844 C34.2037447,21.9312988 38.8766033,16 45.232493,16 C48.0654578,16 50.6247973,17.1947516 52.4198732,19.1089488 C54.6631284,18.6678461 56.7707504,17.8481498 58.6731535,16.7194457 C57.9383754,19.019313 56.3768244,20.9500221 54.3435058,22.1671827 C56.3355447,21.9301194 58.2332301,21.4005602 60,20.6174259 C58.68023,22.592953 57.0101725,24.3266991 55.0865399,25.7148754"
fill="#FFFFFF"
></path>
</g>
</g>
</g>
</svg>
</a>
</section>
<a
href="#top"
id="index-top-btn"
title="Go to top"
onclick="topFunction()"
>Back to Top</a
>
</section>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="main.js"></script>
</body>
</html>