-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
13865 lines (12977 loc) · 469 KB
/
theme.css
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
@import url("https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap");
@font-face {
font-family: 'Salzburg';
src: url("fonts/Salzburg.ttf"); }
/* Remove scroll bar in Chrome */
html::-webkit-scrollbar {
display: none; }
/* Remove scroll bar in Firefox */
html {
scrollbar-width: none; }
/* Full-height cover section */
html, body {
height: 100%; }
/* Override navbar's font style & Add hover transition */
.nav-link {
font-family: 'Hammersmith One' !important; }
.nav-item a {
transition: 0.3s !important; }
.nav-item:hover a {
color: black !important;
transition: 0.3s !important; }
.navbar img {
/* Add transition while shrinking logo on scroll */
transition: 0.8s !important; }
/* Override dropdown's click highlight color */
.dropdown-item:active {
background-color: transparent !important; }
/* Remove outline around selected buttons */
*:focus {
outline: 0 !important; }
/* Override letter spacing in buttons */
.btn {
letter-spacing: 0.05rem; }
/* Button hover transition */
.btn-outline-light {
transition: background .5s ease !important; }
.btn-primary {
border: none !important;
transition: background .5s ease !important; }
.btn-primary:hover {
background: white !important;
color: black !important;
border: none !important;
transition: background .5s ease !important; }
/* Override letter spacing in headings */
h1 {
letter-spacing: 0.05rem; }
h2 {
letter-spacing: 0.05rem; }
h3 {
letter-spacing: 0.05rem; }
h4 {
letter-spacing: 0.05rem; }
h5 {
letter-spacing: 0.05rem; }
h6 {
letter-spacing: 0.05rem; }
/* Drop caps for paragraphs */
drop {
float: left;
line-height: 85%;
width: .7em;
font-size: 450%;
font-family: 'Playfair Display', serif; }
/* Adjust owl carousel's slide height */
.slide-item {
height: 850px; }
/* Styling owl carousel's prev & next buttons */
.owl-prev, .owl-next {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
border: 0px solid black; }
.owl-prev {
left: 20px; }
.owl-next {
right: 20px; }
.owl-prev i, .owl-next i {
-webkit-transform: scale(3, 3);
transform: scale(3, 3);
color: #ffffff; }
.owl-carousel .owl-item {
-webkit-transform: translate3d(0px, 0px, 0px); }
/* Responsive layout for overlapping elements */
.overlapping-text {
margin-top: 100px;
margin-left: -200px;
margin-bottom: 150px;
z-index: -1; }
.overlapping-image {
z-index: 1; }
@media only screen and (max-width: 767px) {
.overlapping-text {
margin: 0;
margin-top: -200px; } }
/* Remove blank space below footer on iPad */
body {
padding-bottom: 0 !important;
margin-bottom: 0 !important; }
/* Animated SVGs */
#moomin-front, #starrynight-back, #moomin-back1, #moomin-back2, #moomin-back3, #starrynight-front1, #starrynight-front2, #claude-monet, #arthur-rackham {
opacity: 0; }
#moomin-back1.animated {
opacity: 1; }
#moomin-back1.animated .CAlSrDSA_0 {
stroke-dasharray: 46 48;
stroke-dashoffset: 47;
-webkit-animation: CAlSrDSA_draw 2000ms ease 0ms forwards;
animation: CAlSrDSA_draw 2000ms ease 0ms forwards; }
#moomin-back1.animated .CAlSrDSA_1 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: CAlSrDSA_draw 2000ms ease 153ms forwards;
animation: CAlSrDSA_draw 2000ms ease 153ms forwards; }
#moomin-back1.animated .CAlSrDSA_2 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: CAlSrDSA_draw 2000ms ease 307ms forwards;
animation: CAlSrDSA_draw 2000ms ease 307ms forwards; }
#moomin-back1.animated .CAlSrDSA_3 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: CAlSrDSA_draw 2000ms ease 461ms forwards;
animation: CAlSrDSA_draw 2000ms ease 461ms forwards; }
#moomin-back1.animated .CAlSrDSA_4 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: CAlSrDSA_draw 2000ms ease 615ms forwards;
animation: CAlSrDSA_draw 2000ms ease 615ms forwards; }
#moomin-back1.animated .CAlSrDSA_5 {
stroke-dasharray: 22 24;
stroke-dashoffset: 23;
-webkit-animation: CAlSrDSA_draw 2000ms ease 769ms forwards;
animation: CAlSrDSA_draw 2000ms ease 769ms forwards; }
#moomin-back1.animated .CAlSrDSA_6 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: CAlSrDSA_draw 2000ms ease 923ms forwards;
animation: CAlSrDSA_draw 2000ms ease 923ms forwards; }
#moomin-back1.animated .CAlSrDSA_7 {
stroke-dasharray: 43 45;
stroke-dashoffset: 44;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1076ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1076ms forwards; }
#moomin-back1.animated .CAlSrDSA_8 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1230ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1230ms forwards; }
#moomin-back1.animated .CAlSrDSA_9 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1384ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1384ms forwards; }
#moomin-back1.animated .CAlSrDSA_10 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1538ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1538ms forwards; }
#moomin-back1.animated .CAlSrDSA_11 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1692ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1692ms forwards; }
#moomin-back1.animated .CAlSrDSA_12 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: CAlSrDSA_draw 2000ms ease 1846ms forwards;
animation: CAlSrDSA_draw 2000ms ease 1846ms forwards; }
#moomin-back1.animated .CAlSrDSA_13 {
stroke-dasharray: 11 13;
stroke-dashoffset: 12;
-webkit-animation: CAlSrDSA_draw 2000ms ease 2000ms forwards;
animation: CAlSrDSA_draw 2000ms ease 2000ms forwards; }
@-webkit-keyframes CAlSrDSA_draw {
100% {
stroke-dashoffset: 0; } }
@keyframes CAlSrDSA_draw {
100% {
stroke-dashoffset: 0; } }
@-webkit-keyframes CAlSrDSA_fade {
0% {
stroke-opacity: 1; }
95.1219512195122% {
stroke-opacity: 1; }
100% {
stroke-opacity: 0; } }
@keyframes CAlSrDSA_fade {
0% {
stroke-opacity: 1; }
95.1219512195122% {
stroke-opacity: 1; }
100% {
stroke-opacity: 0; } }
#moomin-back2.animated {
opacity: 1; }
#moomin-back2.animated .xovCzfVW_0 {
stroke-dasharray: 20 22;
stroke-dashoffset: 21;
-webkit-animation: xovCzfVW_draw 2000ms ease 0ms forwards;
animation: xovCzfVW_draw 2000ms ease 0ms forwards; }
#moomin-back2.animated .xovCzfVW_1 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 25ms forwards;
animation: xovCzfVW_draw 2000ms ease 25ms forwards; }
#moomin-back2.animated .xovCzfVW_2 {
stroke-dasharray: 1 3;
stroke-dashoffset: 2;
-webkit-animation: xovCzfVW_draw 2000ms ease 50ms forwards;
animation: xovCzfVW_draw 2000ms ease 50ms forwards; }
#moomin-back2.animated .xovCzfVW_3 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: xovCzfVW_draw 2000ms ease 76ms forwards;
animation: xovCzfVW_draw 2000ms ease 76ms forwards; }
#moomin-back2.animated .xovCzfVW_4 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 101ms forwards;
animation: xovCzfVW_draw 2000ms ease 101ms forwards; }
#moomin-back2.animated .xovCzfVW_5 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 127ms forwards;
animation: xovCzfVW_draw 2000ms ease 127ms forwards; }
#moomin-back2.animated .xovCzfVW_6 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 152ms forwards;
animation: xovCzfVW_draw 2000ms ease 152ms forwards; }
#moomin-back2.animated .xovCzfVW_7 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 177ms forwards;
animation: xovCzfVW_draw 2000ms ease 177ms forwards; }
#moomin-back2.animated .xovCzfVW_8 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 203ms forwards;
animation: xovCzfVW_draw 2000ms ease 203ms forwards; }
#moomin-back2.animated .xovCzfVW_9 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 228ms forwards;
animation: xovCzfVW_draw 2000ms ease 228ms forwards; }
#moomin-back2.animated .xovCzfVW_10 {
stroke-dasharray: 22 24;
stroke-dashoffset: 23;
-webkit-animation: xovCzfVW_draw 2000ms ease 254ms forwards;
animation: xovCzfVW_draw 2000ms ease 254ms forwards; }
#moomin-back2.animated .xovCzfVW_11 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 279ms forwards;
animation: xovCzfVW_draw 2000ms ease 279ms forwards; }
#moomin-back2.animated .xovCzfVW_12 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: xovCzfVW_draw 2000ms ease 305ms forwards;
animation: xovCzfVW_draw 2000ms ease 305ms forwards; }
#moomin-back2.animated .xovCzfVW_13 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: xovCzfVW_draw 2000ms ease 330ms forwards;
animation: xovCzfVW_draw 2000ms ease 330ms forwards; }
#moomin-back2.animated .xovCzfVW_14 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 355ms forwards;
animation: xovCzfVW_draw 2000ms ease 355ms forwards; }
#moomin-back2.animated .xovCzfVW_15 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: xovCzfVW_draw 2000ms ease 381ms forwards;
animation: xovCzfVW_draw 2000ms ease 381ms forwards; }
#moomin-back2.animated .xovCzfVW_16 {
stroke-dasharray: 21 23;
stroke-dashoffset: 22;
-webkit-animation: xovCzfVW_draw 2000ms ease 406ms forwards;
animation: xovCzfVW_draw 2000ms ease 406ms forwards; }
#moomin-back2.animated .xovCzfVW_17 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 432ms forwards;
animation: xovCzfVW_draw 2000ms ease 432ms forwards; }
#moomin-back2.animated .xovCzfVW_18 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 457ms forwards;
animation: xovCzfVW_draw 2000ms ease 457ms forwards; }
#moomin-back2.animated .xovCzfVW_19 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 483ms forwards;
animation: xovCzfVW_draw 2000ms ease 483ms forwards; }
#moomin-back2.animated .xovCzfVW_20 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 508ms forwards;
animation: xovCzfVW_draw 2000ms ease 508ms forwards; }
#moomin-back2.animated .xovCzfVW_21 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: xovCzfVW_draw 2000ms ease 533ms forwards;
animation: xovCzfVW_draw 2000ms ease 533ms forwards; }
#moomin-back2.animated .xovCzfVW_22 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: xovCzfVW_draw 2000ms ease 559ms forwards;
animation: xovCzfVW_draw 2000ms ease 559ms forwards; }
#moomin-back2.animated .xovCzfVW_23 {
stroke-dasharray: 34 36;
stroke-dashoffset: 35;
-webkit-animation: xovCzfVW_draw 2000ms ease 584ms forwards;
animation: xovCzfVW_draw 2000ms ease 584ms forwards; }
#moomin-back2.animated .xovCzfVW_24 {
stroke-dasharray: 1 3;
stroke-dashoffset: 2;
-webkit-animation: xovCzfVW_draw 2000ms ease 610ms forwards;
animation: xovCzfVW_draw 2000ms ease 610ms forwards; }
#moomin-back2.animated .xovCzfVW_25 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 635ms forwards;
animation: xovCzfVW_draw 2000ms ease 635ms forwards; }
#moomin-back2.animated .xovCzfVW_26 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: xovCzfVW_draw 2000ms ease 661ms forwards;
animation: xovCzfVW_draw 2000ms ease 661ms forwards; }
#moomin-back2.animated .xovCzfVW_27 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: xovCzfVW_draw 2000ms ease 686ms forwards;
animation: xovCzfVW_draw 2000ms ease 686ms forwards; }
#moomin-back2.animated .xovCzfVW_28 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 711ms forwards;
animation: xovCzfVW_draw 2000ms ease 711ms forwards; }
#moomin-back2.animated .xovCzfVW_29 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 737ms forwards;
animation: xovCzfVW_draw 2000ms ease 737ms forwards; }
#moomin-back2.animated .xovCzfVW_30 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 762ms forwards;
animation: xovCzfVW_draw 2000ms ease 762ms forwards; }
#moomin-back2.animated .xovCzfVW_31 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: xovCzfVW_draw 2000ms ease 788ms forwards;
animation: xovCzfVW_draw 2000ms ease 788ms forwards; }
#moomin-back2.animated .xovCzfVW_32 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 813ms forwards;
animation: xovCzfVW_draw 2000ms ease 813ms forwards; }
#moomin-back2.animated .xovCzfVW_33 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 838ms forwards;
animation: xovCzfVW_draw 2000ms ease 838ms forwards; }
#moomin-back2.animated .xovCzfVW_34 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 864ms forwards;
animation: xovCzfVW_draw 2000ms ease 864ms forwards; }
#moomin-back2.animated .xovCzfVW_35 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 889ms forwards;
animation: xovCzfVW_draw 2000ms ease 889ms forwards; }
#moomin-back2.animated .xovCzfVW_36 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 915ms forwards;
animation: xovCzfVW_draw 2000ms ease 915ms forwards; }
#moomin-back2.animated .xovCzfVW_37 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 940ms forwards;
animation: xovCzfVW_draw 2000ms ease 940ms forwards; }
#moomin-back2.animated .xovCzfVW_38 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 966ms forwards;
animation: xovCzfVW_draw 2000ms ease 966ms forwards; }
#moomin-back2.animated .xovCzfVW_39 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 991ms forwards;
animation: xovCzfVW_draw 2000ms ease 991ms forwards; }
#moomin-back2.animated .xovCzfVW_40 {
stroke-dasharray: 21 23;
stroke-dashoffset: 22;
-webkit-animation: xovCzfVW_draw 2000ms ease 1016ms forwards;
animation: xovCzfVW_draw 2000ms ease 1016ms forwards; }
#moomin-back2.animated .xovCzfVW_41 {
stroke-dasharray: 28 30;
stroke-dashoffset: 29;
-webkit-animation: xovCzfVW_draw 2000ms ease 1042ms forwards;
animation: xovCzfVW_draw 2000ms ease 1042ms forwards; }
#moomin-back2.animated .xovCzfVW_42 {
stroke-dasharray: 15 17;
stroke-dashoffset: 16;
-webkit-animation: xovCzfVW_draw 2000ms ease 1067ms forwards;
animation: xovCzfVW_draw 2000ms ease 1067ms forwards; }
#moomin-back2.animated .xovCzfVW_43 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: xovCzfVW_draw 2000ms ease 1093ms forwards;
animation: xovCzfVW_draw 2000ms ease 1093ms forwards; }
#moomin-back2.animated .xovCzfVW_44 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: xovCzfVW_draw 2000ms ease 1118ms forwards;
animation: xovCzfVW_draw 2000ms ease 1118ms forwards; }
#moomin-back2.animated .xovCzfVW_45 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 1144ms forwards;
animation: xovCzfVW_draw 2000ms ease 1144ms forwards; }
#moomin-back2.animated .xovCzfVW_46 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 1169ms forwards;
animation: xovCzfVW_draw 2000ms ease 1169ms forwards; }
#moomin-back2.animated .xovCzfVW_47 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 1194ms forwards;
animation: xovCzfVW_draw 2000ms ease 1194ms forwards; }
#moomin-back2.animated .xovCzfVW_48 {
stroke-dasharray: 23 25;
stroke-dashoffset: 24;
-webkit-animation: xovCzfVW_draw 2000ms ease 1220ms forwards;
animation: xovCzfVW_draw 2000ms ease 1220ms forwards; }
#moomin-back2.animated .xovCzfVW_49 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 1245ms forwards;
animation: xovCzfVW_draw 2000ms ease 1245ms forwards; }
#moomin-back2.animated .xovCzfVW_50 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 1271ms forwards;
animation: xovCzfVW_draw 2000ms ease 1271ms forwards; }
#moomin-back2.animated .xovCzfVW_51 {
stroke-dasharray: 1 3;
stroke-dashoffset: 2;
-webkit-animation: xovCzfVW_draw 2000ms ease 1296ms forwards;
animation: xovCzfVW_draw 2000ms ease 1296ms forwards; }
#moomin-back2.animated .xovCzfVW_52 {
stroke-dasharray: 11 13;
stroke-dashoffset: 12;
-webkit-animation: xovCzfVW_draw 2000ms ease 1322ms forwards;
animation: xovCzfVW_draw 2000ms ease 1322ms forwards; }
#moomin-back2.animated .xovCzfVW_53 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 1347ms forwards;
animation: xovCzfVW_draw 2000ms ease 1347ms forwards; }
#moomin-back2.animated .xovCzfVW_54 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 1372ms forwards;
animation: xovCzfVW_draw 2000ms ease 1372ms forwards; }
#moomin-back2.animated .xovCzfVW_55 {
stroke-dasharray: 20 22;
stroke-dashoffset: 21;
-webkit-animation: xovCzfVW_draw 2000ms ease 1398ms forwards;
animation: xovCzfVW_draw 2000ms ease 1398ms forwards; }
#moomin-back2.animated .xovCzfVW_56 {
stroke-dasharray: 20 22;
stroke-dashoffset: 21;
-webkit-animation: xovCzfVW_draw 2000ms ease 1423ms forwards;
animation: xovCzfVW_draw 2000ms ease 1423ms forwards; }
#moomin-back2.animated .xovCzfVW_57 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 1449ms forwards;
animation: xovCzfVW_draw 2000ms ease 1449ms forwards; }
#moomin-back2.animated .xovCzfVW_58 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 1474ms forwards;
animation: xovCzfVW_draw 2000ms ease 1474ms forwards; }
#moomin-back2.animated .xovCzfVW_59 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 1500ms forwards;
animation: xovCzfVW_draw 2000ms ease 1500ms forwards; }
#moomin-back2.animated .xovCzfVW_60 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 1525ms forwards;
animation: xovCzfVW_draw 2000ms ease 1525ms forwards; }
#moomin-back2.animated .xovCzfVW_61 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 1550ms forwards;
animation: xovCzfVW_draw 2000ms ease 1550ms forwards; }
#moomin-back2.animated .xovCzfVW_62 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 1576ms forwards;
animation: xovCzfVW_draw 2000ms ease 1576ms forwards; }
#moomin-back2.animated .xovCzfVW_63 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 1601ms forwards;
animation: xovCzfVW_draw 2000ms ease 1601ms forwards; }
#moomin-back2.animated .xovCzfVW_64 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: xovCzfVW_draw 2000ms ease 1627ms forwards;
animation: xovCzfVW_draw 2000ms ease 1627ms forwards; }
#moomin-back2.animated .xovCzfVW_65 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 1652ms forwards;
animation: xovCzfVW_draw 2000ms ease 1652ms forwards; }
#moomin-back2.animated .xovCzfVW_66 {
stroke-dasharray: 24 26;
stroke-dashoffset: 25;
-webkit-animation: xovCzfVW_draw 2000ms ease 1677ms forwards;
animation: xovCzfVW_draw 2000ms ease 1677ms forwards; }
#moomin-back2.animated .xovCzfVW_67 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 1703ms forwards;
animation: xovCzfVW_draw 2000ms ease 1703ms forwards; }
#moomin-back2.animated .xovCzfVW_68 {
stroke-dasharray: 30 32;
stroke-dashoffset: 31;
-webkit-animation: xovCzfVW_draw 2000ms ease 1728ms forwards;
animation: xovCzfVW_draw 2000ms ease 1728ms forwards; }
#moomin-back2.animated .xovCzfVW_69 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 1754ms forwards;
animation: xovCzfVW_draw 2000ms ease 1754ms forwards; }
#moomin-back2.animated .xovCzfVW_70 {
stroke-dasharray: 30 32;
stroke-dashoffset: 31;
-webkit-animation: xovCzfVW_draw 2000ms ease 1779ms forwards;
animation: xovCzfVW_draw 2000ms ease 1779ms forwards; }
#moomin-back2.animated .xovCzfVW_71 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 1805ms forwards;
animation: xovCzfVW_draw 2000ms ease 1805ms forwards; }
#moomin-back2.animated .xovCzfVW_72 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 1830ms forwards;
animation: xovCzfVW_draw 2000ms ease 1830ms forwards; }
#moomin-back2.animated .xovCzfVW_73 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 1855ms forwards;
animation: xovCzfVW_draw 2000ms ease 1855ms forwards; }
#moomin-back2.animated .xovCzfVW_74 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: xovCzfVW_draw 2000ms ease 1881ms forwards;
animation: xovCzfVW_draw 2000ms ease 1881ms forwards; }
#moomin-back2.animated .xovCzfVW_75 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 1906ms forwards;
animation: xovCzfVW_draw 2000ms ease 1906ms forwards; }
#moomin-back2.animated .xovCzfVW_76 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 1932ms forwards;
animation: xovCzfVW_draw 2000ms ease 1932ms forwards; }
#moomin-back2.animated .xovCzfVW_77 {
stroke-dasharray: 32 34;
stroke-dashoffset: 33;
-webkit-animation: xovCzfVW_draw 2000ms ease 1957ms forwards;
animation: xovCzfVW_draw 2000ms ease 1957ms forwards; }
#moomin-back2.animated .xovCzfVW_78 {
stroke-dasharray: 27 29;
stroke-dashoffset: 28;
-webkit-animation: xovCzfVW_draw 2000ms ease 1983ms forwards;
animation: xovCzfVW_draw 2000ms ease 1983ms forwards; }
#moomin-back2.animated .xovCzfVW_79 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 2008ms forwards;
animation: xovCzfVW_draw 2000ms ease 2008ms forwards; }
#moomin-back2.animated .xovCzfVW_80 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 2033ms forwards;
animation: xovCzfVW_draw 2000ms ease 2033ms forwards; }
#moomin-back2.animated .xovCzfVW_81 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 2059ms forwards;
animation: xovCzfVW_draw 2000ms ease 2059ms forwards; }
#moomin-back2.animated .xovCzfVW_82 {
stroke-dasharray: 27 29;
stroke-dashoffset: 28;
-webkit-animation: xovCzfVW_draw 2000ms ease 2084ms forwards;
animation: xovCzfVW_draw 2000ms ease 2084ms forwards; }
#moomin-back2.animated .xovCzfVW_83 {
stroke-dasharray: 26 28;
stroke-dashoffset: 27;
-webkit-animation: xovCzfVW_draw 2000ms ease 2110ms forwards;
animation: xovCzfVW_draw 2000ms ease 2110ms forwards; }
#moomin-back2.animated .xovCzfVW_84 {
stroke-dasharray: 19 21;
stroke-dashoffset: 20;
-webkit-animation: xovCzfVW_draw 2000ms ease 2135ms forwards;
animation: xovCzfVW_draw 2000ms ease 2135ms forwards; }
#moomin-back2.animated .xovCzfVW_85 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 2161ms forwards;
animation: xovCzfVW_draw 2000ms ease 2161ms forwards; }
#moomin-back2.animated .xovCzfVW_86 {
stroke-dasharray: 13 15;
stroke-dashoffset: 14;
-webkit-animation: xovCzfVW_draw 2000ms ease 2186ms forwards;
animation: xovCzfVW_draw 2000ms ease 2186ms forwards; }
#moomin-back2.animated .xovCzfVW_87 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 2211ms forwards;
animation: xovCzfVW_draw 2000ms ease 2211ms forwards; }
#moomin-back2.animated .xovCzfVW_88 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 2237ms forwards;
animation: xovCzfVW_draw 2000ms ease 2237ms forwards; }
#moomin-back2.animated .xovCzfVW_89 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 2262ms forwards;
animation: xovCzfVW_draw 2000ms ease 2262ms forwards; }
#moomin-back2.animated .xovCzfVW_90 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 2288ms forwards;
animation: xovCzfVW_draw 2000ms ease 2288ms forwards; }
#moomin-back2.animated .xovCzfVW_91 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 2313ms forwards;
animation: xovCzfVW_draw 2000ms ease 2313ms forwards; }
#moomin-back2.animated .xovCzfVW_92 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 2338ms forwards;
animation: xovCzfVW_draw 2000ms ease 2338ms forwards; }
#moomin-back2.animated .xovCzfVW_93 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 2364ms forwards;
animation: xovCzfVW_draw 2000ms ease 2364ms forwards; }
#moomin-back2.animated .xovCzfVW_94 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 2389ms forwards;
animation: xovCzfVW_draw 2000ms ease 2389ms forwards; }
#moomin-back2.animated .xovCzfVW_95 {
stroke-dasharray: 11 13;
stroke-dashoffset: 12;
-webkit-animation: xovCzfVW_draw 2000ms ease 2415ms forwards;
animation: xovCzfVW_draw 2000ms ease 2415ms forwards; }
#moomin-back2.animated .xovCzfVW_96 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: xovCzfVW_draw 2000ms ease 2440ms forwards;
animation: xovCzfVW_draw 2000ms ease 2440ms forwards; }
#moomin-back2.animated .xovCzfVW_97 {
stroke-dasharray: 8 10;
stroke-dashoffset: 9;
-webkit-animation: xovCzfVW_draw 2000ms ease 2466ms forwards;
animation: xovCzfVW_draw 2000ms ease 2466ms forwards; }
#moomin-back2.animated .xovCzfVW_98 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 2491ms forwards;
animation: xovCzfVW_draw 2000ms ease 2491ms forwards; }
#moomin-back2.animated .xovCzfVW_99 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 2516ms forwards;
animation: xovCzfVW_draw 2000ms ease 2516ms forwards; }
#moomin-back2.animated .xovCzfVW_100 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 2542ms forwards;
animation: xovCzfVW_draw 2000ms ease 2542ms forwards; }
#moomin-back2.animated .xovCzfVW_101 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 2567ms forwards;
animation: xovCzfVW_draw 2000ms ease 2567ms forwards; }
#moomin-back2.animated .xovCzfVW_102 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 2593ms forwards;
animation: xovCzfVW_draw 2000ms ease 2593ms forwards; }
#moomin-back2.animated .xovCzfVW_103 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 2618ms forwards;
animation: xovCzfVW_draw 2000ms ease 2618ms forwards; }
#moomin-back2.animated .xovCzfVW_104 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: xovCzfVW_draw 2000ms ease 2644ms forwards;
animation: xovCzfVW_draw 2000ms ease 2644ms forwards; }
#moomin-back2.animated .xovCzfVW_105 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 2669ms forwards;
animation: xovCzfVW_draw 2000ms ease 2669ms forwards; }
#moomin-back2.animated .xovCzfVW_106 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: xovCzfVW_draw 2000ms ease 2694ms forwards;
animation: xovCzfVW_draw 2000ms ease 2694ms forwards; }
#moomin-back2.animated .xovCzfVW_107 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 2720ms forwards;
animation: xovCzfVW_draw 2000ms ease 2720ms forwards; }
#moomin-back2.animated .xovCzfVW_108 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 2745ms forwards;
animation: xovCzfVW_draw 2000ms ease 2745ms forwards; }
#moomin-back2.animated .xovCzfVW_109 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: xovCzfVW_draw 2000ms ease 2771ms forwards;
animation: xovCzfVW_draw 2000ms ease 2771ms forwards; }
#moomin-back2.animated .xovCzfVW_110 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 2796ms forwards;
animation: xovCzfVW_draw 2000ms ease 2796ms forwards; }
#moomin-back2.animated .xovCzfVW_111 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 2822ms forwards;
animation: xovCzfVW_draw 2000ms ease 2822ms forwards; }
#moomin-back2.animated .xovCzfVW_112 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: xovCzfVW_draw 2000ms ease 2847ms forwards;
animation: xovCzfVW_draw 2000ms ease 2847ms forwards; }
#moomin-back2.animated .xovCzfVW_113 {
stroke-dasharray: 10 12;
stroke-dashoffset: 11;
-webkit-animation: xovCzfVW_draw 2000ms ease 2872ms forwards;
animation: xovCzfVW_draw 2000ms ease 2872ms forwards; }
#moomin-back2.animated .xovCzfVW_114 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: xovCzfVW_draw 2000ms ease 2898ms forwards;
animation: xovCzfVW_draw 2000ms ease 2898ms forwards; }
#moomin-back2.animated .xovCzfVW_115 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: xovCzfVW_draw 2000ms ease 2923ms forwards;
animation: xovCzfVW_draw 2000ms ease 2923ms forwards; }
#moomin-back2.animated .xovCzfVW_116 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: xovCzfVW_draw 2000ms ease 2949ms forwards;
animation: xovCzfVW_draw 2000ms ease 2949ms forwards; }
#moomin-back2.animated .xovCzfVW_117 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: xovCzfVW_draw 2000ms ease 2974ms forwards;
animation: xovCzfVW_draw 2000ms ease 2974ms forwards; }
#moomin-back2.animated .xovCzfVW_118 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: xovCzfVW_draw 2000ms ease 3000ms forwards;
animation: xovCzfVW_draw 2000ms ease 3000ms forwards; }
@-webkit-keyframes xovCzfVW_draw {
100% {
stroke-dashoffset: 0; } }
@keyframes xovCzfVW_draw {
100% {
stroke-dashoffset: 0; } }
@-webkit-keyframes xovCzfVW_fade {
0% {
stroke-opacity: 1; }
95.65217391304348% {
stroke-opacity: 1; }
100% {
stroke-opacity: 0; } }
@keyframes xovCzfVW_fade {
0% {
stroke-opacity: 1; }
95.65217391304348% {
stroke-opacity: 1; }
100% {
stroke-opacity: 0; } }
#moomin-back3.animated {
opacity: 1; }
#moomin-back3.animated .yqRAnAVz_0 {
stroke-dasharray: 14 16;
stroke-dashoffset: 15;
-webkit-animation: yqRAnAVz_draw 2000ms ease 0ms forwards;
animation: yqRAnAVz_draw 2000ms ease 0ms forwards; }
#moomin-back3.animated .yqRAnAVz_1 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: yqRAnAVz_draw 2000ms ease 10ms forwards;
animation: yqRAnAVz_draw 2000ms ease 10ms forwards; }
#moomin-back3.animated .yqRAnAVz_2 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: yqRAnAVz_draw 2000ms ease 21ms forwards;
animation: yqRAnAVz_draw 2000ms ease 21ms forwards; }
#moomin-back3.animated .yqRAnAVz_3 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: yqRAnAVz_draw 2000ms ease 32ms forwards;
animation: yqRAnAVz_draw 2000ms ease 32ms forwards; }
#moomin-back3.animated .yqRAnAVz_4 {
stroke-dasharray: 9 11;
stroke-dashoffset: 10;
-webkit-animation: yqRAnAVz_draw 2000ms ease 43ms forwards;
animation: yqRAnAVz_draw 2000ms ease 43ms forwards; }
#moomin-back3.animated .yqRAnAVz_5 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: yqRAnAVz_draw 2000ms ease 54ms forwards;
animation: yqRAnAVz_draw 2000ms ease 54ms forwards; }
#moomin-back3.animated .yqRAnAVz_6 {
stroke-dasharray: 7 9;
stroke-dashoffset: 8;
-webkit-animation: yqRAnAVz_draw 2000ms ease 65ms forwards;
animation: yqRAnAVz_draw 2000ms ease 65ms forwards; }
#moomin-back3.animated .yqRAnAVz_7 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 76ms forwards;
animation: yqRAnAVz_draw 2000ms ease 76ms forwards; }
#moomin-back3.animated .yqRAnAVz_8 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: yqRAnAVz_draw 2000ms ease 87ms forwards;
animation: yqRAnAVz_draw 2000ms ease 87ms forwards; }
#moomin-back3.animated .yqRAnAVz_9 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: yqRAnAVz_draw 2000ms ease 98ms forwards;
animation: yqRAnAVz_draw 2000ms ease 98ms forwards; }
#moomin-back3.animated .yqRAnAVz_10 {
stroke-dasharray: 12 14;
stroke-dashoffset: 13;
-webkit-animation: yqRAnAVz_draw 2000ms ease 109ms forwards;
animation: yqRAnAVz_draw 2000ms ease 109ms forwards; }
#moomin-back3.animated .yqRAnAVz_11 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 120ms forwards;
animation: yqRAnAVz_draw 2000ms ease 120ms forwards; }
#moomin-back3.animated .yqRAnAVz_12 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: yqRAnAVz_draw 2000ms ease 131ms forwards;
animation: yqRAnAVz_draw 2000ms ease 131ms forwards; }
#moomin-back3.animated .yqRAnAVz_13 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 142ms forwards;
animation: yqRAnAVz_draw 2000ms ease 142ms forwards; }
#moomin-back3.animated .yqRAnAVz_14 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 153ms forwards;
animation: yqRAnAVz_draw 2000ms ease 153ms forwards; }
#moomin-back3.animated .yqRAnAVz_15 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: yqRAnAVz_draw 2000ms ease 164ms forwards;
animation: yqRAnAVz_draw 2000ms ease 164ms forwards; }
#moomin-back3.animated .yqRAnAVz_16 {
stroke-dasharray: 16 18;
stroke-dashoffset: 17;
-webkit-animation: yqRAnAVz_draw 2000ms ease 175ms forwards;
animation: yqRAnAVz_draw 2000ms ease 175ms forwards; }
#moomin-back3.animated .yqRAnAVz_17 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: yqRAnAVz_draw 2000ms ease 186ms forwards;
animation: yqRAnAVz_draw 2000ms ease 186ms forwards; }
#moomin-back3.animated .yqRAnAVz_18 {
stroke-dasharray: 17 19;
stroke-dashoffset: 18;
-webkit-animation: yqRAnAVz_draw 2000ms ease 197ms forwards;
animation: yqRAnAVz_draw 2000ms ease 197ms forwards; }
#moomin-back3.animated .yqRAnAVz_19 {
stroke-dasharray: 3 5;
stroke-dashoffset: 4;
-webkit-animation: yqRAnAVz_draw 2000ms ease 208ms forwards;
animation: yqRAnAVz_draw 2000ms ease 208ms forwards; }
#moomin-back3.animated .yqRAnAVz_20 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: yqRAnAVz_draw 2000ms ease 219ms forwards;
animation: yqRAnAVz_draw 2000ms ease 219ms forwards; }
#moomin-back3.animated .yqRAnAVz_21 {
stroke-dasharray: 5 7;
stroke-dashoffset: 6;
-webkit-animation: yqRAnAVz_draw 2000ms ease 230ms forwards;
animation: yqRAnAVz_draw 2000ms ease 230ms forwards; }
#moomin-back3.animated .yqRAnAVz_22 {
stroke-dasharray: 6 8;
stroke-dashoffset: 7;
-webkit-animation: yqRAnAVz_draw 2000ms ease 241ms forwards;
animation: yqRAnAVz_draw 2000ms ease 241ms forwards; }
#moomin-back3.animated .yqRAnAVz_23 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: yqRAnAVz_draw 2000ms ease 252ms forwards;
animation: yqRAnAVz_draw 2000ms ease 252ms forwards; }
#moomin-back3.animated .yqRAnAVz_24 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;
-webkit-animation: yqRAnAVz_draw 2000ms ease 263ms forwards;
animation: yqRAnAVz_draw 2000ms ease 263ms forwards; }
#moomin-back3.animated .yqRAnAVz_25 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 274ms forwards;
animation: yqRAnAVz_draw 2000ms ease 274ms forwards; }
#moomin-back3.animated .yqRAnAVz_26 {
stroke-dasharray: 1 3;
stroke-dashoffset: 2;
-webkit-animation: yqRAnAVz_draw 2000ms ease 285ms forwards;
animation: yqRAnAVz_draw 2000ms ease 285ms forwards; }
#moomin-back3.animated .yqRAnAVz_27 {
stroke-dasharray: 2 4;
stroke-dashoffset: 3;
-webkit-animation: yqRAnAVz_draw 2000ms ease 296ms forwards;
animation: yqRAnAVz_draw 2000ms ease 296ms forwards; }
#moomin-back3.animated .yqRAnAVz_28 {
stroke-dasharray: 4 6;
stroke-dashoffset: 5;