-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1822 lines (1541 loc) · 104 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
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 name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<!-- STYLESHEETS -->
<link rel="stylesheet" href="assets/css/flexboxgrid.min.css" type="text/css">
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet" type='text/css'>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<link href="https://cdn.rawgit.com/michalsnik/aos/2.0.4/dist/aos.css" rel="stylsheet">
<script src="assets/js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<link rel="stylesheet" href="assets/css/timeline.css">
<link rel="stylesheet" href="assets/css/humanrights.css">
<title>Underlying causes of war</title>
</head>
<body>
<div class="row center-xs ">
<div class="responsive--overlay">
<p class="title col-xs-12 "> Ooops!</p>
<p class="subtitle col-xs-12">It looks like something went wrong!</p>
<p class="textcol-xs-12">For the best use of this website we recomend using Chrome in a desktop</p>
</div>
</div>
<div class="row z-top ">
<div class="col-xs-2 col-sm-1 col-lg-1">
<nav class="nav-fixed no-padding no-margin bg__red">
<ul class=" no-padding center-xs">
<a href="#War">
<li class="numberCircle w1">W1</li>
</a>
<a href="#WarHiddenCauses">
<li class="numberCircle w2">W2</li>
</a>
<a href="#E1" class="Ed">
<li class="numberCircle e1">E1</li>
</a>
<a href="#E2" class="Ed">
<li class="numberCircle e2">E2</li>
</a>
<a href="#HumanRights" class="HR">
<li class="numberCircle r1">R1</li>
</a>
<a href="#RightsInfringed" class="HR">
<li class="numberCircle r2">R2</li>
</a>
<a href="#RightsTimeline" class="HR">
<li class="numberCircle r3">R3</li>
</a>
<a href="#WarConsequences">
<li class="numberCircle w3">W3</li>
</a>
</ul>
</nav>
</div>
</div>
<div class="row center-xs middle-xs bg__warRoom ">
<div id="War" class="col-xs-12 no-padding no-margin section-resized">
<p class="title text-lightest start-xs ">What causes war?</p>
</div>
<div class=" icon-svg fill__opacity text--margin__small no-margin-bot no-padding-bot ">
<svg class="rotate__neg45" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39.36 26.36">
<defs>
<style>
.cls-1,
.cls-2 {
fill: none;
stroke: #2f204f;
stroke-linecap: round;
stroke-linejoin: round;
}
.cls-2 {
stroke-width: 2px;
}
</style>
</defs>
<title>Ativo 11</title>
<g id="Camada_2" data-name="Camada 2">
<g id="Camada_1-2" data-name="Camada 1">
<path class="cls-1__small__tip uuGzOAwZ_0" d="M28.28,4.4A31.94,31.94,0,0,1,37.72.71l.92-.2a.18.18,0,0,1,.18.3l-.62.71a32.4,32.4,0,0,1-3.65,3.57A31.62,31.62,0,0,1,30.41,8"></path>
<path class="cls-1__small__tip uuGzOAwZ_1" d="M30.41,8a31.62,31.62,0,0,0,4.13-2.92,32.39,32.39,0,0,0,3.65-3.57L38.82.8a.18.18,0,0,0-.18-.3"></path>
<path class="cls-1__small uuGzOAwZ_2" d="M26.29,10.81L26.36,10.87L24.05,13.78L19.96,11.69L20.15,7.19L23.82,6.57L23.83,6.65"></path>
<path class="cls-1__small uuGzOAwZ_3" d="M25.47,9.43L25.47,9.43L23.83,6.65L23.82,6.57L23.79,6.58L25.47,9.43Z"></path>
<path class="cls-1__small uuGzOAwZ_4" d="M23.23,12.39L24.05,13.78L26.36,10.87L26.29,10.81"></path>
<path class="cls-1__small uuGzOAwZ_5" d="M30.62,8.35l-4.26,2.52-.06-.05L23.83,6.65l0-.08,4.26-2.52.21.35h0L30.39,8h0Z"></path>
<path class="cls-1__small uuGzOAwZ_6" d="M30,7.32h0l.4.68h0l.21.35-4.26,2.52-.06-.05"></path>
<path class="cls-1__small uuGzOAwZ_7" d="M8.67,22.06L5.17,24.13L1.99,18.75L5.35,16.76L8.67,22.06Z"></path>
<path class="cls-1__small uuGzOAwZ_8" d="M3.3,17.15L20.15,7.19L24.05,13.78L7.2,23.75"></path>
<path class="cls-1__small uuGzOAwZ_9" d="M24.05,13.78"></path>
<path class=".cls-2__small uuGzOAwZ_10" d="M5.35,25.34A.6.6,0,0,1,5,25.06l-3.9-6.59a.6.6,0,1,1,1-.62L6,24.44a.6.6,0,0,1-.67.89Z"></path>
<path class="cls-2__small__bg uuGzOAwZ_11" d="M5,22.78a.6.6,0,1,1-1,.62l1,1.67a.6.6,0,0,0,1-.62Z"></path>
</g>
</g>
<style>
.uuGzOAwZ_0 {
stroke-dasharray: 23 25;
stroke-dashoffset: 24;
animation: uuGzOAwZ_draw_0 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_1 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
animation: uuGzOAwZ_draw_1 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_2 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
animation: uuGzOAwZ_draw_2 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_3 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
animation: uuGzOAwZ_draw_3 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_4 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
animation: uuGzOAwZ_draw_4 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_5 {
stroke-dasharray: 20 22;
stroke-dashoffset: 21;
animation: uuGzOAwZ_draw_5 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_6 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
animation: uuGzOAwZ_draw_6 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_7 {
stroke-dasharray: 21 23;
stroke-dashoffset: 22;
animation: uuGzOAwZ_draw_7 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_8 {
stroke-dasharray: 47 49;
stroke-dashoffset: 48;
animation: uuGzOAwZ_draw_8 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_9 {
stroke-dasharray: 0 2;
stroke-dashoffset: 1;
animation: uuGzOAwZ_draw_9 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_10 {
stroke-dasharray: 20 22;
stroke-dashoffset: 21;
animation: uuGzOAwZ_draw_10 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
.uuGzOAwZ_11 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
animation: uuGzOAwZ_draw_11 7500ms linear 0ms infinite, uuGzOAwZ_fade 7500ms linear 0ms infinite;
}
@keyframes uuGzOAwZ_draw {
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_fade {
0% {
stroke-opacity: 1;
}
94.66666666666667% {
stroke-opacity: 1;
}
100% {
stroke-opacity: 0;
}
}
@keyframes uuGzOAwZ_draw_0 {
10.666666666666668% {
stroke-dashoffset: 24
}
40% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_1 {
12% {
stroke-dashoffset: 13
}
41.333333333333336% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_2 {
13.333333333333334% {
stroke-dashoffset: 18
}
42.66666666666667% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_3 {
14.666666666666666% {
stroke-dashoffset: 8
}
44% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_4 {
16% {
stroke-dashoffset: 7
}
45.33333333333333% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_5 {
17.333333333333336% {
stroke-dashoffset: 21
}
46.666666666666664% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_6 {
18.666666666666668% {
stroke-dashoffset: 8
}
48% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_7 {
20% {
stroke-dashoffset: 22
}
49.333333333333336% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_8 {
21.333333333333336% {
stroke-dashoffset: 48
}
50.66666666666667% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_9 {
22.666666666666664% {
stroke-dashoffset: 1
}
52% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_10 {
24% {
stroke-dashoffset: 21
}
53.333333333333336% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes uuGzOAwZ_draw_11 {
25.333333333333336% {
stroke-dashoffset: 9
}
54.666666666666664% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
</style>
</svg>
<span class="popup"> Weapon manufacturers</span>
</div>
<div class=" icon-svg fill__opacity__2 no-margin-bot no-padding-bot">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.83 29.97">
<defs> </defs>
<title>Ativo 10</title>
<g id="Camada_2" data-name="Camada 2">
<g id="Camada_1-2" data-name="Camada 1">
<path class="cls-1__small poudNsIJ_0" d="M0.15000000000000036,18.06A11.77,11.77 0,1,1 23.689999999999998,18.06A11.77,11.77 0,1,1 0.15000000000000036,18.06"></path>
<path class="cls-1__small__tip poudNsIJ_1" d="M11.54,5.19A.54.54,0,0,1,11,4.65V4.52a3.78,3.78,0,0,1,.66-2.78,2.5,2.5,0,0,1,1.86-.62h4.92a.54.54,0,1,1,0,1.08H13.52a1.52,1.52,0,0,0-1.09.3c-.35.35-.35,1.12-.35,2v.14A.54.54,0,0,1,11.54,5.19Z"></path>
<path class="cls-1__small poudNsIJ_2" d="M13.85,1.11h-.33a3.43,3.43,0,0,0-1.08.15l.51.83Z"></path>
<path class="cls-1__small poudNsIJ_3" d="M14.89,1.11L13.89,2.19L14.8,2.19L15.8,1.11L14.89,1.11Z"></path>
<path class="cls-1__small poudNsIJ_4" d="M11,4.52v.14a.54.54,0,0,0,1.08,0V4.51c0-.13,0-.25,0-.37l-1-1A11,11,0,0,0,11,4.52Z"></path>
<path class="cls-1__small poudNsIJ_5" d="M16.84,1.11L15.84,2.19L16.78,2.19L17.79,1.11L16.84,1.11Z"></path>
<path class="cls-1__small poudNsIJ_6" d="M11.66,1.73a1.9,1.9,0,0,0-.4.6l.88.83a1.38,1.38,0,0,1,.21-.57l-.58-1Z"></path>
<path class="cls-1_small poudNsIJ_7" d="M18.74,1.2l-.92,1h.62a.54.54,0,0,0,.3-1Z"></path>
<path class="cls-1__small poudNsIJ_8" d="M8.12,6.78C8.12,5.8,8.91,4,9.89,4h3.54c1,0,1.77,1.79,1.77,2.77"></path>
<path class="cls-1_small poudNsIJ_9" d="M19.5,0.56L19.21,1.42L19.76,2.15L18.84,2.14L18.32,2.89L18.04,2.01L17.17,1.74L17.92,1.22L17.91,0.3L18.64,0.85L19.5,0.56Z"></path>
<path class="cls-1__small__white poudNsIJ_10" d="M4.88,14a2.11,2.11,0,0,1,.41-2.9,2.11,2.11,0,0,1,2.89-.42,2.11,2.11,0,0,1-.41,2.9A2.11,2.11,0,0,1,4.88,14Z"></path>
</g>
</g>
<style>
.poudNsIJ_0 {
stroke-dasharray: 74 76;
stroke-dashoffset: 75;
animation: poudNsIJ_draw_0 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_1 {
stroke-dasharray: 22 24;
stroke-dashoffset: 23;
animation: poudNsIJ_draw_1 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_2 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
animation: poudNsIJ_draw_2 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_3 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
animation: poudNsIJ_draw_3 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_4 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
animation: poudNsIJ_draw_4 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_5 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
animation: poudNsIJ_draw_5 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_6 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
animation: poudNsIJ_draw_6 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_7 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
animation: poudNsIJ_draw_7 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_8 {
stroke-dasharray: 11 13;
stroke-dashoffset: 12;
animation: poudNsIJ_draw_8 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_9 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
animation: poudNsIJ_draw_9 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
.poudNsIJ_10 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
animation: poudNsIJ_draw_10 8500ms linear 0ms infinite, poudNsIJ_fade 8500ms linear 0ms infinite;
}
@keyframes poudNsIJ_draw {
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_fade {
0% {
stroke-opacity: 1;
}
94.66666666666667% {
stroke-opacity: 1;
}
100% {
stroke-opacity: 0;
}
}
@keyframes poudNsIJ_draw_0 {
10.666666666666668% {
stroke-dashoffset: 75
}
40% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_1 {
12.133333333333333% {
stroke-dashoffset: 23
}
41.46666666666667% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_2 {
13.600000000000001% {
stroke-dashoffset: 5
}
42.93333333333334% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_3 {
15.066666666666666% {
stroke-dashoffset: 6
}
44.4% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_4 {
16.53333333333333% {
stroke-dashoffset: 7
}
45.86666666666667% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_5 {
18% {
stroke-dashoffset: 6
}
47.333333333333336% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_6 {
19.466666666666665% {
stroke-dashoffset: 5
}
48.8% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_7 {
20.933333333333334% {
stroke-dashoffset: 5
}
50.26666666666667% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_8 {
22.400000000000002% {
stroke-dashoffset: 12
}
51.733333333333334% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_9 {
23.866666666666667% {
stroke-dashoffset: 11
}
53.2% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes poudNsIJ_draw_10 {
25.333333333333336% {
stroke-dashoffset: 14
}
54.666666666666664% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
</style>
</svg>
</div>
<div class=" icon-svg no-margin-bot no-padding-bot fill__opacity__3 ">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50.05 50.28">
<defs></defs>
<title>aAtivo 15</title>
<g id="Camada_2" data-name="Camada 2">
<g id="fundo">
<path class="cls-1__small__brown IWdxfCYC_0" d="M22.74,26.93,12,6.86a.94.94,0,0,0-.36-.37L2.42,1.13A.94.94,0,0,0,1,1.95V48.33a.94.94,0,0,0,.94.94H48.1a.94.94,0,0,0,.66-1.62L35,34.44a.94.94,0,0,0-.17-.13l-11.78-7A.94.94,0,0,1,22.74,26.93Z"></path>
<path class="cls-1__small__brown IWdxfCYC_1" d="M32.64,11.09l1.08-3.37a.81.81,0,0,0,0-.39l-.31-1.68a.81.81,0,0,0-1-.62l-4.23,1.4a.81.81,0,0,0-.54.88L28,10a.81.81,0,0,0,.55.66l3.08,1A.81.81,0,0,0,32.64,11.09Z"></path>
<path class="cls-1__small__brown IWdxfCYC_2" d="M24.15,6.1l-.3-2.41a1.08,1.08,0,0,0-.9-.93l-3.16-.53a1.08,1.08,0,0,0-1.25.9L18,6.66a1.08,1.08,0,0,0,.46,1.06l1.2.82a1.08,1.08,0,0,0,1.1.07L23.57,7.2A1.08,1.08,0,0,0,24.15,6.1Z"></path>
<path class="cls-1__small__brown IWdxfCYC_3" d="M32.41,19.47l.18.12a1.16,1.16,0,0,0,1.18.08l1-.53A1.16,1.16,0,0,0,35.44,18l-.08-.66a1.16,1.16,0,0,0-1-1l-1-.16a1.16,1.16,0,0,0-1.34,1l-.19,1.23A1.16,1.16,0,0,0,32.41,19.47Z"></path>
<path class="cls-1__small__brown IWdxfCYC_4" d="M28.26,18.81l.65-.58a.94.94,0,0,0,.29-.91l-.47-2a.94.94,0,0,0-.8-.72l-1.54-.19a.94.94,0,0,0-1,.56l-.82,1.9a.94.94,0,0,0,.5,1.24l2.17.91A.94.94,0,0,0,28.26,18.81Z"></path>
<path class="cls-1__small__brown IWdxfCYC_5" d="M33,24.12l.77.53.92-.46a.71.71,0,0,0,.38-.72l-.08-.62a.29.29,0,0,0-.24-.25l-1.19-.2a.29.29,0,0,0-.33.24Z"></path>
<path class="cls-1__small__brown IWdxfCYC_6" d="M39.56,25.28a.21.21,0,0,0,0-.29l-1.24-1-.84.4-.07,1.38a.21.21,0,0,0,.13.2l1,.4a.21.21,0,0,0,.24-.06Z"></path>
</g>
</g>
<style>
.IWdxfCYC_0 {
stroke-dasharray: 166 168;
stroke-dashoffset: 167;
animation: IWdxfCYC_draw_0 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_1 {
stroke-dasharray: 21 23;
stroke-dashoffset: 22;
animation: IWdxfCYC_draw_1 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_2 {
stroke-dasharray: 21 23;
stroke-dashoffset: 22;
animation: IWdxfCYC_draw_2 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_3 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
animation: IWdxfCYC_draw_3 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_4 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
animation: IWdxfCYC_draw_4 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_5 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
animation: IWdxfCYC_draw_5 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
.IWdxfCYC_6 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
animation: IWdxfCYC_draw_6 5500ms linear 0ms infinite, IWdxfCYC_fade 5500ms linear 0ms infinite;
}
@keyframes IWdxfCYC_draw {
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_fade {
0% {
stroke-opacity: 1;
}
92.72727272727273% {
stroke-opacity: 1;
}
100% {
stroke-opacity: 0;
}
}
@keyframes IWdxfCYC_draw_0 {
14.545454545454545% {
stroke-dashoffset: 167
}
42.42424242424242% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_1 {
16.86868686868687% {
stroke-dashoffset: 22
}
44.747474747474755% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_2 {
19.191919191919194% {
stroke-dashoffset: 22
}
47.07070707070707% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_3 {
21.515151515151516% {
stroke-dashoffset: 13
}
49.3939393939394% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_4 {
23.83838383838384% {
stroke-dashoffset: 16
}
51.717171717171716% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_5 {
26.161616161616163% {
stroke-dashoffset: 8
}
54.04040404040404% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IWdxfCYC_draw_6 {
28.48484848484848% {
stroke-dashoffset: 9
}
56.36363636363636% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
</style>
</svg>
</div>
<div class=" fill__opacity__3 icon-svg no-margin-bot no-padding-bot">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.15 12.71">
<defs></defs>
<title>aAtivo 17</title>
<g id="Camada_2" data-name="Camada 2">
<g id="fundo">
<path class="cls-1__small__purple IHFkGeBo_0" d="M25,.53.33.15l-.18,12,24.66.37ZM2.74,11.88.6,9.49.7,2.8,2.91.47,22.28.77l2.14,2.39-.1,6.7L22,12.17Z"></path>
<path class="cls-1__small__blue IHFkGeBo_1" d="M24.43,3.16L22.28,0.77L2.91,0.47L0.7,2.8L0.6,9.49L2.74,11.88L21.98,12.17L24.32,9.85L24.43,3.16Z"></path>
<path class="cls-1__small__blue IHFkGeBo_2" d="M12.57,3.3a3,3,0,1,1-3.13,3A3.07,3.07,0,0,1,12.57,3.3Z"></path>
<path class="cls-1__small IHFkGeBo_3" d="M7.51,6.25L3.28,6.19"></path>
<path class="cls-1__small IHFkGeBo_4" d="M22.2,6.5L17.98,6.43"></path>
</g>
</g>
<style>
.IHFkGeBo_0 {
stroke-dasharray: 139 141;
stroke-dashoffset: 140;
animation: IHFkGeBo_draw_0 5500ms linear 0ms infinite, IHFkGeBo_fade 5500ms linear 0ms infinite;
}
.IHFkGeBo_1 {
stroke-dasharray: 65 67;
stroke-dashoffset: 66;
animation: IHFkGeBo_draw_1 5500ms linear 0ms infinite, IHFkGeBo_fade 5500ms linear 0ms infinite;
}
.IHFkGeBo_2 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
animation: IHFkGeBo_draw_2 5500ms linear 0ms infinite, IHFkGeBo_fade 5500ms linear 0ms infinite;
}
.IHFkGeBo_3 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
animation: IHFkGeBo_draw_3 5500ms linear 0ms infinite, IHFkGeBo_fade 5500ms linear 0ms infinite;
}
.IHFkGeBo_4 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
animation: IHFkGeBo_draw_4 5500ms linear 0ms infinite, IHFkGeBo_fade 5500ms linear 0ms infinite;
}
@keyframes IHFkGeBo_draw {
100% {
stroke-dashoffset: 0;
}
}
@keyframes IHFkGeBo_fade {
0% {
stroke-opacity: 1;
}
92.72727272727273% {
stroke-opacity: 1;
}
100% {
stroke-opacity: 0;
}
}
@keyframes IHFkGeBo_draw_0 {
14.545454545454545% {
stroke-dashoffset: 140
}
42.42424242424242% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IHFkGeBo_draw_1 {
18.03030303030303% {
stroke-dashoffset: 66
}
45.909090909090914% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IHFkGeBo_draw_2 {
21.515151515151516% {
stroke-dashoffset: 20
}
49.3939393939394% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IHFkGeBo_draw_3 {
25% {
stroke-dashoffset: 6
}
52.87878787878788% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes IHFkGeBo_draw_4 {
28.48484848484848% {
stroke-dashoffset: 6
}
56.36363636363636% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
</style>
</svg>
</div>
<div class=" icon-svg fill__opacity__3 no-margin-bot no-padding">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.8 182.55">
<defs></defs>
<title>aqgAtivo 1</title>
<g id="Camada_2" data-name="Camada 2">
<g id="HUMAN">
<path class="cls-1__small__nofill UodGJvWo_0" d="M50.5,154.4a2.1,2.1,0,0,0-2.1,1.7v25.45h3.9V156.1A1.7,1.7,0,0,0,50.5,154.4Z"></path>
<path class="cls-1__small__blue UodGJvWo_1" d="M99.37,75.7C97.08,59.64,85.63,49.3,71.7,49.3H29.3C15.37,49.3,3.75,59.55,1.43,75.6L1,77.6v64.6s0,9.8,9.3,9.8,9.3-9.8,9.3-9.8V85.5a2,2,0,0,1,2.1-1.7,1.73,1.73,0,0,1,1.9,1.7v96H48.4V156.1a2.1,2.1,0,0,1,2.1-1.7,1.7,1.7,0,0,1,1.8,1.7v25.45H77.1V85.6a1.9,1.9,0,0,1,2.1-1.7,1.77,1.77,0,0,1,2,1.7v56.7s0,9.8,9.3,9.8,9.3-9.8,9.3-9.8V77.7Z"></path>
<path class="cls-1__small__blue UodGJvWo_2" d="M29,22.5A21.5,21.5 0,1,1 72,22.5A21.5,21.5 0,1,1 29,22.5"></path>
</g>
</g>
<style>
.UodGJvWo_0 {
stroke-dasharray: 61 63;
stroke-dashoffset: 62;
animation: UodGJvWo_draw 2000ms linear 0ms forwards;
}
.UodGJvWo_1 {
stroke-dasharray: 744 746;
stroke-dashoffset: 745;
animation: UodGJvWo_draw 2000ms linear 500ms forwards;
}
.UodGJvWo_2 {
stroke-dasharray: 136 138;
stroke-dashoffset: 137;
animation: UodGJvWo_draw 2000ms linear 1000ms forwards;
}
@keyframes UodGJvWo_draw {
100% {
stroke-dashoffset: 0;
}
}
@keyframes UodGJvWo_fade {
0% {
stroke-opacity: 1;
}
94.44444444444444% {
stroke-opacity: 1;
}
100% {
stroke-opacity: 0;
}
}
</style>
</svg>
</div>
<div class=" icon-svg fill__opacity no-margin-bot no-padding">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 173.01 166.31">
<defs>
<style>
.cls-1p {
fill: #ebc4b8;
stroke: #2f204f;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 3px;
}
</style>
</defs>
<title>aaaaAtivo 18</title>
<g id="Camada_2" data-name="Camada 2">
<g id="fundo">
<g id="Camada_2-2" data-name="Camada 2">
<g id="Objects">
<path class="cls-1p ptjOduLX_0" d="M171.51,37,137.94,1.5l-18,17c-12.62-6.08-29.53-8-40.31,2.22L66.51,38.23v.15L41.6,62a12.21,12.21,0,0,0,13,20.17A12.2,12.2,0,0,0,71.07,97.68a12.2,12.2,0,0,0,16.58,15.38,12.21,12.21,0,0,0,20,12.75l32.1-31.4h0l3.88-3.67a34.75,34.75,0,0,0,9.16-36Z"></path>
<path class="cls-1p ptjOduLX_1" d="M147.61,103.39l-8.8-8.8a14.81,14.81,0,0,0,2.13-15.31c-4.88-10.51-21.09-29.4-30.36-36.36A57.37,57.37,0,0,0,72.43,32a36.41,36.41,0,0,0-14.65,4.6L38.27,17.09,1.5,53.86,20,72.34a37,37,0,0,0,5.49,45.09l26.09,27.09L61.64,154.6l6.42,6.4a13.07,13.07,0,0,0,18.44,0c2.89-2.89,3.46-7.48,5.17-9.2s11.05,2.16,15.73-2.52c3.48-3.48,1.81-8.57,4.7-11.46s10.11.89,14.4-3.4c3.3-3.3,2.83-8.72,4.84-10.72s11.44,2.93,16.32-1.95a12.93,12.93,0,0,0,0-18.29Z"></path>
<path class="cls-1p ptjOduLX_2" d="M83.9,128.59l-.24-.24a11.33,11.33,0,0,0-12-2.57,11.33,11.33,0,0,0-2.57-12l-.23-.24a11.33,11.33,0,0,0-12-2.57,11.33,11.33,0,0,0-2.57-12L54,98.66a11.33,11.33,0,0,0-12-2.57,11.33,11.33,0,0,0-2.57-12l-.24-.24a11.33,11.33,0,0,0-16,0L9.42,97.48a11.33,11.33,0,0,0,0,16l.24.24a11.33,11.33,0,0,0,12,2.57,11.33,11.33,0,0,0,2.57,12l.24.24a11.33,11.33,0,0,0,12,2.57,11.33,11.33,0,0,0,2.57,12l.24.24a11.33,11.33,0,0,0,12,2.57,11.33,11.33,0,0,0,2.57,12l.24.24a11.33,11.33,0,0,0,16,0L83.9,144.62a11.33,11.33,0,0,0,0-16Z"></path>
<path class="cls-1p ptjOduLX_3" d="M80.66,20C75,25,69.81,34.21,63.87,53.38,58,72.38,59.12,78.84,68,81.46c9.81,2.89,14-1,19.67-19.08,5.95-19,10-28,10-28"></path>
<path class="cls-1 ptjOduLX_4" d="M51.16,146.72L72.33,125.72"></path>
<path class="cls-1p ptjOduLX_5" d="M36,131.22L57.33,109.72"></path>
<path class="cls-1 ptjOduLX_6" d="M21,117.22L42.33,95.72"></path>
</g>
</g>
</g>
</g>
<style>
.ptjOduLX_0 {
stroke-dasharray: 413 415;
stroke-dashoffset: 414;
animation: ptjOduLX_draw_0 7200ms linear 0ms infinite, ptjOduLX_fade 7200ms linear 0ms infinite;
}
.ptjOduLX_1 {
stroke-dasharray: 473 475;
stroke-dashoffset: 474;
animation: ptjOduLX_draw_1 7200ms linear 0ms infinite, ptjOduLX_fade 7200ms linear 0ms infinite;
}
.ptjOduLX_2 {
stroke-dasharray: 269 271;
stroke-dashoffset: 270;
animation: ptjOduLX_draw_2 7200ms linear 0ms infinite, ptjOduLX_fade 7200ms linear 0ms infinite;
}
.ptjOduLX_3 {
stroke-dasharray: 132 134;
stroke-dashoffset: 133;
animation: ptjOduLX_draw_3 7200ms linear 0ms infinite, ptjOduLX_fade 7200ms linear 0ms infinite;
}
.ptjOduLX_4 {
stroke-dasharray: 30 32;