-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
762 lines (755 loc) · 57.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Inclusive Tech Coalition!</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" 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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navbar fixed-top navbar-expand-md px-3">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Inclusive Tech Coalition</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav d-flex flex-grow-1 justify-content-end">
<li class="nav-item ms-4">
<a href="network-list.html">Network List</a>
</li>
<li class="nav-item ms-4">
<a class="gradient-button" href="#footer">Join us!</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="main-section">
<div class="main-text my-5">
<h1>Inclusive Tech Coalition</h1>
<div class="divider-top">
<svg viewBox="0 0 50 1" xmlns="http://www.w3.org/2000/svg">
<line x1="0" y1="0" x2="100" y2="0" stroke="white" />
</svg>
</div>
<p>Hello and welcome! We're thrilled to have you here. Inclusive Tech Coalition is all about connecting tech enthusiasts and fostering a vibrant community.</p>
</div>
<div class="main-image">
</div>
</section>
<div class="spacer">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
class="svg-shape shape-left"
width="92.879478mm"
height="74.18177mm"
viewBox="0 0 92.879478 74.18177"
version="1.1"
id="svg1"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
sodipodi:docname="shapes1.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.34379725"
inkscape:cx="120.71068"
inkscape:cy="154.16063"
inkscape:window-width="1312"
inkscape:window-height="449"
inkscape:window-x="592"
inkscape:window-y="183"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-9.0528603,-10.644068)">
<path
id="path3"
class="shadow pink"
style="stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="M 71.56964,49.174758 C 49.63816,67.587008 66.08612,86.855978 45.46281,84.653208 23.93607,82.353958 41.4401,61.521988 35.87327,56.550588 29.70753,51.044338 13.36018,59.851968 9.7492102,44.141125 4.4078102,20.901438 30.98366,32.003625 48.85515,29.326174 68.62133,26.364866 70.16666,4.4242908 86.39532,12.365811 103.06778,20.524503 90.0462,33.663047 71.56964,49.174758 Z"
sodipodi:nodetypes="sssssss" />
<path
id="path1"
class="shadow pink"
style="stroke-width:2.465"
d="m 101.46913,63.616394 c -1.24251,7.081994 -5.589929,9.314548 -12.485457,9.314549 -6.895529,0 -12.48546,-4.170266 -12.48546,-9.314549 0,-5.144283 10.668778,-18.262993 17.564307,-18.262993 6.89553,1e-6 8.89426,9.783762 7.40661,18.262993 z"
sodipodi:nodetypes="sssss" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
class="svg-shape shape-right"
width="114.97974mm"
height="95.677643mm"
viewBox="0 0 114.97974 95.677643"
version="1.1"
id="svg1"
sodipodi:docname="shapes2.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.40758365"
inkscape:cx="538.53976"
inkscape:cy="208.54615"
inkscape:window-width="1656"
inkscape:window-height="725"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-69.009668,-69.564018)">
<path
id="path2"
class="shadow purple"
style="stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 158.92188,142.6162 c -11.02121,7.08784 -9.71612,28.61403 -26.908,21.02946 -17.19189,-7.58458 -15.30806,-20.27245 -27.93754,-30.59544 -12.629465,-10.323 -28.596929,-1.84908 -33.472823,-13.98522 -4.875894,-12.13614 2.06652,-20.739927 12.26584,-28.941228 10.19932,-8.201301 36.009843,-10.998091 49.887103,2.106797 13.87727,13.104871 22.42504,0.483296 43.48553,16.486721 21.06049,16.00343 -6.2989,26.81108 -17.32011,33.89891 z"
sodipodi:nodetypes="zzzzzzzz" />
<path
id="path4"
class="shadow purple"
style="stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 169.72953,73.575089 c 0,4.607516 -8.82875,10.976201 -14.40063,10.976202 -5.57188,3e-6 -13.33396,-3.329296 -11.92087,-9.741381 2.20872,-10.02234 9.45837,-2.602344 15.03025,-2.602341 5.57188,2e-6 11.29125,-3.239997 11.29125,1.36752 z"
sodipodi:nodetypes="sssss" />
</g>
</svg>
</div>
<section id="our-mission" class="glassomorph">
<div class="mission-text" data-aos="zoom-in" data-aos-duration="1500">
<h2>Our Mission</h2>
<div class="divider">
<svg viewBox="0 0 100 1" xmlns="http://www.w3.org/2000/svg">
<line x1="0" y1="0" x2="20" y2="0" stroke="#83cca6" />
</svg>
</div>
<p>The Inclusive Tech Coalition empowers underrepresented tech enthusiasts to break barriers and build bridges in their careers. Our mission is to create a safe, supportive community that nurtures growth, fosters leadership, and champions opportunity for all.</p>
</div>
<div class="card-section">
<div class="card" data-aos="fade-up" data-aos-duration="1500">
<div class="card-inner">
<h3>Growth</h3>
<div class="pillar-icon-container">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
class="svg-image"
width="81.062225mm"
height="92.532501mm"
viewBox="0 0 81.062226 92.532501"
version="1.1"
id="svg1"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
sodipodi:docname="grow.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.60997689"
inkscape:cx="305.74929"
inkscape:cy="124.59488"
inkscape:window-width="1312"
inkscape:window-height="723"
inkscape:window-x="300"
inkscape:window-y="218"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-45.29583,-45.197856)">
<circle
style="fill:#dd93e3;fill-opacity:0.406375;stroke-width:2.465"
id="path5"
cx="82.401779"
cy="91.152153"
r="37.105949" />
<path
style="fill:#488e5f;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m 84.980856,83.949536 c 0,0 -14.089615,-11.401224 1.347399,-25.456273 5.79564,-5.276798 28.333025,-14.711262 29.150985,-13.116178 1.1811,2.303245 -4.19714,23.189005 -10.12304,29.638901 -12.217382,13.297691 -20.375344,8.93355 -20.375344,8.93355 z"
id="path3"
sodipodi:nodetypes="csssc" />
<path
style="fill:none;stroke:#5bc85e;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m 80.029292,136.47362 c 0,0 -6.659382,-60.707793 20.571628,-75.182669"
id="path2"
sodipodi:nodetypes="cc" />
<path
id="path1"
style="fill:#784421;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 101.61352,133.38885 c 0.36816,5.20975 -41.234466,5.20971 -41.602635,0 -0.473012,-6.69326 9.313068,-12.14944 20.801317,-12.14944 11.488249,0 20.328318,5.45618 20.801318,12.14944 z"
sodipodi:nodetypes="ssss" />
<path
id="path1-7"
style="fill:#a96a2c;fill-opacity:1;stroke-width:1.01739;stroke-linecap:round;stroke-linejoin:round"
d="m 112.84265,134.84713 c 0.27717,3.84432 -31.043135,3.84429 -31.320309,0 -0.356104,-4.93902 7.011289,-8.96519 15.660157,-8.96519 8.648862,0 15.304052,4.02617 15.660152,8.96519 z"
sodipodi:nodetypes="ssss" />
<path
id="path1-7-6"
style="fill:#a5784d;fill-opacity:1;stroke-width:0.798465;stroke-linecap:round;stroke-linejoin:round"
d="m 73.55106,134.84717 c 0.202721,3.23746 -22.704772,3.23744 -22.907492,0 -0.260457,-4.15936 5.128017,-7.54997 11.453742,-7.54997 6.325734,0 11.193301,3.39061 11.45375,7.54997 z"
sodipodi:nodetypes="ssss" />
<path
style="fill:#488e5f;fill-opacity:1;stroke:none;stroke-width:0.958374;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m 80.025214,96.928988 c 0,0 7.727102,-8.451502 -5.176848,-16.740036 -4.844633,-3.11183 -23.688023,-4.973186 -24.367593,-3.604484 -0.798919,1.609079 8.740247,13.950365 13.693764,17.753994 10.212629,7.841898 15.850677,2.590526 15.850677,2.590526 z"
id="path3-5"
sodipodi:nodetypes="csssc" />
<path
style="fill:none;fill-opacity:1;stroke:#5bc85e;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m 66.912174,85.08585 c 0,0 12.680712,5.203397 14.497489,9.967791"
id="path4"
sodipodi:nodetypes="cc" />
<circle
style="fill:#faa4d5;fill-opacity:0.482072;stroke-width:2.465"
id="path6"
cx="67.844826"
cy="57.756794"
r="9.7046337" />
<circle
style="fill:#faa4d5;fill-opacity:0.482072;stroke-width:2.465"
id="path7"
cx="113.22826"
cy="106.85082"
r="13.129798" />
<circle
style="fill:#faa4d5;fill-opacity:0.482072;stroke-width:2.465"
id="path8"
cx="51.28986"
cy="56.329643"
r="3.4251649" />
</g>
</svg>
</div>
<p class="card-desc">Learn through skill-sharing and explore opportunities to lead.</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="250">
<div class="card-inner">
<h3>Community</h3>
<div class="pillar-icon-container">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
class="svg-image"
width="196.99654mm"
height="255.66623mm"
viewBox="0 0 196.99654 255.66623"
version="1.1"
id="svg1"
sodipodi:docname="hands.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.43881733"
inkscape:cx="718.97798"
inkscape:cy="546.92461"
inkscape:window-width="1312"
inkscape:window-height="669"
inkscape:window-x="314"
inkscape:window-y="339"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs1">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3"
is_visible="true"
lpeversion="1"
nodesatellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
radius="0"
unit="px"
method="auto"
mode="F"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-8.6324117,-38.181071)">
<ellipse
style="fill:#6ec7e9;fill-opacity:0.446215;stroke:none;stroke-width:2.35504;stroke-dasharray:none;stroke-opacity:1"
id="path15"
cx="105.8171"
cy="177.86919"
rx="82.905136"
ry="110.94213" />
<path
style="fill:#deb887;stroke-width:1.20055;stroke-linecap:round;stroke-linejoin:round"
d="m 116.52397,220.29039 c 2.59019,-7.39462 7.35298,-5.2967 10.0224,-19.38369 1.268,-6.6914 5.39034,-18.42359 4.83177,-27.81156 -0.3077,-5.17161 -3.01584,-9.33263 -4.46059,-14.91379 -2.77774,-10.73059 -4.37622,-28.0859 -7.5439,-37.51495 -1.73259,-5.15732 -3.60372,-7.66883 -6.17951,-7.05835 -2.75294,0.65247 -3.85995,2.45165 -3.74086,6.36303 0.60814,19.97398 1.69859,42.19816 1.69859,42.19816 0,0 -1.682,-36.1364 -8.97185,-61.10768 -1.59887,-5.476902 -4.326309,-5.389667 -5.956817,-5.212457 -1.940488,0.210899 -4.465865,0.699272 -4.25073,5.026447 1.137867,22.88713 5.295416,59.29666 5.295416,59.29666 0,0 -2.337246,-31.01868 -6.478041,-51.90152 -0.675536,-3.40686 -0.742629,-7.95954 -1.657631,-10.586584 -1.346168,-3.864947 -2.214527,-8.048891 -6.531055,-7.235364 -5.26352,0.992005 -5.201639,5.49548 -4.756425,9.15786 1.873635,15.412748 2.935737,33.024638 5.971321,59.621698 2.237344,19.60303 6.544582,52.25862 6.544582,52.25862 0,0 -11.697424,-105.33658 -16.430675,-111.27785 -1.276152,-1.601847 -1.912573,-3.010536 -4.866,-2.71107 -2.992538,0.303431 -4.246533,3.27347 -4.469856,9.14933 -0.456426,12.00911 2.896437,28.52437 3.999757,42.65823 1.1702,14.9906 2.521486,27.16569 0.197524,29.58972 -4.51511,4.70951 -8.840366,-8.59092 -12.249824,-16.30974 -3.409458,-7.71882 -9.454413,-7.06769 -11.878504,-6.47247 -2.424092,0.59523 -0.699491,13.70935 4.196907,21.24949 2.758657,4.24816 5.06222,16.34019 9.690879,24.84782 3.586838,6.59272 9.550033,10.07252 11.993162,12.16742 5.595884,4.79827 3.49743,27.4187 3.49743,27.4187 6.10812,22.34782 19.744238,28.09707 41.26963,16.45121 0,0 -1.3773,-30.5627 1.2129,-37.95732 z"
id="path1-8"
sodipodi:nodetypes="zsasssscssscssssscssssszzsssccz" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 68.311252,97.801812 c 0.426901,-0.293701 3.681869,-1.864122 6.132552,3.104648 2.450682,4.96876 4.394329,22.11101 4.394329,22.11101 l 2.535189,16.23131 c 0,0 1.262182,6.98555 1.521113,10.51723 0.126987,1.73202 1.697216,7.4302 1.58122,8.26776 -0.258756,1.86836 -0.49149,-0.64063 -3.216624,-1.21858 -2.087994,-0.44283 -6.03002,2.52605 -6.909595,1.42742 -0.677317,-0.84601 5.148501,-1.1037 6.445731,-5.24118 1.407391,-4.48885 -1.428712,-14.49618 -2.15021,-18.99242 -0.342296,-2.13314 -6.134738,0.26328 -7.222038,-0.25939 -0.649614,-0.31226 -0.957004,-1.4264 0.524115,-1.28239 2.374294,0.23086 4.849344,-0.83403 5.411791,-1.98211 0.496038,-1.01254 0.488521,-2.38778 0.320487,-3.79041 -0.529415,-4.4192 -1.724338,-10.30706 -2.420593,-12.83168 -0.486719,-1.76485 -6.11416,0.5724 -6.413145,-0.73384 -0.423505,-1.85026 6.054766,0.22048 6.131841,-3.03757 0.06583,-2.78241 -0.873855,-7.45584 -1.830972,-9.76106 -0.163618,-0.394069 -0.686529,-0.762298 -0.786787,-0.983237 -0.113615,-0.250369 -0.728915,-0.608966 -0.872097,-0.786778 -1.285728,-1.596698 -3.56043,-0.494462 -3.176307,-0.758733 z"
id="path3"
sodipodi:nodetypes="ssccsssssssssssssssss" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 82.34308,91.003451 c 0.328744,-0.226171 2.06037,-1.490844 3.804378,0.425281 0.520726,0.572116 1.756539,1.62843 1.969891,2.879994 0.220917,1.295939 1.031108,3.154862 1.572127,5.686358 0.37034,1.732866 0.247214,3.438656 0.62073,5.316836 1.088462,5.47318 1.665972,11.27214 1.665972,11.27214 l 2.684153,15.79337 c 0,0 1.007742,6.94974 1.266674,10.48141 0.410263,5.59574 -0.07214,10.89315 -0.251049,11.68959 -0.07406,0.3297 0.905917,4.55138 0.155439,4.77792 -0.40691,0.12284 -0.70535,-1.41131 -1.340374,-1.5698 -0.707211,-0.17656 -1.76615,-0.34167 -2.830664,-0.17873 -2.068714,0.31665 -5.103,0.51046 -5.166675,0.12116 -0.393301,-2.40463 8.434957,0.85051 8.304609,-5.8226 -0.09171,-4.69508 -0.758577,-17.87868 -2.019188,-22.25932 -0.145405,-0.50528 0.391199,-1.26224 -0.626551,-0.93286 -2.295246,0.74281 -7.729112,0.58631 -8.590688,0.17215 -0.649614,-0.31227 -0.706979,-0.79645 0.779911,-0.73093 5.239196,0.23087 6.588749,-0.082 7.151196,-2.03224 0.311714,-1.08084 0.386202,-4.7942 0.218169,-6.19683 -0.529415,-4.4192 -1.724338,-10.30706 -2.420594,-12.83168 -0.486719,-1.76485 -6.114159,0.57239 -6.413144,-0.73384 -0.423506,-1.85026 6.054765,0.22048 6.13184,-3.03757 0.06583,-2.78241 -0.873855,-7.455841 -1.830971,-9.761057 -0.163618,-0.394072 -0.686529,-0.762302 -0.786788,-0.98324 -0.113614,-0.25037 -0.728915,-0.608966 -0.872097,-0.786779 -1.285728,-1.596698 -3.56043,-0.494462 -3.176306,-0.758733 z"
id="path3-7"
sodipodi:nodetypes="sssssccssssssssssssssssssss" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 96.056884,96.748311 c 0.328744,-0.226171 2.06037,-1.490845 3.804378,0.42528 0.520728,0.572117 1.756538,1.62843 1.969888,2.879989 0.22092,1.29594 1.03111,3.15487 1.57213,5.68636 0.37034,1.73287 1.09629,3.71601 1.46981,5.59419 1.08846,5.47319 1.94899,10.85611 1.94899,10.85611 l 2.40113,15.65469 c 0,0 0.86623,6.81107 1.12517,10.34274 0.41026,5.59575 1.01724,11.33685 0.73953,12.10561 -0.0994,0.27525 -12.426912,0.21291 -12.575672,-0.69661 -0.393301,-2.40462 8.702632,2.16205 9.999862,-1.97543 1.40739,-4.48885 -0.75858,-17.87868 -2.01919,-22.25932 -0.14541,-0.50528 0.3912,-1.26224 -0.62655,-0.93286 -2.29525,0.74281 -7.729116,0.58631 -8.590692,0.17215 -0.649614,-0.31227 -0.706979,-0.79645 0.779911,-0.73093 5.239201,0.23087 6.588751,-0.082 7.151201,-2.03224 0.12692,-0.44011 0.21451,-1.31669 0.26242,-2.29601 0.0697,-1.42578 0.0554,-3.06933 -0.0443,-3.90082 -0.52942,-4.4192 -1.72434,-10.30706 -2.42059,-12.83168 -0.48672,-1.76485 -6.114164,0.57239 -6.413149,-0.73384 -0.423506,-1.85026 6.054769,0.22048 6.131839,-3.03757 0.0658,-2.78241 -0.87385,-7.45584 -1.83097,-9.761058 -0.16362,-0.394072 -0.68653,-0.762302 -0.78679,-0.98324 -0.113612,-0.250369 -0.728913,-0.608966 -0.872095,-0.786778 -1.285728,-1.596698 -3.56043,-0.494462 -3.176306,-0.758733 z"
id="path3-7-3"
sodipodi:nodetypes="sssssccssssssssssssssssss" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 112.15563,114.04216 c 0.32874,-0.22617 2.41907,-0.95971 4.30772,0.81989 0.98854,0.93147 1.5042,2.03318 1.66788,2.55116 0.26386,0.83498 1.19282,2.11072 1.73384,4.64222 0.37035,1.73286 1.06407,4.59491 1.43759,6.47309 1.08846,5.47318 2.19743,11.52174 2.19743,11.52174 l 2.361,13.16835 c 0,0 1.00774,8.31011 1.26667,11.84178 0.41026,5.59575 -1.36155,11.75799 -1.63926,12.52674 -0.0994,0.27526 -10.72876,0.21291 -10.87752,-0.69661 -0.3933,-2.40463 8.70264,2.16205 9.99986,-1.97543 1.2168,-3.88096 -0.21264,-3.97943 -1.2922,-9.40183 -0.16909,-0.84933 0.19122,-11.32246 0.0205,-11.91569 -0.1454,-0.50529 -0.52452,-8.63355 -1.54227,-8.30418 -2.29525,0.74282 -7.72912,0.58631 -8.5907,0.17216 -0.64961,-0.31226 -0.70697,-0.79644 0.77991,-0.73092 0,0 7.58008,0.86873 7.78856,-1.66658 0.30586,-3.71931 -2.67155,-12.96467 -2.67155,-12.96467 -0.48672,-1.76484 -6.11416,0.57239 -6.41315,-0.73384 -0.4235,-1.85026 6.05477,0.22049 6.13185,-3.03757 0.0658,-2.78241 -0.87386,-7.45584 -1.83098,-9.76105 -0.16361,-0.39408 -0.68652,-0.76231 -0.78679,-0.98324 -0.1136,-0.25037 -0.72891,-0.60897 -0.87209,-0.78678 -1.28573,-1.5967 -3.56043,-0.49447 -3.1763,-0.75874 z"
id="path3-7-4"
sodipodi:nodetypes="sssssccsssssssscscssssss" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 68.012521,179.3591 c -0.241009,0.1767 -0.301367,0.51423 -0.842068,0.49856 -0.750648,-0.0218 -2.023064,-0.55558 -1.948022,-0.3584 0.380128,0.99881 5.674783,2.55159 7.459709,3.73841 0.916716,0.60953 2.748842,1.23233 6.060939,6.82858 3.04723,5.14872 2.013523,18.63943 2.997207,19.95237 0.280308,0.37414 -0.304392,-0.6411 -0.0994,-2.76284 0.336879,-3.48681 1.138778,-9.78038 -0.915824,-16.46404 -2.09401,-6.81186 -5.201682,-6.93616 -7.15649,-9.60953 -0.564482,-0.77197 -1.559108,-1.68283 -1.755756,-3.1196 -0.572287,-4.1813 -1.3459,-5.59035 -1.64224,-5.56062 -0.158119,0.0158 -0.08022,0.86481 -0.117605,0.97847 -0.09955,0.30269 0.01214,3.50554 -0.852953,4.94718 -0.257008,0.42829 -1.187497,0.93146 -1.187497,0.93146 z"
id="path4"
sodipodi:nodetypes="ssssssssssssas" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 69.73851,213.11016 c 0,0 7.371114,5.65222 10.723295,6.44856 3.35218,0.79633 11.050362,-0.43272 11.050362,-0.43272 -0.01345,1.09213 -4.047796,3.37664 -5.324396,3.3792 -3.15434,0.006 -8.436853,-0.95028 -8.362027,0.26983 0.607956,9.91322 -1.342638,19.77089 9.419327,39.48171 0,0 -6.664746,-4.59224 -9.711886,-10.86855 -1.310798,-2.6999 -3.173072,-6.65807 -3.476432,-9.41623 -0.30336,-2.75817 3.249436,-21.83609 -4.318243,-28.8618 z"
id="path5"
sodipodi:nodetypes="czcsscszc" />
<path
style="fill:#784421;fill-opacity:0.334661;stroke-width:0.232708"
d="m 115.53629,177.22023 c 11.5692,3.5127 -18.793494,2.19419 -25.866264,-3.38595 -1.195766,-1.52096 -5.389035,-7.10472 -0.245613,-1.98828 6.061736,6.02994 26.111877,5.37423 26.111877,5.37423 z"
id="path6"
sodipodi:nodetypes="cssc" />
<path
style="fill:#8b4513;stroke-width:1.20055;stroke-linecap:round;stroke-linejoin:round"
d="m 102.99182,235.55781 c -1.0317,-9.70147 2.4535,-19.60926 2.2638,-29.36752 -0.13179,-6.77886 0.74146,-19.64792 0.652,-31.89439 -0.0353,-4.82866 0.23004,-12.13502 0.43535,-14.935 0.37109,-5.06089 2.05536,-7.3229 5.88406,-7.29679 2.83224,0.0193 3.95768,2.29714 3.99963,6.21005 0.21421,19.98176 2.77392,42.88102 2.77392,42.88102 0,0 2.48783,-35.37779 2.85622,-60.82716 0.0824,-5.69604 0.68295,-8.44316 5.87038,-8.10025 3.44914,0.228 3.81363,3.20739 4.32121,7.51105 2.76702,23.46113 0.59237,55.22141 0.59237,55.22141 0,0 3.62236,-39.32513 6.25222,-57.18005 0.33391,-2.26702 0.58662,-5.9154 1.48076,-7.77018 1.28672,-2.66908 3.5755,-3.08951 5.02073,-3.00146 1.1108,0.0677 2.80778,1.21684 3.36438,2.6449 0.90997,2.33471 0.27913,5.64879 0.2389,7.93694 -0.27377,15.59279 -0.86587,32.85074 -2.80461,59.54611 0,0 5.17323,-30.04071 8.09148,-47.59 0.22507,-1.35348 0.0629,-3.18708 0.2593,-4.76647 0.31604,-2.54144 1.222,-7.24285 1.47463,-7.54359 0.25263,-0.30073 0.46625,-1.63772 1.74887,-2.471 1.09121,-0.70894 3.40131,-1.1535 4.9575,-0.57593 0.98333,0.36496 1.68747,1.40608 2.10059,2.30617 1.65252,3.60048 0.79373,11.72555 -0.0509,17.96935 -1.79897,13.29902 -3.9109,28.70506 -4.00269,41.081 0.63924,25.62226 -7.14649,15.89857 3.7878,0.53022 6.41259,-6.64191 9.06456,-6.86343 10.64677,-7.20732 1.3836,-0.30072 5.21105,-0.85689 4.96863,2.67977 -0.30409,4.43639 -5.12213,14.0856 -7.67176,18.38536 -4.58216,7.72747 -5.10874,40.29804 -14.10575,51.28889 -4.65272,5.68383 -12.6523,27.55791 -12.6523,27.55791 -0.52468,6.21354 -24.10773,8.16423 -46.094809,-2.62161 0,0 14.386689,-20.58388 12.276489,-26.14897 -2.57029,-6.77848 -7.4426,-10.41706 -8.9352,-24.4525 z"
id="path1"
sodipodi:nodetypes="sssssscssscssssscsazsassszssssccsss" />
<path
style="fill:#5c3419;fill-opacity:0.749004;stroke-width:0.232708"
d="m 160.71294,202.8926 c 0,0 2.1625,7.77926 1.48426,11.92392 -0.38719,2.36604 -0.88364,10.80301 -2.28415,13.16571 -3.02069,5.09595 2.3716,-4.3266 3.35128,-7.27873 0.84117,-2.53475 -0.42841,-4.49999 0.81986,-8.30471 1.50436,-4.58528 0.0302,-8.73065 1.15241,-11.54265 2.46289,-6.17154 6.49792,-9.29895 6.25545,-9.79659 -1.30326,-2.67479 -11.31764,10.56649 -10.77911,11.83305 z"
id="path7"
sodipodi:nodetypes="cssssssc" />
<path
style="fill:#d77a6c;fill-opacity:0.406375;stroke-width:0.232708"
d="m 111.12582,164.41968 c 0,0 -1.93323,-0.70503 -2.05557,-2.53483 -0.11675,-1.74623 -0.21174,-5.41527 0.64532,-6.83222 0.2531,-0.41845 -0.0482,-0.27034 0.38848,-0.27034 1.91581,0 3.74523,0.10598 3.74523,0.10598 0,0 0.36876,3.33529 0.24104,4.96238 -0.12772,1.6271 -0.34172,4.51615 -2.9645,4.56903 z"
id="path8"
sodipodi:nodetypes="cssscsc" />
<path
style="fill:#d77a6c;fill-opacity:0.406375;stroke-width:0.232708"
d="m 126.73685,144.75613 c 0,0 -2.35266,-0.67342 -2.475,-2.50321 -0.11675,-1.74623 -0.65854,-5.26933 0.19851,-6.68627 0.2531,-0.41845 0.81795,-0.44791 1.25472,-0.44791 1.91581,0 4.22918,0.16921 4.22918,0.16921 0,0 0.36876,3.3353 0.24104,4.96239 -0.12772,1.62709 -0.82567,4.45291 -3.44845,4.50579 z"
id="path8-4"
sodipodi:nodetypes="cssscsc" />
<path
style="fill:#d77a6c;fill-opacity:0.406375;stroke-width:0.237677"
d="m 143.85612,138.15967 c 0,0 -2.18621,-0.69866 -2.09117,-2.45845 0.0907,-1.67943 -0.21632,-4.75139 0.4325,-6.07421 0.14394,-0.29347 1.23467,-0.15681 1.70903,-0.16027 3.33127,-0.0243 4.01708,0.10971 4.01708,0.10971 0,0 0.24304,3.48134 -0.0963,5.01434 -0.33933,1.53302 -1.13879,3.87162 -3.97111,3.56888 z"
id="path8-4-5"
sodipodi:nodetypes="cssscsc" />
<path
style="fill:#d77a6c;fill-opacity:0.406375;stroke-width:0.237677"
d="m 159.73791,144.89785 c 0,0 -2.18621,-0.69865 -2.09117,-2.45845 0.0907,-1.67943 -0.21633,-4.75139 0.4325,-6.07421 0.14394,-0.29348 1.23466,-0.15682 1.70903,-0.16027 3.33127,-0.0243 4.01708,0.10971 4.01708,0.10971 0,0 0.24303,3.48134 -0.0963,5.01434 -0.33932,1.53301 -1.13878,3.87162 -3.9711,3.56888 z"
id="path8-4-5-2"
sodipodi:nodetypes="cssscsc" />
<path
style="fill:#d77a6c;fill-opacity:0.406375;stroke-width:0.237677"
d="m 174.66191,201.9036 c 0,0 -0.86681,-0.90068 -0.77176,-2.66048 0.0907,-1.67943 -0.28565,-4.83301 0.59743,-6.88232 0.44835,-1.04048 1.01057,-2.68206 1.64307,-3.15943 0.87594,-0.6611 2.18205,0.0576 2.45739,0.0496 2.21801,-0.0647 1.23528,2.84392 1.1721,4.27146 -0.0632,1.42753 -0.88741,3.5196 -1.58067,4.93353 -0.75164,1.533 -0.68524,3.7504 -3.51756,3.44766 z"
id="path8-4-5-2-5"
sodipodi:nodetypes="csssszsc" />
<path
style="fill:#eec9c3;fill-opacity:0.406375;stroke-width:0.232708"
d="m 109.96289,155.92459 -0.0823,5.48279 c 0,0 0.5574,-0.11671 0.7479,-1.10519 0.16449,-0.85348 -0.0521,-2.52264 0.14556,-3.35215 0.45694,-1.91681 -0.81117,-1.02545 -0.81117,-1.02545 z"
id="path9"
sodipodi:nodetypes="ccsscc" />
<path
style="fill:#eec9c3;fill-opacity:0.406375;stroke-width:0.232708"
d="m 125.04262,136.63666 -0.0823,5.4828 c 0,0 0.55739,-0.11671 0.7479,-1.10519 0.16449,-0.85348 -0.0521,-2.52264 0.14556,-3.35216 0.45694,-1.9168 -0.81118,-1.02545 -0.81118,-1.02545 z"
id="path9-1"
sodipodi:nodetypes="ccsscc" />
<path
style="fill:#eec9c3;fill-opacity:0.406375;stroke-width:0.232708"
d="m 142.47983,130.26956 -0.0823,5.48279 c 0,0 0.55739,-0.11671 0.7479,-1.10519 0.16449,-0.85348 -0.0522,-2.52264 0.14556,-3.35216 0.45694,-1.9168 -0.81118,-1.02544 -0.81118,-1.02544 z"
id="path9-8"
sodipodi:nodetypes="ccsscc" />
<path
style="fill:#eec9c3;fill-opacity:0.406375;stroke-width:0.232708"
d="m 159.01664,137.41616 -0.0823,5.48279 c 0,0 0.55739,-0.11671 0.7479,-1.10519 0.16449,-0.85348 -0.0522,-2.52264 0.14555,-3.35215 0.45695,-1.91681 -0.81117,-1.02545 -0.81117,-1.02545 z"
id="path9-0"
sodipodi:nodetypes="ccsscc" />
<path
style="fill:#5c3419;fill-opacity:0.749004;stroke-width:0.232708"
d="m 157.079,262.23893 c 0,0 -2.34256,-0.22851 -7.50992,2.30339 -1.96225,2.95689 -2.85663,7.86155 -4.04841,11.61775 -1.58556,5.64084 -5.01341,11.01242 -6.6219,16.60711 l 5.77749,-1.83387 z"
id="path10"
sodipodi:nodetypes="cssccc" />
<path
style="fill:#5c3419;fill-opacity:0.749004;stroke-width:0.232708"
d="m 119.00908,200.73363 2.799,-55.83777 c 0,0 0.42422,3.32798 1.58979,10.77367 0.73041,4.66591 0.19436,6.84238 -0.57585,17.10733 -0.71813,9.5708 0.72001,22.51547 -0.30217,26.15401 -1.8236,6.49129 -3.51077,1.80276 -3.51077,1.80276 z"
id="path11"
sodipodi:nodetypes="ccsssc" />
<path
style="fill:#5c3419;fill-opacity:0.749004;stroke-width:0.232708"
d="m 132.60075,194.97895 6.26987,-57.96437 c 0,0 -0.44194,3.43407 0.72362,10.87977 0.73042,4.66591 -0.4001,6.61844 -1.17029,16.88339 -0.71812,9.5708 -2.03908,24.81289 -3.06126,28.45142 -1.8236,6.49129 -2.57,2.28999 -2.57,2.28999 z"
id="path11-5"
sodipodi:nodetypes="ccssscc" />
<path
style="fill:#5c3419;fill-opacity:0.749004;stroke-width:0.232708"
d="m 146.60151,196.78026 9.08415,-56.93763 c 0,0 -0.81035,3.21799 0.35521,10.66369 0.73041,4.66591 -2.35245,8.44274 -3.12266,18.70769 -0.71812,9.5708 -1.44705,22.45492 -2.46923,26.09346 -1.8236,6.49128 -3.84747,1.47279 -3.84747,1.47279 z"
id="path11-6"
sodipodi:nodetypes="ccsssc" />
<path
id="rect3"
style="fill:#faa4d5;fill-opacity:1;stroke-width:1.00175;stroke-linecap:round;stroke-linejoin:round"
d="M 154.81894,108.10415 165.2278,94.59481 c 1.02602,-1.331653 3.12148,-1.427741 4.47287,-0.378081 1.35139,1.049653 1.58767,2.953133 0.4058,4.167458 l -12.0303,12.360713 c -1.18186,1.21432 -2.84056,2.19862 -4.19196,1.14896 -1.35138,-1.04965 0.93473,-3.78971 0.93473,-3.78971 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-8"
style="fill:#e6ec75;fill-opacity:1;stroke-width:1.23033;stroke-linecap:round;stroke-linejoin:round"
d="M 96.939296,79.064686 94.809012,53.725561 c -0.20999,-2.497745 1.225542,-4.758837 2.941309,-5.013688 1.715748,-0.25485 3.238009,1.562483 3.252779,4.093639 l 0.15038,25.764835 c 0.0147,2.531146 -0.47611,5.304155 -2.191877,5.559006 -1.715757,0.25485 -2.022307,-5.064667 -2.022307,-5.064667 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-4"
style="fill:#dd93e3;fill-opacity:1;stroke-width:1.62286;stroke-linecap:round;stroke-linejoin:round"
d="M 58.723083,84.909561 43.556363,60.052612 c -1.495029,-2.450206 -0.744465,-5.945491 1.351329,-7.560378 2.095777,-1.614866 4.955954,-0.908073 6.214686,1.730504 l 12.812754,26.85824 c 1.258723,2.638574 1.981456,5.927653 -0.114336,7.542539 -2.095777,1.614864 -5.097713,-3.713956 -5.097713,-3.713956 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-4-9"
style="fill:#6ec7e9;fill-opacity:1;stroke-width:1.68873;stroke-linecap:round;stroke-linejoin:round"
d="M 126.09721,96.824295 137.53533,65.14591 c 1.12748,-3.122617 4.15169,-4.713518 6.4078,-3.711452 2.2561,1.002062 3.1236,4.31518 1.73696,7.329022 l -14.1146,30.678182 c -1.38663,3.013838 -3.53071,5.930148 -5.78683,4.928098 -2.25608,-1.00207 0.31855,-7.545465 0.31855,-7.545465 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-4-9-5"
style="fill:#6ec7e9;fill-opacity:1;stroke-width:1.10629;stroke-linecap:round;stroke-linejoin:round"
d="m 42.676386,149.38992 -19.732233,1.71791 c -1.945051,0.16934 -3.517905,-1.38157 -3.515552,-3.18547 0.0023,-1.80389 1.575869,-3.36278 3.524052,-3.32677 l 19.830728,0.36637 c 1.948181,0.036 4.023892,0.60701 4.021551,2.41092 -0.0023,1.80387 -4.128546,2.01704 -4.128546,2.01704 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-61"
style="fill:#a3d5b6;fill-opacity:1;stroke-width:1.20055;stroke-linecap:round;stroke-linejoin:round"
d="m 180.08783,162.02004 20.37187,4.38544 c 2.00811,0.4323 3.9102,-1.08354 4.20514,-3.07749 0.29491,-1.99394 -1.09521,-3.91511 -3.14044,-4.12086 l -20.81859,-2.09433 c -2.04523,-0.20574 -4.31216,0.16375 -4.60708,2.15769 -0.29491,1.99394 3.9891,2.74955 3.9891,2.74955 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-6"
style="fill:#e6ec75;fill-opacity:1;stroke-width:1.42045;stroke-linecap:round;stroke-linejoin:round"
d="m 178.05063,126.35661 21.91676,-9.93938 c 2.16039,-0.97976 4.63819,0.40176 5.41658,2.7259 0.77835,2.32415 -0.3537,4.94798 -2.60659,5.66451 l -22.93237,7.29363 c -2.25288,0.71651 -4.88388,0.79392 -5.66225,-1.53022 -0.77837,-2.32413 3.86787,-4.21444 3.86787,-4.21444 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-6-4"
style="fill:#a3d5b6;fill-opacity:1;stroke-width:1.39706;stroke-linecap:round;stroke-linejoin:round"
d="M 42.0193,116.30786 23.123609,102.67499 c -1.862605,-1.34383 -1.871356,-4.160982 -0.26893,-6.008602 1.602441,-1.8476 4.3707,-2.21826 6.053891,-0.66147 l 17.133312,15.846642 c 1.683171,1.55678 3.003967,3.76159 1.401538,5.6092 -1.602426,1.84761 -5.424116,-1.1529 -5.424116,-1.1529 z"
sodipodi:nodetypes="csssssc" />
<ellipse
style="fill:#faa4d5;fill-opacity:1;stroke-width:0.222796"
id="path12"
cx="58.790066"
cy="182.63106"
rx="3.3934717"
ry="3.2697058"
transform="matrix(0.7398381,-0.67278494,0.71882244,0.69519371,0,0)" />
<ellipse
style="fill:#e6ec75;fill-opacity:1;stroke-width:0.264583"
id="path13"
cx="97.217903"
cy="40.861591"
rx="2.5497634"
ry="2.6805205" />
<ellipse
style="fill:#6ec7e9;fill-opacity:1;stroke-width:0.227921"
id="path14"
cx="11.620554"
cy="148.6601"
rx="2.9881423"
ry="3.2371542" />
</g>
</svg>
</div>
<p class="card-desc">Connect, get support, and support others.</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="500">
<div class="card-inner">
<h3>Advocacy</h3>
<div class="pillar-icon-container">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
class="svg-image"
width="188.40132mm"
height="179.25584mm"
viewBox="0 0 188.40132 179.25584"
version="1.1"
id="svg1"
sodipodi:docname="MEGAPHONE.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.23093536"
inkscape:cx="-443.84714"
inkscape:cy="337.75685"
inkscape:window-width="1312"
inkscape:window-height="449"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs1">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3"
is_visible="true"
lpeversion="1"
nodesatellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
radius="0"
unit="px"
method="auto"
mode="F"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect2"
is_visible="true"
lpeversion="1"
nodesatellites_param="F,0,0,1,0,23.28639,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,19.480306,0,1"
radius="0"
unit="px"
method="auto"
mode="F"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1"
is_visible="true"
lpeversion="1"
nodesatellites_param="F,0,0,1,0,6.7872078,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,7.3892917,0,1"
radius="0"
unit="px"
method="auto"
mode="F"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1-0"
is_visible="true"
lpeversion="1"
nodesatellites_param="F,0,0,1,0,6.7872078,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,7.3892917,0,1"
radius="0"
unit="px"
method="auto"
mode="F"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-14.455728,-24.276817)">
<circle
style="fill:#a5d3ed;fill-opacity:0.74900401;stroke-width:0.264583"
id="path3"
cx="142.79274"
cy="166.12297"
r="32.486309" />
<ellipse
style="fill:#91d094;fill-opacity:0.74900401;stroke-width:0.310685"
id="path1"
cx="122.48254"
cy="100.11382"
rx="74.418472"
ry="71.035812" />
<path
style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 41.522467,148.83734 c -3.732297,10.30272 30.073517,50.70284 35.694008,54.04122 5.620491,3.33838 41.263275,-6.69035 24.483485,-16.73118 -16.779793,-10.04083 -33.705334,-28.21363 -36.106058,-48.34464 -2.400725,-20.13101 -20.339138,0.73188 -24.071435,11.0346 z"
id="path4"
sodipodi:nodetypes="zzzzz" />
<path
id="rect1-7"
style="fill:#4b0082;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="M 51.8183,37.72015 H 98.652699 V 84.62854 H 48.012216 A 19.480306,19.480306 45 0 1 28.53191,65.148234 V 61.00654 A 23.28639,23.28639 135 0 1 51.8183,37.72015 Z"
transform="matrix(0.2023713,-0.07835525,0.26382864,0.68140101,-4.3832357,96.893908)"
inkscape:path-effect="#path-effect2"
inkscape:original-d="M 28.53191,37.72015 H 98.652699 V 84.62854 H 28.53191 Z" />
<path
id="rect1"
style="fill:#9248b6;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 35.319118,37.72015 63.333581,0 V 84.62854 H 35.921202 A 7.3892917,7.3892917 45 0 1 28.53191,77.239248 v -32.73189 a 6.7872078,6.7872078 135 0 1 6.787208,-6.787208 z"
inkscape:path-effect="#path-effect1"
inkscape:original-d="M 28.53191,37.72015 H 98.652699 V 84.62854 H 28.53191 Z"
transform="matrix(0.4282608,-0.16581641,0.36106612,0.93254022,-6.1063397,80.640208)" />
<path
style="fill:#4b0082;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 48.829952,99.753219 c 0,0 59.652688,-27.814607 72.756608,-60.843003 l 36.27249,100.061094 c 0,0 -37.85241,-19.12654 -91.694945,4.26185 z"
id="path2"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#9248b6;fill-opacity:1;stroke:none;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
id="rect2"
width="18.892534"
height="108.821"
x="168.52141"
y="3.0228055"
inkscape:path-effect="#path-effect3"
sodipodi:type="rect"
d="m 177.96768,3.0228055 c 5.23323,0 9.44626,4.2130351 9.44626,9.4462675 v 89.928467 c 0,5.23323 -4.21303,9.44626 -9.44626,9.44626 -5.23324,0 -9.44627,-4.21303 -9.44627,-9.44626 V 12.469073 c 0,-5.2332324 4.21303,-9.4462675 9.44627,-9.4462675 z"
ry="9.4462671"
transform="rotate(-21.165685,241.87339,169.30967)" />
<path
id="rect3"
style="fill:#808080;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 151.57236,44.887336 13.6904,-19.070549 c 1.34949,-1.879836 4.10557,-2.015479 5.88302,-0.533724 1.77743,1.481758 2.0882,4.168812 0.53373,5.883025 l -15.82303,17.44908 c -1.55447,1.714203 -3.73609,3.103698 -5.51354,1.621943 -1.77743,-1.481758 1.22942,-5.349775 1.22942,-5.349775 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-61"
style="fill:#808080;stroke-width:1.365;stroke-linecap:round;stroke-linejoin:round"
d="m 174.10984,110.64078 22.92908,5.03687 c 2.26018,0.49651 4.40103,-1.2445 4.73299,-3.53463 0.33193,-2.29013 -1.23268,-4.49668 -3.53465,-4.73299 l -23.43187,-2.40544 c -2.30196,-0.2363 -4.85345,0.18807 -5.18539,2.47821 -0.33193,2.29013 4.48984,3.15798 4.48984,3.15798 z"
sodipodi:nodetypes="csssssc" />
<path
id="rect3-6"
style="fill:#808080;stroke-width:1.88776;stroke-linecap:round;stroke-linejoin:round"
d="m 166.76072,71.740398 28.6861,-13.41237 c 2.82767,-1.322097 6.07078,0.542137 7.08958,3.67838 1.01876,3.13624 -0.46294,6.67689 -3.41168,7.64379 l -30.0154,9.842146 c -2.94872,0.966888 -6.39235,1.071346 -7.41113,-2.0649 -1.01878,-3.13623 5.06253,-5.687046 5.06253,-5.687046 z"
sodipodi:nodetypes="csssssc" />
<circle
style="fill:#a5d3ed;fill-opacity:0.749004;stroke-width:0.264583"
id="path5"
cx="189.32526"
cy="159.10889"
r="5.6916008" />
<circle
style="fill:#a5d3ed;fill-opacity:0.749004;stroke-width:0.264583"
id="path6"
cx="53.904411"
cy="60.19278"
r="19.429947" />
</g>
</svg>
</div>
<p class="card-desc">Champion and help build a more inclusive professional community.</p>
</div>
</div>
</div>
</section>
<div class="spacer">
</div>
<div id="footer">
<ul class="contact">
<h4>Contact</h4>
<svg viewBox="0 0 100 1" xmlns="http://www.w3.org/2000/svg">
<line x1="0" y1="0" x2="10" y2="0" stroke="white" />
</svg>
<li><a class="contact-link" href="https://twitter.com/inclusivetechcoalition"><i class="bi bi-linkedin"></i> LinkedIn</a></li>
<li><a class="contact-link" href="https://github.com/inclusivetechcoalition"><i class="bi bi-github"></i> GitHub</a></li>
<li><a class="contact-link" href="mailto:[email protected]"><i class="bi bi-envelope-at"></i> Email</a></li>
</ul>
<p class="text-center footer-bottom">Designed and built with ❤ by the Inclusive Tech Coalition team.</p>
<p class="text-center footer-bottom">©2024 Inclusive Tech Coalition</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>