-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3131 lines (2919 loc) · 661 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 lang="en">
<head>
<script type='text/javascript' >window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam-cell.nr-data.net","errorBeacon":"bam-cell.nr-data.net","licenseKey":"7281713b69","applicationID":"73254904","applicationTime":77.196762,"transactionName":"blVRN0RYDBFQUUUIVlcfdhtGSwcRQlhCTn58ZBxMV0sWC1JeVBIWExwcUxsTTk1QX0FOWEtEWgBaXBFNGw==","queueTime":0,"ttGuid":"5127fb9343493807","agentToken":null}; (window.NREUM||(NREUM={})).loader_config={xpid:"UwAHVVVADwACUVVbBwU=",licenseKey:"7281713b69",applicationID:"73254904"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var i=e[n]={exports:{}};t[n][0].call(i.exports,function(e){var i=t[n][1][e];return r(i||e)},i,i.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var i=0;i<n.length;i++)r(n[i]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var i,o=t("ee"),a=t(23),c={};try{i=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,i.indexOf("dev")!==-1&&(c.dev=!0),i.indexOf("nr_dev")!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&o.on("internal-error",function(t){r(t.stack)}),c.dev&&o.on("fn-err",function(t,e,n){r(n.stack)}),c.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(c,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{p?p-=1:i(c||new UncaughtException(t,e,n),!0)}catch(f){try{o("ierr",[f,s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function i(t,e){var n=e?null:s.now();o("err",[t,n])}var o=t("handle"),a=t(24),c=t("ee"),s=t("loader"),f=t("gos"),u=window.onerror,d=!1,l="nr@seenError",p=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(9),t(8),"addEventListener"in window&&t(5),s.xhrWrappable&&t(10),d=!0)}c.on("fn-start",function(t,e,n){d&&(p+=1)}),c.on("fn-err",function(t,e,n){d&&!n[l]&&(f(n,l,function(){return!0}),this.thrown=!0,i(n))}),c.on("fn-end",function(){d&&!this.thrown&&p>0&&(p-=1)}),c.on("internal-error",function(t){o("ierr",[t,s.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var i=t("ee"),o=t("handle"),a=t(9),c=t(8),s="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",g="pushState",y=t("loader");y.features.stn=!0,t(7),"addEventListener"in window&&t(5);var x=NREUM.o.EV;i.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bstStart=y.now())}),i.on(w,function(t,e){var n=t[0];n instanceof x&&o("bst",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(w,function(t,e){o(v,[e,this.bstStart,y.now(),this.bstType])}),c.on(m,function(){this.bstStart=y.now()}),c.on(w,function(t,e){o(v,[e,this.bstStart,y.now(),"requestAnimationFrame"])}),i.on(g+p,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),i.on(g+h,function(t){o("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u,function(t){o(d,[window.performance.getEntriesByType(l)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u,function(t){o(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&i(e)}function i(t){c.inPlace(t,[u,d],"-",o)}function o(t,e){return t[1]}var a=t("ee").get("events"),c=t("wrap-function")(a,!0),s=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(i(window),i(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?c(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=o(arguments),e={};i.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return i.emit(n+"start",[t,a],c),c.then(function(t){return i.emit(n+"end",[null,t],c),t},function(t){throw i.emit(n+"end",[t],c),t})})}var i=t("ee").get("fetch"),o=t(24),a=t(23);e.exports=i;var c=window,s="fetch-",f=s+"body-",u=["arrayBuffer","blob","json","text","formData"],d=c.Request,l=c.Response,p=c.fetch,h="prototype",m="nr@context";d&&l&&p&&(a(u,function(t,e){r(d[h],e,f),r(l[h],e,f)}),r(c,"fetch",s),i.on(s+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),i.emit(s+"done",[null,e],n)}else i.emit(s+"done",[t],n)}))},{}],7:[function(t,e,n){var r=t("ee").get("history"),i=t("wrap-function")(r);e.exports=r;var o=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;o&&o.pushState&&o.replaceState&&(a=o),i.inPlace(a,["pushState","replaceState"],"-")},{}],8:[function(t,e,n){var r=t("ee").get("raf"),i=t("wrap-function")(r),o="equestAnimationFrame";e.exports=r,i.inPlace(window,["r"+o,"mozR"+o,"webkitR"+o,"msR"+o],"raf-"),r.on("raf-start",function(t){t[0]=i(t[0],"fn-")})},{}],9:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function i(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var o=t("ee").get("timer"),a=t("wrap-function")(o),c="setTimeout",s="setInterval",f="clearTimeout",u="-start",d="-";e.exports=o,a.inPlace(window,[c,"setImmediate"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,"clearImmediate"],f+d),o.on(s+u,r),o.on(c+u,i)},{}],10:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",c)}function i(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,g,"fn-",c)}function o(t){y.push(t),h&&(b?b.then(a):w?w(a):(E=-E,R.data=E))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(5);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports=u;var x=window.XMLHttpRequest=function(t){var e=new p(t);try{u.emit("new-xhr",[e],e),e.addEventListener(v,i,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(s(p,x),x.prototype=p.prototype,d.inPlace(x.prototype,["open","send"],"-xhr-",c),u.on("send-xhr-start",function(t,e){r(t,e),o(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!w&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===v||a()})},{}],11:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=p.generateSpanId(),m=p.generateTraceId(),w=Date.now(),v={spanId:h,traceId:m,timestamp:w};return(t.sameOrigin||s(t)&&l())&&(v.traceContextParentHeader=i(h,m),v.traceContextStateHeader=o(h,w,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&s(t)&&d())&&(v.newrelicHeader=a(h,m,w,n,r,f)),v}function i(t,e){return"00-"+e+"-"+t+"-01"}function o(t,e,n,r,i){var o=0,a="",c=1,s="",f="";return i+"@nr="+o+"-"+c+"-"+n+"-"+r+"-"+t+"-"+a+"-"+s+"-"+f+"-"+e}function a(t,e,n,r,i,o){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:"Browser",ac:r,ap:i,id:t,tr:e,ti:n}};return o&&r!==o&&(c.d.tk=o),btoa(JSON.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var i=h(n.allowed_origins[r]);if(t.hostname===i.hostname&&t.protocol===i.protocol&&t.port===i.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function l(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var p=t(20),h=t(13);e.exports={generateTracePayload:r,shouldGenerateTrace:c}},{}],12:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<l;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):o(this,t),n.cbTime=this.cbTime,u.emit("xhr-done",[t],t),c("xhr",[e,n,this.startTime]))}}function i(t,e){var n=s(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=s(e),t.sameOrigin=t.parsedOrigin.sameOrigin}function o(t,e){t.params.status=e.status;var n=w(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable){var c=t("handle"),s=t(13),f=t(11).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],l=d.length,p=t("id"),h=t(17),m=t(16),w=t(14),v=window.XMLHttpRequest;a.features.xhr=!0,t(10),t(6),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener("load",function(n){o(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),u.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],i=this;if(n&&r){var o=m(r);o&&(n.txSize=o)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||i.loadCaptureCalled||(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof e.onload))&&i.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var c=0;c<l;c++)e.addEventListener(d[c],this.listener,!1)}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("addEventListener-end",function(t,e){e instanceof v&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof v&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof v&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=s(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var i=f(this.parsedOrigin);if(i&&(i.newrelicHeader||i.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),e(o.headers,i)&&(this.dt=i),t.length>1?t[1]=o:t.push(o)}else t[0]&&t[0].headers&&e(t[0].headers,i)&&(this.dt=i)})}},{}],13:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement("a"),n=window.location,i={};e.href=t,i.port=e.port;var o=e.href.split("://");!i.port&&o[1]&&(i.port=o[1].split("/")[0].split("@").pop().split(":")[1]),i.port&&"0"!==i.port||(i.port="https"===o[0]?"443":"80"),i.hostname=e.hostname||n.hostname,i.pathname=e.pathname,i.protocol=o[0],"/"!==i.pathname.charAt(0)&&(i.pathname="/"+i.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return i.sameOrigin=a&&(!e.hostname||c),"/"===i.pathname&&(r[t]=i),i}},{}],14:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?i(t.response):"text"===n||""===n||void 0===n?i(t.responseText):void 0}var i=t(16);e.exports=r},{}],15:[function(t,e,n){function r(){}function i(t,e,n){return function(){return o(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var o=t("handle"),a=t(23),c=t(24),s=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,e){u[e]=i(l+e,!0,"api")}),u.addPageAction=i(l+"addPageAction",!0),u.setCurrentRouteName=i(l+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,i="function"==typeof e;return o(p+"tracer",[f.now(),t,n],r),function(){if(s.emit((i?"":"no-")+"fn-start",[f.now(),r,i],n),i)try{return e.apply(this,arguments)}catch(t){throw s.emit("fn-err",[arguments,this,t],n),t}finally{s.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){h[e]=i(p+e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),o("err",[t,f.now(),!1,e])}},{}],16:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],17:[function(t,e,n){var r=0,i=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);i&&(r=+i[1]),e.exports=r},{}],18:[function(t,e,n){function r(){return c.exists&&performance.now?Math.round(performance.now()):(o=Math.max((new Date).getTime(),o))-a}function i(){return o}var o=(new Date).getTime(),a=o,c=t(25);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=i},{}],19:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?d("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&d("timing",["fcp",Math.floor(t.startTime)])})}function i(t,e){var n=t.getEntries();n.length>0&&d("lcp",[n[n.length-1]])}function o(t){t.getEntries().forEach(function(t){t.hadRecentInput||d("cls",[t])})}function a(t){if(t instanceof h&&!w){var e=Math.round(t.timeStamp),n={type:t.type};e<=l.now()?n.fid=l.now()-e:e>l.offset&&e<=Date.now()?(e-=l.offset,n.fid=l.now()-e):e=l.now(),w=!0,d("timing",["fi",e,n])}}function c(t){d("pageHide",[l.now(),t])}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var s,f,u,d=t("handle"),l=t("loader"),p=t(22),h=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){s=new PerformanceObserver(r);try{s.observe({entryTypes:["paint"]})}catch(m){}f=new PerformanceObserver(i);try{f.observe({entryTypes:["largest-contentful-paint"]})}catch(m){}u=new PerformanceObserver(o);try{u.observe({type:"layout-shift",buffered:!0})}catch(m){}}if("addEventListener"in document){var w=!1,v=["click","keydown","mousedown","pointerdown","touchstart"];v.forEach(function(t){document.addEventListener(t,a,!1)})}p(c)}},{}],20:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var i,o="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",c=0;c<o.length;c++)i=o[c],"x"===i?a+=t().toString(16):"y"===i?(i=3&t()|8,a+=i.toString(16)):a+=i;return a}function i(){return a(16)}function o(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,i=window.crypto||window.msCrypto;i&&i.getRandomValues&&Uint8Array&&(n=i.getRandomValues(new Uint8Array(31)));for(var o=[],a=0;a<t;a++)o.push(e().toString(16));return o.join("")}e.exports={generateUuid:r,generateSpanId:i,generateTraceId:o}},{}],21:[function(t,e,n){function r(t,e){if(!i)return!1;if(t!==i)return!1;if(!e)return!0;if(!o)return!1;for(var n=o.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var i=null,o=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var c=navigator.userAgent,s=c.match(a);s&&c.indexOf("Chrome")===-1&&c.indexOf("Chromium")===-1&&(i="Safari",o=s[1])}e.exports={agent:i,version:o,match:r}},{}],22:[function(t,e,n){function r(t){function e(){t(a&&document[a]?document[a]:document[i]?"hidden":"visible")}"addEventListener"in document&&o&&document.addEventListener(o,e,!1)}e.exports=r;var i,o,a;"undefined"!=typeof document.hidden?(i="hidden",o="visibilitychange",a="visibilityState"):"undefined"!=typeof document.msHidden?(i="msHidden",o="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(i="webkitHidden",o="webkitvisibilitychange",a="webkitVisibilityState")},{}],23:[function(t,e,n){function r(t,e){var n=[],r="",o=0;for(r in t)i.call(t,r)&&(n[o]=e(r,t[r]),o+=1);return n}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],24:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,i=n-e||0,o=Array(i<0?0:i);++r<i;)o[r]=t[e+r];return o}e.exports=r},{}],25:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function i(t){function e(t){return t&&t instanceof r?t:t?f(t,s,a):a()}function n(n,r,i,o,a){if(a!==!1&&(a=!0),!p.aborted||o){t&&a&&t(n,r,i);for(var c=e(i),s=m(n),f=s.length,u=0;u<f;u++)s[u].apply(c,r);var l=d[y[n]];return l&&l.push([x,n,r,c]),c}}function o(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function w(t){return l[t]=l[t]||i(n)}function v(t,e){u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:o,addEventListener:o,removeEventListener:h,emit:n,get:w,listeners:m,context:e,buffer:v,abort:c,aborted:!1};return x}function o(t){return f(t,s,a)}function a(){return new r}function c(){(d.api||d.feature)&&(p.aborted=!0,d=p.backlog={})}var s="nr@context",f=t("gos"),u=t(23),d={},l={},p=e.exports=i();e.exports.getOrSetContext=o,p.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(i.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(o){}return t[e]=r,r}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){i.buffer([t],r),i.emit(t,e,n)}var i=t("ee").get("handle");e.exports=r,r.ee=i},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,o,function(){return i++})}var i=1,o="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!b++){var t=x.info=NREUM.info,e=l.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();s(g,function(e,n){t[e]||(t[e]=n)});var n=a();c("mark",["onload",n+x.offset],null,"api"),c("timing",["load",n]);var r=l.createElement("script");r.src="https://"+t.agent,e.parentNode.insertBefore(r,e)}}function i(){"complete"===l.readyState&&o()}function o(){c("mark",["domContent",a()+x.offset],null,"api")}var a=t(18),c=t("handle"),s=t(23),f=t("ee"),u=t(21),d=window,l=d.document,p="addEventListener",h="attachEvent",m=d.XMLHttpRequest,w=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var v=""+location,g={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1194.min.js"},y=m&&w&&w[p]&&!/CriOS/.test(navigator.userAgent),x=e.exports={offset:a.getLastTimestamp(),now:a,origin:v,features:{},xhrWrappable:y,userAgent:u};t(15),t(19),l[p]?(l[p]("DOMContentLoaded",o,!1),d[p]("load",r,!1)):(l[h]("onreadystatechange",i),d[h]("onload",r)),c("mark",["firstbyte",a.getLastTimestamp()],null,"api");var b=0},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,s,f){function nrWrapper(){var o,a,u,l;try{a=this,o=d(arguments),u="function"==typeof r?r(o,a):r||{}}catch(p){i([p,"",[o,a,s],u],t)}c(n+"start",[o,a,s],u,f);try{return l=e.apply(a,o)}catch(h){throw c(n+"err",[o,a,h],u,f),h}finally{c(n+"end",[o,a,l],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[l]=e,o(e,nrWrapper,t),nrWrapper)}function r(t,e,r,i,o){r||(r="");var c,s,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)s=e[f],c=t[s],a(c)||(t[s]=n(c,u?s+r:r,i,s,o))}function c(n,r,o,a){if(!h||e){var c=h;h=!0;try{t.emit(n,r,o,e,a)}catch(s){i([s,n,r,o],t)}h=c}}return t||(t=u),n.inPlace=r,n.flag=l,n}function i(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function o(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(o){i([o],n)}for(var a in t)p.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[l])}function c(t,e){var n=e(t);return n[l]=t,o(t,n,u),n}function s(t,e,n){var r=t[e];t[e]=c(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(24),l="nr@original",p=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=c,e.exports.wrapInPlace=s,e.exports.argsToArray=f},{}]},{},["loader",2,12,4,3]);</script>
<script type="text/javascript">
(function (window) {
var performance = window.performance || {};
if (!performance.mark) {
// no mark so just create a dummy function and return
performance.mark = function(){};
window.performance = performance;
return;
};
var sendToNewRelic = function (name, timing) {
if (typeof newrelic !== 'object') return;
var start = Math.round(performance.timing.navigationStart + timing, 0);
var traceData = {
name: name,
start: start,
};
// console.log(traceData);
window.newrelic.addToTrace(traceData);
window.newrelic.setCustomAttribute(name, timing / 1000);
};
var marks = performance.getEntriesByType('mark');
for (var i = 0; i < marks.length; i++) {
sendToNewRelic(marks[i].name, marks[i].startTime);
};
var originalMark = performance.mark;
performance.mark = function () {
var args = [].slice.call(arguments, 0);
if (args.length > 0 && window.newrelic) {
sendToNewRelic(args[0], Date.now() - performance.timing.navigationStart);
}
if (!originalMark) {
return;
}
return originalMark.apply(this, args);
};
window.performance = performance;
})(window);
</script> <title>It's mbg Action Week: Make Your Voice Heard This Election Day</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<meta name="description" content="Check out our daily guide to voting to find out how you can make a voting action plan that sticks.">
<meta name="keywords" content="partner, tea">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.mindbodygreen.com/img/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.mindbodygreen.com/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.mindbodygreen.com/img/icons/favicon-16x16.png">
<link rel="shortcut icon" href="https://www.mindbodygreen.com/favicon.ico"/>
<link rel="manifest" href="/site.webmanifest">
<meta name='original-source' content='https://www.mindbodygreen.com/articles/its-mbg-action-week-make-your-voice-heard-this-election-day'>
<link rel="canonical" href="https://www.mindbodygreen.com/articles/its-mbg-action-week-make-your-voice-heard-this-election-day">
<meta property="og:title" content="It's mbg Action Week: Make Your Voice Heard This Election Day"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="https://mindbodygreen-res.cloudinary.com/image/upload/c_crop,x_175,y_0,w_1513,h_850/c_fill,w_720,h_378,g_auto,q_85,fl_lossy,f_jpg/org/j761dbfatkgmg6w6p.jpg"/>
<meta property="og:site_name" content="mindbodygreen"/>
<meta property="og:description" content="Check out our daily guide to voting below to find out how you can make a voting action plan that sticks." />
<meta property="og:url" content="https://www.mindbodygreen.com/articles/its-mbg-action-week-make-your-voice-heard-this-election-day"/>
<meta property="article:publisher" content="https://www.facebook.com/mindbodygreen" />
<meta property="article:published_time" content="2020-10-26T07:00:00.000Z" />
<meta property="article:modified_time" content="2020-10-26T19:40:24.984Z" />
<meta property="article:author" content="https://www.facebook.com/yogiproducts" />
<meta property="article:tag" content="partner, tea" />
<meta property="fb:app_id" name="fb:app_id" content="6518106427"/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://mindbodygreen-res.cloudinary.com/image/upload/c_crop,x_0,y_0,w_1800,h_850/c_fill,w_800,h_400,g_auto,q_85,fl_lossy,f_jpg/org/j761dbfatkgmg6w6p.jpg">
<meta name="twitter:description" content="Check out our daily guide to voting below to find out how you can make a voting action plan that sticks." />
<meta name="twitter:url" content="https://www.mindbodygreen.com/articles/its-mbg-action-week-make-your-voice-heard-this-election-day"/>
<meta name="twitter:title" content="It's mbg Action Week: Make Your Voice Heard This Election Day"/>
<meta name="twitter:site" content="@mindbodygreen" />
<meta name="twitter:creator" content="@YogiProducts" />
<meta name="mbg.host" content="https://www.mindbodygreen.com" />
<meta name="mbg.device" content="desktop" />
<meta name="mbg.preview" content="" />
<meta name="mbg.page" content="article" />
<meta name="mbg.ads.pageId" content="article-43097" />
<meta name="mbg.ads.tags" content='["partner","tea","health","movement","routines"]' />
<meta name="mbg.ads.restrictedKeyword" content='false' />
<meta name="mbg.ads.blockHeaderBidding" content="true" />
<meta name="mbg.ads.blockThirdParty" content="false" />
<meta name="mbg.ads.btuser" content="false" />
<meta name="mbg.article_id" content="43097" />
<meta name="mbg.partnerId" content="450" />
<meta name="mbg.nsfw" content="false" />
<meta name="mbg.videoPlayer" content="false" />
<meta name="mbg.search" content="false" />
<meta name="mbg.adscroll" content="1200" />
<meta name="mbg.blockEmailModals" content="false" />
<meta name="mbg.lazyNav" content="true" />
<meta name="mbg.sentry.release" content="7f6bd24d39783546053d011ee200ef47d74c31d0" />
<meta name="mbg.sentry.environment" content="production" />
<meta name="google-site-verification" content="SSvW1S_sIGxpdC1dTXDLT_27jEbdLFMVwT6_QklD4U0" />
<meta name="msvalidate.01" content="292034771F5258E33D59A305487234B7" />
<meta name="mbg.lgi" content="false" />
<link rel="dns-prefetch" href="https://res.mindbodygreen.com" />
<link rel="dns-prefetch" href="https://mindbodygreen-res.cloudinary.com" />
<link rel="dns-prefetch" href="https://sb.scorecardresearch.com" />
<link rel="dns-prefetch" href="https://connect.facebook.net" />
<link rel="dns-prefetch" href="https://cdn.segment.com" />
<link rel="dns-prefetch" href="https://www.googletagservices.com" />
<link rel="dns-prefetch" href="https://www.google-analytics.com" />
<link rel="dns-prefetch" href="https://static.chartbeat.com" />
<link rel="dns-prefetch" href="https://htl.bid" />
<link rel="dns-prefetch" href="https://d2vxvnufz8f5c5.cloudfront.net" />
<link rel="dns-prefetch" href="https://cdn.optimizely.com" />
<link rel="dns-prefetch" href="https://logx.optimizely.com" />
<link rel="dns-prefetch" href="https://www.googletagmanager.com" />
<link rel="preconnect" href="https://res.mindbodygreen.com" crossorigin />
<link rel="preconnect" href="https://mindbodygreen-res.cloudinary.com" crossorigin />
<link rel="preconnect" href="https://sb.scorecardresearch.com" crossorigin />
<link rel="preconnect" href="https://cdn.segment.com" crossorigin />
<link rel="preconnect" href="https://www.googletagservices.com" crossorigin />
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin />
<link rel="preconnect" href="https://static.chartbeat.com" crossorigin />
<link rel="preconnect" href="https://htl.bid" crossorigin />
<link rel="preconnect" href="https://d2vxvnufz8f5c5.cloudfront.net" />
<link rel="preconnect" href="https://cdn.optimizely.com" crossorigin />
<link rel="preconnect" href="https://logx.optimizely.com" crossorigin>
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
<link rel="preload" href="/js/optimizely-3180350449.js" as="script" />
<script type="text/javascript">
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t,e){var n=document.createElement("script");n.type="text/javascript";n.async=true;n.src="https://cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(n,a);analytics._loadOptions=e};
analytics.SNIPPET_VERSION='4.1.0';
analytics.load('0x562SlqISB9oFLcZnMilvKNNqnAWm94');
var _segmentProps = _segmentProps || {};
_segmentProps.device = 'desktop';
// if the page is an article, video, training, or class, we pass additional variables
_segmentProps.object_type = 'article';
_segmentProps.object_id = '43097';
var getParam = function(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
};
window.mbg_justLoggedIn = getParam('mbg_lgie');
window.mbg_justSignedUp = getParam('mbg_sue');
window.mbgUserHash = getParam('mbg_hash');
window.mbgInternalTrackingRef = getParam('itc_content');
window.segmentRefProps = {
page: getParam('mbg_p'),
article: getParam('mbg_a'),
scrollPosition: getParam('mbg_ifs'),
element: getParam('mbg_ref'),
};
analytics.page(_segmentProps);
}}();
</script> <script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>
<script src="//mindbodygreen.refersion.com/tracker/v3/pub_ff8495c9ec635f6d582b.js" defer></script>
<script data-scheme="Organization"
type="application/ld+json">{"@context":"http://schema.org","@type":"Organization","name":"mindbodygreen","url":"https://www.mindbodygreen.com","logo":{"@type" : "ImageObject", "url" : "https://www.mindbodygreen.com/img/nav/mbg_logo_short-square-2x.png", "width" : "800", "height" : "800"},"sameAs":["https://www.facebook.com/mindbodygreen","https://twitter.com/mindbodygreen","https://www.pinterest.com/mindbodygreen/","https://instagram.com/mindbodygreen","https://www.youtube.com/user/mindbodygreen"]}</script>
<script data-scheme="WebSite"
type="application/ld+json">{"@context":"http://schema.org","@type":"WebSite","name":"mindbodygreen","url":"https://www.mindbodygreen.com","image":{"@type" : "ImageObject", "url" : "https://www.mindbodygreen.com/img/nav/mbg_logo_short-square-2x.png", "width" : "800", "height" : "800"},"potentialAction":{"@type":"SearchAction","target":"http://www.mindbodygreen.com/search?q={search_term}","query-input":"required name=search_term"}}</script>
<!-- replace:css -->
<link href='https://www.mindbodygreen.com/css/main.7f6bd24d39783546053d011ee200ef47d74c31d0.css' rel='stylesheet' id="cssbundle" type='text/css' media="none"
onload="if (media === 'none') {media='all';window.performance.mark('cssLoaded');}" /><!-- replace:end -->
<style id="fastcss">
@charset "UTF-8";.has-transition{-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}@font-face{font-family:Maax-Regular;src:url(https://www.mindbodygreen.com/fonts/maax-webfont.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Maax-Italic;src:url(https://www.mindbodygreen.com/fonts/maax-italic-webfont.woff) format("woff");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:Maax-Medium;src:url(https://www.mindbodygreen.com/fonts/maax-medium-webfont.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Maax-Medium-Italic;src:url(https://www.mindbodygreen.com/fonts/maax-mediumitalic-webfont.woff) format("woff");font-weight:500;font-style:italic;font-display:swap}@font-face{font-family:Abril-Fatface-Regular;src:url(https://www.mindbodygreen.com/fonts/abrilfatface-regular-webfont.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Monoline-Regular;src:url(https://www.mindbodygreen.com/fonts/monoline-regular.otf) format("opentype");font-weight:400;font-style:normal;font-display:swap}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */body{margin:0;height:100%;width:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:none}legend{border:0;padding:0}textarea{overflow:auto}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}.box,blockquote,caption,dd,dl,fieldset,form,h1,h2,h3,h4,h5,h6,hr,legend,ol,p,pre,table,td,th,ul{margin:0;padding:0}ul{list-style-type:none}abbr[title],dfn[title]{cursor:help}ins,u{text-decoration:none}button,label,option,select{cursor:pointer}input[type=text],textarea:active,textarea:focus{cursor:text;outline:0}html{font:1.125em/1.5 Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#222;overflow-y:scroll;min-height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}img{max-width:100%;font-style:italic;vertical-align:middle;height:auto}.gm-style img,img[height],img[width]{max-width:none}.page-wrapper{background:#fff;-webkit-backface-visibility:hidden;backface-visibility:hidden;will-change:opacity;position:relative;padding-top:60px;z-index:20}.page-wrapper--native-ad{padding-top:110px}.page-wrapper--blur{-webkit-transition:.15s filter ease-in-out;transition:.15s filter ease-in-out}.page-wrapper--blur-on{-webkit-filter:blur(2px);filter:blur(2px)}.page-wrapper.nav-is-open{visibility:hidden}html{overflow:auto}html.nav-is-open{top:0;left:0;overflow:hidden;position:fixed;right:0}.content-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;background:#fff;max-width:1440px;margin:0 auto;position:relative;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;will-change:opacity}.content-wrapper__ad-home{margin:30px auto;display:none}.main-content,.sidebar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;background-color:#fff;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:100%;z-index:1}.main-content--article{padding-top:25px;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.main-content--article-lightweight:nth-of-type(2){padding-top:0}.main-content--article-astro{padding-top:135px}.main-content--feature-article{padding-top:40px}.main-content--premium{padding-top:0}.sidebar{padding:20px 0}.sidebar--article{display:none}.sidebar--article-lightweight{background-image:none}.sidebar--home{display:none;background:0 0;background-color:#fff;border:1.5px solid #f0f0f0;padding:1rem;margin-top:9px;border-radius:6px 0}@media (min-width:768px){.page-wrapper.nav-is-open{visibility:visible}.page-wrapper--contains-announcement-bar{padding-top:106px}.main-content{width:calc(100% - 320px)}.main-content--home{width:100%}.main-content--article{display:block;padding-top:40px}.main-content--article-lightweight{width:100%}.main-content--article-astro{padding-top:135px}.main-content--feature-article{display:block;width:100%;padding-top:110px}.main-content--fullwidth{width:100%}.main-content--premium{padding-top:0}.main-content--curated-detail{width:100%;display:block}.sidebar{width:320px}.sidebar--article{background-color:#f9f9f9;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.sidebar--article .editorpicks{display:block}.sidebar--article .editorpicks--additional{display:none}.sidebar--article-lightweight{display:none}.sidebar--home{width:332px}}@media (min-width:1024px){.main-content--home{width:calc(100% - 332px);padding-right:20px}.main-content--article-lightweight{width:calc(100% - 320px)}.main-content--article-lightweight .main-content__article-body{position:relative}.sidebar--home{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:13px}.sidebar--home .ad--small .ad__inner{padding:0}.sidebar--article-lightweight{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}html.nav-is-open{overflow:auto;position:relative}.page-wrapper{padding-top:120px}.page-wrapper.nav-is-open{position:relative;-webkit-filter:none;filter:none}.page-wrapper--no-subnav{padding-top:60px}.page-wrapper--contains-announcement-bar{padding-top:166px}}@media (min-width:460px){.content-wrapper__ad-home{display:block}}@media print and (min-width:460px){.page-wrapper{padding:80px 0!important}.content-wrapper--article{display:none!important}.content-wrapper--article.print{display:block!important;page-break-after:avoid}.content-wrapper--article .main-content--article{width:100%!important;padding-top:0!important}.content-wrapper--article .main-content--article *{page-break-inside:avoid!important}.sidebar{display:none!important}.article-text{padding:20px!important}}.noscroll{overflow:hidden}body{font-family:Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:18px;color:#222}a{text-decoration:none;color:inherit}h1,h2,h3,h4,h5,h6{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500}.small{font-size:12px;line-height:16px}.small-medium{font-size:15px;line-height:15px}.medium{font-size:16px;line-height:16px}.medium-large{font-size:23px;line-height:29px}.large{font-size:30px;line-height:36px}.huge{font-size:40px;line-height:50px}.f-base{font-family:Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif}.f-heading{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif}.f-special{font-family:Abril-Fatface-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif}b,strong{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500}em,i{font-family:Maax-Italic,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400}em strong,i strong,strong em,strong i{font-family:Maax-Medium-Italic,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;font-style:italic}u{text-decoration:underline}h1 em,h1 i,h2 em,h2 i,h3 em,h3 i,h4 em,h4 i,h5 em,h5 i,h6 em,h6 i{font-family:Maax-Medium-Italic,"Helvetica Neue",Helvetica,Arial,sans-serif}.resizer{position:relative;z-index:100}@media (min-width:768px){.resizer{z-index:200}}@media (min-width:1024px){.resizer{z-index:300}}.is-lazy{opacity:0;-webkit-transition:opacity .5s ease;transition:opacity .5s ease}.is-lazy.lazyloaded{opacity:1}.fill-space{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;font-family:"object-fit: cover"}.ad-container{width:100%;position:relative;z-index:100}.ad{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:1;background:#fff;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:all;max-height:9999px;-webkit-transition:max-height .5s ease-in-out;transition:max-height .5s ease-in-out;text-align:center;width:100%}.ad-native--rail{width:320px}.ad-native--white{background-color:#fff}.ad-native--no-mobile{display:none}.ad__inner{width:100%;text-align:center}.ad__image{max-width:none;width:100%}.ad--small{display:none}.ad--medium .ad__inner{max-width:970px;margin:40px 0}.ad--inline{margin:40px 0}.ad--breaker{margin:0 0 40px}.ad--mobile-breaker{padding:40px 0}.ad--below-fnp-breaker{margin-top:80px}.ad__dismiss-button{display:none;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;z-index:100000;font-size:12px;cursor:pointer;-webkit-box-shadow:none;box-shadow:none;opacity:0;fill:#999;position:absolute;right:20px;top:7px;height:18px;width:100px;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-transition:all .15s linear;transition:all .15s linear;-webkit-transition:opacity 1s linear;transition:opacity 1s linear}.ad__dismiss-button span{margin-left:10px}.ad__dismiss-button svg{width:15px}.ad__dismiss-button--closing,.ad__dismiss-button--closing:hover,.ad__dismiss-button:hover{fill:#f03b3b;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.ad--nav{display:block}.ad--nav.ad--mobile-leaderboard{display:block}.ad--nav.lock-mode{-webkit-box-shadow:0 2px 7px rgba(145,145,145,.35);box-shadow:0 2px 7px rgba(145,145,145,.35)}.ad.ad-fixed-bottom{position:fixed;bottom:0;left:0;width:100%;z-index:1000}@media print{.ad{display:none!important}}.ad__callout{width:100%;padding:0 20px 8px;text-align:center;font-size:10px;color:#454545;text-transform:uppercase;letter-spacing:2px}@media print{.ad__callout{display:none!important}}@media (min-width:900px){.ad__dismiss-button--visible{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:768px){.ad-native--mobile{display:none}.ad-native--no-mobile{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ad--small{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:inherit;background-color:transparent}.ad--small .ad__inner{padding:10px}.ad--mobile-breaker{padding:0}.ad--nav{display:block}.ad--nav.ad--mobile-leaderboard{display:none}.ad--mobile-leaderboard{display:none}}.menu-toggle{display:block;height:20px;margin-right:10px;outline:0}.menu-toggle:focus{outline:0}.menu-toggle__hamburger{position:relative;width:14px;height:12px;margin-top:10px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.menu-toggle__hamburger span{display:block;background:currentColor;width:14px;height:2px;position:absolute;left:0;top:0;-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out}.menu-toggle__hamburger span:nth-child(2){-webkit-transform:translateY(4px);transform:translateY(4px)}.menu-toggle__hamburger span:nth-child(3){-webkit-transform:translateY(8px);transform:translateY(8px)}.menu-toggle--is-x .menu-toggle__hamburger span:nth-child(1){-webkit-transform:translateY(4px) rotate(45deg);transform:translateY(4px) rotate(45deg)}.menu-toggle--is-x .menu-toggle__hamburger span:nth-child(2){opacity:0}.menu-toggle--is-x .menu-toggle__hamburger span:nth-child(3){-webkit-transform:translateY(4px) rotate(-45deg);transform:translateY(4px) rotate(-45deg)}.nav{position:relative;z-index:20;background-color:transparent;pointer-events:none;-webkit-transform:none;transform:none;will-change:transform;-webkit-transition:-webkit-transform 130ms ease-in;transition:-webkit-transform 130ms ease-in;transition:transform 130ms ease-in;transition:transform 130ms ease-in,-webkit-transform 130ms ease-in}.nav--hidden{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:-webkit-transform 130ms ease-out;transition:-webkit-transform 130ms ease-out;transition:transform 130ms ease-out;transition:transform 130ms ease-out,-webkit-transform 130ms ease-out}.nav--adjusted{margin-top:-1px}.nav__mobile-account-menu{display:list-item}.nav__mobile-account-menu--disabled{display:none}.nav-wrapper{position:fixed;width:100%;max-width:1440px;top:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:100;pointer-events:none;will-change:transform;-webkit-transition:-webkit-transform 130ms ease-in;transition:-webkit-transform 130ms ease-in;transition:transform 130ms ease-in;transition:transform 130ms ease-in,-webkit-transform 130ms ease-in}.nav-wrapper__ad-home{display:block}.nav__main-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;position:relative;width:100%;height:60px;padding:0 20px;z-index:20;border-bottom:1px solid #f1f1f1;background-color:#fff;pointer-events:auto}.nav__main-nav--hidden{display:none}.nav__main-nav-logo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-transform:translateY(-1px);transform:translateY(-1px)}.nav__main-nav-logo .logo.mbg-short{width:49px;height:30px;margin-right:5px}.nav__main-nav-logo .logo.mbg-short.mbg-revitalize{width:69px}.nav__main-nav-logo--std{display:block;height:30px;width:48px}.nav__main-nav-logo--std-long{display:none}.nav__main-nav-logo--article-long{display:none}.nav__main-nav-logo--article span{width:30px;height:30px}.nav__main-nav-logo--partner .partner-x{margin:0 12px 0 7px;width:12px;height:12px;position:relative}.nav__main-nav-logo--partner .partner-x span{width:100%;height:1px;background:#222;position:absolute;top:50%;-webkit-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.nav__main-nav-logo--partner .partner-x span:last-child{-webkit-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.nav__main-nav-logo-icon svg{max-width:30px;max-height:30px}.nav__main-nav-left,.nav__main-nav-right{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.nav__main-nav-left{width:auto;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.nav__main-nav-left .partner-logo-wrapper{height:30px;width:100px}.nav__main-nav-left .partner-logo-wrapper .partner-logo{max-height:30px}.nav__main-nav-title{display:none}.nav__main-nav-title.is-visible{display:none}.nav__main-nav-right--standard{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__main-nav-links{display:none}.nav__main-nav-separator{display:none}.nav__main-nav-icons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__main-nav-icons .icon--nav{margin:0 10px}.nav__main-nav-icons .icon--nav:first-child{margin-left:0}.nav__main-nav-icons .icon--nav:last-child{margin-right:0}.nav__main-nav-icons .cart-count{background:#ff8770;color:#fff;border-radius:50%;font-size:10px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center;position:absolute;bottom:-8px;right:-8px;display:inline-block;width:16px;height:16px}.nav__main-nav-account{display:none;font-size:.83333rem}.nav__main-nav-account svg{display:inline-block;vertical-align:middle;margin-right:5px}.nav__main-nav-account--copy{display:inline-block;vertical-align:middle}.nav__main-nav-account-menu{top:60px;width:170px;-webkit-box-shadow:0 3px 6px 0 rgba(145,145,145,.35);box-shadow:0 3px 6px 0 rgba(145,145,145,.35);position:absolute;background-color:#fff;-webkit-transition:opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out}.nav__main-nav-account-menu--disabled{display:none}.nav__main-nav-account-menu-item{margin-left:10px;margin-top:10px;font-size:12px;text-transform:uppercase}.nav__main-nav-account-menu-item:last-child{margin-bottom:10px}.nav__main-nav-account-menu-item-link{color:#767676}.nav__main-nav-account-menu-item-link:hover{text-decoration:underline}.nav__main-nav-icon-account{padding:0 30px}.nav__main-nav-icon-cart{position:relative}.nav__main-nav-icon-cart-dropdown{top:60px;width:100%;padding:10px 28px 40px;position:absolute;background-color:#fff;color:#222;border-radius:0;-webkit-box-shadow:0 1px 25px 0 rgba(145,145,145,.35);box-shadow:0 1px 25px 0 rgba(145,145,145,.35);font-size:12px;right:0;-webkit-transition:opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s,-webkit-transform .15s ease-in-out}.nav__main-nav-icon-cart-dropdown--disabled{display:none}.nav__main-nav-icon-cart-dropdown .dropdown-content{margin-top:10px}.nav__main-nav-icon-cart-dropdown .dropdown-content-button{margin-top:25px;text-align:center}.nav__main-nav-icon-cart-dropdown .dropdown-content-button .button{display:block;font-size:13px;padding:14px;border-radius:23px}.nav__main-nav-icon-cart-dropdown .dropdown-content .item-category{font-family:Monoline-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:20px}.nav__main-nav-icon-cart-dropdown .dropdown-content .item-category .item-type{position:relative}.nav__main-nav-icon-cart-dropdown .dropdown-content .item-category .item-type span{color:#ff9e1b}.nav__main-nav-icon-cart-dropdown .dropdown-content .item-category .item-type .item-count{background:#ff9e1b;color:#fff;border-radius:50%;font-size:10px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center;position:absolute;bottom:2px;right:-24px;display:inline-block;width:16px;height:16px}.nav__main-nav-icon-cart-dropdown .dropdown-content .product-list .col{display:inline-block;width:90px;margin-top:12px;margin-right:12px}.nav__main-nav-icon-cart-dropdown .dropdown-content .product-list .col:nth-child(3n){margin-right:0}.nav__main-nav-icon-cart-dropdown .dropdown-content .product-list .col img{border-radius:6px}.nav__main-nav-icon-cart-dropdown .supplements-container{padding-bottom:34px;border-bottom:solid 1px #e1e1e1;width:300px;margin:0 auto}.nav__main-nav-icon-cart-dropdown .classes-container{padding-top:14px;width:300px;margin:0 auto}.nav__main-nav-icon-cart-dropdown .classes-container .dropdown-content .item-category .item-type span{color:#00a3b7}.nav__main-nav-icon-cart-dropdown .classes-container .dropdown-content .item-category .item-type .item-count{background:#00a3b7;color:#fff}.nav__main-nav-icon-cart-dropdown--disabled{display:none}.nav__main-nav-icon-cart-dropdown .dropdown-content{margin-top:10px}.nav__main-nav-icon-cart-dropdown .dropdown-content-button{margin-top:20px;text-align:center}.nav__main-nav-icon-cart-dropdown .lds-ellipsis{display:block;position:relative;width:80px;height:20px;margin:0 auto}.nav__main-nav-icon-cart-dropdown .lds-ellipsis div{position:absolute;top:23px;width:10px;height:10px;border-radius:50%;background:#ccc;-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0)}.nav__main-nav-icon-cart-dropdown .lds-ellipsis div:nth-child(1){left:8px;-webkit-animation:lds-ellipsis1 .6s infinite;animation:lds-ellipsis1 .6s infinite}.nav__main-nav-icon-cart-dropdown .lds-ellipsis div:nth-child(2){left:8px;-webkit-animation:lds-ellipsis2 .6s infinite;animation:lds-ellipsis2 .6s infinite}.nav__main-nav-icon-cart-dropdown .lds-ellipsis div:nth-child(3){left:32px;-webkit-animation:lds-ellipsis2 .6s infinite;animation:lds-ellipsis2 .6s infinite}.nav__main-nav-icon-cart-dropdown .lds-ellipsis div:nth-child(4){left:56px;-webkit-animation:lds-ellipsis3 .6s infinite;animation:lds-ellipsis3 .6s infinite}@-webkit-keyframes lds-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes lds-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes lds-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0);transform:scale(0)}}@keyframes lds-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0);transform:scale(0)}}@-webkit-keyframes lds-ellipsis2{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(24px,0);transform:translate(24px,0)}}@keyframes lds-ellipsis2{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(24px,0);transform:translate(24px,0)}}.nav__main-nav-icon-cart-dropdown .hidden{display:none}.nav__main-nav--is-white.nav__main-nav--is-open{border-bottom:1px solid #f1f1f1}.nav__main-nav--is-white.nav__main-nav--is-open .nav__main-nav-progress-bar{display:none}.nav__main-nav--is-open+.nav__cat-nav{opacity:1;left:0;-webkit-transition:opacity .3s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:opacity .3s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,opacity .3s ease-in-out,left 0s;transition:transform .15s ease-in-out,opacity .3s ease-in-out,left 0s,-webkit-transform .15s ease-in-out;min-height:100vh;height:100%;visibility:visible}.nav__main-nav-progress-bar{display:none}.nav__main-nav-gg,.nav__main-nav-revitalize-apply{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin:0;margin-left:15px;padding:10px;height:60px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;background-color:#a31778;color:#fff;font-size:15px;-webkit-transition:all .5s;transition:all .5s;margin-right:-20px}.nav__main-nav-gg:hover,.nav__main-nav-revitalize-apply:hover{background-color:#1a64b0}.nav__main-nav-gg{background-color:#77a15c;width:128px;margin-right:20px;margin-left:0;display:none}.nav__main-nav-gg img{width:108px;height:16px;margin-bottom:-2px}.nav__main-nav-gg:hover{background-color:rgba(119,161,92,.7)}.nav__cat-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:0;left:0;height:100%;min-height:100vh;padding:60px 0 110px;background:#fff;width:100%;z-index:15;opacity:0;left:-99999px;-webkit-transition:opacity .15s ease-in-out,left 0s .15s,-webkit-transform .15s ease-in-out;transition:opacity .15s ease-in-out,left 0s .15s,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s .15s;transition:transform .15s ease-in-out,opacity .15s ease-in-out,left 0s .15s,-webkit-transform .15s ease-in-out;pointer-events:auto;-webkit-overflow-scrolling:touch;visibility:hidden}.nav__cat-nav-wrapper{width:100%;height:100%;position:relative;z-index:10;background:#fff;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.nav__cat-nav-background{display:none}.nav__cat-nav-list{overflow:auto;-webkit-overflow-scrolling:touch}.nav__cat-nav-item{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:13px;letter-spacing:2px;border-bottom:1px solid #f1f1f1;border-right:1px solid #f1f1f1}.nav__cat-nav-item--sign-in{border:none}.nav__cat-nav-item--sign-in .nav__cat-nav-link{color:#222;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.nav__cat-nav-item--sign-in .nav__cat-nav-link span{margin-left:10px}.nav__cat-nav-item--small{border:none}.nav__cat-nav-extra-menu{display:block}.nav__cat-nav-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;color:#767676;fill:gray;text-transform:uppercase;padding:20px}.nav__cat-nav-link .caret-icon *{fill:inherit}.nav__cat-nav-extra-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;color:#222;font-size:.83333rem;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;padding:20px}.nav__cat-nav-extra-link--small{font-family:Monoline-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1.16667rem;padding:12px 20px;color:#222;text-transform:none;letter-spacing:0;border-bottom:1px solid #f1f1f1;border-right:1px solid #f1f1f1}.nav__cat-nav-extra-link--small .logo--shop{width:30px;height:15px}.nav__cat-nav-extra-link--small .logo--classes{width:45px;height:15px}.nav__cat-nav-extra-link--small .logo.mbg-revitalize{width:55px;height:12px}.nav__cat-nav-extra-link--small .logo--supplements{width:81px;height:16px}.nav__cat-nav-extra-link--small .logo--fnp{width:166px;height:18px}.nav__cat-nav-extra-link--account{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;color:#222}.nav__cat-nav-extra-link--account .icon{width:18px;height:18px}.nav__cat-nav-extra-link--account span{font-size:.66667rem;letter-spacing:.5px;line-height:1;display:block;margin-left:10px}.nav__cat-nav-subcat-list{left:100vw;margin-bottom:0;top:0;width:100%;position:absolute;min-height:calc(100vh + 50px);z-index:30}.nav__cat-nav-subcat-list--is-visible{left:0}.nav__cat-nav-subcat-item--back{border-bottom:1px solid rgba(241,241,241,.4);margin-bottom:20px}.nav__cat-nav-subcat-link{font-size:11px;display:block;padding:20px;text-transform:uppercase;color:#fff;-webkit-transition:color .3s ease-in-out,opacity .3s ease-in-out;transition:color .3s ease-in-out,opacity .3s ease-in-out}.nav__cat-nav-subcat-link--back{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-transform:none}.nav__cat-nav-subcat-link--back svg{margin-right:10px}.nav__cat-nav-subcat-icon{display:none}.nav__sub-nav{display:none;width:100%;height:60px;padding:0 40px;z-index:10;position:relative;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;color:#767676;fill:#767676;background-color:#fff;pointer-events:auto;will-change:transform;-webkit-transition:-webkit-transform 130ms ease-in;transition:-webkit-transform 130ms ease-in;transition:transform 130ms ease-in;transition:transform 130ms ease-in,-webkit-transform 130ms ease-in}.nav__sub-nav-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0}.nav__sub-nav-item{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;text-transform:uppercase;padding:0 20px;font-size:12px;letter-spacing:2.2px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:60px;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.nav__sub-nav-item--more{position:relative;-webkit-transition:background-color .15s ease-in-out;transition:background-color .15s ease-in-out}.nav__sub-nav-item--more .nav__sub-nav-link{cursor:default;white-space:nowrap}.nav__sub-nav-item--more .nav__sub-nav-link .caret-icon{display:inline-block}.nav__sub-nav-item--more .nav__sub-nav-link .caret-icon *{fill:inherit}.nav__sub-nav-item--more .nav__sub-nav-link:hover{text-decoration:none}.nav__sub-nav-item--more ul{display:block;position:absolute;right:-9999px;top:60px;padding:0 20px 5px 25px;background-color:transparent;text-align:right;opacity:0;-webkit-transition:opacity,background-color .15s ease-in-out;transition:opacity,background-color .15s ease-in-out}.nav__sub-nav-item--more ul li{margin:25px 0}.nav__sub-nav-item--more ul li a{opacity:0;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.nav__sub-nav-item--more ul li a:hover{text-decoration:underline}.nav__sub-nav-item--more:hover{background-color:#767676;color:#fff;fill:#fff}.nav__sub-nav-item--more:hover ul{opacity:1;background-color:#767676;right:0}.nav__sub-nav-item--more:hover ul li a{opacity:1}.nav__sub-nav-item--more:hover .nav__sub-nav-link .caret-icon *{fill:inherit}.nav__sub-nav-item--more-color:hover{background-color:#fff;color:#767676;fill:#767676}.nav__sub-nav-item--more-color:hover ul{background-color:#fff}.nav__sub-nav-link:hover{text-decoration:underline}.nav__color{color:#fff;fill:#fff;border-bottom:1px solid rgba(241,241,241,.3)}.nav__color.nav__sub-nav{border-bottom:none}.nav__color-mindfulness{background-color:#6058bc}.nav__color-food{background-color:#7d5bae}.nav__color-movement{background-color:#a35ca2}.nav__color-health{background-color:#c14e78}.nav__color-relationships{background-color:#ca4955}.nav__color-lifestyle{background-color:#4961bd}.nav__color-planet{background-color:#378358}.nav__color-practices{background-color:#00a3b7}.nav__color-collective{background-color:#b54b09}@media (min-width:768px){.nav__main-nav{padding:0 40px}.nav__main-nav-revitalize-apply{margin-left:25px;padding:15px;margin-right:-40px}.nav__main-nav-left{width:auto}.nav__main-nav-separator{display:block;height:36px;width:1px;background:#f1f1f1}.nav__main-nav-links{margin-right:31px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%}.nav__main-nav-logo--partner .partner-logo{max-width:170px}.nav__main-nav-logo-link{margin:0 9px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%}.nav__main-nav-logo-link--fnp{display:none}.nav__main-nav-logo-link .logo{height:16px}.nav__main-nav-logo-link .logo--shop{width:45px}.nav__main-nav-logo-link .logo--classes{width:45px}.nav__main-nav-logo-link .logo.mbg-revitalize{width:55px;-webkit-transform:translateY(-1px);transform:translateY(-1px)}.nav__main-nav-logo-link .logo--supplements{width:81px;-webkit-transform:translateY(1px);transform:translateY(1px)}.nav__main-nav-logo-link .logo--fnp{display:none;width:171px;height:22px;-webkit-transform:translateY(2px);transform:translateY(2px)}.nav__main-nav-icons{margin-left:40px}.nav__main-nav-icons:first-child{margin-left:0}.nav__main-nav-icons:last-child{margin-right:0}.nav__main-nav-account{display:block}.nav__main-nav-gg{margin-right:0;margin-left:-10px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__cat-nav{padding-bottom:0;width:320px}.nav__cat-nav-link{padding:20px 20px 20px 40px}.nav__cat-nav-extra-link{padding:5px 20px 20px 40px}.nav__cat-nav-extra-link--account{padding:20px 20px 20px 40px}.nav__cat-nav-subcat-link{padding:20px 20px 20px 40px}.nav__cat-nav-extra-menu{display:none}}@media (min-width:1024px){.nav__main-nav-logo--std{display:none}.nav__main-nav-logo--std-long{display:block;width:177px;height:30px}.nav__main-nav-logo--article{display:none}.nav__main-nav-logo--article-long{display:block;width:177px;height:30px}.nav__main-nav-logo--partner .partner-logo{max-width:200px}.nav__main-nav-logo .logo{height:30px}.nav__main-nav-logo .logo.mbg{width:177px}.nav__main-nav-logo .logo.mbg-mindfulness{width:187px}.nav__main-nav-logo .logo.mbg-food{width:100px}.nav__main-nav-logo .logo.mbg-movement{width:172px}.nav__main-nav-logo .logo.mbg-health{width:121px}.nav__main-nav-logo .logo.mbg-relationships{width:195px}.nav__main-nav-logo .logo.mbg-lifestyle{width:140px}.nav__main-nav-logo .logo.mbg-planet{width:123px}.nav__main-nav-logo .logo.mbg-collective{width:150px}.nav__main-nav-logo .logo.mbg-curated{width:135px}.nav__main-nav-logo .logo.mbg-classes{width:130px}.nav__main-nav-logo .logo.mbg-revitalize{width:152px}.nav__main-nav-left .partner-logo-wrapper{width:100px}.nav__main-nav-title{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;max-width:480px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;overflow:hidden;margin-left:16.66%}.nav__main-nav-title.is-visible{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__main-nav--is-white.nav__main-nav--is-open{background-color:transparent;color:#fff;border-bottom:1px solid rgba(241,241,241,.3);-webkit-transition:border-color .3s ease-in-out,color .3s ease-in-out;transition:border-color .3s ease-in-out,color .3s ease-in-out}.nav__main-nav--is-white.nav__main-nav--is-open .menu-toggle__hamburger span{background:#fff;-webkit-transition:background .3s ease-in-out;transition:background .3s ease-in-out}.nav__main-nav--is-white.nav__main-nav--is-open .menu-icon path{fill:#fff;-webkit-transition:fill .3s ease-in-out;transition:fill .3s ease-in-out}.nav__main-nav--is-white.nav__main-nav--is-open .nav__main-nav-logo--partner .partner-x span{background:#fff}.nav__main-nav--is-white.nav__main-nav--is-open .nav__main-nav-separator{opacity:.3;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.nav__main-nav--is-white.nav__main-nav--is-open .nav__main-nav-logo .logo--color-inverse .mbg{fill:rgba(255,255,255,.6)}.nav__main-nav--is-white.nav__main-nav--is-open .nav__main-nav-logo .logo--color-inverse .main{fill:#fff}.nav__main-nav--is-white+.nav__cat-nav .nav__cat-nav-link{color:#fff;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.nav__main-nav--is-white+.nav__cat-nav .nav__cat-nav-subcat-link{color:#fff;opacity:.75;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.nav__main-nav--is-white+.nav__cat-nav .nav__cat-nav-subcat-link:hover{text-decoration:underline}.nav__main-nav-progress-bar{display:block;position:absolute;bottom:-2px;left:0;height:2px;width:0%}.nav__main-nav-right--standard{display:none}.nav__main-nav-right--standard.is-visible{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__main-nav.article-scroll-down{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.nav__main-nav.article-scroll-down.nav__main-nav--is-open{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.nav__main-nav.article-scroll-up{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.nav__main-nav-revitalize-apply{margin-left:40px}.nav__cat-nav{width:100%;padding-bottom:60px;min-height:0}.nav__cat-nav-wrapper{width:82%;background:0 0}.nav__cat-nav-background{display:block;position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;z-index:0;-webkit-transition:opacity .3s ease-in-out .3s;transition:opacity .3s ease-in-out .3s}.nav__cat-nav-background--is-visible{opacity:1;z-index:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.nav__cat-nav-list{margin-top:60px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.nav__cat-nav-item{border:none;font-size:12px;padding:0;margin-bottom:40px;width:20%}.nav__cat-nav-link{padding:0;color:#222;display:inline-block}.nav__cat-nav-link .caret-icon{display:none}.nav__cat-nav-subcat-list{background:0 0!important;position:relative;min-height:0;left:0}.nav__cat-nav-subcat-item{padding:16px 0 0 0}.nav__cat-nav-subcat-item--all,.nav__cat-nav-subcat-item--back{display:none}.nav__cat-nav-subcat-link{color:rgba(34,34,34,.75);padding:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;opacity:.75}.nav__cat-nav-subcat-link:hover .nav__cat-nav-subcat-icon{opacity:1}.nav__cat-nav-subcat-icon{display:block;opacity:0;margin-left:10px;width:15px;height:15px;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.nav__cat-nav-subcat-icon svg{max-width:100%;max-height:100%}.nav__cat-nav-subcat-icon svg *{fill:#fff}.nav__sub-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__mobile-account-menu{display:none}}@media (min-width:460px){.nav-wrapper__ad-home{display:none}.nav__main-nav-icons .cart-open{display:none}.nav__main-nav-icon-cart-dropdown{top:70px;right:10px;border-radius:6px;width:350px}.nav__main-nav-icon-cart-dropdown:before{content:"\A";border-style:solid;border-width:0 18px 20px 18px;border-color:transparent transparent #fff transparent;position:absolute;top:-20px;right:58px}.nav__main-nav-icon-cart-dropdown .classes-container,.nav__main-nav-icon-cart-dropdown .supplements-container{width:100%;margin:0 auto}}@media (max-width:459px){.nav__main-nav-icons .cart-open{display:block}.nav__main-nav-icons .hidden{display:none}.nav__main-nav-icons .menu-toggle__hamburger span{width:18px}.nav__main-nav-icon-cart-dropdown{-webkit-box-shadow:none!important;box-shadow:none!important}.nav__main-nav-icon-cart-dropdown .classes-container,.nav__main-nav-icon-cart-dropdown .supplements-container{width:100%!important}}@media (min-width:1200px){.nav__main-nav-logo-link--fnp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.nav__main-nav-logo-link .logo--fnp{display:block}}@media print and (min-width:460px){.nav-wrapper{display:none!important}}.share-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:40px;height:40px;border-radius:50%;background-color:#fff;-webkit-box-shadow:0 2px 7px 0 rgba(145,145,145,.35);box-shadow:0 2px 7px 0 rgba(145,145,145,.35);-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:12px}.share-button svg{max-height:14px;max-width:80%;width:auto}.share-button--like svg.icon-heart{max-height:10px;color:#fff}.share-button--like-selected svg.icon-heart{color:#767676}.share-button--solid{margin-bottom:5px;-webkit-box-shadow:none;box-shadow:none}.share-button--solid svg{max-height:none;max-width:none;width:40px;height:40px}.share-button--solid svg.share-button--saved-solid{display:none}.share-button--solid.share-button--like-selected svg.share-button--saved-solid{display:block}.share-button--solid.share-button--like-selected svg.share-button--unsaved-solid{display:none}.share-button-email{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:40px;height:40px;border-radius:50%;background-color:#fff;-webkit-box-shadow:0 2px 7px 0 rgba(145,145,145,.35);box-shadow:0 2px 7px 0 rgba(145,145,145,.35);-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.share-button-email svg{max-height:14px;width:auto}@media (min-width:1024px){.share-button:hover{-webkit-box-shadow:0 2px 7px 0 rgba(0,0,0,.35);box-shadow:0 2px 7px 0 rgba(0,0,0,.35)}}.share-facebook{background:transparent url(https://www.mindbodygreen.com/img/rev/2018/video-library-share--facebook.svgz) no-repeat center center}.share-twitter{background:transparent url(https://www.mindbodygreen.com/img/rev/2018/video-library-share--twitter.svgz) no-repeat center center}.share-pinterest{background:transparent url(https://www.mindbodygreen.com/img/rev/2018/video-library-share--pinterest.svgz) no-repeat center center}.subcategory-label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:10px;width:100%}.subcategory-label__title{font-size:.66667rem;line-height:1.17;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:2px;text-transform:uppercase}.subcategory-label__link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.subcategory-label__icon{height:15px;width:20px;margin-left:10px}.subcategory-label__icon svg{height:100%;width:100%}@media print and (min-width:460px){.subcategory-label{color:#222!important}}.editor-info{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;overflow:hidden}.editor-info__container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-align:start;-webkit-align-items:start;-ms-flex-align:start;align-items:start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.editor-info__image-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;margin-right:15px;width:55px;height:55px;border-radius:50%;border:2px solid #bbb;overflow:hidden;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.editor-info__image-link{display:block;width:100%}.editor-info__image-background{display:none}.editor-info--p2 .editor-info__image{border-radius:50%;background-color:#fff}.editor-info--article.editor-info{position:relative;overflow:visible;height:auto;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.editor-info--article.editor-info .editor-info__image{border-radius:50%;background-color:#fff}.editor-info--article.editor-info.editor-info--premium .editor-info__image-wrapper{width:280px;margin:0 auto}.editor-info--article.editor-info.editor-info--premium .editor-info__text{margin-left:40px}.editor-info--article.editor-info.editor-info--premium .editor-info__text-item:first-child{color:#fff}.editor-info__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:calc(100% - 75px)}.editor-info__text-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;font-size:14px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;position:relative}.editor-info__text-item--role{color:#767676}.editor-info__description{font-size:12px;line-height:1.67}.editor-info--bio{display:block}.editor-info--bio .editor-info__image-wrapper{float:left}.editor-info--bio .editor-info__description{margin-top:13px}.editor-info--bio .editor-info__text{display:block}.editor-info--bio .editor-info__text-header{min-height:55px}.editor-info--bio .editor-info__text-item{font-size:12px}.class-outline .editor-info--bio .editor-info__text-item{font-size:18px}.class-outline .editor-info--bio .editor-info__text-item--role{font-size:12px}.editor-info--article{width:100%;padding:0 20px;margin-bottom:30px}.editor-info--article .editor-info__text-item{font-size:15px;line-height:1.4;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif}.editor-info--article .editor-info__text-item--role{color:#767676}.editor-info--reviewer{margin-bottom:20px}.editor-info__wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;position:relative;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.editor-info__container .editor-info:last-of-type{padding:0 40px 0 20px;margin-left:20px}.editor-info__container .editor-info:first-of-type{padding:0 20px 0 40px;margin-left:0}.editor-info--article{padding:0 40px 0 40px;margin-bottom:20px;width:auto}.editor-info--article .editor-info__text{width:auto;max-width:430px}.editor-info--article .editor-info__text-item{font-size:15px}.editor-info--article.editor-info--p1:not(.editor-info--reviewer){position:relative;overflow:visible;width:100%;height:180px;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2;margin-bottom:0}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__text{left:280px;max-width:36%;top:0}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__image{position:relative;z-index:1;height:180px;width:auto;max-width:none;border-radius:0;background-color:transparent}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__image-wrapper{position:relative;width:280px;height:auto;border-radius:0;border:none;margin-right:0;overflow:visible;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__image-wrapper figure{text-align:center}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__image-wrapper:before{display:block;position:absolute;content:'';width:280px;height:140px;border-top-left-radius:140px;border-top-right-radius:140px;left:50%;bottom:39%;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%);z-index:0;background-image:radial-gradient(circle at center,#ca4955 0,transparent 30%),radial-gradient(circle at center,#ca4955 0,transparent 30%);background-size:8px 8px;background-position:0 0,4px 4px;background-origin:padding-box;background-clip:border-box}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__image-link{margin:0 auto}.editor-info--article.editor-info--p1:not(.editor-info--reviewer) .editor-info__text{max-width:36%;position:absolute;left:280px;top:30px;z-index:2}.editor-info--article.editor-info--p1:not(.editor-info--reviewer).editor-info--premium .editor-info__image-wrapper{width:280px;margin:0 auto}.editor-info--article.editor-info--p1:not(.editor-info--reviewer).editor-info--premium .editor-info__text{margin-left:40px}.editor-info--article.editor-info--p1:not(.editor-info--reviewer).editor-info--premium .editor-info__text-item:first-child{color:#fff}.editor-info--bio .editor-info__image-wrapper{width:70px;height:70px}.editor-info--bio .editor-info__text-header{min-height:70px}.editor-info--bio .editor-info__text-item{font-size:20px}.editor-info--bio .editor-info__text-item--role{font-size:13px}}@media (min-width:1024px){.editor-info__wrapper .article-header__share-like{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;bottom:15px;right:30px;padding:0}.editor-info__container{position:relative;width:80%;margin-left:17%}.editor-info__container .editor-info:last-of-type{padding:0;margin-left:30px}.editor-info__container .editor-info,.editor-info__container .editor-info:first-of-type{padding:0;margin-left:0}.editor-info--article{padding:0 0 0 20px;margin-bottom:30px;margin-left:15%}.editor-info--reviewer{margin-left:0}.editor-info--reviewer .editor-info__text{-webkit-box-pack:normal;-webkit-justify-content:normal;-ms-flex-pack:normal;justify-content:normal}.editor-info--article:not(.editor-info--reviewer){width:76%;-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.editor-info--article:not(.editor-info--reviewer).editor-info--p1{position:relative;overflow:visible;width:76%;height:180px;margin-bottom:0}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__text{left:280px;top:7px;max-width:100%}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__image{border-radius:0;background-color:transparent;position:relative;z-index:1;height:180px;width:auto;max-width:none}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__image-wrapper{position:relative;width:280px;height:auto;border-radius:0;border:none;margin-right:0;overflow:visible;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__image-wrapper figure{text-align:center}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__image-wrapper:before{display:block;position:absolute;content:'';width:280px;height:140px;border-top-left-radius:140px;border-top-right-radius:140px;left:50%;bottom:39%;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%);z-index:0;background-image:radial-gradient(circle at center,#ca4955 0,transparent 30%),radial-gradient(circle at center,#ca4955 0,transparent 30%);background-size:8px 8px;background-position:0 0,4px 4px;background-origin:padding-box;background-clip:border-box}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__image-link{margin:0 auto}.editor-info--article:not(.editor-info--reviewer).editor-info--p1 .editor-info__text{position:absolute;left:280px;top:30px;z-index:2}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--partner{height:auto}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--partner .editor-info__text{left:20px}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--premium{padding:0;margin:0}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--premium .editor-info__image-wrapper{width:280px;margin:0 auto}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--premium .editor-info__text{margin-left:70px}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--premium .editor-info__text-item:first-child{color:#fff}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--reviewer{width:auto;padding:0;margin-left:0;max-width:500px;-webkit-box-flex:2;-webkit-flex-grow:2;-ms-flex-positive:2;flex-grow:2}.editor-info--article:not(.editor-info--reviewer).editor-info--p1.editor-info--reviewer .editor-info__text{position:absolute;left:240px;top:0;z-index:2;width:42%;-webkit-box-pack:initial;-webkit-justify-content:initial;-ms-flex-pack:initial;justify-content:initial}.editor-info--bio{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.editor-info--bio .editor-info{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.editor-info--bio .editor-info__image-wrapper{width:78px;height:78px}.editor-info--bio .editor-info__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.editor-info--bio .editor-info__text-header{min-height:0}.editor-info--bio .editor-info__text-item{font-size:18px}.editor-info--bio .editor-info__text-item--role{font-size:14px}.class-outline .editor-info--bio .editor-info__text-item{font-size:23px}.class-outline .editor-info--bio .editor-info__text-item--role{font-size:15px}.editor-info--bio .editor-info__description{margin-top:5px}.editor-info--noauthorimg{margin-bottom:25px}}@media print and (min-width:460px){.editor-info__image-wrapper{display:none!important}.editor-info--bio .editor-info__text-header{min-height:0}}.placeholder{display:block;position:relative;height:0;padding-top:66.66%;overflow:hidden;width:100%}.placeholder img{position:absolute;left:0;top:0;width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover;font-family:"object-fit: cover"}.placeholder.placeholder--practices{padding-top:130%}.placeholder.placeholder--practices-recirc-inverted{padding-top:0;padding-bottom:61%}.placeholder.placeholder--practices-recirc-inverted-inline{display:none}.placeholder.placeholder--square{padding-top:100%}.placeholder.placeholder--wide{padding-top:56.25%}.placeholder.placeholder--author{padding-top:64.29%}.placeholder.placeholder--portrait{padding-top:128.26%;background:#f1f1f1}.placeholder.placeholder--home-hero{padding-top:66.66%}.placeholder.placeholder--lightweight-hero{padding-top:46.8%}@media (min-width:768px){.placeholder.placeholder--practices-recirc-inverted{padding-bottom:55%}.placeholder.placeholder--podcast-lg{min-height:400px}}@media (min-width:1024px){.placeholder.placeholder--podcast{padding-top:50%}.placeholder.placeholder--home-hero{padding-top:56.25%}.card--practice-recirc-inverted .placeholder.placeholder--practices-recirc-inverted{padding-bottom:65%}.card--practice-recirc-inverted .placeholder.placeholder--practices-recirc-inverted-inline{padding-bottom:55%}}.avatar-link:hover .circle-image{border-color:#ca4955}.no-touchevents .hov-underline:hover{text-decoration:underline}.logo .mbg{fill:currentColor}.logo .main{fill:currentColor}.logo--inline{display:inline-block}.logo--black{color:#222}.logo--white{color:#fff}.logo--white-half .mbg{color:rgba(255,255,255,.6)}.logo--trans{color:#fff}.logo--trans .mbg{color:rgba(255,255,255,.6)}.logo--trans-inverse .main{color:rgba(255,255,255,.6)}.logo--color.mbg-mindfulness .mbg{fill:#6058bc}.logo--color.mbg-health .mbg{fill:#c14e78}.logo--color.mbg-lifestyle .mbg{fill:#4961bd}.logo--color.mbg-movement .mbg{fill:#a35ca2}.logo--color.mbg-food .mbg{fill:#7d5bae}.logo--color.mbg-planet .mbg{fill:#378358}.logo--color.mbg-relationships .mbg{fill:#ca4955}.logo--color.mbg-podcast .mbg{fill:#36a58a}.logo--color.mbg-classes .mbg{fill:#00a3b7}.logo--color.mbg-trainings .mbg{fill:#2d7b9e}.logo--color.mbg-practices .mbg{fill:#3ec6c2}.logo--color.mbg-collective .mbg{fill:#b54b09}.logo--color.mbg-curated .mbg{fill:#bbb}.logo--color.mbg-revitalize .mbg{fill:#1262b2}.logo--color-inverse.mbg-mindfulness .main{fill:#6058bc}.logo--color-inverse.mbg-health .main{fill:#c14e78}.logo--color-inverse.mbg-lifestyle .main{fill:#4961bd}.logo--color-inverse.mbg-movement .main{fill:#a35ca2}.logo--color-inverse.mbg-food .main{fill:#7d5bae}.logo--color-inverse.mbg-planet .main{fill:#378358}.logo--color-inverse.mbg-relationships .main{fill:#ca4955}.logo--color-inverse.mbg-podcast .main{fill:#36a58a}.logo--color-inverse.mbg-classes .main{fill:#00a3b7}.logo--color-inverse.mbg-trainings .main{fill:#2d7b9e}.logo--color-inverse.mbg-practices .main{fill:#3ec6c2}.logo--color-inverse.mbg-collective .main{fill:#b54b09}.logo--color-inverse.mbg-curated .main{fill:#bbb}.logo--color-inverse.mbg-revitalize .main{fill:#1262b2}@media (min-width:768px){.sticky-ad-col{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:inherit}.sticky-ad-col--fixed-height{position:relative;display:block;-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none;min-height:620px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:none;-ms-flex-direction:none;flex-direction:none}.sticky-ad-col--home{width:auto}.sticky-ad-col--native{text-align:center}.sticky-ad--has-max-width{max-width:320px}}.icon{stroke-width:1;fill:currentColor;height:100%;width:100%}.icon:hover{fill:currentColor;cursor:pointer}.icon__stroke{fill:none;stroke:currentColor}.icon__stroke:hover{fill:none;stroke:currentColor}.icon--nav{height:18px;width:18px}.icon--nav .icon{height:18px;width:18px}.icon--pagination{width:12px;height:12px;padding-left:3px;stroke-linecap:round;stroke-width:2px;display:inline-block}.icon--chevron{width:13px;height:9px}.icon-caret{width:7px;height:9px;display:inline}.icon__flip,.icon__flip-h{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icon__flip-v{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.tooltip{cursor:pointer;padding:4px 8px}.tooltip:hover .tooltip__container,.tooltip:hover .tooltip__top-arrow{display:block}.tooltip__body{font-family:Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif}.tooltip__container{position:absolute;left:-75px;top:14px;padding-top:22px;display:none;font-size:15px;line-height:1.33;color:#222;z-index:1;width:280px}.tooltip__icon{width:15px;height:15px}.tooltip__icon-container{position:relative}.tooltip__content{padding:15px;border-radius:6px;-webkit-box-shadow:0 1px 25px 0 rgba(145,145,145,.35);box-shadow:0 1px 25px 0 rgba(145,145,145,.35);background-color:#fff}.tooltip__top-arrow{position:absolute;top:19px;left:-9px;display:none;width:33px;height:14px;z-index:2}.tooltip__top-arrow svg *{fill:#fff!important}.tooltip__title{color:#767676;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;margin-bottom:5px}@media (min-width:768px){.tooltip{padding:0 8px}.tooltip__icon{height:18px;width:18px}.tooltip__container{width:346px}.tooltip__content{padding:20px 30px}.tooltip__top-arrow{top:22px}}.close_ad{border-bottom-left-radius:8px;border-bottom-right-radius:8px;-webkit-box-shadow:0 3px 4px 0 rgba(145,145,145,.38);box-shadow:0 3px 4px 0 rgba(145,145,145,.38);background-color:#fff;text-transform:uppercase;color:#555;width:auto;padding:10px 13px;font-size:12px;font-family:Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;cursor:pointer;position:absolute;top:100%;left:0;pointer-events:all;display:none}.close_ad>.arrow-up{border:solid #555;border-width:0 2px 2px 0;padding:4px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);display:inline-block;margin-bottom:-3px;margin-left:3px}@media (min-width:768px){.close_ad.visible{display:block}}.main-content--premium>[class^=article-]{background:#fff}@media (min-width:1025px){.main-content--feature-article .article-date-share+.article-text--feature .article-text__inner{margin-top:0;padding-top:40px}}.article-sponsored-byline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.article-sponsored-byline__link{width:40px;margin-right:10px}.article-sponsored-byline__text{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;letter-spacing:.5px;line-height:1.2;color:#767676;text-transform:uppercase;text-decoration:none;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding-right:15px}.article-sponsored-byline__text a{text-decoration:underline}.article-sponsored-byline__text a:last-of-type{color:#222}.article-sponsored-byline__image{height:40px;position:relative}.article-headline{width:100%;padding:0 20px 20px}.article-headline__text{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;color:#222;margin-bottom:0}.article-headline--p1 .article-headline__text{font-size:39px;line-height:1.13}.article-headline--p2 .article-headline__text{font-size:25px;line-height:1.27}.article-headline .subcategory-label__icon{display:none}.article-header{width:100%;padding-bottom:20px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.article-header--premium{position:relative;height:calc(100vh - 60px)}.article-header--premium.article-header--feature{margin-bottom:0;padding-bottom:0;background:0 0}.article-header--premium__video-bg{width:100%;height:100vh;max-width:1440px;overflow:hidden;position:fixed;top:0;left:50%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);z-index:-10}.article-header--premium__hero-onload-color-underlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-20}.article-header--premium .full-width-feature__image{max-width:1440px;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;font-family:"object-fit: cover; object-position: center";position:fixed;top:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);right:0;z-index:-10}.article-header--premium .article-header__text-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;position:fixed;top:calc((100vh - 110px)/ 2 + 110px - 70px);-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1;left:0;padding:0 10px}.article-header--premium .article-content__inner:after{content:"";display:block;position:absolute;bottom:0;left:0;right:0;height:60%;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.35)));background-image:linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,.35))}.article-header--premium .article-content__scroll{display:none}.article-header--premium .article-content__scroll .article__scroll-text{font-family:Maax-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;color:#fff;-webkit-transform:rotate(-90deg) translateX(10px);transform:rotate(-90deg) translateX(10px);position:relative;display:inline-block;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;margin-bottom:30px}.article-header--premium .article-content__scroll svg{margin:0 auto;width:15px;height:25px;-webkit-animation:scrollUpDown .6s infinite alternate;animation:scrollUpDown .6s infinite alternate;padding-bottom:0}.article-header--premium .article-content__brand-logo-wrapper{position:absolute;left:0;bottom:0;width:100%;height:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;z-index:2}.article-header--premium .article-content__brand-logo-inner{position:absolute;bottom:0;left:0;width:100%}.article-header--premium .article-content__brand-logo{text-align:center;margin:0 auto;height:140px;width:280px;background:rgba(2,34,34,.2);border:1px solid rgba(255,255,255,.2);border-top-left-radius:140px;border-top-right-radius:140px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border-bottom:0}.article-header--premium .article-content__brand-logo .article-content__sponsored-by{color:#fff;font-size:8px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:1.3px;line-height:14px;margin-bottom:10px}.article-header--premium .article-content__brand-logo .article-content__premium-logo-wrapper{width:130px;height:30px}.article-header--premium .article-content__brand-logo-premium-logo{max-width:100%;height:auto;-webkit-transform:translateY(25%);transform:translateY(25%)}.article-header--premium .article-content__deck-text{color:#fff;padding:0;font-size:20px;padding:0 20px;left:initial;display:block;width:100%;position:absolute;top:45%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:0;z-index:1;opacity:0}.article-header--premium .article-content__deck-text .article-deck-text{padding-left:0;padding-right:0;padding-bottom:0}.article-header--premium .article-content__deck-text .article-deck-text__text{font-size:1.11111rem;line-height:1.5}.article-header--premium .article-content__inner{position:absolute;top:0;left:0;width:100%;height:100%}.article-header--premium .article-content__inner .article-headline{max-width:793px;width:100%;text-align:center;margin:0 auto;padding:0 20px;padding-top:0;position:relative;z-index:1}.article-header--premium .article-content__inner .article-headline__image{max-height:300px;width:100%}.article-header--premium .article-content__inner .article-headline__text{color:#fff;font-size:1.66667rem}.article-header--premium .article-content__inner .article-headline .subcategory-label{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:10px;padding-bottom:0}.article-header__share-like{width:100%;display:none;padding:0 20px 20px 20px;pointer-events:none;-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.article-header__share-like-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;pointer-events:all}.article-header__share-like-wrapper--alt{display:none}.article-header__share-like-wrapper .share-button{margin-right:10px}.article-header__share-like-wrapper .share-button--last-on-mobile{margin-right:0}.article-header__share-like-wrapper .share-button--twitter{display:none}.article-header__share-like-wrapper .share-button--hide{display:none!important}.article-header__share-like-separator{display:block;width:1px;height:30px;background:#f1f1f1;margin-right:10px}.article-header__share-like--sticky{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background:#fff;position:fixed;z-index:100;left:0;bottom:0;width:100%;padding:10px 20px 10px 20px;border-top:1px solid #f1f1f1;opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:opacity .25s ease,-webkit-transform 0s linear .25s;transition:opacity .25s ease,-webkit-transform 0s linear .25s;transition:opacity .25s ease,transform 0s linear .25s;transition:opacity .25s ease,transform 0s linear .25s,-webkit-transform 0s linear .25s}.article-header__share-like--sticky.is-visible{opacity:1;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .25s ease;transition:opacity .25s ease}.article-header__share-like--sticky .share-on{margin-right:20px;font-size:.66667rem;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif}.article-header__share-like--sticky .share-button{margin-right:10px}.article-header__share-like--sticky.article-header__share-like--alt{padding:0}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper{display:none}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:60px;-webkit-box-pack:space-evenly;-webkit-justify-content:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;width:100%}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:94px;height:39px;border-radius:100px;margin:10px 5px}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button svg *{fill:#fff}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--facebook{background-color:#3b5998}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--facebook svg{height:13px}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--twitter{background-color:#4099ff}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--twitter svg{height:10px}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--pinterest{background-color:#bd081c}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--pinterest svg{height:14px}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--flip{background-color:#c00}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--flip svg{height:12px}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--sms{background-color:#bbb}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--email{background-color:#767676}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button:not(.mobile){display:none}.article-header__share-like--sticky.article-header__share-like--alt .share-on{display:none}.article-header__share-like--article-body{display:none}.article-date-share{width:100%;padding:0 20px 20px 20px}.article-date-share__inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-flow:column-reverse;-ms-flex-flow:column-reverse;flex-flow:column-reverse}.article-date-share .article-date{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1;width:auto;padding:0}.article-date-share .article-header__share-like--premium{padding:40px 0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-right:0;width:100%;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.article-date-share .article-header__share-like--premium .share-on{display:none}.article-date{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3;width:100%;padding:0 20px;font-size:15px;color:#767676;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif}@media (max-width:768px){.article-header{position:relative}.article-headline__text{padding-right:30px}.article-header__share-like-separator{display:none}.article-header__share-like--standard{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:0}.article-header__share-like--standard .article-header__share-like-wrapper .share-button{display:none;margin-right:10px}.article-header__share-like--standard .article-header__share-like-wrapper .share-button--like{display:none;margin-right:0;position:absolute;top:0;right:10px}}@media (min-width:768px){.article-headline{padding:0 40px 20px}.article-headline--p1 .article-headline__text{font-size:44px;line-height:1.1}.article-headline--p2 .article-headline__text{font-size:35px;line-height:1.23}.article-headline .subcategory-label{margin-bottom:20px}.article-headline .subcategory-label__icon{display:none}.article-headline--feature{max-width:875px}.article-headline__reviewer-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;-ms-flex-align:baseline;align-items:baseline}.article-headline__reviewer-container .subcategory-label{width:auto}.article-header--premium .article-content__inner .article-headline{padding:0}.article-header--premium .article-content__deck-text{padding:0 40px}.article-header--premium .article-content__deck-text .article-deck-text{max-width:793px;margin:0 auto}.article-header--premium .article-content__scroll{display:block;position:absolute;right:40px;bottom:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);z-index:1}.article-header--premium .article-header__text-wrap{padding:0 40px;top:calc((100vh - 210px)/ 2 + 210px - 70px)}.article-header__share-like{padding:0 10px 20px 40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-header__share-like-wrapper .share-button--email,.article-header__share-like-wrapper .share-button--twitter{display:none}.article-header__share-like--sticky{width:100%;padding:10px 40px 10px 40px}.article-header__share-like--sticky.article-header__share-like--alt{padding:0}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt{width:calc(100% - 320px)}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button:not(.mobile){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button.mobile{display:none}.article-header__share-like--article-body{display:none}.article-date-share{padding:80px 40px 60px}.article-date-share__inner{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row;-ms-flex-flow:row;flex-flow:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.article-date-share__inner .article-header__share-like--premium{width:auto;padding:0}.article-date{font-size:13px;padding:0 40px}}@media (min-width:1024px){.article-headline{width:75%;margin-left:15%;padding:0 20px 30px}.article-headline--p1 .article-headline__text{font-size:50px;line-height:1.1}.article-headline--p2 .article-headline__text{font-size:40px;line-height:1.2}.article-headline .subcategory-label{margin-bottom:20px}.article-headline .subcategory-label__icon{display:block}.article-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.article-header--premium{height:calc(100vh - 120px)}.article-header__share-like{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2;width:6%;max-height:112px;padding:0 10px 10px 0;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.article-header__share-like-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.article-header__share-like-wrapper .share-button{margin-right:0}.article-header__share-like-wrapper .share-button--twitter{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-header__share-like-wrapper .share-button--sms{display:none}.article-header__share-like-separator{height:1px;width:100%;margin-right:0;margin-bottom:12px}.article-header__share-like--sticky{background:#fff;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;position:fixed;z-index:100;left:0;bottom:0;width:100%;padding:10px 40px 10px 40px;border-top:1px solid #f1f1f1}.article-header__share-like--sticky .share-on{margin-right:20px;font-size:.66667rem;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif}.article-header__share-like--sticky .share-button{margin-right:10px}.article-header__share-like--sticky.article-header__share-like--alt{max-height:none}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;height:auto;-webkit-box-pack:start;-webkit-justify-content:start;-ms-flex-pack:start;justify-content:start;width:100%}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button{margin-right:10px;margin-bottom:0}.article-header__share-like--sticky.article-header__share-like--alt .article-header__share-like-wrapper--alt .share-button--sms{display:none}.article-header__share-like--sticky.article-header__share-like--alt .share-on{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-header__share-like--article-body{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;max-height:none;position:absolute;padding:0;height:100%;right:20px;width:41px}.article-header__share-like--article-body .article-header__share-like-wrapper{padding-top:10px;padding-right:10px;position:absolute;top:0}.article-header__share-like--p1{max-height:180px}.article-header--feature{padding-bottom:40px}.article-header--feature.article-sponsored-byline{padding-bottom:0}.article-date{font-size:15px;padding:0 40px}.article-date__inner{max-width:580px;margin:0 auto}.article-date-share{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:100px 40px 50px}.article-date-share__inner{width:100%;max-width:580px}.article-headline--noauthorimg{padding:0 20px 5px}}@media (min-width:1025px){.article-header--premium{margin-bottom:40px}.article-header--premium .article-content__deck-text{color:#fff;padding:0}.article-header--premium .article-content__deck-text .article-deck-text{padding-bottom:0}.article-header--premium .article-content__deck-text .article-deck-text__text{font-size:1.66667rem;line-height:1.33}.article-header--premium .article-content__inner .article-headline__text{font-size:2.77778rem;line-height:1.2}.article-header--premium .article-content__inner .article-headline .subcategory-label{margin-bottom:20px}.article-header__share-like--sticky{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% - 70px);overflow:hidden;max-width:1440px;padding:5px;bottom:25px;background:0 0;border:none;left:0;opacity:1;-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:left 0s linear .25s,-webkit-transform 0s linear .25s;transition:left 0s linear .25s,-webkit-transform 0s linear .25s;transition:left 0s linear .25s,transform 0s linear .25s;transition:left 0s linear .25s,transform 0s linear .25s,-webkit-transform 0s linear .25s}.article-header__share-like--sticky.is-visible{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-transition:none;transition:none}.article-header__share-like--sticky .article-header__share-like-wrapper{width:auto;opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:opacity .25s ease,-webkit-transform .25s ease;transition:opacity .25s ease,-webkit-transform .25s ease;transition:opacity .25s ease,transform .25s ease;transition:opacity .25s ease,transform .25s ease,-webkit-transform .25s ease}.article-header__share-like--sticky.is-visible .article-header__share-like-wrapper{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}.article-header__share-like--sticky .share-on{width:100%;margin-bottom:10px}}@media (max-width:768px){.article-header{position:relative}.article-header .article-header__share-like{display:block}.article-header .article-header__share-like-separator,.article-header .share-button{display:none}.article-header .share-button--like{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;position:absolute;top:22px;right:20px}.article-header .article-headline__text{padding-right:50px}}@media print and (min-width:460px){.article-header__share-like{display:none!important}.subcategory-label__icon{display:none!important}}.article-heroless-border{width:100%;display:none;width:calc(100% - 40px);margin:0 auto;margin-bottom:40px;border-bottom:1px solid #f1f1f1;-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}@media (min-width:768px){.article-heroless-border{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:calc(100% - 80px);margin-top:0;margin-bottom:40px}.article-heroless-border--p2{margin-top:20px;margin-bottom:40px}.article-heroless-border--no-date{margin-bottom:18px}}@media (min-width:1024px){.article-heroless-border{width:calc(100% - 8.33% - 60px);margin-left:calc(8.33% + 20px)}.article-heroless-border--p2{margin-top:-10px}}.article-heading{width:100%;padding:0 20px 20px 20px}.article-heading__text{margin-bottom:0;font-size:1.27778rem;line-height:1.3}.article-heading__text--l2{font-size:1.27778rem;line-height:1.3}.article-heading__text--l3{font-size:.88889rem;line-height:1.62}.article-heading__number{font-family:Abril-Fatface-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;padding-right:.55556rem}.article-heading--p1{clear:left}@media (min-width:768px){.article-heading{padding:0 40px 20px 40px}.article-heading__text{font-size:1.44444rem}.article-heading__text--l2{font-size:1.27778rem;line-height:1.3}.article-heading__text--l3{font-size:.88889rem;line-height:1.62}}@media (min-width:1024px){.article-heading{padding:0 40px 40px 40px}.article-heading__inner{max-width:580px;margin:0 auto}.article-heading--l3{padding:0 40px 20px 40px}.article-heading__text{font-size:1.66667rem}.article-heading__text--l2{font-size:1.66667rem;line-height:1.3}.article-heading__text--l3{font-size:1rem;line-height:1.62}}@media print and (min-width:460px){.article-heading{padding:0!important}.article-heading__text{font-size:1.11111rem!important}.article-headline{padding-bottom:20px!important}.article-headline__text{font-size:26px!important;padding-bottom:0!important}}.article-image,.article-image--p1{width:100%;padding:0 20px 20px 20px;overflow:hidden}.article-image--p1__inner,.article-image__inner{width:100%;position:relative;overflow:hidden}.article-image--p1__inner:hover .media-caption,.article-image__inner:hover .media-caption{opacity:1}.article-image--p1__inner .article-image__decoration,.article-image__inner .article-image__decoration{position:absolute;padding:0;z-index:-1;width:calc(100% * (2/4))}.article-image--p1__inner .article-image__decoration--top,.article-image__inner .article-image__decoration--top{top:-75px}.article-image--p1__inner .article-image__decoration--left,.article-image__inner .article-image__decoration--left{left:-20px}.article-image--p1__inner .article-image__decoration--right,.article-image__inner .article-image__decoration--right{right:-20px}.article-image--p1__inner .article-image__decoration--bottom,.article-image__inner .article-image__decoration--bottom{bottom:-75px}.article-image--p1__decoration .article-image__inner,.article-image__decoration .article-image__inner{overflow:visible;z-index:1}.article-image--p1__decoration--top,.article-image__decoration--top{padding-top:80px}.article-image--p1__decoration--bottom,.article-image__decoration--bottom{padding-bottom:120px}.article-image--hero,.article-image--p1--hero{width:100%;padding:0;padding-bottom:30px;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.article-image--p1__image,.article-image__image{width:100%;height:auto;max-width:none}.article-image--p1--p2 .media_caption,.article-image--p1--p3 .media_caption,.article-image--p2 .media_caption,.article-image--p3 .media_caption{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.article-image--p1--p2 .media_caption-inner,.article-image--p1--p3 .media_caption-inner,.article-image--p2 .media_caption-inner,.article-image--p3 .media_caption-inner{padding-bottom:0}.article-image .media-caption__credit,.article-image--p1 .media-caption__credit{display:block;font-family:Maax-Italic,"Helvetica Neue",Helvetica,Arial,sans-serif;color:#fff;width:100%;margin-bottom:20px}.article-image .media-caption__credit span,.article-image--p1 .media-caption__credit span{font-weight:700}@media (min-width:768px){.article-image{padding:0 40px 40px 40px}.article-image--hero{width:100%;padding:0;padding-bottom:30px}.article-image__inner .article-image__decoration{position:absolute;padding:0;z-index:-1;width:calc(100% * (5/12))}.article-image__inner .article-image__decoration--top{top:-140px}.article-image__inner .article-image__decoration--left{left:-40px}.article-image__inner .article-image__decoration--right{right:-40px}.article-image__decoration--top{padding-top:100px}.article-image__decoration--bottom{padding-bottom:160px}}@media (min-width:1024px){.article-image{padding:0 40px 60px 40px}.article-image--hero{width:100%;padding:0;padding-bottom:40px}.article-image--hero-feature{padding-bottom:120px}.article-image__decoration--top{padding-top:100px}.article-image__decoration--bottom{padding-bottom:160px}.article-image--p2 .article-image__inner{max-width:580px;margin:0 auto}.article-image--p2 .media-caption{height:100%}.article-image--p2 .media-caption__inner{padding-top:0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.article-image--p2 .media-caption__text{width:100%;margin-bottom:10px}.article-image--p3{margin:0 8.33%;width:33.32%;max-width:280px;padding:0 0 20px 0;float:left;display:inline-block}.article-image--p3 .media-caption{height:100%}.article-image--p3 .media-caption__inner{padding-top:0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.article-image--p3 .media-caption__text{width:100%;margin-bottom:20px}}@media print and (min-width:460px){.article-image{display:block!important;max-width:500px!important;margin:0 auto!important;width:auto!important;text-align:center;float:none}.article-image--hero{display:none!important}}.sidebar--article .article-rail-item--is-hidden{display:none}.article-text{width:100%;padding:0 20px 40px 20px}.article-text__inner{width:100%;font-size:16px}.article-text__inner p{color:#222;font-size:16px;line-height:1.62;margin-bottom:1.62em}.article-text__inner p a{text-decoration:underline}.article-text__inner p:last-child{margin-bottom:0}.article-text__inner h3{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;line-height:1.62;margin-bottom:20px}.article-text__inner ul{margin-bottom:40px}.article-text__inner ul:last-child{margin-bottom:0}.article-text__inner ul>li{font-size:16px;line-height:1.62;background-position:0 7px;padding-left:30px;margin-bottom:10px}.article-text__inner ul>li:last-child{margin-bottom:0}.article-text__inner ol{list-style-type:none;margin-bottom:40px}.article-text__inner ol:last-child{margin-bottom:0}.article-text__inner ol>li{position:relative;padding-left:72px;margin-bottom:20px;font-size:16px;line-height:1.62;counter-increment:customlistcounter}.article-text__inner ol>li:before{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;position:absolute;left:0;top:2px;width:30px;height:30px;border:2px solid #f1f1f1;border-radius:50%;font-size:15px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;color:#fff;content:counter(customlistcounter) " "}.article-text__inner ol>li:last-child{margin-bottom:0}.article-text__inner ol:first-child{counter-reset:customlistcounter}.article-text__tombstone{width:auto;height:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.article-text__tombstone img{height:16px;width:auto;margin-left:5px}.article-text--recirc .article-text__inner p{color:#767676}.article-text--last{padding:0 20px 20px 20px}@media (min-width:768px){.article-text{padding:0 40px 40px 40px}.article-text--last{padding:0 40px 20px 40px}.article-text--guide{padding-bottom:60px}}@media (min-width:1024px){.article-text{padding:0 40px 60px 40px}.article-text__inner{font-size:18px;max-width:580px;margin:0 auto}.article-text__inner p{font-size:18px;line-height:1.56}.article-text__inner h3{font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:18px;line-height:1.56}.article-text__inner ul>li{font-size:18px;line-height:1.56;background-position:0 9px}.article-text__inner ol>li{font-size:18px;line-height:1.56}.article-text--p2{padding:0 40px 60px 40px}.article-text--last{padding:0 40px 20px 40px}.article-text--guide{padding-bottom:100px}.article-text--guide+.article__recirc--inline{-webkit-transform:translateY(-65px);transform:translateY(-65px)}.article-text--guide+.article__recirc--inline+.article-text--guide{-webkit-transform:translateY(-65px);transform:translateY(-65px);margin-bottom:-65px}}.article-date-share+.article-text--feature{padding-top:1px}.article-date-share+.article-text--feature .article-text__inner p:first-child:first-letter{font-size:50px;font-family:Abril-Fatface-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif;display:inline-block;float:left;line-height:0;margin-top:20px;margin-bottom:10px;margin-right:10px}@media (min-width:768px){.article-date-share+.article-text--feature .article-text__inner p:first-child:first-letter{font-size:70px;margin-bottom:20px;margin-top:15px;margin-right:10px}}@media (min-width:1024px){.article-date-share+.article-text--feature .article-text__inner{margin-top:40px}.article-date-share+.article-text--feature .article-text__inner p:first-child:first-letter{font-size:100px;margin-bottom:35px;margin-top:10px;margin-right:10px}}@media print and (min-width:460px){.article-text__inner{max-width:100%!important}.article-text__inner a{color:#222!important}.article-text__inner p{font-size:16px!important}}.article-subnavigation{width:100%;padding:20px;margin-bottom:0;font-family:Abril-Fatface-Regular,"Helvetica Neue",Helvetica,Arial,sans-serif}.article-subnavigation__inner{width:100%}.article-subnavigation__headline{font-size:22px;line-height:normal;margin-bottom:10px}.article-subnavigation__links{width:100%;border-top:5px solid #eee;border-bottom:4px solid #eee}.article-subnavigation__link{border-bottom:1px solid #eee;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.article-subnavigation__link--number{color:#767676;font-size:14.5px;line-height:normal;background-color:#f3f3f3;border-radius:25px;width:25px;height:25px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.article-subnavigation__link--text{font-size:14px;line-height:20px;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;text-decoration:underline;padding:15px 12px;color:#222;-webkit-transition:color .15s linear;transition:color .15s linear}.article-subnavigation__link:hover .article-subnavigation__link--text{color:inherit}@media (min-width:768px){.article-subnavigation{padding:0 40px 40px 40px}}@media (min-width:1024px){.article-subnavigation__inner{max-width:580px;margin:0 auto}.article-subnavigation__headline{font-size:24px}.article-subnavigation__list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-subnavigation__link{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0}.article-subnavigation__link--text{font-size:16px}}.article-affiliate-disclaimer{font-family:Maax-Italic,"Helvetica Neue",Helvetica,Arial,sans-serif;color:#767676;font-size:12px;width:100%;margin-bottom:30px;padding:0 20px;-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.article-affiliate-disclaimer a{text-decoration:underline}@media (min-width:768px){.article-affiliate-disclaimer{padding:0 40px;font-size:14px}}@media (min-width:1024px){.article-affiliate-disclaimer__inner{max-width:580px;margin:0 auto}}@media print and (min-width:460px){.article-affiliate-disclaimer{display:none!important}}.article-reviewer-byline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-family:Maax-Medium,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;letter-spacing:1.29px;color:#767676;fill:#767676;text-transform:uppercase;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:25px;margin-top:-5px}.article-reviewer-byline__divider{display:none;margin:0 13px}.article-reviewer-byline__link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-reviewer-byline svg{height:13px;width:13px;margin-left:8px}.article-reviewer-byline svg *{fill:inherit}@media (min-width:768px){.article-reviewer-byline__divider{display:block}}.article-native-share{display:none;position:fixed;right:0;bottom:65px;z-index:1001;background:#fff;border-radius:50% 0 0 50%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-shadow:0 1px 7px 0 rgba(145,145,145,.35);box-shadow:0 1px 7px 0 rgba(145,145,145,.35);-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer;outline:0;width:50px;height:55px}.article-native-share svg{width:33px;height:32px;margin-left:15px;margin-top:7px}.article-native-share.visible{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-native-share.move-up{bottom:45%!important}@media print{.article-native-share{display:none!important}}@media (min-width:768px){.article-native-share{display:none}}.article-astro-header{background:#f6f6f6;padding:22px 17px;overflow-x:auto;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;top:0;left:0}.article-astro-header>:last-child{border-right:none;margin-right:0}.article-astro-header__card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-right:2px solid #ddd;padding-right:24px;margin-right:36px;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;max-width:300px}.article-astro-header__card h4{font-weight:500;font-size:14px}.article-astro-header__card p{font-size:14px;line-height:16px;color:#666;margin:0;margin-top:3px}@media (max-width:1024px){.article-astro-header__card{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}}.article-astro-header__card figure{margin-right:13px;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}@media (min-width:1024px){.article-astro-header{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}}.print-only{display:none;width:100%;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.print-only .print-only--logo{width:100px;margin:0 auto;margin-bottom:40px}.print-only .print-only--url{display:block;font-size:16px;margin:0 auto;padding-top:15px;padding-bottom:30px;border-top:1px solid #222}.print-only .print-only--url:last-of-type{page-break-after:auto}@media print and (min-width:460px){.print-only{display:block;page-break-inside:avoid}}.visually-hidden{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;clip:rect(0 0 0 0);overflow:hidden}.is-mirrored{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.c-black{color:#222}.c-black svg *{fill:#222}.guides-filters__item.b-black{border:2px solid #222}.guides-filters__item.b-black.selected{background:#222;color:#fff}.b-black{border-color:#222}.b-black.active,.b-black:hover{border-color:#222;background:#222;color:#fff}.article-date-share+.article-text--c-black.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-black.article-text--feature .article-text__inner p:first-letter{color:#222}.article-body-list--c-black a,.article-text--c-black a{color:#222}.article-body-list--c-black ul>li,.article-text--c-black ul>li{background-image:radial-gradient(circle,#222,#222 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-black ol>li:before,.article-text--c-black ol>li:before{background-color:#222}.bg-black{background:#222}.bc-black{background-image:radial-gradient(circle,#222 1px,transparent 1.5px)}.hov-border-black:hover{border-color:#222}.hov-bg-black:hover{background-color:#222}.c-light-black{color:#4a4a4a}.c-light-black svg *{fill:#4a4a4a}.guides-filters__item.b-light-black{border:2px solid #4a4a4a}.guides-filters__item.b-light-black.selected{background:#4a4a4a;color:#fff}.b-light-black{border-color:#4a4a4a}.b-light-black.active,.b-light-black:hover{border-color:#4a4a4a;background:#4a4a4a;color:#fff}.article-date-share+.article-text--c-light-black.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-light-black.article-text--feature .article-text__inner p:first-letter{color:#4a4a4a}.article-body-list--c-light-black a,.article-text--c-light-black a{color:#4a4a4a}.article-body-list--c-light-black ul>li,.article-text--c-light-black ul>li{background-image:radial-gradient(circle,#4a4a4a,#4a4a4a 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-light-black ol>li:before,.article-text--c-light-black ol>li:before{background-color:#4a4a4a}.bg-light-black{background:#4a4a4a}.bc-light-black{background-image:radial-gradient(circle,#4a4a4a 1px,transparent 1.5px)}.hov-border-light-black:hover{border-color:#4a4a4a}.hov-bg-light-black:hover{background-color:#4a4a4a}.c-white{color:#fff}.c-white svg *{fill:#fff}.guides-filters__item.b-white{border:2px solid #fff}.guides-filters__item.b-white.selected{background:#fff;color:#fff}.b-white{border-color:#fff}.b-white.active,.b-white:hover{border-color:#fff;background:#fff;color:#fff}.article-date-share+.article-text--c-white.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-white.article-text--feature .article-text__inner p:first-letter{color:#fff}.article-body-list--c-white a,.article-text--c-white a{color:#fff}.article-body-list--c-white ul>li,.article-text--c-white ul>li{background-image:radial-gradient(circle,#fff,#fff 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-white ol>li:before,.article-text--c-white ol>li:before{background-color:#fff}.bg-white{background:#fff}.bc-white{background-image:radial-gradient(circle,#fff 1px,transparent 1.5px)}.hov-border-white:hover{border-color:#fff}.hov-bg-white:hover{background-color:#fff}.c-gray{color:#767676}.c-gray svg *{fill:#767676}.guides-filters__item.b-gray{border:2px solid #767676}.guides-filters__item.b-gray.selected{background:#767676;color:#fff}.b-gray{border-color:#767676}.b-gray.active,.b-gray:hover{border-color:#767676;background:#767676;color:#fff}.article-date-share+.article-text--c-gray.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gray.article-text--feature .article-text__inner p:first-letter{color:#767676}.article-body-list--c-gray a,.article-text--c-gray a{color:#767676}.article-body-list--c-gray ul>li,.article-text--c-gray ul>li{background-image:radial-gradient(circle,#767676,#767676 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gray ol>li:before,.article-text--c-gray ol>li:before{background-color:#767676}.bg-gray{background:#767676}.bc-gray{background-image:radial-gradient(circle,#767676 1px,transparent 1.5px)}.hov-border-gray:hover{border-color:#767676}.hov-bg-gray:hover{background-color:#767676}.c-light-gray{color:#f1f1f1}.c-light-gray svg *{fill:#f1f1f1}.guides-filters__item.b-light-gray{border:2px solid #f1f1f1}.guides-filters__item.b-light-gray.selected{background:#f1f1f1;color:#fff}.b-light-gray{border-color:#f1f1f1}.b-light-gray.active,.b-light-gray:hover{border-color:#f1f1f1;background:#f1f1f1;color:#fff}.article-date-share+.article-text--c-light-gray.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-light-gray.article-text--feature .article-text__inner p:first-letter{color:#f1f1f1}.article-body-list--c-light-gray a,.article-text--c-light-gray a{color:#f1f1f1}.article-body-list--c-light-gray ul>li,.article-text--c-light-gray ul>li{background-image:radial-gradient(circle,#f1f1f1,#f1f1f1 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-light-gray ol>li:before,.article-text--c-light-gray ol>li:before{background-color:#f1f1f1}.bg-light-gray{background:#f1f1f1}.bc-light-gray{background-image:radial-gradient(circle,#f1f1f1 1px,transparent 1.5px)}.hov-border-light-gray:hover{border-color:#f1f1f1}.hov-bg-light-gray:hover{background-color:#f1f1f1}.c-medium-gray{color:#bbb}.c-medium-gray svg *{fill:#bbb}.guides-filters__item.b-medium-gray{border:2px solid #bbb}.guides-filters__item.b-medium-gray.selected{background:#bbb;color:#fff}.b-medium-gray{border-color:#bbb}.b-medium-gray.active,.b-medium-gray:hover{border-color:#bbb;background:#bbb;color:#fff}.article-date-share+.article-text--c-medium-gray.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-medium-gray.article-text--feature .article-text__inner p:first-letter{color:#bbb}.article-body-list--c-medium-gray a,.article-text--c-medium-gray a{color:#bbb}.article-body-list--c-medium-gray ul>li,.article-text--c-medium-gray ul>li{background-image:radial-gradient(circle,#bbb,#bbb 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-medium-gray ol>li:before,.article-text--c-medium-gray ol>li:before{background-color:#bbb}.bg-medium-gray{background:#bbb}.bc-medium-gray{background-image:radial-gradient(circle,#bbb 1px,transparent 1.5px)}.hov-border-medium-gray:hover{border-color:#bbb}.hov-bg-medium-gray:hover{background-color:#bbb}.c-dark-gray{color:#454545}.c-dark-gray svg *{fill:#454545}.guides-filters__item.b-dark-gray{border:2px solid #454545}.guides-filters__item.b-dark-gray.selected{background:#454545;color:#fff}.b-dark-gray{border-color:#454545}.b-dark-gray.active,.b-dark-gray:hover{border-color:#454545;background:#454545;color:#fff}.article-date-share+.article-text--c-dark-gray.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-dark-gray.article-text--feature .article-text__inner p:first-letter{color:#454545}.article-body-list--c-dark-gray a,.article-text--c-dark-gray a{color:#454545}.article-body-list--c-dark-gray ul>li,.article-text--c-dark-gray ul>li{background-image:radial-gradient(circle,#454545,#454545 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-dark-gray ol>li:before,.article-text--c-dark-gray ol>li:before{background-color:#454545}.bg-dark-gray{background:#454545}.bc-dark-gray{background-image:radial-gradient(circle,#454545 1px,transparent 1.5px)}.hov-border-dark-gray:hover{border-color:#454545}.hov-bg-dark-gray:hover{background-color:#454545}.c-shadow-gray{color:#919191}.c-shadow-gray svg *{fill:#919191}.guides-filters__item.b-shadow-gray{border:2px solid #919191}.guides-filters__item.b-shadow-gray.selected{background:#919191;color:#fff}.b-shadow-gray{border-color:#919191}.b-shadow-gray.active,.b-shadow-gray:hover{border-color:#919191;background:#919191;color:#fff}.article-date-share+.article-text--c-shadow-gray.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-shadow-gray.article-text--feature .article-text__inner p:first-letter{color:#919191}.article-body-list--c-shadow-gray a,.article-text--c-shadow-gray a{color:#919191}.article-body-list--c-shadow-gray ul>li,.article-text--c-shadow-gray ul>li{background-image:radial-gradient(circle,#919191,#919191 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-shadow-gray ol>li:before,.article-text--c-shadow-gray ol>li:before{background-color:#919191}.bg-shadow-gray{background:#919191}.bc-shadow-gray{background-image:radial-gradient(circle,#919191 1px,transparent 1.5px)}.hov-border-shadow-gray:hover{border-color:#919191}.hov-bg-shadow-gray:hover{background-color:#919191}.c-yellow{color:#ffc280}.c-yellow svg *{fill:#ffc280}.guides-filters__item.b-yellow{border:2px solid #ffc280}.guides-filters__item.b-yellow.selected{background:#ffc280;color:#fff}.b-yellow{border-color:#ffc280}.b-yellow.active,.b-yellow:hover{border-color:#ffc280;background:#ffc280;color:#fff}.article-date-share+.article-text--c-yellow.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-yellow.article-text--feature .article-text__inner p:first-letter{color:#ffc280}.article-body-list--c-yellow a,.article-text--c-yellow a{color:#ffc280}.article-body-list--c-yellow ul>li,.article-text--c-yellow ul>li{background-image:radial-gradient(circle,#ffc280,#ffc280 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-yellow ol>li:before,.article-text--c-yellow ol>li:before{background-color:#ffc280}.bg-yellow{background:#ffc280}.bc-yellow{background-image:radial-gradient(circle,#ffc280 1px,transparent 1.5px)}.hov-border-yellow:hover{border-color:#ffc280}.hov-bg-yellow:hover{background-color:#ffc280}.c-orange{color:#ff8770}.c-orange svg *{fill:#ff8770}.guides-filters__item.b-orange{border:2px solid #ff8770}.guides-filters__item.b-orange.selected{background:#ff8770;color:#fff}.b-orange{border-color:#ff8770}.b-orange.active,.b-orange:hover{border-color:#ff8770;background:#ff8770;color:#fff}.article-date-share+.article-text--c-orange.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-orange.article-text--feature .article-text__inner p:first-letter{color:#ff8770}.article-body-list--c-orange a,.article-text--c-orange a{color:#ff8770}.article-body-list--c-orange ul>li,.article-text--c-orange ul>li{background-image:radial-gradient(circle,#ff8770,#ff8770 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-orange ol>li:before,.article-text--c-orange ol>li:before{background-color:#ff8770}.bg-orange{background:#ff8770}.bc-orange{background-image:radial-gradient(circle,#ff8770 1px,transparent 1.5px)}.hov-border-orange:hover{border-color:#ff8770}.hov-bg-orange:hover{background-color:#ff8770}.c-red{color:#ca4955}.c-red svg *{fill:#ca4955}.guides-filters__item.b-red{border:2px solid #ca4955}.guides-filters__item.b-red.selected{background:#ca4955;color:#fff}.b-red{border-color:#ca4955}.b-red.active,.b-red:hover{border-color:#ca4955;background:#ca4955;color:#fff}.article-date-share+.article-text--c-red.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-red.article-text--feature .article-text__inner p:first-letter{color:#ca4955}.article-body-list--c-red a,.article-text--c-red a{color:#ca4955}.article-body-list--c-red ul>li,.article-text--c-red ul>li{background-image:radial-gradient(circle,#ca4955,#ca4955 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-red ol>li:before,.article-text--c-red ol>li:before{background-color:#ca4955}.bg-red{background:#ca4955}.bc-red{background-image:radial-gradient(circle,#ca4955 1px,transparent 1.5px)}.hov-border-red:hover{border-color:#ca4955}.hov-bg-red:hover{background-color:#ca4955}.c-mauve{color:#c14e78}.c-mauve svg *{fill:#c14e78}.guides-filters__item.b-mauve{border:2px solid #c14e78}.guides-filters__item.b-mauve.selected{background:#c14e78;color:#fff}.b-mauve{border-color:#c14e78}.b-mauve.active,.b-mauve:hover{border-color:#c14e78;background:#c14e78;color:#fff}.article-date-share+.article-text--c-mauve.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-mauve.article-text--feature .article-text__inner p:first-letter{color:#c14e78}.article-body-list--c-mauve a,.article-text--c-mauve a{color:#c14e78}.article-body-list--c-mauve ul>li,.article-text--c-mauve ul>li{background-image:radial-gradient(circle,#c14e78,#c14e78 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-mauve ol>li:before,.article-text--c-mauve ol>li:before{background-color:#c14e78}.bg-mauve{background:#c14e78}.bc-mauve{background-image:radial-gradient(circle,#c14e78 1px,transparent 1.5px)}.hov-border-mauve:hover{border-color:#c14e78}.hov-bg-mauve:hover{background-color:#c14e78}.c-light-purple{color:#a35ca2}.c-light-purple svg *{fill:#a35ca2}.guides-filters__item.b-light-purple{border:2px solid #a35ca2}.guides-filters__item.b-light-purple.selected{background:#a35ca2;color:#fff}.b-light-purple{border-color:#a35ca2}.b-light-purple.active,.b-light-purple:hover{border-color:#a35ca2;background:#a35ca2;color:#fff}.article-date-share+.article-text--c-light-purple.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-light-purple.article-text--feature .article-text__inner p:first-letter{color:#a35ca2}.article-body-list--c-light-purple a,.article-text--c-light-purple a{color:#a35ca2}.article-body-list--c-light-purple ul>li,.article-text--c-light-purple ul>li{background-image:radial-gradient(circle,#a35ca2,#a35ca2 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-light-purple ol>li:before,.article-text--c-light-purple ol>li:before{background-color:#a35ca2}.bg-light-purple{background:#a35ca2}.bc-light-purple{background-image:radial-gradient(circle,#a35ca2 1px,transparent 1.5px)}.hov-border-light-purple:hover{border-color:#a35ca2}.hov-bg-light-purple:hover{background-color:#a35ca2}.c-purple{color:#7d5bae}.c-purple svg *{fill:#7d5bae}.guides-filters__item.b-purple{border:2px solid #7d5bae}.guides-filters__item.b-purple.selected{background:#7d5bae;color:#fff}.b-purple{border-color:#7d5bae}.b-purple.active,.b-purple:hover{border-color:#7d5bae;background:#7d5bae;color:#fff}.article-date-share+.article-text--c-purple.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-purple.article-text--feature .article-text__inner p:first-letter{color:#7d5bae}.article-body-list--c-purple a,.article-text--c-purple a{color:#7d5bae}.article-body-list--c-purple ul>li,.article-text--c-purple ul>li{background-image:radial-gradient(circle,#7d5bae,#7d5bae 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-purple ol>li:before,.article-text--c-purple ol>li:before{background-color:#7d5bae}.bg-purple{background:#7d5bae}.bc-purple{background-image:radial-gradient(circle,#7d5bae 1px,transparent 1.5px)}.hov-border-purple:hover{border-color:#7d5bae}.hov-bg-purple:hover{background-color:#7d5bae}.c-deep-purple{color:#5e58b6}.c-deep-purple svg *{fill:#5e58b6}.guides-filters__item.b-deep-purple{border:2px solid #5e58b6}.guides-filters__item.b-deep-purple.selected{background:#5e58b6;color:#fff}.b-deep-purple{border-color:#5e58b6}.b-deep-purple.active,.b-deep-purple:hover{border-color:#5e58b6;background:#5e58b6;color:#fff}.article-date-share+.article-text--c-deep-purple.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-deep-purple.article-text--feature .article-text__inner p:first-letter{color:#5e58b6}.article-body-list--c-deep-purple a,.article-text--c-deep-purple a{color:#5e58b6}.article-body-list--c-deep-purple ul>li,.article-text--c-deep-purple ul>li{background-image:radial-gradient(circle,#5e58b6,#5e58b6 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-deep-purple ol>li:before,.article-text--c-deep-purple ol>li:before{background-color:#5e58b6}.bg-deep-purple{background:#5e58b6}.bc-deep-purple{background-image:radial-gradient(circle,#5e58b6 1px,transparent 1.5px)}.hov-border-deep-purple:hover{border-color:#5e58b6}.hov-bg-deep-purple:hover{background-color:#5e58b6}.c-dark-purple{color:#6058bc}.c-dark-purple svg *{fill:#6058bc}.guides-filters__item.b-dark-purple{border:2px solid #6058bc}.guides-filters__item.b-dark-purple.selected{background:#6058bc;color:#fff}.b-dark-purple{border-color:#6058bc}.b-dark-purple.active,.b-dark-purple:hover{border-color:#6058bc;background:#6058bc;color:#fff}.article-date-share+.article-text--c-dark-purple.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-dark-purple.article-text--feature .article-text__inner p:first-letter{color:#6058bc}.article-body-list--c-dark-purple a,.article-text--c-dark-purple a{color:#6058bc}.article-body-list--c-dark-purple ul>li,.article-text--c-dark-purple ul>li{background-image:radial-gradient(circle,#6058bc,#6058bc 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-dark-purple ol>li:before,.article-text--c-dark-purple ol>li:before{background-color:#6058bc}.bg-dark-purple{background:#6058bc}.bc-dark-purple{background-image:radial-gradient(circle,#6058bc 1px,transparent 1.5px)}.hov-border-dark-purple:hover{border-color:#6058bc}.hov-bg-dark-purple:hover{background-color:#6058bc}.c-brown{color:#b54b09}.c-brown svg *{fill:#b54b09}.guides-filters__item.b-brown{border:2px solid #b54b09}.guides-filters__item.b-brown.selected{background:#b54b09;color:#fff}.b-brown{border-color:#b54b09}.b-brown.active,.b-brown:hover{border-color:#b54b09;background:#b54b09;color:#fff}.article-date-share+.article-text--c-brown.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-brown.article-text--feature .article-text__inner p:first-letter{color:#b54b09}.article-body-list--c-brown a,.article-text--c-brown a{color:#b54b09}.article-body-list--c-brown ul>li,.article-text--c-brown ul>li{background-image:radial-gradient(circle,#b54b09,#b54b09 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-brown ol>li:before,.article-text--c-brown ol>li:before{background-color:#b54b09}.bg-brown{background:#b54b09}.bc-brown{background-image:radial-gradient(circle,#b54b09 1px,transparent 1.5px)}.hov-border-brown:hover{border-color:#b54b09}.hov-bg-brown:hover{background-color:#b54b09}.c-gold{color:#bf7f3b}.c-gold svg *{fill:#bf7f3b}.guides-filters__item.b-gold{border:2px solid #bf7f3b}.guides-filters__item.b-gold.selected{background:#bf7f3b;color:#fff}.b-gold{border-color:#bf7f3b}.b-gold.active,.b-gold:hover{border-color:#bf7f3b;background:#bf7f3b;color:#fff}.article-date-share+.article-text--c-gold.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gold.article-text--feature .article-text__inner p:first-letter{color:#bf7f3b}.article-body-list--c-gold a,.article-text--c-gold a{color:#bf7f3b}.article-body-list--c-gold ul>li,.article-text--c-gold ul>li{background-image:radial-gradient(circle,#bf7f3b,#bf7f3b 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gold ol>li:before,.article-text--c-gold ol>li:before{background-color:#bf7f3b}.bg-gold{background:#bf7f3b}.bc-gold{background-image:radial-gradient(circle,#bf7f3b 1px,transparent 1.5px)}.hov-border-gold:hover{border-color:#bf7f3b}.hov-bg-gold:hover{background-color:#bf7f3b}.c-peach{color:#f9c1a0}.c-peach svg *{fill:#f9c1a0}.guides-filters__item.b-peach{border:2px solid #f9c1a0}.guides-filters__item.b-peach.selected{background:#f9c1a0;color:#fff}.b-peach{border-color:#f9c1a0}.b-peach.active,.b-peach:hover{border-color:#f9c1a0;background:#f9c1a0;color:#fff}.article-date-share+.article-text--c-peach.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-peach.article-text--feature .article-text__inner p:first-letter{color:#f9c1a0}.article-body-list--c-peach a,.article-text--c-peach a{color:#f9c1a0}.article-body-list--c-peach ul>li,.article-text--c-peach ul>li{background-image:radial-gradient(circle,#f9c1a0,#f9c1a0 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-peach ol>li:before,.article-text--c-peach ol>li:before{background-color:#f9c1a0}.bg-peach{background:#f9c1a0}.bc-peach{background-image:radial-gradient(circle,#f9c1a0 1px,transparent 1.5px)}.hov-border-peach:hover{border-color:#f9c1a0}.hov-bg-peach:hover{background-color:#f9c1a0}.c-dark-blue{color:#303091}.c-dark-blue svg *{fill:#303091}.guides-filters__item.b-dark-blue{border:2px solid #303091}.guides-filters__item.b-dark-blue.selected{background:#303091;color:#fff}.b-dark-blue{border-color:#303091}.b-dark-blue.active,.b-dark-blue:hover{border-color:#303091;background:#303091;color:#fff}.article-date-share+.article-text--c-dark-blue.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-dark-blue.article-text--feature .article-text__inner p:first-letter{color:#303091}.article-body-list--c-dark-blue a,.article-text--c-dark-blue a{color:#303091}.article-body-list--c-dark-blue ul>li,.article-text--c-dark-blue ul>li{background-image:radial-gradient(circle,#303091,#303091 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-dark-blue ol>li:before,.article-text--c-dark-blue ol>li:before{background-color:#303091}.bg-dark-blue{background:#303091}.bc-dark-blue{background-image:radial-gradient(circle,#303091 1px,transparent 1.5px)}.hov-border-dark-blue:hover{border-color:#303091}.hov-bg-dark-blue:hover{background-color:#303091}.c-medium-blue{color:#1262b2}.c-medium-blue svg *{fill:#1262b2}.guides-filters__item.b-medium-blue{border:2px solid #1262b2}.guides-filters__item.b-medium-blue.selected{background:#1262b2;color:#fff}.b-medium-blue{border-color:#1262b2}.b-medium-blue.active,.b-medium-blue:hover{border-color:#1262b2;background:#1262b2;color:#fff}.article-date-share+.article-text--c-medium-blue.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-medium-blue.article-text--feature .article-text__inner p:first-letter{color:#1262b2}.article-body-list--c-medium-blue a,.article-text--c-medium-blue a{color:#1262b2}.article-body-list--c-medium-blue ul>li,.article-text--c-medium-blue ul>li{background-image:radial-gradient(circle,#1262b2,#1262b2 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-medium-blue ol>li:before,.article-text--c-medium-blue ol>li:before{background-color:#1262b2}.bg-medium-blue{background:#1262b2}.bc-medium-blue{background-image:radial-gradient(circle,#1262b2 1px,transparent 1.5px)}.hov-border-medium-blue:hover{border-color:#1262b2}.hov-bg-medium-blue:hover{background-color:#1262b2}.c-royal-blue{color:#4961bd}.c-royal-blue svg *{fill:#4961bd}.guides-filters__item.b-royal-blue{border:2px solid #4961bd}.guides-filters__item.b-royal-blue.selected{background:#4961bd;color:#fff}.b-royal-blue{border-color:#4961bd}.b-royal-blue.active,.b-royal-blue:hover{border-color:#4961bd;background:#4961bd;color:#fff}.article-date-share+.article-text--c-royal-blue.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-royal-blue.article-text--feature .article-text__inner p:first-letter{color:#4961bd}.article-body-list--c-royal-blue a,.article-text--c-royal-blue a{color:#4961bd}.article-body-list--c-royal-blue ul>li,.article-text--c-royal-blue ul>li{background-image:radial-gradient(circle,#4961bd,#4961bd 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-royal-blue ol>li:before,.article-text--c-royal-blue ol>li:before{background-color:#4961bd}.bg-royal-blue{background:#4961bd}.bc-royal-blue{background-image:radial-gradient(circle,#4961bd 1px,transparent 1.5px)}.hov-border-royal-blue:hover{border-color:#4961bd}.hov-bg-royal-blue:hover{background-color:#4961bd}.c-sky-blue{color:#4f97ee}.c-sky-blue svg *{fill:#4f97ee}.guides-filters__item.b-sky-blue{border:2px solid #4f97ee}.guides-filters__item.b-sky-blue.selected{background:#4f97ee;color:#fff}.b-sky-blue{border-color:#4f97ee}.b-sky-blue.active,.b-sky-blue:hover{border-color:#4f97ee;background:#4f97ee;color:#fff}.article-date-share+.article-text--c-sky-blue.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-sky-blue.article-text--feature .article-text__inner p:first-letter{color:#4f97ee}.article-body-list--c-sky-blue a,.article-text--c-sky-blue a{color:#4f97ee}.article-body-list--c-sky-blue ul>li,.article-text--c-sky-blue ul>li{background-image:radial-gradient(circle,#4f97ee,#4f97ee 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-sky-blue ol>li:before,.article-text--c-sky-blue ol>li:before{background-color:#4f97ee}.bg-sky-blue{background:#4f97ee}.bc-sky-blue{background-image:radial-gradient(circle,#4f97ee 1px,transparent 1.5px)}.hov-border-sky-blue:hover{border-color:#4f97ee}.hov-bg-sky-blue:hover{background-color:#4f97ee}.c-teal{color:#00a3b7}.c-teal svg *{fill:#00a3b7}.guides-filters__item.b-teal{border:2px solid #00a3b7}.guides-filters__item.b-teal.selected{background:#00a3b7;color:#fff}.b-teal{border-color:#00a3b7}.b-teal.active,.b-teal:hover{border-color:#00a3b7;background:#00a3b7;color:#fff}.article-date-share+.article-text--c-teal.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-teal.article-text--feature .article-text__inner p:first-letter{color:#00a3b7}.article-body-list--c-teal a,.article-text--c-teal a{color:#00a3b7}.article-body-list--c-teal ul>li,.article-text--c-teal ul>li{background-image:radial-gradient(circle,#00a3b7,#00a3b7 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-teal ol>li:before,.article-text--c-teal ol>li:before{background-color:#00a3b7}.bg-teal{background:#00a3b7}.bc-teal{background-image:radial-gradient(circle,#00a3b7 1px,transparent 1.5px)}.hov-border-teal:hover{border-color:#00a3b7}.hov-bg-teal:hover{background-color:#00a3b7}.c-dark-teal{color:#2d7b9e}.c-dark-teal svg *{fill:#2d7b9e}.guides-filters__item.b-dark-teal{border:2px solid #2d7b9e}.guides-filters__item.b-dark-teal.selected{background:#2d7b9e;color:#fff}.b-dark-teal{border-color:#2d7b9e}.b-dark-teal.active,.b-dark-teal:hover{border-color:#2d7b9e;background:#2d7b9e;color:#fff}.article-date-share+.article-text--c-dark-teal.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-dark-teal.article-text--feature .article-text__inner p:first-letter{color:#2d7b9e}.article-body-list--c-dark-teal a,.article-text--c-dark-teal a{color:#2d7b9e}.article-body-list--c-dark-teal ul>li,.article-text--c-dark-teal ul>li{background-image:radial-gradient(circle,#2d7b9e,#2d7b9e 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-dark-teal ol>li:before,.article-text--c-dark-teal ol>li:before{background-color:#2d7b9e}.bg-dark-teal{background:#2d7b9e}.bc-dark-teal{background-image:radial-gradient(circle,#2d7b9e 1px,transparent 1.5px)}.hov-border-dark-teal:hover{border-color:#2d7b9e}.hov-bg-dark-teal:hover{background-color:#2d7b9e}.c-bright-teal{color:#3ec6c2}.c-bright-teal svg *{fill:#3ec6c2}.guides-filters__item.b-bright-teal{border:2px solid #3ec6c2}.guides-filters__item.b-bright-teal.selected{background:#3ec6c2;color:#fff}.b-bright-teal{border-color:#3ec6c2}.b-bright-teal.active,.b-bright-teal:hover{border-color:#3ec6c2;background:#3ec6c2;color:#fff}.article-date-share+.article-text--c-bright-teal.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-bright-teal.article-text--feature .article-text__inner p:first-letter{color:#3ec6c2}.article-body-list--c-bright-teal a,.article-text--c-bright-teal a{color:#3ec6c2}.article-body-list--c-bright-teal ul>li,.article-text--c-bright-teal ul>li{background-image:radial-gradient(circle,#3ec6c2,#3ec6c2 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-bright-teal ol>li:before,.article-text--c-bright-teal ol>li:before{background-color:#3ec6c2}.bg-bright-teal{background:#3ec6c2}.bc-bright-teal{background-image:radial-gradient(circle,#3ec6c2 1px,transparent 1.5px)}.hov-border-bright-teal:hover{border-color:#3ec6c2}.hov-bg-bright-teal:hover{background-color:#3ec6c2}.c-teal-green{color:#36a58a}.c-teal-green svg *{fill:#36a58a}.guides-filters__item.b-teal-green{border:2px solid #36a58a}.guides-filters__item.b-teal-green.selected{background:#36a58a;color:#fff}.b-teal-green{border-color:#36a58a}.b-teal-green.active,.b-teal-green:hover{border-color:#36a58a;background:#36a58a;color:#fff}.article-date-share+.article-text--c-teal-green.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-teal-green.article-text--feature .article-text__inner p:first-letter{color:#36a58a}.article-body-list--c-teal-green a,.article-text--c-teal-green a{color:#36a58a}.article-body-list--c-teal-green ul>li,.article-text--c-teal-green ul>li{background-image:radial-gradient(circle,#36a58a,#36a58a 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-teal-green ol>li:before,.article-text--c-teal-green ol>li:before{background-color:#36a58a}.bg-teal-green{background:#36a58a}.bc-teal-green{background-image:radial-gradient(circle,#36a58a 1px,transparent 1.5px)}.hov-border-teal-green:hover{border-color:#36a58a}.hov-bg-teal-green:hover{background-color:#36a58a}.c-green{color:#378358}.c-green svg *{fill:#378358}.guides-filters__item.b-green{border:2px solid #378358}.guides-filters__item.b-green.selected{background:#378358;color:#fff}.b-green{border-color:#378358}.b-green.active,.b-green:hover{border-color:#378358;background:#378358;color:#fff}.article-date-share+.article-text--c-green.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-green.article-text--feature .article-text__inner p:first-letter{color:#378358}.article-body-list--c-green a,.article-text--c-green a{color:#378358}.article-body-list--c-green ul>li,.article-text--c-green ul>li{background-image:radial-gradient(circle,#378358,#378358 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-green ol>li:before,.article-text--c-green ol>li:before{background-color:#378358}.bg-green{background:#378358}.bc-green{background-image:radial-gradient(circle,#378358 1px,transparent 1.5px)}.hov-border-green:hover{border-color:#378358}.hov-bg-green:hover{background-color:#378358}.c-shop-supplement{color:#ff9e1b}.c-shop-supplement svg *{fill:#ff9e1b}.guides-filters__item.b-shop-supplement{border:2px solid #ff9e1b}.guides-filters__item.b-shop-supplement.selected{background:#ff9e1b;color:#fff}.b-shop-supplement{border-color:#ff9e1b}.b-shop-supplement.active,.b-shop-supplement:hover{border-color:#ff9e1b;background:#ff9e1b;color:#fff}.article-date-share+.article-text--c-shop-supplement.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-shop-supplement.article-text--feature .article-text__inner p:first-letter{color:#ff9e1b}.article-body-list--c-shop-supplement a,.article-text--c-shop-supplement a{color:#ff9e1b}.article-body-list--c-shop-supplement ul>li,.article-text--c-shop-supplement ul>li{background-image:radial-gradient(circle,#ff9e1b,#ff9e1b 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-shop-supplement ol>li:before,.article-text--c-shop-supplement ol>li:before{background-color:#ff9e1b}.bg-shop-supplement{background:#ff9e1b}.bc-shop-supplement{background-image:radial-gradient(circle,#ff9e1b 1px,transparent 1.5px)}.hov-border-shop-supplement:hover{border-color:#ff9e1b}.hov-bg-shop-supplement:hover{background-color:#ff9e1b}.c-gg-orange{color:#e16b2c}.c-gg-orange svg *{fill:#e16b2c}.guides-filters__item.b-gg-orange{border:2px solid #e16b2c}.guides-filters__item.b-gg-orange.selected{background:#e16b2c;color:#fff}.b-gg-orange{border-color:#e16b2c}.b-gg-orange.active,.b-gg-orange:hover{border-color:#e16b2c;background:#e16b2c;color:#fff}.article-date-share+.article-text--c-gg-orange.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-orange.article-text--feature .article-text__inner p:first-letter{color:#e16b2c}.article-body-list--c-gg-orange a,.article-text--c-gg-orange a{color:#e16b2c}.article-body-list--c-gg-orange ul>li,.article-text--c-gg-orange ul>li{background-image:radial-gradient(circle,#e16b2c,#e16b2c 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-orange ol>li:before,.article-text--c-gg-orange ol>li:before{background-color:#e16b2c}.bg-gg-orange{background:#e16b2c}.bc-gg-orange{background-image:radial-gradient(circle,#e16b2c 1px,transparent 1.5px)}.hov-border-gg-orange:hover{border-color:#e16b2c}.hov-bg-gg-orange:hover{background-color:#e16b2c}.c-gg-blue{color:#1850a2}.c-gg-blue svg *{fill:#1850a2}.guides-filters__item.b-gg-blue{border:2px solid #1850a2}.guides-filters__item.b-gg-blue.selected{background:#1850a2;color:#fff}.b-gg-blue{border-color:#1850a2}.b-gg-blue.active,.b-gg-blue:hover{border-color:#1850a2;background:#1850a2;color:#fff}.article-date-share+.article-text--c-gg-blue.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-blue.article-text--feature .article-text__inner p:first-letter{color:#1850a2}.article-body-list--c-gg-blue a,.article-text--c-gg-blue a{color:#1850a2}.article-body-list--c-gg-blue ul>li,.article-text--c-gg-blue ul>li{background-image:radial-gradient(circle,#1850a2,#1850a2 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-blue ol>li:before,.article-text--c-gg-blue ol>li:before{background-color:#1850a2}.bg-gg-blue{background:#1850a2}.bc-gg-blue{background-image:radial-gradient(circle,#1850a2 1px,transparent 1.5px)}.hov-border-gg-blue:hover{border-color:#1850a2}.hov-bg-gg-blue:hover{background-color:#1850a2}.c-gg-purple{color:#843b9a}.c-gg-purple svg *{fill:#843b9a}.guides-filters__item.b-gg-purple{border:2px solid #843b9a}.guides-filters__item.b-gg-purple.selected{background:#843b9a;color:#fff}.b-gg-purple{border-color:#843b9a}.b-gg-purple.active,.b-gg-purple:hover{border-color:#843b9a;background:#843b9a;color:#fff}.article-date-share+.article-text--c-gg-purple.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-purple.article-text--feature .article-text__inner p:first-letter{color:#843b9a}.article-body-list--c-gg-purple a,.article-text--c-gg-purple a{color:#843b9a}.article-body-list--c-gg-purple ul>li,.article-text--c-gg-purple ul>li{background-image:radial-gradient(circle,#843b9a,#843b9a 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-purple ol>li:before,.article-text--c-gg-purple ol>li:before{background-color:#843b9a}.bg-gg-purple{background:#843b9a}.bc-gg-purple{background-image:radial-gradient(circle,#843b9a 1px,transparent 1.5px)}.hov-border-gg-purple:hover{border-color:#843b9a}.hov-bg-gg-purple:hover{background-color:#843b9a}.c-gg-green{color:#77a15c}.c-gg-green svg *{fill:#77a15c}.guides-filters__item.b-gg-green{border:2px solid #77a15c}.guides-filters__item.b-gg-green.selected{background:#77a15c;color:#fff}.b-gg-green{border-color:#77a15c}.b-gg-green.active,.b-gg-green:hover{border-color:#77a15c;background:#77a15c;color:#fff}.article-date-share+.article-text--c-gg-green.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-green.article-text--feature .article-text__inner p:first-letter{color:#77a15c}.article-body-list--c-gg-green a,.article-text--c-gg-green a{color:#77a15c}.article-body-list--c-gg-green ul>li,.article-text--c-gg-green ul>li{background-image:radial-gradient(circle,#77a15c,#77a15c 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-green ol>li:before,.article-text--c-gg-green ol>li:before{background-color:#77a15c}.bg-gg-green{background:#77a15c}.bc-gg-green{background-image:radial-gradient(circle,#77a15c 1px,transparent 1.5px)}.hov-border-gg-green:hover{border-color:#77a15c}.hov-bg-gg-green:hover{background-color:#77a15c}.c-gg-red{color:#ae2b4c}.c-gg-red svg *{fill:#ae2b4c}.guides-filters__item.b-gg-red{border:2px solid #ae2b4c}.guides-filters__item.b-gg-red.selected{background:#ae2b4c;color:#fff}.b-gg-red{border-color:#ae2b4c}.b-gg-red.active,.b-gg-red:hover{border-color:#ae2b4c;background:#ae2b4c;color:#fff}.article-date-share+.article-text--c-gg-red.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-red.article-text--feature .article-text__inner p:first-letter{color:#ae2b4c}.article-body-list--c-gg-red a,.article-text--c-gg-red a{color:#ae2b4c}.article-body-list--c-gg-red ul>li,.article-text--c-gg-red ul>li{background-image:radial-gradient(circle,#ae2b4c,#ae2b4c 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-red ol>li:before,.article-text--c-gg-red ol>li:before{background-color:#ae2b4c}.bg-gg-red{background:#ae2b4c}.bc-gg-red{background-image:radial-gradient(circle,#ae2b4c 1px,transparent 1.5px)}.hov-border-gg-red:hover{border-color:#ae2b4c}.hov-bg-gg-red:hover{background-color:#ae2b4c}.c-gg-pink{color:#e85e5d}.c-gg-pink svg *{fill:#e85e5d}.guides-filters__item.b-gg-pink{border:2px solid #e85e5d}.guides-filters__item.b-gg-pink.selected{background:#e85e5d;color:#fff}.b-gg-pink{border-color:#e85e5d}.b-gg-pink.active,.b-gg-pink:hover{border-color:#e85e5d;background:#e85e5d;color:#fff}.article-date-share+.article-text--c-gg-pink.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-pink.article-text--feature .article-text__inner p:first-letter{color:#e85e5d}.article-body-list--c-gg-pink a,.article-text--c-gg-pink a{color:#e85e5d}.article-body-list--c-gg-pink ul>li,.article-text--c-gg-pink ul>li{background-image:radial-gradient(circle,#e85e5d,#e85e5d 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-pink ol>li:before,.article-text--c-gg-pink ol>li:before{background-color:#e85e5d}.bg-gg-pink{background:#e85e5d}.bc-gg-pink{background-image:radial-gradient(circle,#e85e5d 1px,transparent 1.5px)}.hov-border-gg-pink:hover{border-color:#e85e5d}.hov-bg-gg-pink:hover{background-color:#e85e5d}.c-gg-dark-green{color:#075848}.c-gg-dark-green svg *{fill:#075848}.guides-filters__item.b-gg-dark-green{border:2px solid #075848}.guides-filters__item.b-gg-dark-green.selected{background:#075848;color:#fff}.b-gg-dark-green{border-color:#075848}.b-gg-dark-green.active,.b-gg-dark-green:hover{border-color:#075848;background:#075848;color:#fff}.article-date-share+.article-text--c-gg-dark-green.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-dark-green.article-text--feature .article-text__inner p:first-letter{color:#075848}.article-body-list--c-gg-dark-green a,.article-text--c-gg-dark-green a{color:#075848}.article-body-list--c-gg-dark-green ul>li,.article-text--c-gg-dark-green ul>li{background-image:radial-gradient(circle,#075848,#075848 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-dark-green ol>li:before,.article-text--c-gg-dark-green ol>li:before{background-color:#075848}.bg-gg-dark-green{background:#075848}.bc-gg-dark-green{background-image:radial-gradient(circle,#075848 1px,transparent 1.5px)}.hov-border-gg-dark-green:hover{border-color:#075848}.hov-bg-gg-dark-green:hover{background-color:#075848}.c-gg-yellow{color:#cd961d}.c-gg-yellow svg *{fill:#cd961d}.guides-filters__item.b-gg-yellow{border:2px solid #cd961d}.guides-filters__item.b-gg-yellow.selected{background:#cd961d;color:#fff}.b-gg-yellow{border-color:#cd961d}.b-gg-yellow.active,.b-gg-yellow:hover{border-color:#cd961d;background:#cd961d;color:#fff}.article-date-share+.article-text--c-gg-yellow.article-text--feature .article-text__inner p:first-child:first-letter,.article-date-share+.article-text--c-gg-yellow.article-text--feature .article-text__inner p:first-letter{color:#cd961d}.article-body-list--c-gg-yellow a,.article-text--c-gg-yellow a{color:#cd961d}.article-body-list--c-gg-yellow ul>li,.article-text--c-gg-yellow ul>li{background-image:radial-gradient(circle,#cd961d,#cd961d 2px,#fff 3px,#fff);background-size:10px 10px;background-repeat:no-repeat}.article-body-list--c-gg-yellow ol>li:before,.article-text--c-gg-yellow ol>li:before{background-color:#cd961d}.bg-gg-yellow{background:#cd961d}.bc-gg-yellow{background-image:radial-gradient(circle,#cd961d 1px,transparent 1.5px)}.hov-border-gg-yellow:hover{border-color:#cd961d}.hov-bg-gg-yellow:hover{background-color:#cd961d}.g-yellow-orange{background:#ffc280;background:-webkit-gradient(linear,left top,left bottom,from(#ffc280),to(#ff8770));background:linear-gradient(to bottom,#ffc280,#ff8770)}.g-transp-yellow-orange{background:rgba(255,194,128,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(255,194,128,.7)),to(rgba(255,135,112,.7)));background:linear-gradient(to bottom,rgba(255,194,128,.7),rgba(255,135,112,.7))}.g-orange-red{background:#ff8770;background:-webkit-gradient(linear,left top,left bottom,from(#ff8770),to(#ca4955));background:linear-gradient(to bottom,#ff8770,#ca4955)}.g-transp-orange-red{background:rgba(255,135,112,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(255,135,112,.7)),to(rgba(202,73,85,.7)));background:linear-gradient(to bottom,rgba(255,135,112,.7),rgba(202,73,85,.7))}.g-red-mauve{background:#ca4955;background:-webkit-gradient(linear,left top,left bottom,from(#ca4955),to(#c14e78));background:linear-gradient(to bottom,#ca4955,#c14e78)}.g-transp-red-mauve{background:rgba(202,73,85,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(202,73,85,.7)),to(rgba(193,78,120,.7)));background:linear-gradient(to bottom,rgba(202,73,85,.7),rgba(193,78,120,.7))}.g-mauve-light-purple{background:#c14e78;background:-webkit-gradient(linear,left top,left bottom,from(#c14e78),to(#a35ca2));background:linear-gradient(to bottom,#c14e78,#a35ca2)}.g-transp-mauve-light-purple{background:rgba(193,78,120,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(193,78,120,.7)),to(rgba(163,92,162,.7)));background:linear-gradient(to bottom,rgba(193,78,120,.7),rgba(163,92,162,.7))}.g-light-purple-purple{background:#a35ca2;background:-webkit-gradient(linear,left top,left bottom,from(#a35ca2),to(#7d5bae));background:linear-gradient(to bottom,#a35ca2,#7d5bae)}.g-transp-light-purple-purple{background:rgba(163,92,162,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(163,92,162,.7)),to(rgba(125,91,174,.7)));background:linear-gradient(to bottom,rgba(163,92,162,.7),rgba(125,91,174,.7))}.g-purple-dark-purple{background:#7d5bae;background:-webkit-gradient(linear,left top,left bottom,from(#7d5bae),to(#6058bc));background:linear-gradient(to bottom,#7d5bae,#6058bc)}.g-transp-purple-dark-purple{background:rgba(125,91,174,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(125,91,174,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to bottom,rgba(125,91,174,.7),rgba(96,88,188,.7))}.g-dark-purple-dark-blue{background:#6058bc;background:-webkit-gradient(linear,left top,left bottom,from(#6058bc),to(#303091));background:linear-gradient(to bottom,#6058bc,#303091)}.g-transp-dark-purple-dark-blue{background:rgba(96,88,188,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(96,88,188,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to bottom,rgba(96,88,188,.7),rgba(48,48,145,.7))}.g-sky-blue-dark-blue{background:#4f97ee;background:-webkit-gradient(linear,left top,left bottom,from(#4f97ee),to(#303091));background:linear-gradient(to bottom,#4f97ee,#303091)}.g-transp-sky-blue-dark-blue{background:rgba(79,151,238,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(79,151,238,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to bottom,rgba(79,151,238,.7),rgba(48,48,145,.7))}.g-medium-blue-dark-blue{background:#1262b2;background:-webkit-gradient(linear,left top,left bottom,from(#1262b2),to(#303091));background:linear-gradient(to bottom,#1262b2,#303091)}.g-transp-medium-blue-dark-blue{background:rgba(18,98,178,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(18,98,178,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to bottom,rgba(18,98,178,.7),rgba(48,48,145,.7))}.g-dark-blue-royal-blue{background:#303091;background:-webkit-gradient(linear,left top,left bottom,from(#303091),to(#4961bd));background:linear-gradient(to bottom,#303091,#4961bd)}.g-transp-dark-blue-royal-blue{background:rgba(48,48,145,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(48,48,145,.7)),to(rgba(73,97,189,.7)));background:linear-gradient(to bottom,rgba(48,48,145,.7),rgba(73,97,189,.7))}.g-royal-blue-dark-blue{background:#4961bd;background:-webkit-gradient(linear,left top,left bottom,from(#4961bd),to(#303091));background:linear-gradient(to bottom,#4961bd,#303091)}.g-transp-royal-blue-dark-blue{background:rgba(73,97,189,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(73,97,189,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to bottom,rgba(73,97,189,.7),rgba(48,48,145,.7))}.g-dark-teal-dark-purple{background:#2d7b9e;background:-webkit-gradient(linear,left top,left bottom,from(#2d7b9e),to(#6058bc));background:linear-gradient(to bottom,#2d7b9e,#6058bc)}.g-transp-dark-teal-dark-purple{background:rgba(45,123,158,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(45,123,158,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to bottom,rgba(45,123,158,.7),rgba(96,88,188,.7))}.g-bright-teal-dark-teal{background:#3ec6c2;background:-webkit-gradient(linear,left top,left bottom,from(#3ec6c2),to(#2d7b9e));background:linear-gradient(to bottom,#3ec6c2,#2d7b9e)}.g-transp-bright-teal-dark-teal{background:rgba(62,198,194,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(62,198,194,.7)),to(rgba(45,123,158,.7)));background:linear-gradient(to bottom,rgba(62,198,194,.7),rgba(45,123,158,.7))}.g-teal-bright-teal{background:#00a3b7;background:-webkit-gradient(linear,left top,left bottom,from(#00a3b7),to(#3ec6c2));background:linear-gradient(to bottom,#00a3b7,#3ec6c2)}.g-transp-teal-bright-teal{background:rgba(0,163,183,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,163,183,.7)),to(rgba(62,198,194,.7)));background:linear-gradient(to bottom,rgba(0,163,183,.7),rgba(62,198,194,.7))}.g-yellow-dark-purple{background:#ffc280;background:-webkit-gradient(linear,left top,left bottom,from(#ffc280),to(#6058bc));background:linear-gradient(to bottom,#ffc280,#6058bc)}.g-transp-yellow-dark-purple{background:rgba(255,194,128,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(255,194,128,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to bottom,rgba(255,194,128,.7),rgba(96,88,188,.7))}.g-dark-purple-dark-teal{background:#6058bc;background:-webkit-gradient(linear,left top,left bottom,from(#6058bc),to(#2d7b9e));background:linear-gradient(to bottom,#6058bc,#2d7b9e)}.g-transp-dark-purple-dark-teal{background:rgba(96,88,188,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(96,88,188,.7)),to(rgba(45,123,158,.7)));background:linear-gradient(to bottom,rgba(96,88,188,.7),rgba(45,123,158,.7))}.g-dark-teal-bright-teal{background:#2d7b9e;background:-webkit-gradient(linear,left top,left bottom,from(#2d7b9e),to(#3ec6c2));background:linear-gradient(to bottom,#2d7b9e,#3ec6c2)}.g-transp-dark-teal-bright-teal{background:rgba(45,123,158,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(45,123,158,.7)),to(rgba(62,198,194,.7)));background:linear-gradient(to bottom,rgba(45,123,158,.7),rgba(62,198,194,.7))}.g-bright-teal-teal-green{background:#3ec6c2;background:-webkit-gradient(linear,left top,left bottom,from(#3ec6c2),to(#36a58a));background:linear-gradient(to bottom,#3ec6c2,#36a58a)}.g-transp-bright-teal-teal-green{background:rgba(62,198,194,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(62,198,194,.7)),to(rgba(54,165,138,.7)));background:linear-gradient(to bottom,rgba(62,198,194,.7),rgba(54,165,138,.7))}.g-dark-gray-dark-gray{background:#454545;background:-webkit-gradient(linear,left top,left bottom,from(#454545),to(#454545));background:linear-gradient(to bottom,#454545,#454545)}.g-transp-dark-gray-dark-gray{background:rgba(69,69,69,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(69,69,69,.7)),to(rgba(69,69,69,.7)));background:linear-gradient(to bottom,rgba(69,69,69,.7),rgba(69,69,69,.7))}.g-teal-green{background:#00a3b7;background:-webkit-gradient(linear,left top,left bottom,from(#00a3b7),to(#378358));background:linear-gradient(to bottom,#00a3b7,#378358)}.g-transp-teal-green{background:rgba(0,163,183,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,163,183,.7)),to(rgba(55,131,88,.7)));background:linear-gradient(to bottom,rgba(0,163,183,.7),rgba(55,131,88,.7))}.g-green-teal{background:#378358;background:-webkit-gradient(linear,left top,left bottom,from(#378358),to(#00a3b7));background:linear-gradient(to bottom,#378358,#00a3b7)}.g-transp-green-teal{background:rgba(55,131,88,.7);background:-webkit-gradient(linear,left top,left bottom,from(rgba(55,131,88,.7)),to(rgba(0,163,183,.7)));background:linear-gradient(to bottom,rgba(55,131,88,.7),rgba(0,163,183,.7))}.g-yellow-orange-inv{background:#ffc280;background:-webkit-gradient(linear,left bottom,left top,from(#ffc280),to(#ff8770));background:linear-gradient(to top,#ffc280,#ff8770)}.g-transp-yellow-orange{background:rgba(255,194,128,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,194,128,.7)),to(rgba(255,135,112,.7)));background:linear-gradient(to top,rgba(255,194,128,.7),rgba(255,135,112,.7))}.g-orange-red-inv{background:#ff8770;background:-webkit-gradient(linear,left bottom,left top,from(#ff8770),to(#ca4955));background:linear-gradient(to top,#ff8770,#ca4955)}.g-transp-orange-red{background:rgba(255,135,112,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,135,112,.7)),to(rgba(202,73,85,.7)));background:linear-gradient(to top,rgba(255,135,112,.7),rgba(202,73,85,.7))}.g-red-mauve-inv{background:#ca4955;background:-webkit-gradient(linear,left bottom,left top,from(#ca4955),to(#c14e78));background:linear-gradient(to top,#ca4955,#c14e78)}.g-transp-red-mauve{background:rgba(202,73,85,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(202,73,85,.7)),to(rgba(193,78,120,.7)));background:linear-gradient(to top,rgba(202,73,85,.7),rgba(193,78,120,.7))}.g-mauve-light-purple-inv{background:#c14e78;background:-webkit-gradient(linear,left bottom,left top,from(#c14e78),to(#a35ca2));background:linear-gradient(to top,#c14e78,#a35ca2)}.g-transp-mauve-light-purple{background:rgba(193,78,120,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(193,78,120,.7)),to(rgba(163,92,162,.7)));background:linear-gradient(to top,rgba(193,78,120,.7),rgba(163,92,162,.7))}.g-light-purple-purple-inv{background:#a35ca2;background:-webkit-gradient(linear,left bottom,left top,from(#a35ca2),to(#7d5bae));background:linear-gradient(to top,#a35ca2,#7d5bae)}.g-transp-light-purple-purple{background:rgba(163,92,162,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(163,92,162,.7)),to(rgba(125,91,174,.7)));background:linear-gradient(to top,rgba(163,92,162,.7),rgba(125,91,174,.7))}.g-purple-dark-purple-inv{background:#7d5bae;background:-webkit-gradient(linear,left bottom,left top,from(#7d5bae),to(#6058bc));background:linear-gradient(to top,#7d5bae,#6058bc)}.g-transp-purple-dark-purple{background:rgba(125,91,174,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(125,91,174,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to top,rgba(125,91,174,.7),rgba(96,88,188,.7))}.g-dark-purple-dark-blue-inv{background:#6058bc;background:-webkit-gradient(linear,left bottom,left top,from(#6058bc),to(#303091));background:linear-gradient(to top,#6058bc,#303091)}.g-transp-dark-purple-dark-blue{background:rgba(96,88,188,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(96,88,188,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to top,rgba(96,88,188,.7),rgba(48,48,145,.7))}.g-sky-blue-dark-blue-inv{background:#4f97ee;background:-webkit-gradient(linear,left bottom,left top,from(#4f97ee),to(#303091));background:linear-gradient(to top,#4f97ee,#303091)}.g-transp-sky-blue-dark-blue{background:rgba(79,151,238,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(79,151,238,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to top,rgba(79,151,238,.7),rgba(48,48,145,.7))}.g-medium-blue-dark-blue-inv{background:#1262b2;background:-webkit-gradient(linear,left bottom,left top,from(#1262b2),to(#303091));background:linear-gradient(to top,#1262b2,#303091)}.g-transp-medium-blue-dark-blue{background:rgba(18,98,178,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(18,98,178,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to top,rgba(18,98,178,.7),rgba(48,48,145,.7))}.g-dark-blue-royal-blue-inv{background:#303091;background:-webkit-gradient(linear,left bottom,left top,from(#303091),to(#4961bd));background:linear-gradient(to top,#303091,#4961bd)}.g-transp-dark-blue-royal-blue{background:rgba(48,48,145,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(48,48,145,.7)),to(rgba(73,97,189,.7)));background:linear-gradient(to top,rgba(48,48,145,.7),rgba(73,97,189,.7))}.g-royal-blue-dark-blue-inv{background:#4961bd;background:-webkit-gradient(linear,left bottom,left top,from(#4961bd),to(#303091));background:linear-gradient(to top,#4961bd,#303091)}.g-transp-royal-blue-dark-blue{background:rgba(73,97,189,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(73,97,189,.7)),to(rgba(48,48,145,.7)));background:linear-gradient(to top,rgba(73,97,189,.7),rgba(48,48,145,.7))}.g-dark-teal-dark-purple-inv{background:#2d7b9e;background:-webkit-gradient(linear,left bottom,left top,from(#2d7b9e),to(#6058bc));background:linear-gradient(to top,#2d7b9e,#6058bc)}.g-transp-dark-teal-dark-purple{background:rgba(45,123,158,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(45,123,158,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to top,rgba(45,123,158,.7),rgba(96,88,188,.7))}.g-bright-teal-dark-teal-inv{background:#3ec6c2;background:-webkit-gradient(linear,left bottom,left top,from(#3ec6c2),to(#2d7b9e));background:linear-gradient(to top,#3ec6c2,#2d7b9e)}.g-transp-bright-teal-dark-teal{background:rgba(62,198,194,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(62,198,194,.7)),to(rgba(45,123,158,.7)));background:linear-gradient(to top,rgba(62,198,194,.7),rgba(45,123,158,.7))}.g-teal-bright-teal-inv{background:#00a3b7;background:-webkit-gradient(linear,left bottom,left top,from(#00a3b7),to(#3ec6c2));background:linear-gradient(to top,#00a3b7,#3ec6c2)}.g-transp-teal-bright-teal{background:rgba(0,163,183,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,163,183,.7)),to(rgba(62,198,194,.7)));background:linear-gradient(to top,rgba(0,163,183,.7),rgba(62,198,194,.7))}.g-yellow-dark-purple-inv{background:#ffc280;background:-webkit-gradient(linear,left bottom,left top,from(#ffc280),to(#6058bc));background:linear-gradient(to top,#ffc280,#6058bc)}.g-transp-yellow-dark-purple{background:rgba(255,194,128,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,194,128,.7)),to(rgba(96,88,188,.7)));background:linear-gradient(to top,rgba(255,194,128,.7),rgba(96,88,188,.7))}.g-dark-purple-dark-teal-inv{background:#6058bc;background:-webkit-gradient(linear,left bottom,left top,from(#6058bc),to(#2d7b9e));background:linear-gradient(to top,#6058bc,#2d7b9e)}.g-transp-dark-purple-dark-teal{background:rgba(96,88,188,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(96,88,188,.7)),to(rgba(45,123,158,.7)));background:linear-gradient(to top,rgba(96,88,188,.7),rgba(45,123,158,.7))}.g-dark-teal-bright-teal-inv{background:#2d7b9e;background:-webkit-gradient(linear,left bottom,left top,from(#2d7b9e),to(#3ec6c2));background:linear-gradient(to top,#2d7b9e,#3ec6c2)}.g-transp-dark-teal-bright-teal{background:rgba(45,123,158,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(45,123,158,.7)),to(rgba(62,198,194,.7)));background:linear-gradient(to top,rgba(45,123,158,.7),rgba(62,198,194,.7))}.g-bright-teal-teal-green-inv{background:#3ec6c2;background:-webkit-gradient(linear,left bottom,left top,from(#3ec6c2),to(#36a58a));background:linear-gradient(to top,#3ec6c2,#36a58a)}.g-transp-bright-teal-teal-green{background:rgba(62,198,194,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(62,198,194,.7)),to(rgba(54,165,138,.7)));background:linear-gradient(to top,rgba(62,198,194,.7),rgba(54,165,138,.7))}.g-dark-gray-dark-gray-inv{background:#454545;background:-webkit-gradient(linear,left bottom,left top,from(#454545),to(#454545));background:linear-gradient(to top,#454545,#454545)}.g-transp-dark-gray-dark-gray{background:rgba(69,69,69,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(69,69,69,.7)),to(rgba(69,69,69,.7)));background:linear-gradient(to top,rgba(69,69,69,.7),rgba(69,69,69,.7))}.g-teal-green-inv{background:#00a3b7;background:-webkit-gradient(linear,left bottom,left top,from(#00a3b7),to(#378358));background:linear-gradient(to top,#00a3b7,#378358)}.g-transp-teal-green{background:rgba(0,163,183,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,163,183,.7)),to(rgba(55,131,88,.7)));background:linear-gradient(to top,rgba(0,163,183,.7),rgba(55,131,88,.7))}.g-green-teal-inv{background:#378358;background:-webkit-gradient(linear,left bottom,left top,from(#378358),to(#00a3b7));background:linear-gradient(to top,#378358,#00a3b7)}.g-transp-green-teal{background:rgba(55,131,88,.7);background:-webkit-gradient(linear,left bottom,left top,from(rgba(55,131,88,.7)),to(rgba(0,163,183,.7)));background:linear-gradient(to top,rgba(55,131,88,.7),rgba(0,163,183,.7))}svg{display:block}.article-body-list--c-yellow a,.article-text--c-yellow a,.article__tags.c-yellow{color:#b54b09}.opti-hide{display:none}
</style> <script type='text/javascript'>performance.mark('fastCSSLoaded')</script>
<link href='https://res.mindbodygreen.com/custom/yogi-teas/main.min.css' rel='stylesheet' />
<link rel="stylesheet" href="css/main.min.css">
<script type="text/javascript">
window.optimizely = window.optimizely || [];
window.optimizely.push({type: 'holdEvents'});
window.addEventListener('load', function() {
window.optimizely.push({type: 'sendEvents'});
});
setTimeout(function () {
if (!window.optimizely.data) {
window.optimizely.push("timeout");
}
}, 1000);
</script>
<script src="https://www.mindbodygreen.com/js/optimizely-3180350449.js" async type="text/javascript"></script> <script type="text/javascript">var gtmDataLayer = [{"articleId":"43097","pageCategory":["partner","tea"],"articleCategory":"partner","contentCategory":"Routines"}];var gtmEnvironment = 'GTM-TC89CF';(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl+'';f.parentNode.insertBefore(j,f);})(window,document,'script','gtmDataLayer',gtmEnvironment);</script> <script type="text/javascript" src="https://www.mindbodygreen.com/js/app-htl-ads.7f6bd24d39783546053d011ee200ef47d74c31d0.js"
defer></script>
<script type="text/javascript" src="https://cdn1.htlbid.com/v3/mindbodygreen.com/htlbid.js"
defer></script>
<script type="text/javascript" src="https://www.mindbodygreen.com/js/app-article.7f6bd24d39783546053d011ee200ef47d74c31d0.js" async></script>
<script>
!function(d) {
if (!d.currentScript) {
var s = document.createElement('script');
s.src = 'https://polyfill.io/v3/polyfill.min.js?features=Number.isNaN%2Cdefault'
s.async = true;
document.head.appendChild(s);
}
}(document)
</script> <script src='https://www.dwin1.com/19038.js' type='text/javascript' defer='defer'></script></head>
<body id="top" >
<svg id="master-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: none;">
<!-- >>>>>>>>> ICONS/GENERAL <<<<<<<<< -->
<!-- /icons/general/3-dots-select-dropdown.svg -->
<symbol id="3-dots-select-dropdown" width="32" height="8" viewBox="0 0 32 8"><circle cx="16" cy="4" r="4" fill="#fff"/><circle cx="4" cy="4" r="4" fill="#fff"/><circle cx="28" cy="4" r="4" fill="#fff"/>
</symbol>
<!-- /icons/general/arrow-down.svg -->
<symbol id="arrow-down" width="13" height="9" viewBox="0 0 13 9"><path d="M11.483 0L6.5 5.104 1.517 0 0 1.553l6.5 6.658L13 1.553z" fill="#00A3B7" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/arrow-up.svg -->
<symbol id="arrow-up" width="13" height="8" viewBox="0 0 13 8"><path d="M11.483 7.956L6.5 3.011 1.517 7.956 0 6.451 6.5 0 13 6.451z" fill="#00A3B7" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/badge.svg -->
<symbol id="badge" class="badge__icon" viewBox="0 0 71 71"><path fill-opacity=".3" fill="#FFF" d="M35.063 66.926l-5.553 3.2-4.293-4.76-6.27 1.328-2.613-5.853-6.373-.676-.676-6.373-5.853-2.612 1.327-6.27L0 40.615l3.2-5.553L0 29.51l4.759-4.293-1.327-6.27 5.853-2.613.676-6.373 6.373-.676 2.612-5.853 6.27 1.327L29.51 0l5.553 3.2L40.616 0l4.293 4.759 6.27-1.327 2.613 5.853 6.373.676.676 6.373 5.853 2.612-1.327 6.27 4.759 4.294-3.2 5.553 3.2 5.553-4.76 4.293 1.328 6.27-5.853 2.613-.676 6.373-6.373.676-2.612 5.853-6.27-1.327-4.294 4.759z"/><path fill="#E25A3C" d="M35 62.263L30.248 65l-3.673-4.072-5.364 1.135-2.236-5.007-5.453-.578-.578-5.453-5.007-2.236 1.135-5.364L5 39.752 7.737 35 5 30.248l4.072-3.673-1.135-5.364 5.007-2.236.578-5.453 5.453-.578 2.236-5.007 5.364 1.135L30.248 5 35 7.737 39.752 5l3.673 4.072 5.364-1.135 2.236 5.007 5.453.578.578 5.453 5.007 2.236-1.135 5.364L65 30.248 62.263 35 65 39.752l-4.072 3.673 1.135 5.364-5.007 2.236-.578 5.453-5.453.578-2.236 5.007-5.364-1.135L39.752 65z"/>
</symbol>
<!-- /icons/general/calendar.svg TODO: check sizing-->
<symbol id="calendar" width="1058.908" height="1200"><g fill-rule="evenodd" clip-rule="evenodd"><path d="M283.985 0h12c48.815 8.852 23.938 91.396 30 143 134 2.333 272.335.333 408 1 6.165-51.835-18.993-134.992 30-144h12c49.021 8.98 23.815 92.184 30 144 56.961 3.822 113.869-5.108 166 0 47.002 4.605 81.917 41.599 86 88 2.89 32.835-2.122 65.978 0 104-351.644-.667-706.014 1.333-1056-1 2.842-48.203-6.24-95.69 6-129 11.362-30.92 37.994-55.186 74-61 52.224-8.434 113.347 4.227 172-1 6.184-51.816-19.021-135.02 30-144zm-33 180c-20.159 14.626-34.847 32.259-33 65 2.242 39.734 37.29 69.241 77 67 33.696-1.901 65.16-27.832 67-68 1.186-25.887-10.455-45.531-23-57-3.513-3.212-8.292-8.198-13-7 1.628 47.84 5.546 101.594-41 96-38.734-4.655-30.741-52.3-31-97-.057-.61-.149-1.184-1-1-.012 1.322-1.753.914-2 2zm480 0c-19.389 13.936-35.444 32.457-33 66 2.798 38.401 33.318 64.411 68 66 71.721 3.286 97.248-84.977 53-125-3.446-3.117-8.124-7.896-13-7-.071 44.162 7.691 92.191-32 96-16.526 1.586-32.501-7.621-38-24-6.784-20.208.933-47.689-2-73-.057-.61-.149-1.184-1-1-.012 1.322-1.753.914-2 2zM971.985 1200h-884c-44.502-6.693-82.255-40.393-86-89-4.466-57.977 0-119.485 0-181V384h1056v676c0 40.956.777 72.154-16 97-14.731 21.814-37.718 37.716-70 43zm-898-741v189h192V456h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V456h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V456h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V456h-191c-1.165.168-1.086 1.581-1 3zm-720 240v189h192V696h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V696h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V696h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V696h-191c-1.165.168-1.086 1.581-1 3zm-720 240v189h192V936h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V936h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V936h-191c-1.165.168-1.086 1.581-1 3zm240 0v189h192V936h-191c-1.165.168-1.086 1.581-1 3z"/></g>
</symbol>
<symbol id="caret-general-right" viewBox="0 0 8 12">
<path d="M1.31 10.77l4.46-4.63-4.46-4.45"/>
</symbol>
<symbol id="caret-general-left" viewBox="0 0 8 12">
<path d="M1.31 10.77l4.46-4.63-4.46-4.45" transform="scale(-1,1) translate(-8,0)" />
</symbol>
<!-- /icons/general/check-small.svg -->
<symbol id="check-small" width="15" height="11" viewBox="0 0 15 11"><path d="M1.343 3.816L0 5.16l5.451 5.45 9.254-9.268L13.361 0 5.45 7.923z" fill="#767676" fill-rule="nonzero"/>
</symbol>
<!-- /icons/general/check.svg -->
<symbol id="check" width="42" height="33" viewBox="0 0 42 33"><path d="M1.436 18.431L12.7 29.695 40.555 1.84" stroke="#FFF" stroke-width="4" fill="none" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/chevron.svg -->
<symbol id="chevron" class="icon" viewBox="0 0 13 9"><path d="M11.48 0L6.5 5.1 1.52 0 0 1.55l6.5 6.66L13 1.55 11.48 0z"/>
</symbol>
<!-- /icons/general/clock.svg -->
<symbol id="clock" class="icon" width="529" height="529"><circle fill="none" stroke="#000" stroke-width="25" stroke-miterlimit="10" cx="264.5" cy="264.5" r="252"/><path fill="none" stroke="#000" stroke-width="25" stroke-miterlimit="10" d="M353.5 363.167L263.454 258.94c-3.596-4.162-6.069-5.874-5.496-3.804.573 2.069 1.042-.737 1.042-6.237V73.5"/>
</symbol>
<!-- /icons/general/dialogue.svg -->
<symbol id="dialogue" width="37" height="35" viewBox="0 0 37 35"><g transform="translate(1.1 1.36)" stroke="#FFF" fill="none" fill-rule="evenodd"><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="7.18" cy="9.69" r="1"/><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="10.37" cy="9.69" r="1"/><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="13.561" cy="9.69" r="1"/><path d="M21.68 9.93c.033-.318.049-.637.049-.956C21.729 3.69 17.509 0 11.47 0 5.146 0 0 4.027 0 8.974c0 2.716 1.5 5.237 4.114 6.912.42.353.633.953.552 1.55-.021.536-.239 2.143-1.954 3.56 2.309-.079 4.487-1.27 6.023-3.291a.447.447 0 01.43-.189c.263.041.528.098.796.154a7.322 7.322 0 001.509.217c1.693.024.307.22 1.901-.45.14-3.287 5.206-6.364 8.31-7.507z" stroke-width="1.458" stroke-linecap="round" stroke-linejoin="round"/><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="27.056" cy="20.188" r="1"/><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="23.932" cy="20.188" r="1"/><circle stroke-width=".5" fill="#FFF" fill-rule="nonzero" cx="20.807" cy="20.188" r="1"/><path d="M23.308 29.112a7.55 7.55 0 001.55-.222c.276-.058.55-.117.82-.158a.462.462 0 01.443.191c1.578 2.075 3.818 3.297 6.191 3.378-1.762-1.453-1.987-3.102-2.009-3.65-.083-.613.136-1.229.567-1.59 2.688-1.72 4.23-4.305 4.23-7.09 0-5.075-5.29-9.204-11.792-9.204-6.207 0-10.544 3.785-10.544 9.204 0 5.382 4.337 9.141 10.544 9.141z" stroke-width="1.458" stroke-linecap="round" stroke-linejoin="round"/></g>
</symbol>
<!-- /icons/general/down-arrow.svg -->
<symbol width="17" height="28" id="down-arrow" viewBox="0 0 17 28"><path d="M7.89 24.255L7.866 25A26.812 26.812 0 013 17c1.665 1.18 3.312 2.379 5 3.53l-.11 3.725m7.663-10.904L9.4 17.795A11720583.368 11720583.368 0 019.869.92c.034-1.229-1.92-1.228-1.954 0l-.471 16.924c-2-1.49-3.956-3.037-5.985-4.491-.73-.523-1.617.337-1.435 1.077 1.23 4.997 3.81 9.583 7.45 13.291.602.614 1.645.13 1.667-.675l.19-6.844 5.202-3.755c-.723 2.525-1.899 4.998-3.54 6.983-.783.948.59 2.306 1.381 1.35 2.405-2.91 3.994-6.66 4.614-10.352.12-.715-.672-1.629-1.435-1.078" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/filter.svg -->
<symbol id="filter" class="icon" viewBox="0 0 19 16"><path d="M7.45 12.29a2.91 2.91 0 011.28-4.93V0h1.45v7.36a2.91 2.91 0 010 5.63v3H8.73V13l.69-1.36a1.45 1.45 0 10-1.28-.77zM18 3.71a2.91 2.91 0 01-1.28 4.92V16h-1.45V8.64a2.91 2.91 0 010-5.63V0h1.45v3L16 4.36a1.45 1.45 0 101.28.77zm-13.09 0a2.91 2.91 0 01-1.27 4.93V16H2.18V8.64a2.91 2.91 0 010-5.64V0h1.46v3L3 4.36a1.45 1.45 0 101.28.77z"/>
</symbol>
<!-- /icons/general/information.svg -->
<symbol id="information" width="19" height="19" viewBox="0 0 19 19"><g fill="#222" fill-rule="nonzero"><path d="M10.243 13.4H8.384V7.03h1.859v6.37zM8.241 5.223c0-.611.481-1.079 1.066-1.079a1.06 1.06 0 011.079 1.079c0 .585-.494 1.066-1.079 1.066a1.07 1.07 0 01-1.066-1.066z"/><path d="M9.2 18.05a8.85 8.85 0 100-17.7 8.85 8.85 0 000 17.7zm0-1.3a7.55 7.55 0 110-15.1 7.55 7.55 0 010 15.1z"/></g>
</symbol>
<!-- /icons/general/personal-story.svg -->
<symbol id="personal-story" width="14" height="15" viewBox="0 0 14 15"><path d="M6.569 9.538c.418 0 .852.074 1.3.214.854.266 1.734.759 2.662 1.431.626.454 1.84 1.47 1.842 1.47.085.054.086.054.162-.009a.65.65 0 01.828 1.002c-.508.42-1.121.46-1.68.11-.093-.059-1.355-1.114-1.915-1.52-.824-.597-1.59-1.026-2.287-1.243a3.085 3.085 0 00-.912-.156c-1.092 0-2.049.443-2.972 1.238a9.7 9.7 0 00-.615.583c-.098.1-.418.437-.482.502-.333.339-.46.643-.428.945a.65.65 0 01-1.293.135c-.075-.718.205-1.393.794-1.991.054-.055.372-.39.479-.5l.234-.234c.154-.15.305-.29.463-.425 1.14-.981 2.374-1.552 3.82-1.552zM3.513 1.055C5.073-.037 7.313.553 8.535 2.3c1.223 1.746 1.012 4.053-.548 5.145-1.56 1.092-3.8.502-5.022-1.245-1.223-1.746-1.012-4.053.548-5.145zm3.957 1.99C6.634 1.851 5.187 1.47 4.26 2.12c-.929.65-1.065 2.14-.23 3.335.837 1.194 2.284 1.575 3.212.925.929-.65 1.065-2.14.23-3.335z" fill="#767676" fill-rule="nonzero"/>
</symbol>
<!-- /icons/general/play-circle.svg -->
<symbol id="play-circle" viewBox="0 0 59 59">
<g transform="translate(.736 .736)" fill="none" fill-rule="evenodd">
<circle fill="rgba(34, 34, 34, 0.85)" cx="28.714" cy="28.714" r="28.714"/>
<path fill="white" d="M37.643 29.774l-12.868 8.118a1.361 1.361 0 01-2.087-1.151V20.504a1.361 1.361 0 012.087-1.151l12.868 8.118a1.361 1.361 0 010 2.303z"/>
</g>
</symbol>
<symbol id="play-circle-class" viewBox="0 0 54 55"><g transform="translate(.063 .786)" fill="none" fill-rule="evenodd"><circle fill="#FFF" cx="26.73" cy="26.73" r="26.73"/><path d="M35.74 27.229L23.02 35.26A1.318 1.318 0 0121 34.148V18.082a1.318 1.318 0 012.021-1.114L35.74 25a1.318 1.318 0 010 2.228z" fill="#03A4B7"/></g></symbol>
<symbol id="play-circle-podcast" viewBox="0 0 54 54"><g transform="translate(0 .266)" fill="none" fill-rule="evenodd"><circle fill="#FFF" cx="26.73" cy="26.73" r="26.73"/><path d="M17.512 27.198c.016-1.202.053-2.002.11-2.399.153-1.068.362-1.895.626-2.48 1.529-3.392 4.703-5.52 8.682-5.52 4.173 0 7.136 2.468 8.409 6.2.137.402.25.903.341 1.503.066.435.1 1.334.102 2.696" stroke="#36A58A" stroke-width="2.5"/><path d="M16.362 27.11h4.6a.7.7 0 01.7.7v7.1a.7.7 0 01-.7.7h-3.9a.7.7 0 01-.7-.7v-7.8zM37.112 27.11h-4.8a.7.7 0 00-.7.7v7.1a.7.7 0 00.7.7h4.1a.7.7 0 00.7-.7v-7.8z" fill="#36A58A"/></g></symbol>
<symbol id="play-circle-training" viewBox="0 0 55 54"><g transform="translate(.588 .098)" fill="none" fill-rule="evenodd"><circle fill="#FFF" cx="26.73" cy="26.73" r="26.73"/><path d="M35.74 27.229L23.02 35.26A1.318 1.318 0 0121 34.148V18.082a1.318 1.318 0 012.021-1.114L35.74 25a1.318 1.318 0 010 2.228z" fill="#2D7B9E"/></g></symbol>
<!-- /icons/general/play.svg -->
<symbol id="play" width="10px" height="15px" viewBox="0 0 10 15"><path d="M9.969 7.34L.743 14.334V.348z" fill="#FFF" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/plus.svg -->
<symbol id="plus" width="11" height="11" viewBox="0 0 11 11"><path d="M6.5 6.5V11h-2V6.5H0v-2h4.5V0h2v4.5H11v2H6.5z" fill="#767676" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/replay.svg -->
<symbol id="replay" width="38" height="43" viewBox="0 0 38 43"><g stroke="#E9E8E9" fill="none" fill-rule="evenodd"><path d="M3.308 24.396C3.308 33.014 10.333 40 19 40s15.692-6.986 15.692-15.604C34.692 15.777 27.667 8.79 19 8.79c-2.553 0-4.964.606-7.094 1.682" stroke-width="4.84"/><path d="M6.698 9.191l10.121 6.633a1.21 1.21 0 001.873-1.012V1.546A1.21 1.21 0 0016.82.534L6.698 7.167a1.21 1.21 0 000 2.024z" stroke-width=".605" fill="#E9E8E9"/></g>
</symbol>
<!-- /icons/general/right-arrow.svg -->
<symbol id="right-arrow" class="icon" viewBox="0 0 33 14"><path d="M29.24 6l-4.65-4.66L26-.07l6.36 6.36.71.71L26 14.07l-1.41-1.41L29.24 8H0V6z"/>
</symbol>
<!-- /icons/general/shop.svg -->
<symbol id="shop" width="17" height="20" viewBox="0 0 17 20"><path d="M4.373 6.266c.005-.274.008-.536.008-.785 0-1.813.337-3.094 1.269-4.006C6.417.725 7.385.3 8.414.3c1.134 0 2.19.514 2.985 1.406.804.903 1.086 2.086 1.086 3.774 0 .248.002.51.007.783.862-.05 1.754-.115 2.677-.195a1 1 0 011.086 1.016c-.051 2.632-.043 4.552.025 5.762.047.835.16 2.01.341 3.525a3 3 0 01-2.979 3.355H3.25a3 3 0 01-2.99-3.24l.291-3.64V7.063a1 1 0 011.087-.996c.944.082 1.856.148 2.736.2zm1.698.08c.811.03 1.592.044 2.343.044.762 0 1.555-.015 2.38-.045a48.61 48.61 0 01-.009-.864c0-1.308-.195-2.126-.655-2.643-.485-.543-1.088-.837-1.716-.837-.568 0-1.116.24-1.575.689-.528.516-.758 1.393-.758 2.79 0 .275-.003.564-.01.866zm-1.757 1.62a93.362 93.362 0 01-2.064-.142v5.023l-.005.135-.291 3.641a1.3 1.3 0 001.295 1.404h10.393a1.3 1.3 0 001.291-1.454c-.184-1.547-.301-2.754-.35-3.63-.064-1.138-.077-2.838-.041-5.116-.683.054-1.349.1-1.999.137.046 1.093.119 2.33.218 3.71a.85.85 0 01-1.695.123c-.1-1.392-.174-2.643-.22-3.753-.842.03-1.652.046-2.432.046-.771 0-1.572-.015-2.402-.045a111.149 111.149 0 01-.251 3.76.85.85 0 11-1.695-.14c.113-1.375.196-2.609.248-3.7z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/general/slideshow-zoom.svg -->
<symbol id="slideshow-zoom" width="24" height="19" viewBox="0 0 24 19"><path fill="#fff" d="M13.83 15.53H2.9a.4.4 0 01-.4-.4V2.9c0-.22.18-.4.4-.4h17.45c.22 0 .4.18.4.4v5.72c0 .22.18.4.4.4h1.7a.4.4 0 00.4-.4V1.25C23.25.56 22.69 0 22 0H1.25C.56 0 0 .56 0 1.25v15.53A1.25 1.25 0 001.25 18h12.58a.4.4 0 00.4-.4v-1.7a.4.4 0 00-.4-.37z"/><path fill="#fff" d="M22.86 12.28H20.4a.4.4 0 01-.4-.4V9.42a.4.4 0 00-.4-.4h-1.7a.4.4 0 00-.4.4v2.47a.4.4 0 01-.4.4h-2.47a.4.4 0 00-.4.4v1.7c0 .22.18.4.4.4h2.47c.22 0 .4.18.4.4v2.47c0 .22.18.4.4.4h1.7a.4.4 0 00.4-.4v-2.48c0-.22.18-.4.4-.4h2.47a.4.4 0 00.4-.4v-1.7a.4.4 0 00-.41-.4z"/>
</symbol>
<!-- /icons/general/star.svg -->
<symbol id="star" width="16" height="16" viewBox="0 0 16 16"><path d="M8 12.197l-4.944 3.02L4.4 9.58 0 5.812l5.775-.463L8 0l2.225 5.35L16 5.811l-4.4 3.77 1.344 5.635z" fill="#FFF" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/tablet.svg -->
<symbol id="tablet" width="29" height="34" viewBox="0 0 29 34"><g transform="translate(-.3 -.64)" stroke="#FFF" stroke-width="1.46" fill="none" fill-rule="evenodd"><rect x="1.03" y="1.604" width="27.54" height="31.505" rx="5"/><circle cx="14.5" cy="28.464" r="1.5"/></g>
</symbol>
<!-- /icons/general/tooltip-top-arrow.svg -->
<symbol id="tooltip-top-arrow" width="33" height="14" viewBox="0 0 33 14"><path d="M0 13.661h32.5L16.25 0z" fill="#FFF" fill-rule="evenodd"/>
</symbol>
<!-- /icons/general/tooltip-top-arrow.svg -->
<symbol id="headphone" width="18" height="16" viewBox="0 0 18 16">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-1165.000000, -558.000000)" fill="#36A58A" fill-rule="nonzero">
<g transform="translate(857.000000, 331.000000)">
<g transform="translate(0.000000, 203.000000)">
<g transform="translate(309.000000, 25.000000)">
<path d="M-0.0788549269,8.19642727 L1.8946444,8.22344147 L1.91192461,7.41951859 L1.93382649,6.898689 C1.94487984,6.70266003 1.95760888,6.55447646 1.97168073,6.45644871 C2.08077601,5.69646596 2.22423226,5.12767105 2.38844143,4.76338169 C3.45609921,2.39483936 5.63907279,0.986842105 8.34334365,0.986842105 C11.094323,0.986842105 13.1372488,2.54420693 14.0478891,5.21349074 C14.1351838,5.46937021 14.2123535,5.80904549 14.2755814,6.2283262 L14.2937801,6.3851224 L14.3109004,6.62177707 C14.331611,6.98150922 14.3436628,7.51669019 14.344738,8.21146157 L16.3184199,8.20840717 L16.3120895,7.43580937 L16.3020702,6.99837124 C16.2875739,6.52356236 16.2631114,6.1721616 16.2271996,5.93402069 C16.1476153,5.40627657 16.0451081,4.95507388 15.9158608,4.57622227 C14.7399813,1.12946509 11.9638441,-0.986842105 8.34334365,-0.986842105 C4.86348533,-0.986842105 1.97600652,0.875554345 0.589112341,3.95230574 C0.337010999,4.51157924 0.151183869,5.24837201 0.0180229125,6.17600175 C-0.0349967471,6.54534885 -0.0652823416,7.20489382 -0.0788549269,8.19642727 Z"></path>
<path d="M3.63157895,8.13998108 C3.93678894,8.13998108 4.18421053,8.38740267 4.18421053,8.69261266 L4.18421053,14.2978758 C4.18421053,14.6030858 3.93678894,14.8505074 3.63157895,14.8505074 L0.552631579,14.8505074 C0.247421586,14.8505074 1.45528034e-12,14.6030858 1.45528034e-12,14.2978758 L1.45528034e-12,8.13998108 L3.63157895,8.13998108 Z M2.48421053,9.83998108 L1.7,9.83998108 L1.7,13.1505074 L2.48421053,13.1505074 L2.48421053,9.83998108 Z"></path>
<path d="M15.8289474,8.13998108 C16.1341574,8.13998108 16.3815789,8.38740267 16.3815789,8.69261266 L16.3815789,14.2978758 C16.3815789,14.6030858 16.1341574,14.8505074 15.8289474,14.8505074 L12.5921053,14.8505074 C12.2868953,14.8505074 12.0394737,14.6030858 12.0394737,14.2978758 L12.0394737,8.13998108 L15.8289474,8.13998108 Z M13.7394737,9.83998108 L13.7394737,13.1505074 L14.6815789,13.1505074 L14.6815789,9.83998108 L13.7394737,9.83998108 Z" transform="translate(14.210526, 11.495244) scale(-1, 1) translate(-14.210526, -11.495244) "></path>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="outline-overlay-headphones" viewBox="0 0 60 60">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-230.000000, -6484.000000)" fill="#36A58A" fill-rule="nonzero">
<g transform="translate(33.000000, 6287.000000)">
<g transform="translate(197.000000, 197.000000)">
<path d="M29.9376,59.8752 C46.4716799,59.8752 59.8752,46.4716799 59.8752,29.9376 C59.8752,13.4035201 46.4716799,0 29.9376,0 C13.4035201,0 0,13.4035201 0,29.9376 C0,46.4716799 13.4035201,59.8752 29.9376,59.8752 Z M29.9376,58.788576 C14.0036459,58.788576 1.086624,45.8715541 1.086624,29.9376 C1.086624,14.0036459 14.0036459,1.086624 29.9376,1.086624 C45.8715541,1.086624 58.788576,14.0036459 58.788576,29.9376 C58.788576,45.8715541 45.8715541,58.788576 29.9376,58.788576 Z"></path>
<g transform="translate(18.325176, 18.814752)">
<path d="M2.68786886,11.6663223 C2.70547723,10.3799575 2.74475415,9.52460391 2.79715773,9.15954857 C2.95192757,8.08138637 3.15544417,7.27445599 3.38840224,6.75765082 C4.90305275,3.39747878 7.9999646,1.4 11.8364235,1.4 C15.7391463,1.4 18.6373769,3.60938156 19.9292721,7.39620553 C20.0531141,7.75921321 20.1625922,8.2410992 20.2522914,8.83591877 C20.3119114,9.23127483 20.3481483,10.1932544 20.3504017,11.6493268 L23.1503983,11.6449936 C23.1479283,10.0489112 23.1083247,8.99755606 23.0209871,8.41839735 C22.9080836,7.66970436 22.76266,7.02959815 22.5793012,6.49213399 C20.9111201,1.60233447 16.9727068,-1.4 11.8364235,-1.4 C6.89966453,-1.4 2.80329459,1.24211976 0.835754042,5.60700441 C0.47810627,6.40042708 0.214479515,7.44569042 0.0255685051,8.76168782 C-0.0496487186,9.28566824 -0.0926138819,10.2213427 -0.111868856,11.6279981 L2.68786886,11.6663223 Z"></path>
<path d="M1.45528034e-12,11.5479198 L5.152,11.5479198 C5.58499124,11.5479198 5.936,11.8989286 5.936,12.3319198 L5.936,20.2839198 C5.936,20.7169111 5.58499124,21.0679198 5.152,21.0679198 L0.784,21.0679198 C0.351008756,21.0679198 1.45528034e-12,20.7169111 1.45528034e-12,20.2839198 L1.45528034e-12,11.5479198 Z M2.4,18.6679198 L3.536,18.6679198 L3.536,13.9479198 L2.4,13.9479198 L2.4,18.6679198 Z"></path>
<path d="M17.08,11.5479198 L22.456,11.5479198 C22.8889912,11.5479198 23.24,11.8989286 23.24,12.3319198 L23.24,20.2839198 C23.24,20.7169111 22.8889912,21.0679198 22.456,21.0679198 L17.864,21.0679198 C17.4310088,21.0679198 17.08,20.7169111 17.08,20.2839198 L17.08,11.5479198 Z M19.48,18.6679198 L20.84,18.6679198 L20.84,13.9479198 L19.48,13.9479198 L19.48,18.6679198 Z" transform="translate(20.160000, 16.307920) scale(-1, 1) translate(-20.160000, -16.307920) "></path>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="expert-opinion" width="13px" height="13px" viewBox="0 0 17 18">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-755.000000, -823.000000)" fill="#767676" fill-rule="nonzero">
<g transform="translate(755.349880, 823.350000)">
<path d="M11.2772833,3.37992919 C11.5368962,3.11649129 11.9609127,3.11339055 12.2243506,3.37300349 C12.4614447,3.60665514 12.4876657,3.97347366 12.3012811,4.23654707 L12.2312763,4.32007081 L6.65235944,9.98118349 L3.70853864,6.8970477 C3.45316319,6.62949997 3.46303077,6.20558698 3.7305785,5.95021153 C3.97137145,5.72037363 4.33882027,5.70538258 4.5960708,5.89972504 L4.67741466,5.97225139 L6.66711951,8.057 L11.2772833,3.37992919 Z"></path>
<path d="M11.5072624,-6.25277607e-13 L4.65,-6.25277607e-13 C2.08187591,-6.25277607e-13 -2.84217094e-13,2.08187591 -2.84217094e-13,4.65 L-2.84217094e-13,9.55607389 C-2.84217094e-13,10.880365 0.80361062,12.0701745 2.0263484,12.5664585 L2.22324513,12.6387348 C2.49697211,12.728113 3.91766654,14.0961762 6.11671697,16.4637822 L7.03723052,17.4548524 L7.57558048,13.8297934 C7.6738534,13.1680581 8.24194282,12.6781042 8.91093542,12.6781042 L11.5072624,12.6781042 C14.0753865,12.6781042 16.1572624,10.5962282 16.1572624,8.02810416 L16.1572624,4.65 C16.1572624,2.08187591 14.0753865,-6.25277607e-13 11.5072624,-6.25277607e-13 Z M4.65,1.3 L11.5072624,1.3 C13.3574163,1.3 14.8572624,2.79984609 14.8572624,4.65 L14.8572624,8.02810416 C14.8572624,9.87825807 13.3574163,11.3781042 11.5072624,11.3781042 L8.91093542,11.3781042 L8.74083025,11.3835071 C7.50250251,11.462373 6.474202,12.3963423 6.28968312,13.6388274 L6.14711951,14.595 L5.69138094,14.1155496 C4.13261292,12.4887289 3.19671036,11.6371613 2.71043375,11.4336649 L2.4935803,11.3535468 C1.78217675,11.0643549 1.3,10.3504538 1.3,9.55606403 L1.3,4.65 C1.3,2.79984609 2.79984609,1.3 4.65,1.3 Z"></path>
</g>
</g>
</g>
</symbol>
<symbol id="close-x" viewBox="0 0 13 13">
<path d="M0,11.5L11.5,0L13,1.4L1.4,13L0,11.5z M1.4,0L13,11.5L11.5,13L0,1.4L1.4,0z" />
</symbol>
<!-- >>>>>>>>> ICONS/CLASS <<<<<<<<< -->
<!-- /icons/class/book.svg -->
<symbol id="book" width="16" height="14" viewBox="0 0 16 14"><path d="M15.753 3.111c.285.366.285.732.19 1.19l-2.665 8.326c-.095.366-.38.732-.761 1.007-.381.274-.762.366-1.143.366H2.522c-.476 0-.951-.183-1.427-.458-.476-.366-.762-.732-.952-1.19a1.31 1.31 0 010-1.189v-.274-.366-.183-.183c0-.092 0-.092.095-.183 0-.092.095-.092.19-.183.096-.092.096-.183.19-.183.191-.275.286-.55.477-.824.095-.366.19-.64.285-.823v-.275-.274c0-.092.095-.183.19-.275.096-.091.19-.183.19-.183.096-.183.286-.457.382-.823.095-.366.19-.64.285-.824v-.274-.275c0-.091.095-.183.19-.274l.19-.183c.096-.183.286-.458.382-.732.19-.366.19-.64.285-.915v-.275-.274c0-.092 0-.092.095-.183 0-.092.096-.092.19-.183.096-.092.096-.183.191-.183.095-.092.095-.183.19-.275.096-.091.096-.183.19-.366 0-.091.096-.183.191-.366.095-.091.095-.183.19-.274.096-.092.19-.183.286-.183C5.092 0 5.187 0 5.377 0c.096 0 .286 0 .477.092C6.139 0 6.234 0 6.33 0h7.234c.475 0 .856.183 1.047.549.285.366.285.732.19 1.19l-2.665 8.326c-.19.732-.476 1.19-.667 1.373-.19.183-.666.274-1.237.274h-8.28c-.191 0-.286.092-.381.183a.27.27 0 000 .366c.19.458.57.641 1.332.641h8.852c.19 0 .38-.092.571-.183a.73.73 0 00.38-.366l2.856-9.059c0-.091.096-.274.096-.549-.286 0-.096.183.095.366zM4.712 5.491v.182c0 .092.095.092.19.092h5.806c.095 0 .19 0 .286-.092l.19-.183.19-.549v-.183s-.095-.183-.19-.183H5.378c-.095 0-.19 0-.286.092l-.19.183-.19.64zm.856-2.38v.183c0 .092.095.092.19.092h5.807c.095 0 .19 0 .285-.092l.19-.183.191-.549V2.38c0-.091-.095-.091-.19-.091H6.234c-.095 0-.19 0-.285.091l-.19.183-.19.55z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/class/certificate.svg -->
<symbol id="certificate" width="14" height="17" viewBox="0 0 14 17"><path d="M12.787 0c.22 0 .331 0 .441.113.22.112.441.225.552.45.11.225.22.45.22.675v14.524c0 .225-.11.45-.22.675-.11.225-.331.338-.552.45-.11.113-.22.113-.44.113-.331 0-.662-.113-.882-.338l-4.85-4.84-4.962 4.84c-.22.225-.55.338-.881.338-.22 0-.331 0-.441-.113-.22-.112-.441-.225-.552-.45-.11-.225-.22-.45-.22-.675V1.238c0-.225.11-.45.22-.675C.33.338.551.225.772.113.882 0 1.102 0 1.212 0h11.575z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/class/computer-play.svg -->
<symbol id="computer-play" width="38" height="34" viewBox="0 0 38 34"><g fill="none" fill-rule="evenodd"><path d="M2.455.955h33.078c.83 0 1.503.74 1.503 1.651v18.671c0 .912-.673 1.651-1.503 1.651H2.455c-.83 0-1.503-.739-1.503-1.65V2.605c0-.912.673-1.651 1.503-1.651z" stroke="#FFF" stroke-width="1.458"/><path d="M15.793 22.93L13.6 30.648c-.22.57-.053 1.272.372 1.566a.682.682 0 00.495.123h7.495c.468.074.893-.375.948-1.003a1.484 1.484 0 00-.096-.678l-2.28-7.729" stroke="#FFF" stroke-width="1.458"/><path d="M21.82 11.667l-4.888 2.82a.498.498 0 01-.747-.432V8.417a.498.498 0 01.747-.431l4.888 2.819a.498.498 0 010 .862z" fill="#FFF"/></g>
</symbol>
<!-- /icons/class/location.svg -->
<symbol id="location" width="14" height="20" viewBox="0 0 14 20"><path d="M14 6.623c0 .91-.136 1.689-.408 2.338l-5.029 10.13c-.136.26-.408.52-.68.65-.271.13-.543.259-.951.259-.272 0-.68-.13-.951-.26a1.603 1.603 0 01-.68-.65L.271 8.962C.137 8.311 0 7.532 0 6.623c0-1.818.68-3.376 2.039-4.675C3.399.65 5.029 0 6.932 0c1.903 0 3.534.65 4.893 1.948C13.32 3.247 14 4.805 14 6.623zM9.515 8.961c.68-.65 1.087-1.429 1.087-2.338s-.408-1.688-1.087-2.337c-.68-.65-1.496-1.04-2.447-1.04-.951 0-1.767.39-2.447 1.04-.68.65-1.087 1.428-1.087 2.337 0 .91.408 1.689 1.087 2.338.68.65 1.496 1.039 2.447 1.039.951 0 1.767-.39 2.447-1.039z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/class/quoteleft.svg -->
<symbol id="quoteleft" width="27" height="22" viewBox="0 0 27 22"><path d="M11.648 2.734A51.147 51.147 0 008.68 4.551c-.756.508-1.524 1.178-2.305 2.011-.73.782-1.29 1.602-1.68 2.461-.39.86-.664 1.967-.82 3.32H5.75c1.615 0 2.884.398 3.809 1.192.924.794 1.386 1.96 1.386 3.496 0 1.094-.41 2.116-1.23 3.067-.82.95-1.947 1.425-3.38 1.425-2.239 0-3.84-.735-4.804-2.207-.963-1.471-1.445-3.405-1.445-5.8 0-1.693.365-3.236 1.094-4.63a16.402 16.402 0 012.656-3.73 19.18 19.18 0 013.398-2.851c1.198-.782 2.2-1.42 3.008-1.914l1.406 2.343zm14.454 0a51.147 51.147 0 00-2.97 1.817c-.754.508-1.523 1.178-2.304 2.011-.755.808-1.321 1.635-1.7 2.481-.377.846-.644 1.947-.8 3.3h1.875c1.615 0 2.884.398 3.809 1.192.924.794 1.386 1.96 1.386 3.496 0 1.094-.41 2.116-1.23 3.067-.82.95-1.947 1.425-3.379 1.425-2.24 0-3.841-.735-4.805-2.207-.963-1.471-1.445-3.405-1.445-5.8 0-1.693.365-3.236 1.094-4.63a16.402 16.402 0 012.656-3.73 19.18 19.18 0 013.398-2.851c1.198-.782 2.201-1.42 3.008-1.914l1.407 2.343z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/class/quoteright.svg -->
<symbol id="quoteright" width="27" height="22" viewBox="0 0 27 22"><path d="M12.273 8.242c0 1.719-.377 3.288-1.132 4.707-.756 1.42-1.641 2.65-2.657 3.692a22.092 22.092 0 01-3.437 2.87c-1.25.847-2.253 1.466-3.008 1.856L.711 19.062a53.653 53.653 0 003.066-1.933c.977-.664 1.726-1.296 2.246-1.895a10.77 10.77 0 001.68-2.441c.417-.846.677-1.96.781-3.34H6.61c-1.64 0-2.916-.417-3.828-1.25-.911-.833-1.367-1.992-1.367-3.476 0-1.068.417-2.077 1.25-3.028C3.497.75 4.63.273 6.062.273c2.214 0 3.803.736 4.766 2.207.964 1.472 1.445 3.392 1.445 5.762zm14.454 0c0 1.719-.378 3.288-1.133 4.707-.755 1.42-1.64 2.65-2.657 3.692a22.092 22.092 0 01-3.437 2.87c-1.25.847-2.253 1.466-3.008 1.856l-1.328-2.305a53.653 53.653 0 003.066-1.933c.977-.664 1.726-1.296 2.247-1.895a10.77 10.77 0 001.68-2.441c.416-.846.676-1.96.78-3.34h-1.875c-1.64 0-2.916-.417-3.828-1.25-.911-.833-1.367-1.992-1.367-3.476 0-1.068.417-2.077 1.25-3.028.834-.95 1.966-1.426 3.399-1.426 2.213 0 3.802.736 4.765 2.207.964 1.472 1.446 3.392 1.446 5.762z" fill-rule="nonzero"/>
</symbol>
<!-- /icons/class/trophy.svg -->
<symbol id="trophy" width="17" height="17" viewBox="0 0 17 17"><path d="M16.7 4.4v1.3c0 .5-.1 1-.4 1.4-.3.5-.7.9-1.1 1.3-.5.4-1.1.7-1.7 1-.6.3-1.4.4-2.2.4-.3.4-.6.7-1 1-.3.2-.4.5-.5.7-.1.3-.1.6-.1.9 0 .4.1.7.3.9.2.2.5.4 1 .4s.9.2 1.3.5.6.7.6 1.2v.6c0 .1 0 .2-.1.2-.1.1-.1.1-.2.1H4.2c-.1 0-.2 0-.2-.1-.1-.1-.1-.1-.1-.2v-.6c0-.5.2-.8.6-1.2.4-.3.8-.5 1.3-.5.4 0 .8-.1 1-.4.2-.2.3-.6.3-.9 0-.3 0-.6-.1-.9-.1-.3-.3-.5-.5-.7-.4-.3-.7-.6-1-1-.8 0-1.5-.2-2.2-.4-.7-.3-1.3-.6-1.7-1C1.2 8 .8 7.6.5 7.1c-.3-.5-.4-1-.4-1.4V4.4c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3H4v-1c0-.4.2-.8.5-1.1.3-.3.7-.5 1.1-.5h5.8c.4 0 .8.2 1.1.5.3.3.5.7.5 1.1v1h2.9c.3 0 .5.1.7.3.2.2.1.4.1.7zm-12.1 4c-.5-1.1-.7-2.3-.7-3.7H1.3v1c0 .5.3 1.1.9 1.6.6.5 1.5.9 2.4 1.1zm10.8-2.7v-1h-2.6c0 1.4-.2 2.6-.7 3.7.9-.2 1.7-.6 2.4-1.1.7-.5.9-1.1.9-1.6z" fill-rule="nonzero"/>
</symbol>
<!-- >>>>>>>>> ICONS/NAV <<<<<<<<< -->
<!-- /icons/nav/caret.svg -->
<symbol id="caret-left" viewBox="0 0 7 9">
<g fill-rule="evenodd">
<path d="M4.757 0L.515 4.243l1.414 1.414 4.243-4.243z"/>
<path d="M.515 4.243l4.242 4.242 1.415-1.414-4.243-4.243z"/>
</g>
</symbol>
<symbol id="caret-right" viewBox="0 0 7 9">
<g fill-rule="evenodd" transform="scale(-1,1) translate(-8,0)">
<path d="M4.757 0L.515 4.243l1.414 1.414 4.243-4.243z"/>
<path d="M.515 4.243l4.242 4.242 1.415-1.414-4.243-4.243z"/>
</g>
</symbol>
<!-- /icons/nav/icon_account.svg -->
<symbol id="icon_account" viewBox="0 0 18 18"><path d="M10.755 10.638l-.9-.216-.306-.081a7.857 7.857 0 01-3.555-1.503 3.6 3.6 0 01-.954-1.575 4.131 4.131 0 01.612-3.6 4.158 4.158 0 013.195-1.656 4.176 4.176 0 013.231 1.674c.752 1.04.978 2.37.612 3.6a5.949 5.949 0 01-1.242 1.629.261.261 0 00.108.459l1.26.423a.72.72 0 00.72-.198 5.598 5.598 0 001.08-1.8 6.174 6.174 0 00-.9-5.346A6.237 6.237 0 008.847 0a6.228 6.228 0 00-4.815 2.493 6.183 6.183 0 00-.9 5.346 5.616 5.616 0 001.494 2.457c.156.148.321.287.495.414.198.144.18.297-.063.36-1.971.486-3.528 1.062-4.158 1.953-.63.891-.9 3.06-.9 4.5 0 .249.201.45.45.45h1.071a.45.45 0 00.441-.45 8.298 8.298 0 01.576-3.366c.477-.657 3.96-1.377 5.274-1.647l.693-.144c.157-.039.316-.069.477-.09l.297.081.972.234c1.215.279 3.744.855 4.266 1.593.423 1.07.62 2.216.576 3.366a.45.45 0 00.441.45h1.107a.45.45 0 00.45-.45c0-1.467-.225-3.51-.9-4.5-.882-1.287-2.997-1.854-5.436-2.412z"/>
</symbol>
<!-- /icons/nav/icon_bag.svg -->
<symbol id="icon_bag" viewBox="0 0 18 18"><path d="M17.403 5.353l-.303 9.55a2.842 2.842 0 01-2.52 2.841h-.323c-.473.057-2.121.2-4.461.218h-.474c-2.065 0-3.931-.104-4.358-.151h-.322a2.842 2.842 0 01-2.567-2.843l-.18-5.23a.142.142 0 00-.123-.132h-.37a.436.436 0 01-.303-.151.436.436 0 01-.152-.36l.067-.948a.445.445 0 01.473-.407c.38 0 4.273.256 6.68.256h.208c1.317 0 4.737-.104 5.011-.123a.426.426 0 01.455.445v.947a.464.464 0 01-.426.446c-.74.047-2.69.113-4.983.132-1.308 0-3.553-.057-4.652-.114a.095.095 0 00-.066 0 .085.085 0 000 .067l.218 5.153c.005.542.41.995.947 1.062h.123c.057 0 2.046.18 4.737.16a41.135 41.135 0 004.472-.198h.132a.947.947 0 00.673-.322c.196-.212.304-.49.303-.777l.265-8.441a.085.085 0 000-.067.076.076 0 00-.066 0c-1.061.095-3.6.247-6.13.266-3.42 0-6.631-.19-7.304-.256a.464.464 0 01-.417-.455v-.947a.426.426 0 01.142-.322.417.417 0 01.332-.114c.37 0 2.33.142 4.121.208a.085.085 0 00.066 0 .095.095 0 000-.066v-.947A2.766 2.766 0 019.048.947h.947a2.577 2.577 0 012.131 1.024c.378.397.609.912.654 1.458a.294.294 0 01-.076.228.313.313 0 01-.227.095l-1.175.085a.35.35 0 01-.34-.294.947.947 0 00-.948-.805h-.948a.947.947 0 00-.947.947v1.052c0 .057.047.104.104.104h1.07c3.79 0 7.078-.36 7.106-.37a.947.947 0 01.71.228c.18.171.286.406.294.654z"/>
</symbol>
<!-- /icons/nav/icon_search.svg -->
<symbol id="icon_search" viewBox="0 0 18 18"><path d="M17.804 17.222l-.576.585a.62.62 0 01-.9 0l-5.461-5.353a3.599 3.599 0 01-.828-.9 1.035 1.035 0 010-.675c.064-.207.19-.389.36-.522.21-.195.403-.41.576-.638a4.697 4.697 0 00.9-3.6 4.921 4.921 0 00-5.579-4.003 4.912 4.912 0 00-3.302 1.943 4.697 4.697 0 00-.9 3.527 4.921 4.921 0 005.615 4.049h.342a.756.756 0 01.63.45l.413.747a.477.477 0 01-.287.72 7.198 7.198 0 01-.783.161A6.982 6.982 0 01.079 7.901a6.748 6.748 0 011.26-5.065A6.964 6.964 0 015.954.083a6.982 6.982 0 017.954 5.767 6.739 6.739 0 01-1.314 5.12l-.063.09c0 .044.126.278.378.521l4.877 4.777a.62.62 0 01.018.864z"/>
</symbol>
<!-- >>>>>>>>> ICONS/SOCIAL <<<<<<<<< -->
<!-- /icons/social/email-share-alt.svg -->
<symbol id="email-share-alt" viewBox="0 0 67 10">
<defs><path id="a" d="M14 0H0v10h14z"/></defs><g fill="none" fill-rule="evenodd"><path d="M1.326 8.62V2.04c4.459 3.356 5.33 3.99 5.728 3.99.093 0 .16-.034.243-.077.054-.028.137-.072 5.378-3.93V8.62H1.325zm9.927-7.24A2486.6 2486.6 0 016.98 4.519c-.73-.51-2.574-1.876-4.264-3.14h8.537zM13.337 0H.663A.677.677 0 000 .69v8.62c0 .382.297.69.663.69h12.674A.676.676 0 0014 9.31V.69a.676.676 0 00-.663-.69zM29.876 9H23.96V.588h5.916v1.296h-4.488v2.172h4.284v1.308h-4.284v2.34h4.488V9zm8.612-1.86h-1.32l-1.944-3.684V9h-1.428V.588h1.5l2.532 4.968L40.36.588h1.5V9h-1.428V3.456L38.488 7.14zM48.24.588h1.44L52.956 9h-1.5l-.708-1.788H47.16L46.464 9h-1.512L48.24.588zm1.992 5.304l-1.284-3.36-1.272 3.36h2.556zM57.488 9H56.06V.588h1.428V9zm9.464 0H61.54V.588h1.428v7.116h3.984V9z" fill="#BBB"/></g>
</symbol>
<!-- /icons/social/facebook-share-alt.svg -->
<symbol id="facebook-share-alt" viewBox="0 0 63 13">
<g fill="#fff" fill-rule="evenodd">
<path d="M19.428 6.52l-1.02-.168c-1.596-.288-2.52-1.14-2.52-2.496 0-.72.288-1.296.864-1.74.576-.444 1.272-.66 2.1-.66 1.224 0 2.256.444 3.108 1.344l-.996 1.056c-.612-.732-1.332-1.104-2.172-1.104-.96 0-1.464.492-1.464 1.068 0 .612.468.996 1.392 1.14l.84.144c1.812.288 2.688 1.212 2.688 2.592 0 .72-.288 1.308-.864 1.764-.576.444-1.356.672-2.352.672-1.38 0-2.496-.54-3.348-1.608l.972-.984c.612.804 1.344 1.296 2.556 1.296 1.02 0 1.596-.456 1.596-1.116 0-.636-.456-1.044-1.38-1.2zM32.708 10h-1.44V6.364H27.32V10h-1.428V1.588h1.428v3.468h3.948V1.588h1.44V10zm6.368-8.412h1.44L43.792 10h-1.5l-.708-1.788h-3.588L37.3 10h-1.512l3.288-8.412zm1.992 5.304l-1.284-3.36-1.272 3.36h2.556zM53.52 10h-1.692l-1.764-2.868h-1.74V10h-1.428V1.588H50.1c1.98 0 3.204 1.02 3.204 2.748 0 1.236-.624 2.136-1.716 2.556L53.52 10zm-3.6-7.116h-1.596v2.94h1.596c1.308 0 1.956-.492 1.956-1.476 0-.972-.648-1.464-1.956-1.464zM62.804 10h-5.916V1.588h5.916v1.296h-4.488v2.172H62.6v1.308h-4.284v2.34h4.488V10z"/>
<path d="M0 4.05h1.265V2.82c0-.543.014-1.38.408-1.898C2.088.374 2.658 0 3.638 0c1.596 0 2.27.227 2.27.227L5.59 2.103s-.527-.152-1.019-.152c-.492 0-.933.176-.933.668v1.43h2.018l-.14 1.832H3.638v6.364H1.265V5.88H0V4.05z" fill-rule="nonzero"/>
</g>
</symbol>
<!-- /icons/social/facebook-signup.svg -->
<symbol id="facebook-signup" viewBox="0 0 41 41">
<g fill="none" fill-rule="evenodd"><circle cx="20" cy="20" r="20" transform="translate(.753 .484)" fill="#FFF"/><path d="M17.753 18.533h1.265v-1.23c0-.543.014-1.38.408-1.897.415-.549.985-.922 1.965-.922 1.596 0 2.27.227 2.27.227l-.318 1.876s-.527-.153-1.019-.153c-.492 0-.933.177-.933.669v1.43h2.018l-.14 1.832H21.39v6.363h-2.373v-6.363h-1.265v-1.832z" fill="#355A9A" fill-rule="nonzero"/></g>
</symbol>
<!-- /icons/social/facebook.svg -->
<symbol id="facebook" viewBox="0 0 7 13">
<path fill="#3b5998" d="M.333 4.05H1.6V2.82c0-.543.013-1.38.408-1.898C2.42.374 2.99 0 3.97 0c1.597 0 2.27.228 2.27.228l-.317 1.875s-.528-.152-1.02-.152-.933.176-.933.668v1.43H5.99l-.14 1.832H3.97v6.364H1.6V5.881H.333V4.05z"/>
</symbol>
<!-- /icons/social/flip-share-alt.svg -->
<symbol id="flip-share-alt" viewBox="0 0 50 12">
<g fill="#fff" fill-rule="evenodd">
<path d="M21.388 6.364V10H19.96V1.588h5.508v1.296h-4.08v2.172h3.804v1.308h-3.804zM34.32 10h-5.412V1.588h1.428v7.116h3.984V10zm4.868 0H37.76V1.588h1.428V10zm7.256-2.868h-1.776V10H43.24V1.588h3.204c1.98 0 3.204 1.02 3.204 2.748 0 1.74-1.236 2.796-3.204 2.796zm-.18-4.248h-1.596v2.94h1.596c1.308 0 1.956-.492 1.956-1.476 0-.972-.648-1.464-1.956-1.464z"/>
<g fill-rule="nonzero">
<path opacity=".8" d="M4 4h4v4H4z"/>
<path opacity=".9" d="M4 0h8v4H4z"/>
<path d="M0 0h4v12H0z"/>
</g>
</g>
</symbol>
<!-- /icons/social/flipboard-signup.svg -->
<symbol id="flipboard-signup" viewBox="0 0 41 41">
<g transform="translate(.398 .484)" fill="none" fill-rule="evenodd"><circle fill="#FFF" cx="20" cy="20" r="20"/><g fill="#CD2900" fill-rule="nonzero"><path d="M13.035 17.216h8.445v4.008c0 .133-.214.24-.477.24h-7.968v-4.248z"/><path d="M13.035 13.02h13.4c.16 0 .29.107.29.24v3.768c0 .133-.13.24-.29.24h-13.4V13.02z"/><path d="M13.035 26.47V13.26a.24.24 0 01.24-.24h4.009v13.45a.24.24 0 01-.24.24h-3.769a.24.24 0 01-.24-.24z"/></g></g>
</symbol>
<!-- /icons/social/gplus.svg -->
<symbol id="gplus" fill="currentColor" viewBox="0 0 24 24">
<path fill="none" d="M0 0h24v24H0V0z"/><path d="M23 11h-2V9h-2v2h-2v2h2v2h2v-2h2M8 11v2.4h4c-.2 1-1.2 3-4 3-2.4 0-4.3-2-4.3-4.4S5.6 7.6 8 7.6c1.4 0 2.3.6 2.8 1.1l1.9-1.8C11.5 5.7 9.9 5 8 5c-3.9 0-7 3.1-7 7s3.1 7 7 7c4 0 6.7-2.8 6.7-6.8 0-.5 0-.8-.1-1.2H8z"/><path fill="none" d="M1 5h14v14H1z"/>
</symbol>
<!-- /icons/social/heart.svg -->
<symbol id="heart" viewBox="0 0 12 10">
<path fill="currentColor" fill-rule="evenodd" d="M5.24 9.836L1.733 6.87C.923 6.186.365 5.317.123 4.358c-.163-.64-.125-1.067-.101-1.22C.205 1.347 1.626 0 3.338 0c.916 0 1.753.367 2.356.999A3.371 3.371 0 018.098 0c1.712 0 3.133 1.347 3.316 3.138.024.153.061.58-.101 1.22-.243.96-.8 1.828-1.611 2.513L6.13 9.84a.694.694 0 01-.89-.004z" />
<path fill="#767676" fill-rule="evenodd" d="M1.388 3.369c.001 0-.026.235.078.648.172.677.574 1.298 1.162 1.795l3.064 2.59 3.12-2.594c.584-.493.986-1.114 1.157-1.79.108-.428.075-.665.075-.667l-.008-.056c-.09-.948-.785-1.908-1.938-1.908-.774 0-1.472.437-1.779 1.114a.694.694 0 01-1.263 0 1.846 1.846 0 00-1.718-1.114c-1.153 0-1.848.96-1.939 1.908a.657.657 0 01-.01.074zM5.688 10a.692.692 0 01-.448-.164L1.733 6.87C.923 6.186.365 5.317.123 4.358c-.163-.64-.125-1.067-.101-1.22C.205 1.347 1.626 0 3.338 0c.916 0 1.753.367 2.356.999A3.371 3.371 0 018.098 0c1.712 0 3.133 1.347 3.316 3.138.024.153.061.58-.101 1.22-.243.96-.8 1.828-1.611 2.513L6.13 9.84a.694.694 0 01-.443.16z" />
</symbol>
<!-- /icons/social/instagram-signup.svg -->
<symbol id="instagram-signup" viewBox="0 0 40 41">
<g transform="translate(-.013 .484)" fill="none" fill-rule="evenodd">
<circle fill="#FFF" cx="20" cy="20" r="20"/>
<image x="13.425" y="12.425" width="13.149" height="13.149" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAC2CAYAAAB08HcEAAAABGdBTUEAALGOGCHvlwAAMEVJREFUeAHtnQm8HUW54Ks7yU3uzR5CCFvYIz8EEgTZJMGIoOHxEBhGQWfgjQ6gwvPpOIr8ePpG0SePGZ8b/Fj1CS6gwwNFZJU1PIEIBIIwEBbDThbIfnOznZ7/V9XVp8/e2+lz7r1dv3tu9VJd9dVX//r66+rqbqWKkIsGHldf63lcXdCTS2FFIcoZzDp4Rc1xPeVMU8qdTjxdKWeSp9xJxBP5jWV5gomdMaQZT5qxrI/yt7ssj2a5l1ixj2NchxiVyDq7q5bNPreXGEBdOaZV2qzSbKasjS3kkrI80qzxZZf0m1guEa8l3kK8gTTrkH2AeIO/XeI1/FaTZjXx2+x7izQrjlMncuzgDIMC7NfVIZNR9iyUfiDK3494b357sbwr8Qj2of1cQfOB7USZTTtdi45kOmtEfW1Dp6+R9iV0/CIKfpbfYn5PfUSdsIq4q0NXgv2mOkCAPRZw5xIfgXJndgbcKBANabiBt1y/EMlLWH6Y3wP8/gjor4X2dcVi14D9ttr3YAA+BZBP8q0yCiqDFdHKcEy5IchH59H+fDpRZlk38esXy3JX6JSVekGs+W/53QTkj9dLkPe2joK9XO25C/CdScOcCbj7dAbKNICI+izUNs4qv3bnkznclt0XWLhWfkD+ut2Yd9wRsFeoGUcD9BcB+m/54SMnV7I9Nr7VCkOZFUQF3CGA8dHVLfx+COAPhLbnspgr2CvVTn+Dhfs61vmwMIjh5e52OaJ0gALuOuQ+wraLAPy2OvvasikXsN9V07gAdC8B4KMGP7gF3GX3KzY+D0HxVwFcLjzbGmJLFkeaVWrKVIC+GKA/M7SscgF3CrgFoWv4XQDgK+PwFCdt28BerSYxuuFcCdDTussPjgJlVmkKt6QJjMvZdw5wy2hK5iFzsNeocdzlc34E1GeFe3UBd1adpd35JL+QT0jn1Rz3BQAfSHh83cMyBXut6t0DqG8C4tnG9ZDsB5vVaofMg00HucO9CFBOAe6ldSlNsDEzsNepHrlA/B1Ab2+gTq6coWndC7hb8CmuyYnA/WiLdJF2C32pw3o18kSlvHscVQJq5uHoGQsyf0bGQGS95MeybrYPvzSDTQfJ2y8hUExmU/fdqW6FpfQhNdgblHM64N4IwMySG87gRql7AXcLZGFI3Qjcp7VI13J3Kldkg6tOxwD/AtdDpo9S2GA73XZK5sGmp+RuZUsC6yeQ08WncEtuqL+79dbEYG8Y5ZyIgb5RlbxR2rvQzkanQAlGCjbTyVbho682scxhdpmL7PSzzhxkdy2xLDO/2fXnK2uZmYsssc5H0qDYIE99HorYaZkLredEc4yBoXE+NXAjgDPRHhfTUFCYM8Eey/Ikf3kM+TBK5fYQ9/lpZNTKLktMWmcSaWRqMPPMy/UOL9u8SYOeamS3uvPjyjRsTBKYP65OBW65LR87iASxw4YxzhG03D0A3UuMJ8I/6WNaKZWVsgqpVFKqNOvJ8ynyW4ySmT7pvkD8Kutv7aiebduAf2wlDcIDFqjLuaHm7IQud0XHTBWWiWl6DrzMhR9n2zJHuDE+al6SC8rYYPePc/fwSupRYN7eQE3R7YW7H0Xeh2LvR7F/JF48Tf1Vd6NByM6gFPkB9RNcTVfgPoZ4HvEHaROsfS6WezlKOwy4l8ZRXiyw+ye6Y7DMDwPybOA2llpDzXK2cG9BgbeiwOtR4K1T1ZvSc4vQJRq4T10nj9OdQNswcOBKPIp1EGjlfsXCLVxbGec+Ergj38SJVVL/pBFXKc87S7sdgNwGuFeinCtQ0mVT1Iq3wzUrlrtTA/eqX0wH7nOB+7O0m8wNQlDBqgw6+1gvW/eENbkasM+OemxksPunjjgJoG82UEO1WOzs4H6Hin8bBVw5Wa0qrHPU1uuidPeqX8lDzgL3hcC9XZvgPgm4uQnYOkQCu3+HkVPxqZ8B5GkaaA11ZnAz08s5f6Ja925rcYsU3a6Be9T1U2jPfwHu/94GuMXffi9wtxwkkPNG6+Coi3kzwTT/jCJnFWSmT/hnHUdil3XpJv42vS7L9AY5KYmJN7Gs656BcN7xE9X6swqoRU9DIxyjTn/3GHXaWbTx8bSvtLFt7xoOEtRY7k5+N8pxLS12/84jZWjvT9b10EN7hlPfHUlkubkYcD42Xm3uuqeboyitSBNNA/eoG2TYUOYPHSRWz/rfgrpYQBO3RLC6MKFPLiQfqd4RXtc2NbyhZtlVl/hy+BYZQYxcvnVmxbfSES33nVRxbgF1jaaH3AYs92tY7rlY7bsytNxC3yWtlNUU7I27j/obXIqjLLjlODHcvwfqE8epretbCVbsHxoaAO71wM1D297vM4R7DvNJ5jfTUFOwAfnr4koH/rJeZt1us+vaYrPS3HLfwf5TxyqP295FGE4aAO7NwH0qYN+dIdzfaKZDQbNu2LhPz9H40/fjCGlf2tNx2Z+O6XMvIv2csVs83hNXhOGqAXxuuS2/AMvoP4hiLGEKn/tofO0H6+lTcq4fHPXF8EhHCsu9Agv/sQLq+moeTlt9t+RjWO2sRku+2Eh/dS32xv16dsHCLuU3wlhsLHVyyz2/b33pjkYCFNuHnwaw3Mdjuf9gfNpUoyXyUp7dsNpvVGtxZPUGve44f6dcb4ReliFnGaOWGXzYd5nQ6cm6kK73sViVxhxHGte7um9NAbXWxyD794i6mDd0OR+mEecTy3Adr2p2hYBl/J5m+TbiO45S58n00lgBy30bcP+EPHgtB7kAEMv60s1j2WFZ7KjsaRGE0TP5/XN1urpHbjxg9BLy34d5IQZaAVdKErh1TGTXg301ad4hj5l9q7cVdxSrtd7l64+q75wOaBcB1l7V/q8AaIDTlvZ1li8izTVz1LlCQuTg36FkyrErdyo5LrHlXoLFfk91wTVgb5w9+mCAfMwCnALuL/Wt3PaD6gKL9e7VwEL1zT5Auw7I/lMz0KrgpkLO3cD9CeBeFad2wP0/OPZ7dfIDP0Ez8k2cQ4C74i2v0v0qg0OlbKfUMQVIHGxj3ZSp76o3GApcSRpellOEwaKBP6t/6uM8/EfcAqCW07GgZU7HYkvl1G3i8vZQmmPZ9+ACddnkOPXlmMvJY6UtJ5SfX1a5zBb5nly9X3CtDK76WHgeiAE6NtxX9K3YVszSq9Rsl6+VfgpoR4ThCi8bqMug1YFxf9L8GrhrmWpQ8w+pT27kGAxg3c4SB+6TqouoEGLg0DG7AvJ+FTD71jmAvbXl3sLxl1UXVKx3rwYeUxeeDGCfaGGVa0CrA7dYbmb1xQmlSzmGC9BUcL+XO5E7h0utABu34lgzXk0SDbBvqePBfWvfm1uLhwTCWu7yZQD9tgGrpcsRBe5vPKQu5YmaaOFD6r/ASulW4OaAVHAfFy6xEmxHzRWfOSXc14cLKJa7WwOPq/PF/djPWl8DWFOXoxXcWE7vo3FqTZkwE6/MOvnPCW+rBNtVRyA11jox3P10Cp5VLMJg0QBAf0QsZdhaZgA3L/iPEzyx2LwWIxXcR4ZLDMAemNs3GfdjpnFBSJIM7vt7l24pLhrDGu76ZW+WtdYZwr1/nGrPU2fAjHd/kg4VKuc9+NnBqEwANkDPqneBGNMtuS9UULE4CDQATPp9ixnDvUPcqlM+7IiPLWePxJb7QFtuGWxHHVhxwSh74rslvPejCINLA6WSgSnahVvEDhDrLqTRl36pKYup4A7AHhk0ggzziTgCNFVlnofZpbfhc3M73bPdwO6vTC8PDyw2BxX/X1WHj8EyyNPa23FnbTQxn8DWlkI++7yJ9XfY/s6e6o+R35XRDq0C9Yrw/AwB19wJREJ/WaSOmSb2qBhlPUW58lCCTG3VmopZJlI6+1kdlcF2+IyzwFwJq0kXDe6nep/bJCmHVXhTHSjvzGNkwZkNsAdgEWYS74Ei/XdsNAfkZfVhpnA6f+W3hHwwDA4N7Dy8t7ptbT6K9J4A3FPiQmShFxntcqgDyAtuYoWj1WdKvHGK19a5R9bJj45VLkcybpBmb1toGWxX7RVY6mRwDwtrzReEZdYbQ0sOs95cGVE4ACXLK8ASWRmOlQ4wlQZ5P8uf8vMpvaiOf5pOcidl3U5ZC/ZRt8gUzcwDZd5Gmd8OQRkVogAuEYp8OC7QATInCd5T5HOkyaciP/I3M/5sOZK7XQ7JvpctVTsXA/PHuhwndx1JTTIdsxxeD7Y1HApcYjMdivEytffhy9Q+vKWq9Ban7/sA+qsodhYxmgE/faqTWGxLvIsfe2woH8akPPIuUYYu660X1IlXLFEnHZa1bmepHy+i/D+bsjOR/SVkTnit5b0Q0kESnc64S90inCttsR3X2d4rMf9a4JVQ34f29xHJUGCtz41QQyvwBWHebuSeQW8/D6XsH7JIKD2SBcnC+klZ24PcOQB4DnD/BXl+zO/nM9VNG7PRuHched+VUf3+8TB1YaKzCzK8KDJIYNk/A9hYkBeD0VTvnE1L8u6RZTaXHYFbcjNWWrbGt9yvctSQCHxBeNxKtcvXUOWrKBgr7TEum7lVRt2JLKTIIhOHXlmiTvna8+rUcWmVPktdejf5XSEwmXomkkuO/XegviG5PN4rVgYjh5XHxpHkmi7lG7BdNV2gTgn3W8kr1B1H8gXhke+o6ecC3FIs9HeJ8X3LQIeXE0JJRaVxynmmyEfGn5Gx9DJwn/u8+s/l66VE6vT+gfx4PUYsiCgpcLv+xLFnJCraPwhdMJpS1k14OYZcIbAdNUkjnhzuzb2PD6xMU6lOH/uumjoXRcrFy6XE26UAjqqUGyeHfLb3ZV4E3BXzJeLodJa6jNdieKfyS2K5f009jz1U/RO3xZOHOepzy8lnS1h/4eWIcE8SCXyLzacarBuSDO5VyavT2SP5gvD4VWrylSjtAZTIOGiuUKL2xBYyONaXWVyUB4H7iufUxxO5JwI3bsnnyOc45IpyQfksaU9+v7rotPerb6aCukxBabUxBuV28OtHkvK2JgZDg21OX66aqB1s/4Fd0bW4JVxQWvRbXVCuLgs2eJbWqPGHc7HxSy5I9hQHQSCrvXgRdba8aOmmNFxkqg8D9yf3Vb9ZmKQ1jM+t7n5K/f1B6ON48nsfOuDM4MqdjhXo6Um233mwuviRJPk3OwbqVvtlodNGbdL0gjIEtqPGGttNFSzM8eAedBZ7rer7AvdSv0eNRw4ycPXJtYXMe1Gvh4D7y8DNCEqyIEOBHCm/HIOHxY5iTBrCzSNu1h67aoLWljgm4dERSoh4QZnRsJOI1N7AF4R71qox16K6H2J5OGPJ6U1sQ3ARpC23bDf7MnMV/PxyK2sU9foRcP/sOXVaT3u1ml3utAkuTdQ2qds2eB8WbIcP5QjU0lWSwZ3T7V8ROXngC8JU2rsL5Z0xBMCN2iHPpNPeAdy6wZNrL68jvTW0D4UlhrvCYvfWjFvHs9wZXTi0T3l8QZjhsdIDWLGjjdKM8sLLQ9RySweYR93vBW500O3B4+wf6SIxOLNWdYQxUkN/VESNNxYbk53Mcg90s7r4grCM+d5LA88agi5HVMv9vsEAN5DCUhI3MLDyE8pg24tHDXUiuLvWFeELwhO5bribDivDYVEhQDdDzueWuqODbndL5OIx6dlUHxd2RfhOX+Bf06bVt9NbuyVd6YrwBeEegP4ddZulL4r1+WnYwy2W++ZuvaCk82mLnQJufaFsxrEdRkUEXjvUJ7a8eiKUkG/30zGqxrm782XurnM1Mh+t3SvpzFJHOc1RD7OU+fj0FhpkIWO8j1HQ8yw/x/JblLWe4Tkm0esJPOPYLpPpdyTNviy/h+VDSHMoaRjJaDrJB+kzkXke+VxB+Z/m12WhNJBSB+OlQhpsvh3j6o+RJoe764b7+se7X4CCMzTCoQ7ZBri5ile/AZSbaZAHpqrXWp297M2s59D/fZaqN9TsseQzl3xOJp+P0/0mAj1V0KcZOmLDcdukaf4bQ4FPMM7NFILuCVjsLSk7r7yBNdBaj/4wEprVDa9jf280t4RHnbon8AXhw6nZ98QsR/zgE0krL1iMP258PbOvxufmJYje6QC3w3bqrbP5LPbtU9XrraBuqKSd1ZMbdlaLbt9FPXE2p5TplHk6+fN0i5EhgjzkLd24qczVaf4VuA9tKFRHdngbGui7WnbWa9pE0mhXxJgDV/UFECSFuyNKqC2ULwiPA+pfcp0wUnfb7OHGzfDmT1ErD+Gz2DdMUcsz79TAPbCLeuyGXdWfD5aygFXKlEaLCy7H1G18m4/cxPkVcI+r1WRntsTsmPXqF7p4DFnlhJbbnl47o41wqQ6W2lV7GqihWrpuNnCvAgKxpofxWew7wkW2cxm4Kcs7jAY/h3hVG+Dm9rt3STvrEC9vb116uK0rIpOg0sIdT/q2pO6fPlJe0Xa2gKyB1lBnAvcdKPs9fEH46klqrZzrcw3AXdpVLbxKZABsAd1aXGKx5E2tcpQ0n2NW4FG5VqphYR5P36SqX2gcW57BrAeBBkTMHVLI/qo0Zpu/v6Gg+ezgC8LielxuZG0sc0yfm7Gh0gUo+vgJqn9FPjVpXApwy8y645FHZBLZSCwQZAL35ekfVmgse9Q9tk6mXonqJ5RqNBuCG8Mt6fwNGledQwv7r0CWmqWGW97dfDJfEL54ghoQcroiALc3Qz1yMQ3Py849ZEzU+NSlbBX95f2Jz+p8JWvk8mWN3nmlDprulhBoi90YFHLJ/fQcbgC+IMwFo/NNXRstK3tbyNzCcq8F6mP5gvAt4XK6aRm4kc07jh+yZgb3N7J4hjKNntA712tp4bZgR4GgRZo0lUl9rKvO4xJhO91BtbtEjkGM4Fp2u40Vf18DuDey/3i+IPwfqeVqcwbA/RAQ8GbTzCw3w4yl89osdovsU18v6Px9i81yC3BbuiUtxG3Xbr4gzMxE9WWBVa5/U8ItWj1tbEl1PdRWnz7cpwF3Vj73l3j6Xc+Qs2XkGWdzvWAttuDtW7HEbkmetQ+X5agzkHmqtcop4b6QLwh3rfsRrnZ42XdLLgyfwlMAMo18/ms4/3yX018Mi7zGYtuhvjRw51v7cmm4IdVnm4Rw30EH+ZdyxoNrCRcC2TMbCjy3U7XP5nrBgq2B9n3PpHB3QBMb3ztabp3vX+9sExPuVXSOM8b2y6SSwRlktAQozgDuLG7izOKNUx261V6+cEx+1vHBNhDQoGksdyd4cNXfNZM5Btzn960rdXycOq0K/XFuGeMmq9SAdMgdSS+76NG4Iq4anRrutK0S83i+IDwCK3uKsdaNzzYR4H6MPH4Ss/guTu5djeXOYm7JJ3gRpp4pl2dlrSuSomOGJkE5zhgBJBXcedZeynJ4la888qVHQvS66aZ1XKkWcH+9791tHR2Hz1J1cvsdKL6eASDyON0HspQtWl7lM01CuHulHGuxAzckMdzRpM4ulavmB25Icrgf5wvCuU1oyq7yzXPyJ07J64FJmOrUPr95SdnvNX51WrjDYGtLZ07pSeDOvootcnTVR3S3FGEDK80xdj3Yxn4ffFOvivT/p0Upg3Y3gDBjLy0gJe5s5h2yvEHjN3wYlNhw51j/gcN7JyDfAVreUIe0AEeEew3pb85R7JyLKv0WuJnDkwru2XxZYVyegicfCQmfmQKLXbZqieHOt/ZHMObsBp0vGdy/6Xtja+YPCeSphmZlycMKTGeVt6CSLDHcTCXzDm9WTvb7RFaRObnlFpkECf9UnRJunVFO/1w121jnhp8N8d0T3+2o75YMYWtt2gFAqGNyQHwffXZOraqLsdcF6eC2YNdp+JiWe02elUc244ZoFyoR3FvI44FcZe5IYd4CAOF906ngDr6dmE8VvG3p4bZga0AQ2wfFxKyHTvHBaV8WZHtlZ5BzR37BccynsUMyBPKFZA7qUSvzwt6XtyR+8Da/iqYriQeE1+OGLExn/byZ6aSIe7S3Luw6JZFdShQM+A+saeHWGeX0z1V71LtAjAE3NzCGR8D66Zs1SQDxLeceeWrKWut0cAdgI3pauHOq/cAxfWPohFPDZ5Pw2SMi3M/nJG4XFOPJi3uQI/FF2TQ+sqrv5uVTmcQXumBhLjpFTmOxrbVOA3c+tebMwmecAxeEQmvdDL1Jp2nsljyXl7idL8ejE5dhsY1v4vL2Fmm2y6seMeVCrMpRH3O8BTsMSlK486q5y5MyFmbbIe16UI+WF5SD/gtnUdWNtaau9Ro/1gVlbmCnvND1QffBdiwYFpQkcEfVdNp0TNgyFhthA5DJ1NYh2NYUbi6qhkvweGdg6lvr5h2POags4RkFycKdFzS2fn+avJEULqpAiQt3DpXWRTR75bGtQ2u4hw3YgFIxytDC5agCJPDLJ+bVvGWLHeuMgn9d7ryPqwt6zFfdBYS0cOdU84jfxAlZ8waWOyd5O19MckAsLNZvzaMulRY7uezuyC8u3xwM9aWAO49K6zIctSEDuHOd/5CbbuoUBCi8Vjc5ID7cOd6AC84SwSiHgT3yha7iM32bxVZj3XBDAv86oVtSR6lt2eSqTSJrSriHDdi4HryP2wyDxQUk5LdubUtb1sm08ixhO6SNo8Et2RqwNdQp4a4jZFs2Oeode9GYAu4d2yJbF2YKKNS12gpGA8RCxvHv5Fe1smyVHTIO3BZswTst3HnV3HXeCc4uyS33vnmJ2/lyPPlqAmKkgjtXsI2s9WSOBrfoPGSxWUsDt+SWQxh987oBXKeVKeHmraXDJchcj0ZWsLy9SZplvLckt0+x2E7YWJ4ocFuwwz52Urjz5MRVf624LohvuQ/JU9xOlgUo1DU8xhvbci/NV/4ona053CKvf/EoS0KHvyU+3HJEfsFRS7TkVTLH8LkPHTiid2x+AnempJVqFy6S9UvjESAx3LnOq8GvZhQnLdwWbAt0FSgVsNMFmtzEyXEAnzZy1eKgE1bJHBHuUeQxtzO45VlqaQ6gcNcwCigN0zydp8QMTY6IPnpT33KLvGWLnRbuPGvvOE9pyRvIHBFu3i89tAOAnJLBGPaTeWrJQF0fWOt/V6apl9aCbW9FNwAlkuXOs/auepjTRykl3B8fmNPbsbeKtltd76pp1M37eCUEDa0y4tQDRL/B9ZF2y1qZv8gYd9y9WnYfbPOKYKgW+50U7krp2ro2+vq1a5H16WDiUwOZW1hu+e7OSW0VtKOZeydh4fgeSxJQgg7w5E5qca7zaupb5UAeNFperuwAZbhF7cYVAYzUcOfdiK6603TE5h2yBdxfyVvs/Mrzzm8MQRmOFmnuyk9eW1JZtkpwy9sby2zhtmD7ljoV3FauvGJH3a7B1rInhvt9Ax/s+2heIudVzio1+aNYPp4uTzwS4rsD3u15yVwuJ63McmOnDDY3PVhLY7l1djn+c50FyLsiA7gvAm5z5spR/HYVtVpNYJzIuyhs1cLLMazgMtLm/mUH64oklFk6pP78uWlQx9lUBiSZW9KuhmqU7+jr1mzjovYm6Yxl2RNZ7kPIowu+ltWopvG207BncyF4iAE4yum7YZr/O109xzcX8w4N5UEQ62o0TaPvkhqwtbX2odDLCeDOu/5SnqP+rXrEJuEF5XcH5vXxdtHBHdaqPvnMxj8bqCNBIBaOStcF5eed0EYTeXxZo9TLuiLW6tlhvyRwd0ALo69d8yi1/UsGcE/G6l8H3KKJQRnWqjHI7l3HqXyyATXukFkF3E/toF5c2BlFRAG3eRqRO2Sx/bWkcHdGCzKa82Pgpib803FVPYJtof2yWJv+o2iDkYTBGQBaRkE+Era+KSz3pZ3SQgqZEdl2Tgu2hdlCYNfjWO7OaeLnwL0iI7i/w3tLTuxUVZKWu16NZDze+04GF14Cx3Ly+UVSWdIfJ3CmOttoEUIWG6p9kE3sr0eFO32NEuXQ89M1G9HEv5qhSrKotcSV9Qrvr7XcPAPq3ADcRyUSpgMHbVB82UGVfgUMtJS1WJV+c0xQvr+9epU3tXYm2M4ZU2aEDdfdWmyBVwOcAu7O6MGU6qpLgXtlRnDzQVTnD4MB7g2uAmrvViDg8xTN/c6IoLxNPj/qZFOGAY0oM+JW192CDc8a7ORwy5EdCz3XrFmP/P9L3JGM4J4A3Hd1s1uyYRTTAVxH7r6mvW1OuwXW7ltT1ZsdflmnNykkTyK3REA0QIZPz8ngRrkdDo5zJbV5JkO4xXLfDNxf66bRkg19rrNhjPM16vrv1LVXu166FVP7pk/jBlzd4VakSuaRsHRwW7DF5qeFu8Ma6bl69VZA/LzuqtlZbvG5v0uet3XDOHf/eHcaZySmEiCTg1TaCKF4abt0cOOUe5+fopbn9jR6Y1yCswdJyssx3BJ9T12rA2XJ91iMgnQsy/zs6IjdZtd9hZrTvlUq6TscgPtBZBbLjeyZuSWiBxkKfB64z+nE7ff+KSPc/kkjPosMz1Gvj2i9hw2Rbh/bDoks9+VT1MqHOtx8ungA5tuSZaDDyxHh5rs7fj+PBUF9uPGLuiS46n8C4kttgFtu4lyBrh7Nc+JU//YjpFM9yu9y6iUylDttNnC/ADBdNH5fGm8ATg63kChqEkvdnxpunVHn//VcuVouJD8FBPI5jjIE1qrpWOos+3wrF2xjwS7LYhiccnqZW3I7cD8xMLfvtHY8rNC/88gx/TuNPK1/+shFtM3tlHeIlrcsQ7leYRm17PyTdNrqtRwP3gJEn5qk0FmXhIhWGWmrR0KCIU598atVgCI2az9NNybHWAXpmPUqhVas632KpzW6JwC3WLgvh8E1bpPURSopsf9LBrfkcRB5XE8Zy4D7qoEP9M7nAeHEb5jauOeocRt3HzW/f7dRV5PvMvK/njj4iFQjmVO6JV+aqNb9uXtaTiTxxqaEW0+C4kFPglyKasRp8RKnAJY9ccEFAtbNPtZLrLus632hddVdYCOZAu4fbz5n0iHIfIaVOXK9hCJbb+oqltuz65J5pR4msH4WZcgMwS3AvRBj+RjHP+956nl09Ra/9crjraeiN0+NJx7H+o7E+/KbyTbk9A5DzyN54I1bLZTPRp1e2kXrOyQTm8Iy6HpVyazbTuchp3TJTSycK1uIS8TuTyeojZdJVt0UkG0UsjWSWYvqy98ojZ6RaMB21dpAiZI8Ptw5fsohRjO4ejrqDCD4YJvhtqCNQroPoMsPCFgOepT7gTpUdgab3t9HFDIiOcB9L3B8zhTebf89ZnPpjtcIXC1wkzS8Ntna4pA/qq2zKFn+pFGku/vrZp9sY2OwT6/38b/rQs/lq3GxFDcy1KKwzJHrFa631of8o5pSd13/Gj2E9kmaBq8wtnlYPQa6LOcvu7Teg32s2232+CoZdL2qZA7ywEb7p/jHiE8Zrzbn9nYnJI8RPNza8oVjArekYj42Uw7QVliJvoIiQtD5GzQNVAfca6iXfHf9L+E6RqyXgcuCRNzggrIMvNVjoMuugvsvgMI3pLfm+FrgBg3TYDOWWN95TAF36OLRUevqWqDocHfVxWO1zoBbHiH7EL/hbLkfEx2MVd6Kav1017rXK26GvsZIZrlD49iukhlyvsVOZLm70hUJN5gP9zwa9/5haLnvpX0/PLbE9N4uD5xRKlyRBJY79MyjjGMHp05qbk+nFvbWlrtrXZFwO4bckuvCdRzibsm/AfX8sVu8rnU/wm3EVfVE41eX/eyYcIfAdhgVEXiTw931FtsqD7g3MxR4JnX9AnC36yZON/jcWwD678f2lz49dsDr0gtF2yrlGKhhqeHNFxIGF8FUTwYvazqA7sCCsgDNxaPEieHunlvqukKt/8k4N/WeA9ztuP1e30gEhqPtF5QvUa+j+taVOvaIV+sWaJTCm2SATQx3xcWjjBz4ViYR3IMObFGrf4eSu3ttmTjVCbjFfF1OW87uW71tYSN0unm7HRVJAfdqqZ+22AxhrTYWmy3JLDdPRg/OANzrmRX4WeA+Gm0wJIgKwp1c64O66W1Vnd6/9jD75Dg52E9bL729dgnlL5v08RHT2/zNcRXyiOxz+1Zs+3zfym1dM/cjPhVisc2oSEK4y2CjkNUVjaKVXaE0Gqxq3W9EH4Kebb/fZWr8SnTPEf6UV5n/cR76WDGI4F6GzJ9H5oP63t7aFVNPk7bqW2q/afjM3L0t+80J4A6B7aq3UUylxYkP905JK9Qtx8nDCjxmdhmg7Ik+LgDurJ5+b4dbImPzF2Bv9u57bevlfW9s7YKHBNK2pLejtdYp4H5bpJAToPx/Sy+lg3tXndcQ+CfPUPL0+8XAvRtwn0OcxUt5soKb1yers7nQn9H78paLe5duGcRuRyUsWOcZYaDDyzEstwbbn93n0Ps9mRU1QtwbcUuC2Wzi7ojbIUMrepnF6gk9aJqJU3ydSv2B35AJ+tUOSl1Fha7adObEQ9HDp6nnKRgB8zq0+nowAFfrUbRSnd6u6338Q88NJk6Jdb6R43/W+9ymQXlRKFVsHUp7V81A1IeIFY84428bJC6XgzTYzoF/LXmL93gNuHfXOVU3iga6Jdz76GOH6D9epyZALdx0xsRzgXsOoM1n/ThgOxC9uUGnN508LdwlcnyK/O8kf55E9xb0PrlJT8ccourV1cKczqwzvdbfFwnuV2aoP8ngtgFbH+mql1Di7ihRryaw3AeaA4f2f/2WV8VtefM7f9PpE5hf7RyO3g5CZwcAPN+QdHYH/u1ZxkpXnQHZRHrAD86AK1hfyrp8netp0stTM4/0PrJRT7+U5MMneAca81kzd1yrIILlftnqyrgisuaoF2mIYwKly7bqRmG9iVsyq3T3rq577GuSatgEPhsiAN7t/4J6bzp5/BjgnoJOt0OPPbh34333TtJvRs98Ott7Z8w9/ZuCg4bxwnK1B2agdGBEl0POi7gnNR3gBavCMthKPatTayvjWxRJFR3ucaQVq/2kzXw4x/oLwkq9iQ7kV4SWGvBmkWRcBKsMpg3dkv9nizGjImZtsY6kK8hWO26tl83pNABfpxH4JV1F+g+zVoRCA7E1AKzH6AGKdGPYhmFKD4MtFysmVMIaABzhJs48m0URFxqIpwFvnljilHAHYAvCQfCe2UMuYGaWN7Cky/IvdPxyta8o15hWDnnQ1Sz3E091572qpw4G+RQLhQaaaGCl2omXarorud/YJy6A+NnGFSgvy71IsbAmLm8PpX9+Z7VoX1tM2GLLtoftDh3Ht9x9lH1CRR7FSqGBFhoAU5gp8TkJsZbl2+nhZbOv6Yy/P4WLqQb7wfBOvRwf7tNr8ig2FBpoqgHv9AjgalsurkGDDrAgXEQ12DJsVRviwX1C6cEZ02szKbYUGqjVwLtq++n41lhssdTGv20ALgc3TXNXOPcKsJ33/vU1dj4bThAsR4d7FO7IucFxxUKhgaYa8M4D2FH2wjEh3M/spJ5+I1xMBdj+jt+GE1QsR4f7s6WHZnBBUIRCA401wBeE5Yn0c8QSG2tsRiASwH1zdSn1wL6pOlHFejS4p3KHEoGLUGigsQYAmLdReVOttU4Bd40xFkxrAsN+S9jYfFKTcYeQhQXpaP7QX2go8B064kz3yFferSmg2DDsNbBGjZ+Cx8wtcFdi9CF2Wuxs5bLZ13SYb8kO6gXm51SGehZbUlxXmazOWmvLvR0yXlznyGJToQE04F0CylOajHJIGo17izTX1lNnI7B/RuLW0yRbw31W6eHdPlqv4GLb8NXAWtV7PO7HZyKC2wxu5l+XooPN6MjrqP33kVTfGu7rgHuXSHkViYa8BtapnhkADYxijRNfLNpjb5mmXq4YDbEKbGSxZf8PbKKWcXO4ZV7yLcA9tmU+RYIhrQG+IDwOoH8H0Dz4nXokROBuyGhDsLHaD6DlRyNrujnc8vT3jcDdEzm/IuGQ0gBvZKLtSzfhV88OW+vwslw+tvCnw27JI3xB+MFGSmoItn/ARY0OrLu9OdzykaAC7rqKG9ob+YIwUHs3Au6xMcBFKWV3Jbzsd4BvNdOaoNg0MPQn9+DjfVu8+VAgz/GpU90jXhkyT1c3VeAw38kXhPksibqJp4mO1S61trnGApqhPMFU7KtsKy+bfQ2H+RZsp96e20y1rSy2HPvVZhnU3dfccstL2B/ELRkyr2uoq4Nio+ILwrvS1gvg9Vj9SKGmTZCN5XKgyQrL7eFbf6WVeluCja8tU1mvaZVRzf7mcIvP/QRwz685rtgwJDTQP86dD8xPQPHswCDLazzSw/0TviDc8tpP8GsZcEfk9WXP8OMVVDFDc7dEXK5r6JDnF3coY+q1S5PzBeEp3I2+hHb9jBhm/fU5eRAl4ADB7YMp2nYbCxjRLVmGu7L/ZPXuylbVjwS2ZALcJxHVTDZpVYDeH1SKBRm6NMOX5qU8Zp/cfv8OFb7CPap4+iaSTrssEV8Q7qUNP0vb/iM/gTvUztLmrJu29mN/fzy4T+Jjq7+LUvXIYEtmwC1vRTorSsY1aYJK+RWqhVsqvFLgRjGXuXNf1a+qqsmn2NBVGuALwtNpr3MN1N7UAF7dvn5bE2Vgua/iY6uRJ9bFBXsMWpVHcA5KpN1ocEvv3oKybkVJ10tcPEOZSNttO4gvCPdikE+gnU6nfU6gnUYRly2xbefs4F7EyMmRE9X6gaiVigW2ZIrV3p1InPf4/jYHBT3anqrqW25z6jL75AHh+zm13Ud8D8c/NdxeyiNq62TYuG+PvMJtFrrnhUrePOIPst4nTcg6P2ILs91m19PDzbv4nMP4ivDSODqIDbZkDtyHEd3Hr1fWYwdb6ehw+8rjQP35Zt5rV1KLUeoLKPQFTnOvEr854m9fb3lREVvWYXTAxoPHbI9ed8SI7Ea8NzrdhxigvQOJ5YVIPsC0g9+GbYabtx048/jYastRkOpmSgS2ZALcJxLdyG+UrMcO6eAOFKsthujZKJ1Xh3mrUfoqGmE1v400yhoTqwHiNaxvJN6kf57aaI7z5JPb8noh6TjbyGOdbTgTSwF6n+5gnu2QwbZg/1bSrbcykVe4Q1J05brer7fp4wWckWYb6z5Efr1Y12nMdr2vnIa0fM+d11iyiWWJJ/jz4ntZH61/nifLE9nHq9cwSJ43UcclNZltkzh+EvL1sM0vuyJ/6u+v+3KF5TH1qk4v+bCNv3p56nqF9+t0fh7mgnILY4On8rHVW8ghdkgMtpQE3KcR/ZJfy/FwSV8TbKWrlBZ6WMFXjF/h6vR23VdQRAhqGsmH229QpNSNS+Y2fx2H1tnfBO6yzPZ4DQMr+jg//6o6t4SgjgwBbEE5LNhlWQyDE5KhnIZEsl3vk5hvv9vjI6a3eWUMN6U7n+Rjq79GqkQhGZB+Udy8uYHFT/GjdyUI0q1EgmSvU+M4/3gZ+Jc/nZdsM+s673D+Nn1NeSEZbJpwHnpbZZ6OzSNieltHOaxenZvJHLleVTJXvLkrgh5EhkC+iOltG5jjqFzQBqLT5m2h61UlMzLIJwpTQU2pumiJUwXfLRHIO+Fzl61UYbl9CyzmmtbwLfEgstziJp7Gx1YTuR9hiKVPZRL8C0oRKK/REr/h/NOpbcgC7sEK93JcoRP52GrsC8V6AMuJI5OAWyICyWjJokQZNjhFV5xO7amt4nTHxvC6f2qLfPq2LoWfhzmufp7lctivZaGmHFe4JaKHsk4SuCWL0PthWUEt/ElzZhaAeymZHclP7lDGDxaWGtjKSgv8tjDMNr09voDbtGwINtFbhZHQ+mNjPT0G23Lxua9ChiP71peWxgem8RGCQlsCrsnHyPhKfjvELsC6FVUjBxW+ok5T5YbY9Pb4wi3pZrdkGdcB5/Cx1UhzP+IyJH2zLQHrLQLvz0+mvApq0YO1vNYS+xakwuLoNA0sjj2+sNzdaLllIt81uC77twtqAU0QaHvwLyz/NwXNiVWYtbzWEte7ytdp+OfvM3HVemG5u8VyL6B9vsLHVjO5QGzGUi5gWwEAfD7LX+d3hN3WMi7gDnValGH1oTtyuQNHvjnld3JrCCrcu6o8K4xEYDgS3cR5mLy+xcdW72jZ3hklyBVsKzOAz2X5H/iJHz7Cbm8Y28YsLDeQDxq4mZqgfkdH/GHvC5sfbNi2bdrREbBtXQB8Z5bP9H8z7fa6cQH3YLHcSwD6Wu7NX9v77OY36rZlDhs7Cna4fkB+MOsn+7/9wvuC5QLuboX7GWD+LTDfzBeEHw/aq4MLXQN2WAe+JT+ObXKx+QF+ZWtewN0NcItV/g/cDC4GvbvGLBzomGUOcxNe7kqwwwLKMqBPJprF7wB+70Whe6HYvbAQM4hH8NMXVRUXQroD8C+46JE0VevFaInRT9hvR0W+HsVHfpXfS+jtReJn0Ttz4NXiMQ/2r0KbXR0GBdiNNOgt3oNXVHjTULY8dzcdxU+iUSZJzHofMXOOvT6Wx7DMnGXZ5smc4/GsS4dgmf26Mdkvb24JN7LuFFWdwRwvc5v9ziRxVZpwHuyqzjPBlFeZHLRZijHl+uUFnZZ1s09mla/15eln22ZGS7YRr0OGzcTyNJLMPR8gjSwzP11vY+66nscuc9jfZtvb6HH5mNs3SK5FKDTQWANbfzCtZ+v3p/U0TlHsyVID/x/UuWEAbvfwvgAAAABJRU5ErkJggg=="/></g>
</symbol>
<!-- /icons/social/instagram-svg.svg -->
<symbol id="instagram-svg" viewBox="0 0 512 512">
<path d="M256 49.47c67.27 0 75.23.26 101.8 1.47 24.56 1.12 37.9 5.22 46.78 8.67a78 78 0 0129 18.85 78 78 0 0118.85 29c3.45 8.88 7.55 22.22 8.67 46.78 1.21 26.57 1.47 34.53 1.47 101.8s-.26 75.23-1.47 101.8c-1.12 24.56-5.22 37.9-8.67 46.78a83.51 83.51 0 01-47.81 47.81c-8.88 3.45-22.22 7.55-46.78 8.67-26.56 1.21-34.53 1.47-101.8 1.47s-75.24-.26-101.8-1.47c-24.56-1.12-37.9-5.22-46.78-8.67a78 78 0 01-29-18.85 78 78 0 01-18.85-29c-3.45-8.88-7.55-22.22-8.67-46.78-1.21-26.57-1.47-34.53-1.47-101.8s.26-75.23 1.47-101.8c1.12-24.56 5.22-37.9 8.67-46.78a78 78 0 0118.85-29 78 78 0 0129-18.85c8.88-3.45 22.22-7.55 46.78-8.67 26.57-1.21 34.53-1.47 101.8-1.47m0-45.39c-68.42 0-77 .29-103.87 1.52S107 11.08 91 17.3a123.68 123.68 0 00-44.64 29.06A123.68 123.68 0 0017.3 91c-6.22 16-10.48 34.34-11.7 61.15S4.08 187.58 4.08 256s.29 77 1.52 103.87S11.08 405 17.3 421a123.68 123.68 0 0029.06 44.62A123.52 123.52 0 0091 494.69c16 6.23 34.34 10.49 61.15 11.71s35.45 1.52 103.87 1.52 77-.29 103.87-1.52S405 500.92 421 494.69A128.74 128.74 0 00494.69 421c6.23-16 10.49-34.34 11.71-61.15s1.52-35.45 1.52-103.87-.29-77-1.52-103.87S500.92 107 494.69 91a123.52 123.52 0 00-29.05-44.62A123.68 123.68 0 00421 17.3c-16-6.22-34.34-10.48-61.15-11.7S324.42 4.08 256 4.08z"/><path d="M256 126.64A129.36 129.36 0 10385.36 256 129.35 129.35 0 00256 126.64zM256 340a84 84 0 1184-84 84 84 0 01-84 84z"/><circle cx="390.48" cy="121.52" r="30.23"/>
</symbol>
<!-- /icons/social/mail.svg -->
<symbol id="mail" viewBox="0 0 14 10">
<path fill="#767676" d="M1.326 8.62V2.04c4.459 3.356 5.33 3.99 5.728 3.99.093 0 .16-.034.243-.077.054-.028.137-.072 5.378-3.93V8.62H1.325zm9.927-7.24A2486.6 2486.6 0 016.98 4.519c-.73-.51-2.574-1.876-4.264-3.14h8.537zM13.337 0H.663A.677.677 0 000 .69v8.62c0 .382.297.69.663.69h12.674A.676.676 0 0014 9.31V.69a.676.676 0 00-.663-.69z"/>
</symbol>
<!-- /icons/social/pinterest-share-alt.svg -->
<symbol id="pinterest-share-alt" viewBox="0 0 45 14">
<g fill="#fff" fill-rule="evenodd">
<path d="M25.164 8.132h-1.776V11H21.96V2.588h3.204c1.98 0 3.204 1.02 3.204 2.748 0 1.74-1.236 2.796-3.204 2.796zm-.18-4.248h-1.596v2.94h1.596c1.308 0 1.956-.492 1.956-1.476 0-.972-.648-1.464-1.956-1.464zM33.104 11h-1.428V2.588h1.428V11zM44.2 11h-1.44l-4.176-5.928V11h-1.428V2.588h1.428L42.76 8.54V2.588h1.44V11z"/>
<path d="M0 7a6.998 6.998 0 004.191 6.41c-.02-.488-.003-1.075.121-1.607l.9-3.814s-.222-.447-.222-1.107c0-1.038.6-1.813 1.349-1.813.638 0 .945.479.945 1.052 0 .64-.408 1.596-.619 2.484-.175.742.373 1.347 1.105 1.347 1.326 0 2.22-1.703 2.22-3.721 0-1.534-1.034-2.682-2.913-2.682-2.123 0-3.446 1.583-3.446 3.352 0 .61.18 1.04.461 1.373.13.153.148.215.102.39-.034.128-.111.44-.144.561-.046.178-.19.241-.35.176-.977-.4-1.433-1.47-1.433-2.674 0-1.988 1.676-4.373 5.002-4.373 2.672 0 4.431 1.934 4.431 4.01 0 2.746-1.527 4.797-3.777 4.797-.755 0-1.466-.409-1.709-.872 0 0-.407 1.612-.493 1.923-.147.54-.44 1.08-.704 1.5A7 7 0 100 7z"/>
</g>
</symbol>
<!-- /icons/social/pinterest-signup.svg -->
<symbol id="pinterest-signup" viewBox="0 0 41 41">
<g fill="none" fill-rule="evenodd"><circle cx="20" cy="20" r="20" fill="#FFF" transform="translate(.164 .484)"/><path d="M13.164 20.483a6.998 6.998 0 004.191 6.41c-.02-.488-.003-1.074.121-1.606l.9-3.814s-.222-.447-.222-1.107c0-1.038.6-1.813 1.349-1.813.638 0 .946.478.946 1.051 0 .64-.409 1.597-.62 2.484-.175.743.373 1.348 1.105 1.348 1.326 0 2.22-1.703 2.22-3.722 0-1.533-1.034-2.681-2.913-2.681-2.123 0-3.445 1.583-3.445 3.351 0 .61.18 1.04.46 1.373.13.153.148.215.102.39-.034.129-.111.44-.143.562-.047.178-.19.241-.35.175-.978-.399-1.434-1.47-1.434-2.673 0-1.989 1.677-4.373 5.002-4.373 2.673 0 4.431 1.934 4.431 4.009 0 2.747-1.526 4.798-3.777 4.798-.754 0-1.466-.41-1.708-.873 0 0-.408 1.613-.494 1.924-.147.54-.439 1.079-.704 1.5a7 7 0 10-5.017-6.712z" fill="#D90022"/></g>
</symbol>
<!-- /icons/social/pinterest.svg -->
<symbol id="pinterest" viewBox="0 0 13 13">
<path fill="#bd081c" d="M6.12.667a6.122 6.122 0 00-2.456 11.729c-.018-.427-.003-.94.106-1.406l.788-3.335s-.195-.392-.195-.97c0-.906.526-1.584 1.18-1.584.556 0 .826.418.826.92 0 .56-.357 1.396-.541 2.171-.153.65.325 1.18.966 1.18 1.16 0 1.94-1.49 1.94-3.255 0-1.341-.903-2.346-2.546-2.346-1.856 0-3.013 1.385-3.013 2.931 0 .534.157.91.403 1.202.114.134.129.187.088.34l-.125.492c-.04.155-.166.21-.306.153-.855-.349-1.253-1.285-1.253-2.338 0-1.74 1.466-3.825 4.374-3.825 2.337 0 3.875 1.692 3.875 3.506 0 2.402-1.335 4.197-3.303 4.197-.66 0-1.282-.358-1.495-.763 0 0-.356 1.41-.43 1.683-.13.471-.384.942-.617 1.31a6.122 6.122 0 007.855-5.87c0-3.381-2.74-6.122-6.12-6.122"/>
</symbol>
<!-- /icons/social/save-article-alt.svg -->
<symbol id="save-article-alt" viewBox="0 0 59 12">
<defs><path d="M6.364 2.15C6.848 1.002 7.954.2 9.242.2c1.733 0 2.982 1.483 3.139 3.25 0 0 .084.44-.102 1.23a5.43 5.43 0 01-1.656 2.76l-4.259 3.8-4.187-3.8A5.431 5.431 0 01.52 4.679C.335 3.889.419 3.45.419 3.45.576 1.683 1.825.2 3.56.2c1.286 0 2.32.802 2.805 1.95" id="a"/></defs><g fill="#BBB" fill-rule="evenodd"><path d="M26.428 5.52l-1.02-.168c-1.596-.288-2.52-1.14-2.52-2.496 0-.72.288-1.296.864-1.74.576-.444 1.272-.66 2.1-.66 1.224 0 2.256.444 3.108 1.344l-.996 1.056c-.612-.732-1.332-1.104-2.172-1.104-.96 0-1.464.492-1.464 1.068 0 .612.468.996 1.392 1.14l.84.144c1.812.288 2.688 1.212 2.688 2.592 0 .72-.288 1.308-.864 1.764-.576.444-1.356.672-2.352.672-1.38 0-2.496-.54-3.348-1.608l.972-.984c.612.804 1.344 1.296 2.556 1.296 1.02 0 1.596-.456 1.596-1.116 0-.636-.456-1.044-1.38-1.2zm8.72-4.932h1.44L39.864 9h-1.5l-.708-1.788h-3.588L33.372 9H31.86L35.148.588zm1.992 5.304l-1.284-3.36-1.272 3.36h2.556zM43.088.588l2.208 6.684L47.468.588h1.476L46.076 9h-1.572L41.612.588h1.476zM58.168 9h-5.916V.588h5.916v1.296H53.68v2.172h4.284v1.308H53.68v2.34h4.488V9z"/><use href="#a"/></g>
</symbol>
<!-- /icons/social/share.svg -->
<symbol id="share" viewBox="0 0 30 30">
<path fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M4 12v8a2 2 0 002 2h12a2 2 0 002-2v-8"/><path fill="none" stroke="#222" stroke-width="2" d="M16 6l-4-4-4 4M12 2v13"/>
</symbol>
<!-- /icons/social/sms-share-alt.svg -->
<symbol id="sms-share-alt" viewBox="0 0 56 14">
<defs><path id="a" d="M13.887.09H0v13.63h13.887z"/></defs><g fill="none" fill-rule="evenodd"><path d="M20.408 3.884V2.588H26.9v1.296h-2.568V11h-1.428V3.884h-2.496zM36.184 11h-5.916V2.588h5.916v1.296h-4.488v2.172h4.284v1.308h-4.284v2.34h4.488V11zm3.332-8.412h1.656l1.872 2.928 1.896-2.928h1.656l-2.712 4.104L46.752 11h-1.656l-2.052-3.096L41.004 11h-1.656l2.88-4.308-2.712-4.104zm9.992 1.296V2.588H56v1.296h-2.568V11h-1.428V3.884h-2.496zM4.053 11.176c.13 0 .258.035.372.102a5.35 5.35 0 002.747.762c2.915 0 5.286-2.324 5.286-5.18s-2.37-5.18-5.286-5.18c-2.914 0-5.285 2.324-5.285 5.18 0 .957.274 1.896.793 2.718.12.19.14.425.054.633l-.717 1.722 1.766-.705a.726.726 0 01.27-.052M.714 13.91a.72.72 0 01-.505-.205.69.69 0 01-.156-.76l1.226-2.944A6.451 6.451 0 01.458 6.86C.458 3.232 3.47.28 7.172.28c3.703 0 6.715 2.952 6.715 6.58s-3.012 6.58-6.715 6.58A6.799 6.799 0 014 12.653L.984 13.858a.724.724 0 01-.27.052" fill="#BBB"/><path d="M5.28 6.815a.955.955 0 01-.965.945.955.955 0 01-.964-.945c0-.522.432-.945.964-.945.533 0 .965.423.965.945M8.137 6.815a.955.955 0 01-.965.945.955.955 0 01-.964-.945c0-.522.432-.945.964-.945.533 0 .965.423.965.945M10.994 6.815a.955.955 0 01-.964.945.955.955 0 01-.965-.945c0-.522.432-.945.965-.945.532 0 .964.423.964.945" fill="#BBB"/></g>
</symbol>
<!-- /icons/social/sms.svg -->
<symbol id="sms" viewBox="0 0 14 14"><path d="M4.053 10.986c.13 0 .258.034.372.102a5.35 5.35 0 002.747.762c2.915 0 5.286-2.324 5.286-5.18 0-2.857-2.37-5.18-5.286-5.18-2.914 0-5.285 2.323-5.285 5.18 0 .956.274 1.896.793 2.718.12.19.14.425.054.633l-.717 1.722 1.766-.705a.726.726 0 01.27-.052M.714 13.72a.72.72 0 01-.505-.205.69.69 0 01-.156-.76L1.279 9.81a6.451 6.451 0 01-.821-3.14C.458 3.04 3.47.09 7.172.09c3.703 0 6.715 2.951 6.715 6.58 0 3.628-3.012 6.58-6.715 6.58A6.799 6.799 0 014 12.463L.984 13.668a.724.724 0 01-.27.052" fill="#BBB"/><path d="M5.28 6.815a.955.955 0 01-.965.945.955.955 0 01-.964-.945c0-.522.432-.945.964-.945.533 0 .965.423.965.945M8.137 6.815a.955.955 0 01-.965.945.955.955 0 01-.964-.945c0-.522.432-.945.964-.945.533 0 .965.423.965.945M10.994 6.815a.955.955 0 01-.964.945.955.955 0 01-.965-.945c0-.522.432-.945.965-.945.532 0 .964.423.964.945" fill="#BBB"/>
</symbol>
<!-- /icons/social/tweet-share-alt.svg -->
<symbol id="tweet-share-alt" viewBox="0 0 68 10">
<g fill="#fff" fill-rule="evenodd">
<path d="M18.408 1.884V.588H24.9v1.296h-2.568V9h-1.428V1.884h-2.496zM33.872.588l1.548 6.144L36.848.588h1.536L36.2 9h-1.584l-1.572-6.084L31.472 9H29.9L27.704.588h1.524l1.464 6.144L32.228.588h1.644zM47.536 9H41.62V.588h5.916v1.296h-4.488v2.172h4.284v1.308h-4.284v2.34h4.488V9zm9.836 0h-5.916V.588h5.916v1.296h-4.488v2.172h4.284v1.308h-4.284v2.34h4.488V9zm3.236-7.116V.588H67.1v1.296h-2.568V9h-1.428V1.884h-2.496z"/>
<path d="M12.302 1.184c-.452.2-.94.337-1.45.398a2.528 2.528 0 001.11-1.396 5.025 5.025 0 01-1.603.611 2.525 2.525 0 00-4.3 2.302A7.163 7.163 0 01.856.461a2.524 2.524 0 00.781 3.371 2.524 2.524 0 01-1.143-.315v.031c0 1.224.87 2.244 2.025 2.476a2.47 2.47 0 01-.665.088c-.163 0-.322-.014-.475-.044A2.525 2.525 0 003.737 7.82 5.064 5.064 0 010 8.866 7.148 7.148 0 003.869 10c4.643 0 7.18-3.846 7.18-7.182 0-.11-.001-.22-.006-.327.493-.357.922-.8 1.259-1.307" fill-rule="nonzero"/>
</g>
</symbol>
<!-- /icons/social/twitter-alt.svg -->
<symbol id="twitter-alt" viewBox="0 0 19 16"><path d="M18.926 1.822a7.78 7.78 0 01-2.23.612A3.89 3.89 0 0018.404.285c-.75.446-1.58.768-2.466.941a3.884 3.884 0 00-6.615 3.541A11.02 11.02 0 011.317.71a3.881 3.881 0 00-.526 1.955c0 1.345.685 2.535 1.727 3.232A3.883 3.883 0 01.76 5.41v.048a3.884 3.884 0 003.117 3.808 3.799 3.799 0 01-1.024.137c-.25 0-.495-.023-.73-.068a3.884 3.884 0 003.627 2.695 7.791 7.791 0 01-4.823 1.663c-.313 0-.623-.018-.926-.053a10.997 10.997 0 005.952 1.744C13.095 15.385 17 9.468 17 4.335c0-.17-.003-.337-.011-.502a7.882 7.882 0 001.937-2.011" fill-rule="nonzero" fill="#FFF"/>
</symbol>
<!-- /icons/social/twitter-signup.svg -->
<symbol id="twitter-signup" viewBox="0 0 41 41"><g fill="none" fill-rule="evenodd"><circle cx="20" cy="20" r="20" fill="#FFF" transform="translate(.575 .484)"/><path d="M25.428 17.066a2.528 2.528 0 001.11-1.397 5.025 5.025 0 01-1.604.612 2.525 2.525 0 00-4.3 2.302 7.163 7.163 0 01-5.202-2.638 2.524 2.524 0 00.781 3.371 2.524 2.524 0 01-1.144-.315v.03c0 1.225.87 2.245 2.026 2.476a2.47 2.47 0 01-.666.089c-.162 0-.321-.014-.474-.044a2.525 2.525 0 002.357 1.752 5.064 5.064 0 01-3.737 1.046 7.148 7.148 0 003.87 1.134c4.642 0 7.18-3.846 7.18-7.183 0-.11-.002-.219-.007-.326.493-.357.922-.801 1.26-1.307-.453.2-.94.336-1.45.398z" fill="#00AEEF" fill-rule="nonzero"/></g>
</symbol>
<!-- /icons/social/twitter.svg -->
<symbol id="twitter" viewBox="0 0 13 11"><path fill="#4099ff" d="M12.263 1.566c-.45.2-.937.336-1.445.397A2.52 2.52 0 0011.924.571a5.01 5.01 0 01-1.598.61A2.517 2.517 0 006.04 3.476 7.14 7.14 0 01.854.845c-.217.373-.34.805-.34 1.267 0 .871.443 1.642 1.119 2.094a2.516 2.516 0 01-1.14-.315v.03c0 1.221.867 2.238 2.018 2.468a2.461 2.461 0 01-.663.089 2.49 2.49 0 01-.473-.044 2.517 2.517 0 002.35 1.746A5.048 5.048 0 010 9.224a7.125 7.125 0 003.857 1.13c4.628 0 7.158-3.833 7.158-7.16 0-.109-.002-.218-.007-.325.491-.355.919-.798 1.255-1.303"/>
</symbol>
<!-- /icons/social/website.svg -->
<symbol id="website" viewBox="0 0 20 20"><defs><style>.cls-1{fill:#222}</style></defs><path class="cls-1" d="M18.12 11.2v2.93a4 4 0 01-4 4H6a4 4 0 01-4-4V6a4 4 0 014-4h2.44a.76.76 0 00.75-.75V.57A.57.57 0 008.62 0H6a6 6 0 00-6 6v8.15a6 6 0 006 6h8.16a6 6 0 006-6v-2.9a.71.71 0 00-.71-.71h-.61a.66.66 0 00-.72.66z"/><path class="cls-1" d="M12 .68v.55a.79.79 0 00.79.8h3.62L8.54 9.9a.88.88 0 000 1.24l.16.16a.9.9 0 001.27 0l8-8v3.81a.92.92 0 00.92.92h.13a.94.94 0 00.98-.95v-6A1.07 1.07 0 0018.93 0h-6.28a.65.65 0 00-.65.68z"/>
</symbol>
<!-- /icons/social/youtube.svg -->
<symbol id="youtube" viewBox="0 0 20 14"><path fill="#C4302B" d="M20 10.29V3.346S20 0 16.552 0H3.445S0 0 0 3.347v6.942s0 3.347 3.445 3.347h13.107S20 13.636 20 10.29zm-6.117-3.462l-6.549 3.733V3.093l6.549 3.735z"/>
</symbol>
<!-- >>>>>>>>> ICONS/SUBCATEGORIES <<<<<<<<< -->
<!-- /icons/subcategories/icon-beauty.svg -->
<symbol id="icon-beauty" viewBox="0 0 11.93 16"><path d="M11.81 13.58v-.1l-1-2.13a.27.27 0 00-.36-.13l-.73.35a.27.27 0 00-.13.36l1 2.08a.44.44 0 01-.79.38l-1.42-3a.63.63 0 010-.12 4.63 4.63 0 002.67-2.42 6 6 0 00.18-4.64C10.62 2.87 9.58 1 8.27.35S5.28.22 4 .71h-.11C2.05 1.5 1 2.53.68 3.81a4.6 4.6 0 000 1.8.1.1 0 010 .08.09.09 0 01-.07 0H.26c-.15 0-.23.08-.26.23v.8a.33.33 0 000 .21.26.26 0 00.22.07 4.36 4.36 0 001.47 0 .68.68 0 00.49-.87A3.77 3.77 0 012 4.1c.18-.82 1-1.52 2.42-2.1h.12c1.09-.44 2.23-.88 3.11-.43A6.36 6.36 0 019.84 4.7a4.69 4.69 0 01-.12 3.6A3.29 3.29 0 017.84 10c-1.72.59-3.32-.12-4.77-2.1a.27.27 0 00-.38-.06L2 8.33a.27.27 0 00-.11.18.26.26 0 000 .2c1.39 1.91 3 2.87 4.71 2.87h.2a.24.24 0 01.16.14L8.54 15l.05.09a1.8 1.8 0 001.55.89 1.79 1.79 0 001.68-2.42z"/><path d="M5.47 5.05l1.93.77h.1a.27.27 0 00.25-.17l.3-.75a.27.27 0 00-.15-.35L6 3.8a.27.27 0 00-.35.15l-.3.75a.27.27 0 00.15.35zM4.19 5.82l-.3.75a.27.27 0 00.11.35l3.46 1.37h.1a.27.27 0 00.25-.17l.3-.75A.27.27 0 008 7L4.54 5.67a.27.27 0 00-.35.15z"/>
</symbol>
<!-- /icons/subcategories/icon-body-positivity.svg -->
<symbol id="icon-body-positivity" viewBox="0 0 11.93 16"><path d="M11.81 13.58v-.1l-1-2.13a.27.27 0 00-.36-.13l-.73.35a.27.27 0 00-.13.36l1 2.08a.44.44 0 01-.79.38l-1.42-3a.63.63 0 010-.12 4.63 4.63 0 002.67-2.42 6 6 0 00.18-4.64C10.62 2.87 9.58 1 8.27.35S5.28.22 4 .71h-.11C2.05 1.5 1 2.53.68 3.81a4.6 4.6 0 000 1.8.1.1 0 010 .08.09.09 0 01-.07 0H.26c-.15 0-.23.08-.26.23v.8a.33.33 0 000 .21.26.26 0 00.22.07 4.36 4.36 0 001.47 0 .68.68 0 00.49-.87A3.77 3.77 0 012 4.1c.18-.82 1-1.52 2.42-2.1h.12c1.09-.44 2.23-.88 3.11-.43A6.36 6.36 0 019.84 4.7a4.69 4.69 0 01-.12 3.6A3.29 3.29 0 017.84 10c-1.72.59-3.32-.12-4.77-2.1a.27.27 0 00-.38-.06L2 8.33a.27.27 0 00-.11.18.26.26 0 000 .2c1.39 1.91 3 2.87 4.71 2.87h.2a.24.24 0 01.16.14L8.54 15l.05.09a1.8 1.8 0 001.55.89 1.79 1.79 0 001.68-2.42z"/><path d="M5.47 5.05l1.93.77h.1a.27.27 0 00.25-.17l.3-.75a.27.27 0 00-.15-.35L6 3.8a.27.27 0 00-.35.15l-.3.75a.27.27 0 00.15.35zM4.19 5.82l-.3.75a.27.27 0 00.11.35l3.46 1.37h.1a.27.27 0 00.25-.17l.3-.75A.27.27 0 008 7L4.54 5.67a.27.27 0 00-.35.15z"/>
</symbol>
<!-- /icons/subcategories/icon-change-makers.svg -->
<symbol id="icon-change-makers" viewBox="0 0 15.61 16"><path d="M6 .22a.68.68 0 00-1.12.16L3 4.14a.37.37 0 00.17.5l.56.27a.37.37 0 00.5-.17l1.28-2.57a.23.23 0 01.37-.05l6.42 7a.22.22 0 01-.09.35l-1.87.68a.22.22 0 01-.24-.07L6 5.11a.37.37 0 00-.52-.05L5 5.45A.37.37 0 005 6l3.67 4.47a.22.22 0 010 .24c0 .07-.2.13-.28.17a30.37 30.37 0 00-2.87 1.34 19.83 19.83 0 00-1.7 1 .22.22 0 01-.28 0L1.6 11a.22.22 0 010-.25l2.11-4a.7.7 0 00.06-.52.68.68 0 00-.66-.5H.36a.36.36 0 00-.36.38v.64a.36.36 0 00.36.36h1.4a.12.12 0 01.1.17L.08 10.7a.68.68 0 00.09.77L2.46 14a.1.1 0 010 .14c-.3.23-.59.47-.86.71a.35.35 0 00-.12.24.35.35 0 00.09.26l.44.49a.35.35 0 00.49 0l.71-.59c.05 0 .18-.14.23-.14a.06.06 0 01.05 0l.11.11a.35.35 0 00.5 0l.53-.4a.34.34 0 000-.49.1.1 0 010-.08.1.1 0 010-.07c.5-.33 1-.63 1.49-.89a28.94 28.94 0 013.73-1.65l4.06-1.46a.71.71 0 00.37-.28.68.68 0 00-.08-.82zM15.25 5.24h-2.3a.36.36 0 00-.3.56l.32.49a.83.83 0 00.23.27.36.36 0 00.17 0h1.88a.36.36 0 00.36-.36v-.6a.36.36 0 00-.36-.36zM9.54 2.77a.31.31 0 00.21.08.32.32 0 00.13 0 .31.31 0 00.18-.29V.34A.32.32 0 009.75 0H9a.32.32 0 00-.3.34v1.55a.32.32 0 00.11.24zM11.33 4.44a.45.45 0 00.63 0l1.45-1.51a.45.45 0 000-.63l-.35-.3a.45.45 0 00-.63 0L11 3.49a.45.45 0 000 .63z"/>
</symbol>
<!-- /icons/subcategories/icon-climate-change.svg -->
<symbol id="icon-climate-change" viewBox="0 0 17.01 16"><path d="M14.93 2.76A7.88 7.88 0 009.15 0H9C4.3 0 1.59 1.84.7 5.64a.21.21 0 01-.19.15H.28a.28.28 0 00-.28.27v.72a.28.28 0 00.27.28h1a.65.65 0 00.59-.54c0-.21.08-.43.13-.64a.3.3 0 01.2-.2 2.34 2.34 0 011.3 0 .28.28 0 01.18.22 7.8 7.8 0 01-.12 1 6.11 6.11 0 000 2.93 4.44 4.44 0 003.53 2.93c.44.11.91.18 1.37.25a9.61 9.61 0 011.41.28.68.68 0 01.26.24l.11.18a.33.33 0 00.39.12l.73-.29a.23.23 0 00.11-.35l-.36-.56c-.39-.61-1.3-.75-2.46-.92-.43-.07-.87-.13-1.25-.22a3.17 3.17 0 01-2.57-2.04 5.09 5.09 0 010-2.29C5 6.11 5.18 5 4.24 4.6a3.35 3.35 0 00-1.58-.3H2.6v-.05C3.69 2.26 5.78 1.31 9 1.31h.12v-.07.07A6.57 6.57 0 0114 3.62a6.62 6.62 0 011.71 5.1v.2a.12.12 0 01-.05.08.15.15 0 01-.11 0 4.82 4.82 0 00-2.87.43c-.21.1-.4.22-.59.33a3.68 3.68 0 01-.94.45.5.5 0 01-.3 0 1 1 0 01-.25-.21h-.06a1.08 1.08 0 00-1-.33 1.17 1.17 0 00-.6.34l-.1.08a1 1 0 01-.14-.42.46.46 0 01.11-.31A2.2 2.2 0 019 9a.3.3 0 01.29 0l.18.13a3.46 3.46 0 00.45.29 1.81 1.81 0 001.72.05c.71-.37.39-1.21.17-1.76a2.69 2.69 0 01-.28-1.15 3.81 3.81 0 01.57-.88c.52-.68 1.11-1.45.79-2.28s-1.61-1.23-2-1.32a2.3 2.3 0 00-2 .24 1.75 1.75 0 00-.5.81c-.05 0-.13.1-.59-.08 0 0-.21-.29-.56-.87a.33.33 0 00-.38-.13l-.71.27a.25.25 0 00-.15.23.25.25 0 000 .21c.28.52.83 1.41 1.3 1.59a1.83 1.83 0 001.88-.09 1.3 1.3 0 00.48-.71.7.7 0 01.05-.13.35.35 0 01.29-.12 3 3 0 011.15.23 1.15 1.15 0 01.54.35c0 .1-.17.44-.61 1a4.52 4.52 0 00-.78 1.29 3.19 3.19 0 00.31 2v.12l-.13-.06a2.44 2.44 0 01-.29-.19 2.19 2.19 0 00-.93-.44c-.83-.14-1.83.9-2 1.45a2.33 2.33 0 00.44 1.74 1.21 1.21 0 001.38.45 1.43 1.43 0 00.44-.22.17.17 0 01.22 0 1.69 1.69 0 001.08.47h.07a3.81 3.81 0 001.74-.66c.18-.1.34-.2.51-.28a3.51 3.51 0 012-.33.1.1 0 01.07 0 .1.1 0 010 .09c-1.08 2.63-3.8 4.26-7.1 4.26H8a6.44 6.44 0 01-4.61-2 6.6 6.6 0 01-1.67-4.63.27.27 0 00-.08-.2.27.27 0 00-.19-.08H.69a.28.28 0 00-.28.27 7.88 7.88 0 002.08 5.7A7.75 7.75 0 008 16h.08a9.68 9.68 0 005.83-1.86 7.57 7.57 0 003-5.27 7.93 7.93 0 00-1.98-6.11z"/>
</symbol>
<!-- /icons/subcategories/icon-feng-shui.svg -->
<symbol id="icon-feng-shui" viewBox="0 0 19.27 16"><path d="M18.37 6.83l-.49-.19a.28.28 0 00-.35.14l-.34.73a.24.24 0 00.14.34l.47.15-.07.09A5.41 5.41 0 0113.6 10h-.06a5.73 5.73 0 002.23-1.54 6.41 6.41 0 001.45-4.56.67.67 0 00-.65-.6 10.05 10.05 0 00-3.71.7.08.08 0 01-.07 0 .08.08 0 010-.07C12.47 1.58 10.06.15 10 .09a.66.66 0 00-.57 0 4.65 4.65 0 00-2.38 2.19l-.18.37A.26.26 0 007 3l.73.35a.26.26 0 00.35-.12l.18-.37a3.34 3.34 0 011.19-1.34.24.24 0 01.25 0 3.74 3.74 0 011.73 3.17v.1a.46.46 0 01-.14.18 4.72 4.72 0 00-.52.52 4.45 4.45 0 00-.87 1.58A4.75 4.75 0 008.6 4.9C6.55 3 3.24 3.3 3.1 3.31a.67.67 0 00-.58.53A5.41 5.41 0 002.42 5a.2.2 0 01-.14.18l-.53.18a3.34 3.34 0 01-1.08.27H.26a.26.26 0 00-.26.29v.81A.26.26 0 00.26 7h.41a4.4 4.4 0 001.55-.36l.32-.12a.14.14 0 01.17.09 3.63 3.63 0 00.57 1 4.66 4.66 0 003.84 1.5h.41a.26.26 0 00.26-.26V8a.26.26 0 00-.26-.26h-.42a3.42 3.42 0 01-2.8-1 3.06 3.06 0 01-.56-2 .15.15 0 01.14-.13 5.68 5.68 0 013.79 1.26 4.24 4.24 0 011.1 3.5.5.5 0 01-.15.07c-3.63 1.19-5.5-.2-6.48-1.57a.42.42 0 00-.37-.16l-.94.12a.18.18 0 00-.13.29l.22.34a6.18 6.18 0 002.36 2.13 6.31 6.31 0 002.88.66 7.8 7.8 0 00.83-.06v.05a2.41 2.41 0 00-.22 1 3.72 3.72 0 001.43 2.66 8.28 8.28 0 001.33 1 .67.67 0 00.57 0 4.63 4.63 0 002.71-3l.1-.52a.27.27 0 00-.21-.31L12 12a.25.25 0 00-.31.2l-.1.52a3 3 0 01-1.47 1.8.27.27 0 01-.26 0c-.39-.28-1.68-1.27-1.68-2.24 0-.56.47-1.12 1.4-1.65l.12-.07.12-.07.16.05.17.07a7.7 7.7 0 006.76-.14 6.61 6.61 0 002.24-2 .67.67 0 00.1-.32 1.38 1.38 0 00-.88-1.32zm-2.6-2.16a.1.1 0 01.1.11 4.81 4.81 0 01-1.11 2.76 5.31 5.31 0 01-3.61 1.61A.13.13 0 0111 9a3.59 3.59 0 01.76-2.68 6.15 6.15 0 014-1.68z"/>
</symbol>
<!-- /icons/subcategories/icon-food-trends.svg -->
<symbol id="icon-food-trends" viewBox="0 0 16.95 16"><path d="M11.88 6.77a.14.14 0 01-.1 0s0-.19-.05-.27v-.4a.68.68 0 00-.78-.6 38.81 38.81 0 01-5 .47c-2 0-5.56-.21-5.59-.22A.27.27 0 00.05 6L0 6.77a.27.27 0 00.25.29s3.56.22 5.68.22a35.48 35.48 0 004.33-.36.12.12 0 01.09 0 .11.11 0 010 .08c0 1.36-.07 4.7-1.66 6.47A3.48 3.48 0 016 14.64h-.12A3.7 3.7 0 013 13.52a4.62 4.62 0 01-.81-1.21.22.22 0 01.05-.24c.71-.63 1.67-1.42 2.55-2.13a4.68 4.68 0 00-.08.71 1 1 0 00.33.82 1.12 1.12 0 001.09.17 3.39 3.39 0 001.31-.86c.66-.62 1.3-1.25 2-1.94a.27.27 0 000-.38l-.59-.56a.27.27 0 00-.38 0c-.63.67-1.25 1.28-1.9 1.88l-.35.31v-.21C6.4 9 6.51 8.38 6 8a.81.81 0 00-.89 0c-.28.16-2 1.49-3.34 2.69h-.05a.62.62 0 01-.07-.22 10.88 10.88 0 01-.19-2 .28.28 0 00-.26-.28H.39a.27.27 0 00-.2.07.26.26 0 00-.08.19c0 .93.09 4.1 1.95 6.06A5.05 5.05 0 005.88 16H6a4.84 4.84 0 003.74-1.6c1.5-1.66 1.92-4.27 2-6.16v-.1h.15a1.3 1.3 0 01.92.26A1.81 1.81 0 0113 9.89v.06s0 .09-.05.2a1.73 1.73 0 01-.82 1.19h-.08c-.1 0-.14.17-.14.29v1.07c.18 0 1.79-.07 2.37-2.52a.68.68 0 000-.1 2.88 2.88 0 00-.6-2.67 2.52 2.52 0 00-1.8-.64zM16.27 0h-2.56a.27.27 0 00-.27.27v.82a.27.27 0 00.27.27h.93c-.87.91-1.81 2-2.5 2.81a.27.27 0 000 .38l.62.53a.27.27 0 00.38 0c.67-.77 1.59-1.84 2.42-2.72v.74a.27.27 0 00.27.27h.82a.27.27 0 00.27-.27V.68a.68.68 0 00-.65-.68z"/>
</symbol>
<!-- /icons/subcategories/icon-friendships.svg -->
<symbol id="icon-friendships" viewBox="0 0 52.14 55.05"><path d="M52.12 34.7a19.71 19.71 0 00-2.39-9.44c-2.14-3.67-6.77-4-10.15-4.23a18.51 18.51 0 01-2.83-.32l-.6-.16c-2.66-.68-5.18-1.33-6.85-2.91a6.84 6.84 0 01-1.81-3 7.87 7.87 0 011.16-6.82 8 8 0 016.11-3.19 8 8 0 016.12 3.19 7.87 7.87 0 011.16 6.82 9.1 9.1 0 01-1.7 2.41c-.45.5-.61.69-.42.87 0 0 .08.08.82.27l3.06.81a1.34 1.34 0 001.34-.47A8.94 8.94 0 0046.5 16a12.61 12.61 0 00-1.86-10.91A12.73 12.73 0 0034.78 0a12.71 12.71 0 00-9.88 5.09A12.61 12.61 0 0023 16a11.21 11.21 0 004.57 6.22l.11.09a.37.37 0 01-.13.06 19.12 19.12 0 00-3.47 1.4.44.44 0 01-.61-.17 11.72 11.72 0 00-.74-1.15 11.45 11.45 0 00-9.87-5.09 29.25 29.25 0 00-7.78 1.46 21 21 0 01-2.24.58H1a.93.93 0 00-.93.93v2.79a.93.93 0 00.93.93h1.88a14.22 14.22 0 003.54-.76A25.3 25.3 0 0112.9 22a6.78 6.78 0 016.1 3.21A7.87 7.87 0 0120.18 32a12.3 12.3 0 01-2.57 3.35c-.5.5-.65.66-.47.85s.08.09.82.28l3.18.83a1.18 1.18 0 00.3 0 1.44 1.44 0 001.07-.47 10.93 10.93 0 002.13-3.51 12.1 12.1 0 00.49-4.16 1 1 0 01.41-.87 37.64 37.64 0 018.26-2.74l1.14-.26.66-.14a21.1 21.1 0 003.68.46c2.6.18 5.55.39 6.45 1.93a15.39 15.39 0 011.77 7.32v.47a.6.6 0 00.21.41 1.05 1.05 0 00.76.22l2.78-.21c.52 0 .91-.34.89-.71z"/><path d="M16.69 38.51h-.08c-.65-.15-1.25-.28-1.73-.41-2.73-.71-4.66-1.3-6.52-3.07a6.84 6.84 0 01-1.81-3 7.87 7.87 0 01.06-4.63.75.75 0 00-.08-.68.72.72 0 00-.6-.28h-3a1.16 1.16 0 00-1.09.85 12.36 12.36 0 00.24 6.14 11.5 11.5 0 003.06 5 14.62 14.62 0 001.66 1.36c.1.07.12.12.12.13s0 .05-.14.1a10.52 10.52 0 00-4.88 3.41C.41 45.52-.05 50.5 0 54.12a1 1 0 00.95.93h2.79a.89.89 0 00.64-.27.91.91 0 00.26-.67c-.07-2.83.42-7.1 1.08-8 1.12-1.58 5.26-2.62 7.73-3.25l.33-.08a2.68 2.68 0 01.9.08l1 .22c2.19.5 7.32 1.67 8.28 3 .66.94 1.15 5.21 1.08 8a.91.91 0 00.26.67.89.89 0 00.64.27h2.79a1 1 0 00.95-.93c.06-3.62-.41-8.6-1.91-10.73-1.86-2.58-6.12-3.72-11.08-4.85z"/>
</symbol>
<!-- /icons/subcategories/icon-functional-food.svg -->
<symbol id="icon-functional-food" viewBox="0 0 16.69 16"><path d="M16.69 9.64A4.78 4.78 0 0112 14.5a4.5 4.5 0 01-1.75-.35.2.2 0 00-.23.06A4.55 4.55 0 016.41 16a4.63 4.63 0 01-2-.48 4.93 4.93 0 01-2.51-2.74 5 5 0 01-.21-2.73 2.84 2.84 0 00-.18-1.74l-.17-.37a.27.27 0 01.14-.36l.74-.33a.27.27 0 01.36.14l.17.37A4.19 4.19 0 013 10.32a3.62 3.62 0 00.16 2A3.58 3.58 0 005 14.3a3.23 3.23 0 002.55.14A3.43 3.43 0 009.43 10a3.6 3.6 0 00-1.32-1.72 4.13 4.13 0 01-1.63-2.4 4 4 0 00-.13-.43c-.57-1.53-1.92-2.44-3-2a1.75 1.75 0 00-1.18 1.64 2.28 2.28 0 01-.07 1A1.45 1.45 0 01.76 7H.35a.27.27 0 01-.29-.25L0 6a.27.27 0 01.25-.29h.51a.26.26 0 00.08-.19v-.34a3.09 3.09 0 012-3c1.82-.7 3.96.57 4.78 2.82a5.41 5.41 0 01.18.57 2.77 2.77 0 001.08 1.6 5 5 0 011.9 5.58.15.15 0 00.08.19 3.16 3.16 0 001.14.21 3.43 3.43 0 003.33-3.51 3.6 3.6 0 00-.64-2.07A4.13 4.13 0 0114 4.76a4.07 4.07 0 000-.45c0-1.63-1-3-2.12-3s-2.12 1.33-2.12 3a4 4 0 000 .59 6.9 6.9 0 010 1.17l-.06.37a.18.18 0 01-.3.13L8.65 6a.48.48 0 01-.19-.38 4.47 4.47 0 000-.53 5.4 5.4 0 01-.06-.79C8.42 1.93 10 0 11.9 0s3.48 1.93 3.48 4.31a5.45 5.45 0 010 .6 2.77 2.77 0 00.46 1.89 5 5 0 01.85 2.84zM4 11.61a4.1 4.1 0 01-.21-2.24 2.08 2.08 0 011.29-1.59c1.22-.45 2.66.54 3.29 2.22s.17 3.39-1 3.84a1.74 1.74 0 01-.6.11 2.29 2.29 0 01-1.38-.51A4.1 4.1 0 014 11.61zm1.27-.47a2.77 2.77 0 00.85 1.23.78.78 0 00.69.21.85.85 0 00.41-.71 2.84 2.84 0 00-.17-1.39C6.76 9.57 6.12 9 5.69 9h-.14a.78.78 0 00-.39.61 2.78 2.78 0 00.15 1.54z"/>
</symbol>
<!-- /icons/subcategories/icon-green-cleaning.svg -->
<symbol id="icon-green-cleaning" viewBox="0 0 10.99 16"><path d="M6.61 5.5a3.67 3.67 0 01-.7-2.33A4.49 4.49 0 017.75.12a.66.66 0 01.77 0l.07.06a4.1 4.1 0 011.72 3.15 3 3 0 01-1 2 .25.25 0 01-.19.07.27.27 0 01-.12-.11l-.46-.61a.31.31 0 010-.4 1.59 1.59 0 00.45-1 2.45 2.45 0 00-.79-1.63.13.13 0 00-.1 0 .13.13 0 00-.1 0 2.73 2.73 0 00-.78 1.62 2.83 2.83 0 001 2.09.17.17 0 01.06.18s-.05.09-.16.09L7 5.69a.48.48 0 01-.39-.19zm4.16.43a.66.66 0 00-.65-.14 17.16 17.16 0 01-3.75.29.4.4 0 01-.28-.14c-.12-.18-.22-.35-.33-.56l-.25-.45-.06-.11-.11-.18-.09-.1a.66.66 0 00-.49-.18 2.76 2.76 0 01-2.29-.63 1.77 1.77 0 01-.42-1 .64.64 0 010-.14 2.66 2.66 0 011.73.48 1.12 1.12 0 01.33.5.35.35 0 00.32.25h.77a.27.27 0 00.2-.09.24.24 0 00.06-.2 2.39 2.39 0 00-.77-1.4 4.25 4.25 0 00-3.31-.81h-.05a.66.66 0 00-.57.54 3.48 3.48 0 00.73 2.71A3.64 3.64 0 004.26 5.7a.34.34 0 01.26.15l.13.23h-.1A17 17 0 011 5.8l-.4-.12a.28.28 0 00-.34.19L0 6.6a.28.28 0 00.19.34l.38.11a20.85 20.85 0 004.9.35 37.76 37.76 0 003.86-.16.07.07 0 01.09.1l-.3 1.23a.28.28 0 01-.2.19A23 23 0 015.51 9c-1.13 0-2.16 0-3.06-.13a.23.23 0 01-.19-.17l-.08-.4a.37.37 0 00-.3-.3l-.82-.1a.21.21 0 00-.24.26l.06.32a.08.08 0 010 .07.08.08 0 01-.07 0H.73a.28.28 0 00-.33.21l-.2.76a.28.28 0 00.21.33l.37.09L1 10a.26.26 0 01.2.19l1 5a.66.66 0 00.41.49 8.62 8.62 0 002.9.39 11.51 11.51 0 003.1-.37.66.66 0 00.39-.56L9.91 11a.21.21 0 00-.24-.26l-.83.1a.38.38 0 00-.31.28l-.68 3.18a.28.28 0 01-.2.2 11.93 11.93 0 01-2.18.19 9.88 9.88 0 01-1.93-.17.28.28 0 01-.19-.2l-.79-4a.1.1 0 010-.08.1.1 0 01.08 0c.85.07 1.81.1 2.84.1a15.59 15.59 0 004.34-.37.66.66 0 00.43-.47L11 6.57a.66.66 0 00-.23-.64z"/>
</symbol>
<!-- /icons/subcategories/icon-healthy-weight.svg -->
<symbol id="icon-healthy-weight" viewBox="0 0 15.59 16"><path d="M4.32 6.24a5.05 5.05 0 013.61-1.29 5.79 5.79 0 013.19.79.17.17 0 010 .21l-1 1.87a.22.22 0 01-.22.1 11.9 11.9 0 00-1.47-.21h-.05l.8-1.06a.27.27 0 00-.05-.38l-.65-.49a.27.27 0 00-.38.05L6.7 7.67a.51.51 0 01-.28.17l-.5.09a.23.23 0 01-.22-.11l-.48-.89a.27.27 0 00-.37-.11l-.72.39a.27.27 0 00-.13.38l.79 1.47a.69.69 0 00.76.34A12.46 12.46 0 018 9.05a10.75 10.75 0 012.27.33h.18a.68.68 0 00.6-.35L12.68 6a.68.68 0 00-.09-.78 6.22 6.22 0 00-4.66-1.63A6.56 6.56 0 003.6 5a.92.92 0 01-.32.18 18.1 18.1 0 01-3 .56A.28.28 0 000 6v.82a.27.27 0 00.08.19.26.26 0 00.19.07A20.65 20.65 0 004 6.43a.68.68 0 00.32-.19z"/><path d="M15.54 3.3C15.49 3.16 14.25 0 8 0S.48 3.16.43 3.3a.68.68 0 000 .29v.67a.27.27 0 00.09.19.27.27 0 00.2.07l.81-.06a.27.27 0 00.25-.29v-.31a.61.61 0 01.08-.33c.45-.65 2-2.16 6.13-2.16s5.68 1.51 6.13 2.16a.6.6 0 01.08.33l-.78 10.64a.15.15 0 01-.15.14H2.71a.15.15 0 01-.15-.14L2.1 8.37a.27.27 0 00-.29-.25L1 8.18a.27.27 0 00-.25.29l.51 6.9a.68.68 0 00.68.63H14a.68.68 0 00.68-.63l.87-11.79a.67.67 0 00-.01-.28z"/>
</symbol>
<!-- /icons/subcategories/icon-home-tours.svg -->
<symbol id="icon-home-tours" viewBox="0 0 10.99 16"><path d="M6.61 5.5a3.67 3.67 0 01-.7-2.33A4.49 4.49 0 017.75.12a.66.66 0 01.77 0l.07.06a4.1 4.1 0 011.72 3.15 3 3 0 01-1 2 .25.25 0 01-.19.07.27.27 0 01-.12-.11l-.46-.61a.31.31 0 010-.4 1.59 1.59 0 00.45-1 2.45 2.45 0 00-.79-1.63.13.13 0 00-.1 0 .13.13 0 00-.1 0 2.73 2.73 0 00-.78 1.62 2.83 2.83 0 001 2.09.17.17 0 01.06.18s-.05.09-.16.09L7 5.69a.48.48 0 01-.39-.19zm4.16.43a.66.66 0 00-.65-.14 17.16 17.16 0 01-3.75.29.4.4 0 01-.28-.14c-.12-.18-.22-.35-.33-.56l-.25-.45-.06-.11-.11-.18-.09-.1a.66.66 0 00-.49-.18 2.76 2.76 0 01-2.29-.63 1.77 1.77 0 01-.42-1 .64.64 0 010-.14 2.66 2.66 0 011.73.48 1.12 1.12 0 01.33.5.35.35 0 00.32.25h.77a.27.27 0 00.2-.09.24.24 0 00.06-.2 2.39 2.39 0 00-.77-1.4 4.25 4.25 0 00-3.31-.81h-.05a.66.66 0 00-.57.54 3.48 3.48 0 00.73 2.71A3.64 3.64 0 004.26 5.7a.34.34 0 01.26.15l.13.23h-.1A17 17 0 011 5.8l-.4-.12a.28.28 0 00-.34.19L0 6.6a.28.28 0 00.19.34l.38.11a20.85 20.85 0 004.9.35 37.76 37.76 0 003.86-.16.07.07 0 01.09.1l-.3 1.23a.28.28 0 01-.2.19A23 23 0 015.51 9c-1.13 0-2.16 0-3.06-.13a.23.23 0 01-.19-.17l-.08-.4a.37.37 0 00-.3-.3l-.82-.1a.21.21 0 00-.24.26l.06.32a.08.08 0 010 .07.08.08 0 01-.07 0H.73a.28.28 0 00-.33.21l-.2.76a.28.28 0 00.21.33l.37.09L1 10a.26.26 0 01.2.19l1 5a.66.66 0 00.41.49 8.62 8.62 0 002.9.39 11.51 11.51 0 003.1-.37.66.66 0 00.39-.56L9.91 11a.21.21 0 00-.24-.26l-.83.1a.38.38 0 00-.31.28l-.68 3.18a.28.28 0 01-.2.2 11.93 11.93 0 01-2.18.19 9.88 9.88 0 01-1.93-.17.28.28 0 01-.19-.2l-.79-4a.1.1 0 010-.08.1.1 0 01.08 0c.85.07 1.81.1 2.84.1a15.59 15.59 0 004.34-.37.66.66 0 00.43-.47L11 6.57a.66.66 0 00-.23-.64z"/>
</symbol>
<!-- /icons/subcategories/icon-home.svg -->
<symbol id="icon-home" viewBox="0 0 10.99 16"><path d="M6.61 5.5a3.67 3.67 0 01-.7-2.33A4.49 4.49 0 017.75.12a.66.66 0 01.77 0l.07.06a4.1 4.1 0 011.72 3.15 3 3 0 01-1 2 .25.25 0 01-.19.07.27.27 0 01-.12-.11l-.46-.61a.31.31 0 010-.4 1.59 1.59 0 00.45-1 2.45 2.45 0 00-.79-1.63.13.13 0 00-.1 0 .13.13 0 00-.1 0 2.73 2.73 0 00-.78 1.62 2.83 2.83 0 001 2.09.17.17 0 01.06.18s-.05.09-.16.09L7 5.69a.48.48 0 01-.39-.19zm4.16.43a.66.66 0 00-.65-.14 17.16 17.16 0 01-3.75.29.4.4 0 01-.28-.14c-.12-.18-.22-.35-.33-.56l-.25-.45-.06-.11-.11-.18-.09-.1a.66.66 0 00-.49-.18 2.76 2.76 0 01-2.29-.63 1.77 1.77 0 01-.42-1 .64.64 0 010-.14 2.66 2.66 0 011.73.48 1.12 1.12 0 01.33.5.35.35 0 00.32.25h.77a.27.27 0 00.2-.09.24.24 0 00.06-.2 2.39 2.39 0 00-.77-1.4 4.25 4.25 0 00-3.31-.81h-.05a.66.66 0 00-.57.54 3.48 3.48 0 00.73 2.71A3.64 3.64 0 004.26 5.7a.34.34 0 01.26.15l.13.23h-.1A17 17 0 011 5.8l-.4-.12a.28.28 0 00-.34.19L0 6.6a.28.28 0 00.19.34l.38.11a20.85 20.85 0 004.9.35 37.76 37.76 0 003.86-.16.07.07 0 01.09.1l-.3 1.23a.28.28 0 01-.2.19A23 23 0 015.51 9c-1.13 0-2.16 0-3.06-.13a.23.23 0 01-.19-.17l-.08-.4a.37.37 0 00-.3-.3l-.82-.1a.21.21 0 00-.24.26l.06.32a.08.08 0 010 .07.08.08 0 01-.07 0H.73a.28.28 0 00-.33.21l-.2.76a.28.28 0 00.21.33l.37.09L1 10a.26.26 0 01.2.19l1 5a.66.66 0 00.41.49 8.62 8.62 0 002.9.39 11.51 11.51 0 003.1-.37.66.66 0 00.39-.56L9.91 11a.21.21 0 00-.24-.26l-.83.1a.38.38 0 00-.31.28l-.68 3.18a.28.28 0 01-.2.2 11.93 11.93 0 01-2.18.19 9.88 9.88 0 01-1.93-.17.28.28 0 01-.19-.2l-.79-4a.1.1 0 010-.08.1.1 0 01.08 0c.85.07 1.81.1 2.84.1a15.59 15.59 0 004.34-.37.66.66 0 00.43-.47L11 6.57a.66.66 0 00-.23-.64z"/>
</symbol>
<!-- /icons/subcategories/icon-integrative-health.svg -->
<symbol id="icon-integrative-health" viewBox="0 0 18.2 16"><path d="M1.76 5.25a2.74 2.74 0 012.06-3A3.93 3.93 0 017.08 3a.35.35 0 00.47 0L8 2.47A.35.35 0 008 2a5.24 5.24 0 00-4.46-1A4.13 4.13 0 00.4 5.33a.34.34 0 01-.05.2.34.34 0 01-.18.13.25.25 0 00-.17.24v.87A.26.26 0 00.09 7a.25.25 0 00.16 0 1.67 1.67 0 001-.54 1.77 1.77 0 00.51-1.21zM18.09 3.87A4.84 4.84 0 0015.94.62C12.57-1.34 9.42 1.77 7.13 4l-.57.56a1.15 1.15 0 00-.23 1.5l.07.12a1 1 0 01.18.47c0 .35-.34.62-.66.72a.72.72 0 01-.83-.2 1.42 1.42 0 00-1-.74 1.35 1.35 0 00-.91.34L1.3 8.16a.65.65 0 00-.25.44.64.64 0 00.15.48 69.31 69.31 0 007.59 6.77.68.68 0 00.41.15.68.68 0 00.39-.13 33.42 33.42 0 005-4.23c2.18-2.28 4.1-4.81 3.5-7.77zM15.54 8.4c-.14.21-.3.41-.47.63l-.07.12c-.09.14-.23.34-.35.36a.18.18 0 01-.14 0l-.11-.11-.06-.07a3 3 0 01-.34-.46.47.47 0 010-.62 2.12 2.12 0 00.57-1.9 2.08 2.08 0 00-1.62-1.64 1.89 1.89 0 00-1.1.12 2.32 2.32 0 00-.46.26l-.14.12a1 1 0 01-.25.18c-.19.08-.39 0-.62-.26L10.26 5c-.14-.19-.35-.47-.63-.3a5.23 5.23 0 00-.54.52.31.31 0 00-.1.23c0 .21.23.43.33.53l.21.21a4.94 4.94 0 00.55.5 1.21 1.21 0 001.54 0 3.17 3.17 0 00.24-.22 1.64 1.64 0 01.42-.34.59.59 0 01.51 0 .72.72 0 01.39.47c.12.45-.14.68-.44.94a1.74 1.74 0 00-.48.57 1.17 1.17 0 00.14 1.14l.05.06 1.16 1.22a.15.15 0 010 .2 30.78 30.78 0 01-4.3 3.69.15.15 0 01-.18 0 73.92 73.92 0 01-6.29-5.55.14.14 0 010-.11.15.15 0 01.06-.11L3.79 8a.81.81 0 01.11-.06L4 8a2 2 0 002.36.73 2.18 2.18 0 001.62-2 2.23 2.23 0 00-.34-1.1.25.25 0 01.06-.08l.11-.11 2.6-2.55c1.22-1.19 3.4-1.9 4.93-1a3.52 3.52 0 011.5 2.34 5.58 5.58 0 01-1.3 4.17z"/>
</symbol>
<!-- /icons/subcategories/icon-love.svg -->
<symbol id="icon-love" viewBox="0 0 15.69 16"><path d="M15.35 5.73a4.72 4.72 0 01-.1 3.7 20.12 20.12 0 01-3.06 3.65c-.47.49-1.49 1.71-1.87 2.14l-.64.65a.36.36 0 01-.25.1.32.32 0 01-.15 0 17.74 17.74 0 01-3.73-2.77 10.43 10.43 0 01-2.8-4A6.87 6.87 0 012.26 7a.09.09 0 000-.08.09.09 0 00-.07 0C1.72 7 .67 7 .36 7H.21a.19.19 0 01-.13-.06A.29.29 0 010 6.7v-.82a.28.28 0 01.3-.26 12 12 0 002-.13A3.43 3.43 0 003.83 5c.2-.17.42-.35.71-.56A4.25 4.25 0 006 2.51a1.31 1.31 0 000-.8.79.79 0 00-.89-.33 1.37 1.37 0 00-.86.92.68.68 0 01-1.25.14c-.47-.79-.86-1-1.39-.81-.23.09-.26.19-.28.22a1.61 1.61 0 00.27 1.08 2.64 2.64 0 001.59 1.12c.22.08.25.09.23.16s0 0-.19.16L2.4 5A.43.43 0 012 5 3.51 3.51 0 01.47 3.59a2.78 2.78 0 01-.36-2.2 1.73 1.73 0 011.06-1 2.1 2.1 0 012.28.4.13.13 0 00.18 0A2.49 2.49 0 014.76.08a2.15 2.15 0 012.48 1 2.56 2.56 0 01.14 1.65 5.69 5.69 0 01-2 2.7L4.72 6c-.42.36-.94.74-1 1-.22.48.07 1 .28 1.84.6 2 3.28 4.28 5 5.43a.91.91 0 00.2.12s1.46-1.72 2-2.24a21.26 21.26 0 002.8-3.3 3.34 3.34 0 00.09-2.56 1.83 1.83 0 00-1.27-1c-1.36-.38-2.35.28-3.21 2.15a.68.68 0 01-1.24 0 2.59 2.59 0 00-1.72-1.69.19.19 0 01-.14-.13.18.18 0 01.06-.17l.7-.67a.37.37 0 01.4-.07 3.2 3.2 0 011.26 1 .08.08 0 00.07 0 .08.08 0 00.06 0A3.54 3.54 0 0113.22 4a3.2 3.2 0 012.13 1.73z"/>
</symbol>
<!-- /icons/subcategories/icon-makeup.svg -->
<symbol id="icon-makeup" viewBox="0 0 11.93 16"><path d="M11.81 13.58v-.1l-1-2.13a.27.27 0 00-.36-.13l-.73.35a.27.27 0 00-.13.36l1 2.08a.44.44 0 01-.79.38l-1.42-3a.63.63 0 010-.12 4.63 4.63 0 002.67-2.42 6 6 0 00.18-4.64C10.62 2.87 9.58 1 8.27.35S5.28.22 4 .71h-.11C2.05 1.5 1 2.53.68 3.81a4.6 4.6 0 000 1.8.1.1 0 010 .08.09.09 0 01-.07 0H.26c-.15 0-.23.08-.26.23v.8a.33.33 0 000 .21.26.26 0 00.22.07 4.36 4.36 0 001.47 0 .68.68 0 00.49-.87A3.77 3.77 0 012 4.1c.18-.82 1-1.52 2.42-2.1h.12c1.09-.44 2.23-.88 3.11-.43A6.36 6.36 0 019.84 4.7a4.69 4.69 0 01-.12 3.6A3.29 3.29 0 017.84 10c-1.72.59-3.32-.12-4.77-2.1a.27.27 0 00-.38-.06L2 8.33a.27.27 0 00-.11.18.26.26 0 000 .2c1.39 1.91 3 2.87 4.71 2.87h.2a.24.24 0 01.16.14L8.54 15l.05.09a1.8 1.8 0 001.55.89 1.79 1.79 0 001.68-2.42z"/><path d="M5.47 5.05l1.93.77h.1a.27.27 0 00.25-.17l.3-.75a.27.27 0 00-.15-.35L6 3.8a.27.27 0 00-.35.15l-.3.75a.27.27 0 00.15.35zM4.19 5.82l-.3.75a.27.27 0 00.11.35l3.46 1.37h.1a.27.27 0 00.25-.17l.3-.75A.27.27 0 008 7L4.54 5.67a.27.27 0 00-.35.15z"/>
</symbol>
<!-- /icons/subcategories/icon-meditation.svg -->
<symbol id="icon-meditation" viewBox="0 0 19.27 16"><path d="M18.37 6.83l-.49-.19a.28.28 0 00-.35.14l-.34.73a.24.24 0 00.14.34l.47.15-.07.09A5.41 5.41 0 0113.6 10h-.06a5.73 5.73 0 002.23-1.54 6.41 6.41 0 001.45-4.56.67.67 0 00-.65-.6 10.05 10.05 0 00-3.71.7.08.08 0 01-.07 0 .08.08 0 010-.07C12.47 1.58 10.06.15 10 .09a.66.66 0 00-.57 0 4.65 4.65 0 00-2.38 2.19l-.18.37A.26.26 0 007 3l.73.35a.26.26 0 00.35-.12l.18-.37a3.34 3.34 0 011.19-1.34.24.24 0 01.25 0 3.74 3.74 0 011.73 3.17v.1a.46.46 0 01-.14.18 4.72 4.72 0 00-.52.52 4.45 4.45 0 00-.87 1.58A4.75 4.75 0 008.6 4.9C6.55 3 3.24 3.3 3.1 3.31a.67.67 0 00-.58.53A5.41 5.41 0 002.42 5a.2.2 0 01-.14.18l-.53.18a3.34 3.34 0 01-1.08.27H.26a.26.26 0 00-.26.29v.81A.26.26 0 00.26 7h.41a4.4 4.4 0 001.55-.36l.32-.12a.14.14 0 01.17.09 3.63 3.63 0 00.57 1 4.66 4.66 0 003.84 1.5h.41a.26.26 0 00.26-.26V8a.26.26 0 00-.26-.26h-.42a3.42 3.42 0 01-2.8-1 3.06 3.06 0 01-.56-2 .15.15 0 01.14-.13 5.68 5.68 0 013.79 1.26 4.24 4.24 0 011.1 3.5.5.5 0 01-.15.07c-3.63 1.19-5.5-.2-6.48-1.57a.42.42 0 00-.37-.16l-.94.12a.18.18 0 00-.13.29l.22.34a6.18 6.18 0 002.36 2.13 6.31 6.31 0 002.88.66 7.8 7.8 0 00.83-.06v.05a2.41 2.41 0 00-.22 1 3.72 3.72 0 001.43 2.66 8.28 8.28 0 001.33 1 .67.67 0 00.57 0 4.63 4.63 0 002.71-3l.1-.52a.27.27 0 00-.21-.31L12 12a.25.25 0 00-.31.2l-.1.52a3 3 0 01-1.47 1.8.27.27 0 01-.26 0c-.39-.28-1.68-1.27-1.68-2.24 0-.56.47-1.12 1.4-1.65l.12-.07.12-.07.16.05.17.07a7.7 7.7 0 006.76-.14 6.61 6.61 0 002.24-2 .67.67 0 00.1-.32 1.38 1.38 0 00-.88-1.32zm-2.6-2.16a.1.1 0 01.1.11 4.81 4.81 0 01-1.11 2.76 5.31 5.31 0 01-3.61 1.61A.13.13 0 0111 9a3.59 3.59 0 01.76-2.68 6.15 6.15 0 014-1.68z"/>
</symbol>
<!-- /icons/subcategories/icon-mental-health.svg -->
<symbol id="icon-mental-health" viewBox="0 0 14.02 16"><path d="M13.18 12.14a5.39 5.39 0 00-2.55-1.58.64.64 0 00-.47 0l-1.1.62c-.12.07-.12.15-.12.19s0 .12.16.15A5.9 5.9 0 0112 13a4.28 4.28 0 01.56 2.73.29.29 0 00.07.23.29.29 0 00.21.09h.77a.34.34 0 00.33-.3 5.15 5.15 0 00-.76-3.61zM10.86 8.26c0-.15.11-.37.17-.53a.29.29 0 01.22-.14c1-.06 1.52-.44 1.64-1.14A3.28 3.28 0 0012 4.19c-.1-.14-.21-.3-.29-.43a3.08 3.08 0 01-.27-.66A3.65 3.65 0 0011 2a4.83 4.83 0 00-4.11-2 5.6 5.6 0 00-4.35 2.25A5.49 5.49 0 001.51 5a5.6 5.6 0 000 .64.11.11 0 010 .08.09.09 0 01-.08 0H.38a.29.29 0 00-.23.07A.28.28 0 000 6v.77a.34.34 0 00.3.33c.36 0 1 .06 1.41.06v.14A6.13 6.13 0 003 9.3a5.67 5.67 0 001.33 1 6.52 6.52 0 00-3.49 1.85A5.3 5.3 0 000 15.7a.34.34 0 00.33.3h.77a.29.29 0 00.21-.09.29.29 0 00.07-.23A4.28 4.28 0 012 13c.61-.86 2.6-1.35 3.91-1.68l.5-.13c.33-.08.63-.15.93-.21a5.15 5.15 0 002.87-1.29 3 3 0 00.65-1.43zM3.27 7a21 21 0 004-.7 3 3 0 002-1.75A1.82 1.82 0 009 2.92 2.42 2.42 0 007.09 2H7a3.39 3.39 0 00-1.87.58L5 2.62a2.37 2.37 0 00-1.19 1.92.27.27 0 00.09.22.28.28 0 00.23.07l.78-.1a.38.38 0 00.31-.32c0-.29.23-.42.53-.62l.25-.2a1.48 1.48 0 011.88.16.43.43 0 01.12.42A1.69 1.69 0 016.87 5 20.47 20.47 0 013 5.66a.11.11 0 01-.08 0 .1.1 0 010-.08 4.14 4.14 0 01.78-2.49A4.18 4.18 0 016.88 1.4a3.47 3.47 0 013 1.42 2.46 2.46 0 01.31.72 4.23 4.23 0 00.4.95c.1.16.21.32.33.5a5 5 0 01.6 1 .11.11 0 010 .09.13.13 0 01-.08.06 2.6 2.6 0 01-.43 0c-1 0-1.24 1-1.45 1.67a3 3 0 01-.29.76 3.87 3.87 0 01-2.27 1H6.7A5.14 5.14 0 014 8.24a5.28 5.28 0 01-.79-1.12z"/>
</symbol>
<!-- /icons/subcategories/icon-motivation.svg -->
<symbol id="icon-motivation" viewBox="0 0 11.79 16"><path d="M9.41 13.08a.29.29 0 010 .23.18.18 0 01-.11.09s-.08.08-.07.16L9.34 15a.68.68 0 01-.51.72 11.3 11.3 0 01-2.37.28 11 11 0 01-2.28-.27h-.05v-.25l.2-.79a.29.29 0 01.33-.21 15.79 15.79 0 001.8.21 8.74 8.74 0 001.34-.12.15.15 0 00.12-.16l-.06-.63a.14.14 0 00-.15-.12h-1a4.71 4.71 0 01-2.44-.39.68.68 0 01-.3-.56 11.19 11.19 0 00-.26-2 5.46 5.46 0 00-1.5-2.93c-.68-.7-.68-.7-1.94-.7h-.1A.13.13 0 01.08 7 .33.33 0 010 6.81V6c0-.16.07-.27.17-.27h.1c1.56 0 1.85 0 2.9 1.1A6.81 6.81 0 015 10.39a13.85 13.85 0 01.25 1.66.21.21 0 00.16.18 8.87 8.87 0 001.26.08 10.58 10.58 0 002.17-.2.29.29 0 01.33.19zm1.31-5.49a10.3 10.3 0 00-.53.93A10.85 10.85 0 009.64 10c-.22.72-.38 1.24-.91 1.39a3.25 3.25 0 01-.94.17H7.6c-.45 0-.66-.39-1-1.2-.13-.28-.27-.61-.43-1a.08.08 0 00-.05-.05.09.09 0 00-.07 0l-.13.1a.23.23 0 01-.19 0 .25.25 0 01-.16-.14l-.33-.74-.06-.12-.06-.1h.06l.14-.11.14-.2a.28.28 0 00.05-.27 21.9 21.9 0 01-.88-2.63 2.7 2.7 0 011.61-2.86 2.1 2.1 0 012.61 1.45C9.3 5.21 7.72 7.41 7.22 8a.32.32 0 000 .28c.3.75.56 1.36.74 1.72 0 .08.12.13.15.12a.3.3 0 00.12-.12l.13-.39A12 12 0 019 7.93a11.5 11.5 0 01.59-1.05 4.23 4.23 0 00.87-2.53c-.05-1.49-1.32-3-3.63-3a3.53 3.53 0 00-2.7 1.1 4 4 0 00-1 2.49.29.29 0 01-.26.28L2 5.29a.26.26 0 01-.2-.07.25.25 0 01-.08-.22 5.26 5.26 0 011.39-3.5A4.89 4.89 0 016.8 0a5.08 5.08 0 013.64 1.36 4.35 4.35 0 011.34 2.94 5.51 5.51 0 01-1.06 3.28zM7.55 4.08a.72.72 0 00-.73-.57h-.2A1.44 1.44 0 006 4.86a14.61 14.61 0 00.52 1.74c.83-1.11 1.18-2.04 1.03-2.52z"/>
</symbol>
<!-- /icons/subcategories/icon-nature.svg -->
<symbol id="icon-nature" viewBox="0 0 16.97 16"><path d="M5.94 1.75C5.26 2.6 4.23 3.85 3.15 5l-.37.39C2 6.21 1.22 7.07.13 7.07H.06L0 7a.4.4 0 010-.25V6a.32.32 0 01.28-.3 4 4 0 001.5-1.24l.39-.41C3.8 2.35 5.38.28 5.4.26a.67.67 0 011-.09l2.67 2.37a.3.3 0 01.05.39l-.46.68a.24.24 0 01-.36 0L6.12 1.74a.12.12 0 00-.18 0zm10.9 14l-2.48-3.45h.28a.67.67 0 00.49-1.12A21.7 21.7 0 0113.48 9c-.12-.2-.26-.46-.4-.77a.08.08 0 010-.07.08.08 0 01.07 0h.52a.67.67 0 00.49-1.06l-3-4.13a.67.67 0 00-1.1 0l-3 4.26a.67.67 0 00.54 1.06h.45v.05l-1.87 2.92a.67.67 0 00.57 1h.49v.05l-.52.77a8.17 8.17 0 01-1.53 1.54.67.67 0 00.41 1.21H14a.16.16 0 00.13-.27l-.68-.89a.53.53 0 00-.38-.19H7.31a6 6 0 00.48-.61C8.41 13 9 12 9.07 12h-.06.06a.67.67 0 00-.57-1H8h-.05c-.05 0 0 0 0-.05L9.84 8a.67.67 0 00-.55-1H9v-.07l1.6-2.3a.08.08 0 01.06 0 .08.08 0 01.06 0l1.6 2.23v.05h-.35a.67.67 0 00-.57.92 15.32 15.32 0 00.91 1.9 11.42 11.42 0 00.82 1.12v.05H13a.67.67 0 00-.52 1.1l2.77 3.84a.51.51 0 00.37.19h1.32s.06-.13-.1-.31z"/>
</symbol>
<!-- /icons/subcategories/icon-news.svg -->
<symbol id="icon-news" width="18" height="15"><path d="M10.692.298l5.661.114a.783.783 0 01.768.798c-.005.096-.005.096-.027.19-.208.77-.31 1.362-.31 1.76 0 .123-.004.283-.012.516l-.024.693a52.56 52.56 0 00-.033 1.437c-.006.727.014 1.32.065 1.766.133 1.18.241 2.699.324 4.557a2.583 2.583 0 01-2.466 2.696l-.076.002h-.076l-4.8-.07-6.483.1v-.037a1.73 1.73 0 01-.238.034l-.123.004h-.047A2.083 2.083 0 01.727 13.03 40.793 40.793 0 01.417 8c0-1.175.094-2.148.286-2.923a2.45 2.45 0 012.202-1.854l.176-.006h.224c.028-.228.058-.46.089-.698A2.45 2.45 0 015.614.396l.164-.008 4.914-.09zM3.17 4.383h-.09c-.59 0-1.104.402-1.246.975C1.67 6.03 1.583 6.912 1.583 8c0 1.638.1 3.267.302 4.887.052.421.384.746.796.797l.114.007h.047a.565.565 0 00.559-.65c-.31-2.02-.464-3.698-.464-5.041 0-.952.078-2.157.234-3.617zm7.52-2.918l-4.891.09A1.283 1.283 0 004.55 2.67C4.252 4.949 4.103 6.728 4.103 8c0 1.276.15 2.9.451 4.865a1.732 1.732 0 01-.02.631l-.047.175 5.198-.08 4.818.07a1.417 1.417 0 001.435-1.48c-.081-1.834-.187-3.328-.318-4.478-.056-.502-.078-1.135-.072-1.905.003-.442.014-.885.034-1.469l.024-.69c.007-.222.01-.372.01-.48 0-.36.058-.8.17-1.322l.061-.269-5.156-.103zm3.066 7.902a.583.583 0 01.094 1.159l-.094.007H6.683a.583.583 0 01-.094-1.159l.094-.007h7.074zM6.31 6.892h7.073a.583.583 0 01.095 1.159l-.095.007H6.31A.583.583 0 016.215 6.9l.095-.007h7.073zm7.443-2.475a.583.583 0 110 1.166H6.68a.583.583 0 110-1.166z"/>
</symbol>
<!-- /icons/subcategories/icon-off-the-grid.svg -->
<symbol id="icon-off-the-grid" viewBox="0 0 20.1 16"><path d="M20.1 7.62v-.24A4.68 4.68 0 0015.85 3v-.86A.14.14 0 0116 2h1a.27.27 0 00.27-.27V.91A.27.27 0 0017 .64h-1a.14.14 0 01-.15-.14V.27a.27.27 0 00-.28-.27h-.82a.27.27 0 00-.27.27V.5a.14.14 0 01-.14.14H7A.14.14 0 016.82.5V.27A.27.27 0 006.54 0h-.82a.27.27 0 00-.27.27V.5a.14.14 0 01-.14.14h-.87a.27.27 0 00-.27.27v.82a.27.27 0 00.27.27h.88a.13.13 0 01.14.12.27.27 0 00.27.26h.82a.27.27 0 00.27-.26A.13.13 0 017 2h7.4a.14.14 0 01.14.14v.79H5.2a4.46 4.46 0 00-4 2.45.73.73 0 00-.05.13.46.46 0 01-.44.32h-.4a.31.31 0 00-.31.3V7a.31.31 0 00.31.31h.43a1.91 1.91 0 001.71-1l.06-.12a3.14 3.14 0 01.15-.29A3 3 0 015.2 4.39h10.22a3.23 3.23 0 012.66 1.4v.06c0 .01 0 0-.07 0h-4.8a.73.73 0 00-.73.73V9a.74.74 0 00.22.52.73.73 0 00.52.21H18.44a.16.16 0 01.16.16v2.83a1.32 1.32 0 01-.06.62 1.36 1.36 0 01-1 .31h-.15a2.64 2.64 0 00-2.56-2.84 2.4 2.4 0 00-2.72 2.09V13.46a.11.11 0 010 .09.15.15 0 01-.11 0h-1.8a.31.31 0 00-.31.31v.85a.31.31 0 00.31.31h2.35a.63.63 0 01.23 0l.06.06a2.53 2.53 0 001.82.76 3 3 0 002-.75.64.64 0 01.21-.14h.6a2.88 2.88 0 002.3-.82 2.22 2.22 0 00.42-1.61v-.22-1.64c-.09-1.08-.09-2.1-.09-3.04zm-4.2 5.9a1.27 1.27 0 01-1.36 1 1.07 1.07 0 01-.77-.32 1.1 1.1 0 01-.29-.81v-.3c.07-.43.23-.84 1.28-.84a1.18 1.18 0 011.11 1.24zm2.74-5.39a.16.16 0 01-.16.16h-4.36a.15.15 0 01-.11 0 .16.16 0 010-.11v-.69a.16.16 0 01.16-.16h4.34a.33.33 0 01.17 0v.75z"/><path d="M6.6 10.81a2.4 2.4 0 00-2.73 2.09V13.46a.12.12 0 010 .09.16.16 0 01-.11 0 2 2 0 01-1.07-.19 1.23 1.23 0 01-.47-.54 4.42 4.42 0 01-.09-1.51v-.51-1.03a.27.27 0 01.18-.12c1.33-.34 2.84-.46 3.17 0 1 1.24 3.14.83 4.36.47a.4.4 0 00.28-.37v-.96a.24.24 0 00-.09-.2.24.24 0 00-.22 0C8.52 9 7 9.17 6.64 8.72c-1.2-1.55-4.73-.5-5.42-.27a.73.73 0 00-.5.65v.67c0 .18 0 .59-.05 1.14v.45a5.13 5.13 0 00.21 2.16 2.71 2.71 0 001 1.19 3.14 3.14 0 001.72.42h.73a.29.29 0 01.17 0l.07.07a2.53 2.53 0 001.77.8 2.7 2.7 0 002.81-2.33 2.64 2.64 0 00-2.55-2.86zm1.11 2.7a1.27 1.27 0 01-1.36 1 1.07 1.07 0 01-.77-.32 1.1 1.1 0 01-.29-.81v-.3c.07-.41.23-.84 1.27-.84a1.18 1.18 0 011.14 1.27z"/>
</symbol>
<!-- /icons/subcategories/icon-outdoors.svg -->
<symbol id="icon-outdoors" viewBox="0 0 12.7 16"><path d="M.68 7.08a4.37 4.37 0 001.05-.18 2.78 2.78 0 011.73-.07h.08a9.48 9.48 0 002.35.33 4.36 4.36 0 003.55-1.48 6.46 6.46 0 001-5.08.71.71 0 00-.44-.38 6.28 6.28 0 00-7 2.89l-.2.36a.27.27 0 00.11.37l.71.39A.27.27 0 004 4.11l.2-.36a4.92 4.92 0 014.9-2.33.2.2 0 01.16.17A4.84 4.84 0 018.22 5 3.69 3.69 0 015 5.77l.19-.2A4.53 4.53 0 017 4.08l.39-.13a.27.27 0 00.17-.34l-.26-.77a.27.27 0 00-.3-.18l-.39.13a5.79 5.79 0 00-2.49 1.79 5.34 5.34 0 01-.73.71l-.08.06a.52.52 0 01-.24 0 5.19 5.19 0 00-1.68.22 3.55 3.55 0 01-.72.14h-.4A.27.27 0 000 6v.81a.27.27 0 00.27.27z"/><path d="M12.67 5.55a.27.27 0 00-.15-.14l-.77-.27a.27.27 0 00-.35.16l-.14.38C10 9.2 7.82 10.57 5.87 11.79l-.68.43-.34.22a.27.27 0 00-.08.37l.44.68a.27.27 0 00.37.08l.34-.22.65-.41a22.23 22.23 0 002.35-1.62 3.48 3.48 0 01-1.22 2.44c-.7.54-2.38 1.33-5.82.59a.12.12 0 01-.09-.16C3.25 9 5.85 9.59 7.24 9.88h.2l.4.08a.27.27 0 00.32-.21L8.32 9a.27.27 0 00-.21-.32l-.4-.08h-.17C6 8.24 2 7.39.28 14.61a.68.68 0 00.45.86 14.1 14.1 0 003.71.53 6.58 6.58 0 004.09-1.16 5.29 5.29 0 001.83-4.68V10a.46.46 0 01.11-.22 11.59 11.59 0 002.08-3.68l.14-.38a.27.27 0 00-.02-.17z"/>
</symbol>
<!-- /icons/subcategories/icon-parenting.svg -->
<symbol id="icon-parenting" viewBox="0 0 22.45 16"><path d="M21.82 13.65a4.59 4.59 0 00-2.6-1.24 3.33 3.33 0 00.35-.29 3.47 3.47 0 00.92-1.52 3.75 3.75 0 00-3.54-4.84 3.75 3.75 0 00-3.53 4.84 3.28 3.28 0 00.66 1.08 5.73 5.73 0 00.78.61h-.14a1.88 1.88 0 00-.7.21.33.33 0 00-.16.37l.23.81a.23.23 0 00.13.15.24.24 0 00.2 0 3.69 3.69 0 011.09-.3h.26c.29-.05.58-.1.89-.18l.25-.06a.39.39 0 01.14 0h.12l.79.17c.67.14 2.46.51 2.73.9a2.17 2.17 0 01.38 1.29.27.27 0 00.08.2.26.26 0 00.19.08h.82a.28.28 0 00.28-.27 3.65 3.65 0 00-.62-2.01zm-6.76-5.57a2.3 2.3 0 013.77 0 2.43 2.43 0 01.36 2.1 2.11 2.11 0 01-.56.92 3.38 3.38 0 01-1.35.69.73.73 0 01-.35 0 5.27 5.27 0 01-1.71-.92 1.94 1.94 0 01-.27-.28 1.67 1.67 0 01-.25-.41 2.43 2.43 0 01.36-2.1zM11.22 10.29c-.46-.2-1.37-.49-2.54-.85a5 5 0 001.15-.81 4.7 4.7 0 001.25-2 5.18 5.18 0 00-.76-4.48A5.22 5.22 0 006.31 0a5.22 5.22 0 00-4 2.09 4.44 4.44 0 00-.82 2.84c0 .5-.13.69-.19.72a2.55 2.55 0 01-.92.06A.27.27 0 000 6v.81a.27.27 0 00.26.28 3.44 3.44 0 001.58-.19 1.93 1.93 0 001-2 3.1 3.1 0 01.56-2 3.83 3.83 0 012.9-1.54 3.83 3.83 0 013 1.54 3.79 3.79 0 01.56 3.28 3.33 3.33 0 01-.88 1.46 5.37 5.37 0 01-2.22 1.09.68.68 0 01-.35 0 15 15 0 01-3.25-1.52.38.38 0 00-.4 0l-.63.37a.33.33 0 00-.13.34c.2.5.85.92 2.26 1.47a6.24 6.24 0 00-3.44 1.86c-.92 1.31-.8 3-.73 4.47v.11c0 .1.12.17.28.17h.82a.29.29 0 00.21-.08.18.18 0 00.05-.13v-.14C1.39 14.4 1.28 13 1.93 12s2.37-1.23 3.57-1.54l.36-.09.51-.13a.76.76 0 01.35 0l1.54.49c1 .32 2 .62 2.4.8a1.33 1.33 0 01.62.5 8.71 8.71 0 01.64 3.69.26.26 0 00.07.19.26.26 0 00.19.08H13a.28.28 0 00.28-.27 9.37 9.37 0 00-.89-4.48 2.66 2.66 0 00-1.17-.95z"/>
</symbol>
<!-- /icons/subcategories/icon-personal-growth.svg -->
<symbol id="icon-personal-growth" viewBox="0 0 13.44 16"><path d="M12.91.28a.72.72 0 00-.52-.28 5.25 5.25 0 00-4.88 3 .47.47 0 000 .43l.49.75a.17.17 0 00.32 0 11.76 11.76 0 01.83-1.44 3.27 3.27 0 012.57-1.34.2.2 0 01.19.14 3.51 3.51 0 01-.23 2.55c-.49.76-1.52 1.13-3.05 1.08a1.6 1.6 0 00-.72.08.17.17 0 01-.21-.07c-.47-.87-1.7-2.9-3.39-3.05a2.74 2.74 0 00-2.48 1.41l-.55.93c-.62 1-.73 1.22-1 1.25A.29.29 0 000 6v.84a.28.28 0 00.09.2.26.26 0 00.2.07c1.07-.06 1.39-.61 2.18-1.94L3 4.33c.41-.57.81-.84 1.2-.81C5.05 3.6 6 5 6.24 5.44a.11.11 0 010 .09.11.11 0 01-.07.07 4.42 4.42 0 01-3 .24.32.32 0 00-.39.1l-.48.69a.27.27 0 000 .22.25.25 0 00.11.15 4.29 4.29 0 001.81.48 5.8 5.8 0 001.83-.34 7.85 7.85 0 00-.69 2.36 29.19 29.19 0 00.23 6.23.28.28 0 00.27.24l.83-.12a.28.28 0 00.31-.28 28.22 28.22 0 01-.23-5.85 4.72 4.72 0 011.37-3 .5.5 0 01.31-.13h.09c2.81.09 4-1.05 4.48-2a5.16 5.16 0 00-.11-4.31z"/>
</symbol>
<!-- /icons/subcategories/icon-pregnancy.svg -->
<symbol id="icon-pregnancy" viewBox="0 0 22.45 16"><defs><style>.cls-1{fill:#f36868}</style></defs><g><g><path class="cls-1" d="M21.82 13.65a4.59 4.59 0 00-2.6-1.24 3.33 3.33 0 00.35-.29 3.47 3.47 0 00.92-1.52 3.75 3.75 0 00-3.54-4.84 3.75 3.75 0 00-3.53 4.84 3.28 3.28 0 00.66 1.08 5.73 5.73 0 00.78.61h-.14a1.88 1.88 0 00-.7.21.33.33 0 00-.16.37l.23.81a.23.23 0 00.13.15.24.24 0 00.2 0 3.69 3.69 0 011.09-.3h.26c.29-.05.58-.1.89-.18l.25-.06a.39.39 0 01.14 0h.12l.79.17c.67.14 2.46.51 2.73.9a2.17 2.17 0 01.38 1.29.27.27 0 00.08.2.26.26 0 00.19.08h.82a.28.28 0 00.28-.27 3.65 3.65 0 00-.62-2.01zm-6.76-5.57a2.3 2.3 0 013.77 0 2.43 2.43 0 01.36 2.1 2.11 2.11 0 01-.56.92 3.38 3.38 0 01-1.35.69.73.73 0 01-.35 0 5.27 5.27 0 01-1.71-.92 1.94 1.94 0 01-.27-.28 1.67 1.67 0 01-.25-.41 2.43 2.43 0 01.36-2.1zM11.22 10.29c-.46-.2-1.37-.49-2.54-.85a5 5 0 001.15-.81 4.7 4.7 0 001.25-2 5.18 5.18 0 00-.76-4.48A5.22 5.22 0 006.31 0a5.22 5.22 0 00-4 2.09 4.44 4.44 0 00-.82 2.84c0 .5-.13.69-.19.72a2.55 2.55 0 01-.92.06A.27.27 0 000 6v.81a.27.27 0 00.26.28 3.44 3.44 0 001.58-.19 1.93 1.93 0 001-2 3.1 3.1 0 01.56-2 3.83 3.83 0 012.9-1.54 3.83 3.83 0 013 1.54 3.79 3.79 0 01.56 3.28 3.33 3.33 0 01-.88 1.46 5.37 5.37 0 01-2.22 1.09.68.68 0 01-.35 0 15 15 0 01-3.25-1.52.38.38 0 00-.4 0l-.63.37a.33.33 0 00-.13.34c.2.5.85.92 2.26 1.47a6.24 6.24 0 00-3.44 1.86c-.92 1.31-.8 3-.73 4.47v.11c0 .1.12.17.28.17h.82a.29.29 0 00.21-.08.18.18 0 00.05-.13v-.14C1.39 14.4 1.28 13 1.93 12s2.37-1.23 3.57-1.54l.36-.09.51-.13a.76.76 0 01.35 0l1.54.49c1 .32 2 .62 2.4.8a1.33 1.33 0 01.62.5 8.71 8.71 0 01.64 3.69.26.26 0 00.07.19.26.26 0 00.19.08H13a.28.28 0 00.28-.27 9.37 9.37 0 00-.89-4.48 2.66 2.66 0 00-1.17-.95z"/></g></g>
</symbol>
<!-- /icons/subcategories/icon-prosperity.svg -->
<symbol id="icon-prosperity" viewBox="0 0 13.92 16"><path d="M13.9 6.68l-1.32-4.17a.62.62 0 00-.44-.41L3.79 0a.62.62 0 00-.63.22L.34 4.15a.27.27 0 00.22.43h.89a.27.27 0 00.23-.12l1.26-1.89a.21.21 0 01.39.09l.29 1.84a.21.21 0 01-.11.22l-1 .55a3.83 3.83 0 01-1.85.48H.27A.27.27 0 000 6v.69A.27.27 0 00.27 7h.93a.21.21 0 01.21.15l2.53 8.43a.62.62 0 00.44.42h.16a.62.62 0 00.46-.17l8.79-8.51a.62.62 0 00.11-.64zM9.2 5L8 2.92a.62.62 0 00-.83-.24l-1.8 1a.27.27 0 00-.11.32l.13.72a.27.27 0 00.4.19l1.29-.7a.21.21 0 01.29.08l1.15 2a.21.21 0 010 .23l-2.65 3.61c-.07.09-.13.08-.15 0L4.44 1.76a.21.21 0 01.26-.24L10.65 3a.21.21 0 01.12.33L9.57 5a.21.21 0 01-.37 0zm-4.52 8.76L2.6 6.83a.21.21 0 01.1-.25l.87-.48a.21.21 0 01.32.16L4.76 12a.64.64 0 00.29.46.62.62 0 00.82-.17l5.56-7.71a.3.3 0 01.53.09l.6 1.89a.3.3 0 01-.08.31l-7.3 7.07a.3.3 0 01-.5-.18z"/>
</symbol>
<!-- /icons/subcategories/icon-raising-kids.svg -->
<symbol id="icon-raising-kids" viewBox="0 0 22.45 16"><defs><style>.cls-1{fill:#f36868}</style></defs><g><g><path class="cls-1" d="M21.82 13.65a4.59 4.59 0 00-2.6-1.24 3.33 3.33 0 00.35-.29 3.47 3.47 0 00.92-1.52 3.75 3.75 0 00-3.54-4.84 3.75 3.75 0 00-3.53 4.84 3.28 3.28 0 00.66 1.08 5.73 5.73 0 00.78.61h-.14a1.88 1.88 0 00-.7.21.33.33 0 00-.16.37l.23.81a.23.23 0 00.13.15.24.24 0 00.2 0 3.69 3.69 0 011.09-.3h.26c.29-.05.58-.1.89-.18l.25-.06a.39.39 0 01.14 0h.12l.79.17c.67.14 2.46.51 2.73.9a2.17 2.17 0 01.38 1.29.27.27 0 00.08.2.26.26 0 00.19.08h.82a.28.28 0 00.28-.27 3.65 3.65 0 00-.62-2.01zm-6.76-5.57a2.3 2.3 0 013.77 0 2.43 2.43 0 01.36 2.1 2.11 2.11 0 01-.56.92 3.38 3.38 0 01-1.35.69.73.73 0 01-.35 0 5.27 5.27 0 01-1.71-.92 1.94 1.94 0 01-.27-.28 1.67 1.67 0 01-.25-.41 2.43 2.43 0 01.36-2.1zM11.22 10.29c-.46-.2-1.37-.49-2.54-.85a5 5 0 001.15-.81 4.7 4.7 0 001.25-2 5.18 5.18 0 00-.76-4.48A5.22 5.22 0 006.31 0a5.22 5.22 0 00-4 2.09 4.44 4.44 0 00-.82 2.84c0 .5-.13.69-.19.72a2.55 2.55 0 01-.92.06A.27.27 0 000 6v.81a.27.27 0 00.26.28 3.44 3.44 0 001.58-.19 1.93 1.93 0 001-2 3.1 3.1 0 01.56-2 3.83 3.83 0 012.9-1.54 3.83 3.83 0 013 1.54 3.79 3.79 0 01.56 3.28 3.33 3.33 0 01-.88 1.46 5.37 5.37 0 01-2.22 1.09.68.68 0 01-.35 0 15 15 0 01-3.25-1.52.38.38 0 00-.4 0l-.63.37a.33.33 0 00-.13.34c.2.5.85.92 2.26 1.47a6.24 6.24 0 00-3.44 1.86c-.92 1.31-.8 3-.73 4.47v.11c0 .1.12.17.28.17h.82a.29.29 0 00.21-.08.18.18 0 00.05-.13v-.14C1.39 14.4 1.28 13 1.93 12s2.37-1.23 3.57-1.54l.36-.09.51-.13a.76.76 0 01.35 0l1.54.49c1 .32 2 .62 2.4.8a1.33 1.33 0 01.62.5 8.71 8.71 0 01.64 3.69.26.26 0 00.07.19.26.26 0 00.19.08H13a.28.28 0 00.28-.27 9.37 9.37 0 00-.89-4.48 2.66 2.66 0 00-1.17-.95z"/></g></g>
</symbol>
<!-- /icons/subcategories/icon-recipes.svg -->
<symbol id="icon-recipes" viewBox="0 0 15.05 16"><path d="M14.34 14.72a.25.25 0 01.06.2l-.09.82A.3.3 0 0114 16H2.59a.68.68 0 01-.68-.6l-.8-7.06A.27.27 0 011.35 8l.81-.09a.27.27 0 01.3.24l.72 6.31a.17.17 0 00.16.14h10.81a.25.25 0 01.19.12zM8.63 2h-.82a.27.27 0 00-.27.27v1a.18.18 0 01-.15.17 4.06 4.06 0 00.69 8.07h.35a.2.2 0 00.17-.1.21.21 0 000-.2l-.45-.83a.5.5 0 00-.35-.23 2.7 2.7 0 112.2-.79.08.08 0 01-.07 0 .09.09 0 01-.07-.05L8.29 6.26a.27.27 0 00-.37-.11l-.72.38a.27.27 0 00-.11.37l2 3.85A.68.68 0 0010 11a4.06 4.06 0 00-1-7.5.2.2 0 01-.15-.18v-1A.27.27 0 008.63 2zm-.56-2a7.61 7.61 0 00-5 1.74A5.94 5.94 0 001 5.5a.17.17 0 01-.16.14H.27a.27.27 0 00-.27.28v.82A.27.27 0 00.27 7h1.37a.68.68 0 00.68-.68c0-2.83 2.46-5 5.72-5a5.49 5.49 0 015.61 5.31l-.36 5.55a.15.15 0 01-.15.14H4.43a.25.25 0 00-.25.28l.09.82a.3.3 0 00.29.26H14a.68.68 0 00.68-.64l.32-6.3A6.85 6.85 0 008.07 0z"/>
</symbol>
<!-- /icons/subcategories/icon-recovery.svg -->
<symbol id="icon-recovery" viewBox="0 0 15.84 16"><path d="M15.84 3.62v11.7a.68.68 0 01-.68.68H1.87a.68.68 0 01-.68-.68V7.16A.12.12 0 001.07 7H.26A.26.26 0 010 6.78v-.84a.26.26 0 01.26-.26h12.58a.26.26 0 01.26.26v.84a.26.26 0 01-.26.26H2.67a.12.12 0 00-.12.12v7.32a.12.12 0 00.12.12h11.69a.12.12 0 00.12-.12V4.42a.12.12 0 00-.12-.12H1.21A.26.26 0 011 4v-.8a.26.26 0 01.26-.26h9.53a.12.12 0 00.12-.12V1.48a.12.12 0 00-.12-.12H6.21a.12.12 0 00-.12.12v.39a.26.26 0 01-.26.26H5a.26.26 0 01-.26-.26V.68A.68.68 0 015.41 0h6.13a.68.68 0 01.68.68v2.14a.12.12 0 00.12.12h2.81a.68.68 0 01.69.68zM8.06 13.85h.84a.26.26 0 00.26-.26v-1.92a.12.12 0 01.12-.12h1.93a.26.26 0 00.26-.26v-.84a.26.26 0 00-.26-.26H9.28a.12.12 0 01-.12-.12V8.15a.26.26 0 00-.26-.26h-.84a.26.26 0 00-.26.26v1.93a.12.12 0 01-.12.12H5.76a.26.26 0 00-.26.26v.84a.26.26 0 00.26.26h1.92a.12.12 0 01.12.12v1.92a.26.26 0 00.26.25z"/>
</symbol>
<!-- /icons/subcategories/icon-routines.svg -->
<symbol id="icon-routines" viewBox="0 0 17.14 16"><path d="M15 2.55A7.41 7.41 0 009.57 0C4.94 0 2.29 1.84 1.44 5.58a.17.17 0 01-.14.12H.13c-.06 0-.1 0-.12.12v1.1c0 .09.13.15.21.17a11.48 11.48 0 001.86 0 .71.71 0 00.63-.59c.55-3.48 2.66-5 6.84-5.06A6 6 0 0114 3.5a6.59 6.59 0 01-5.4 11.06 6.24 6.24 0 01-5.52-4.19l.47.31A.3.3 0 004 10.6l.45-.67a.31.31 0 00-.08-.42l-2-1.32a.7.7 0 00-1 .18C1 9 .36 9.79.08 10.14a.34.34 0 000 .43l.53.6a.31.31 0 00.22.1.27.27 0 00.17-.09c.13-.15.33-.4.58-.73A7.6 7.6 0 008.47 16h.71a7.79 7.79 0 005-1.83 8.13 8.13 0 002.92-5.41A8 8 0 0015 2.55z"/><path d="M8.75 8.95h4.17a.31.31 0 00.3-.3v-.81a.31.31 0 00-.3-.3H9.21a.43.43 0 01-.26-.11l-1.85-2a.3.3 0 00-.43 0L6.08 6a.3.3 0 000 .43l2.16 2.29a.71.71 0 00.51.23z"/>
</symbol>
<!-- /icons/subcategories/icon-sex.svg -->
<symbol id="icon-sex" viewBox="0 0 16.75 16"><path d="M16.74 15.28v-.42a5.41 5.41 0 00-.66-2.59c-.59-1-1.87-1.11-2.8-1.17a5.06 5.06 0 01-.78-.1h-.16a4.17 4.17 0 01-1.85-.78 1.82 1.82 0 01-.48-.8 2.1 2.1 0 01.31-1.82A2.13 2.13 0 0112 6.71a2.13 2.13 0 011.63.85 2.1 2.1 0 01.31 1.82 2.09 2.09 0 01-.38.56.24.24 0 00.14.39l1 .17a.24.24 0 00.25-.11 3.72 3.72 0 00.32-.61A3.43 3.43 0 0012 5.35a3.43 3.43 0 00-3.29 4.43 3.18 3.18 0 00.85 1.39l.27.23s.06.06.05.07 0 0-.07 0h-.15a3.77 3.77 0 00-1 .38.26.26 0 00-.12.22v.79a.25.25 0 00.13.23.27.27 0 00.28 0 6.73 6.73 0 012.57-.7h.2l.3-.06h.18a5.85 5.85 0 001 .12c.66 0 1.49.1 1.72.5a4.16 4.16 0 01.48 2v.78a.3.3 0 00.3.29h.76a.3.3 0 00.3-.31zM4.59 10.95l-.49-.12A3.6 3.6 0 012.35 10a1.82 1.82 0 01-.48-.8 2.68 2.68 0 010-1.5.13.13 0 000-.12.12.12 0 00-.11-.05H.61a.13.13 0 00-.12.09 2.82 2.82 0 000 1.94A3.18 3.18 0 001.41 11a4.16 4.16 0 00.38.32 2.82 2.82 0 00-1.26.91C0 13.05 0 15.07 0 15.72a.3.3 0 00.3.28h.75a.3.3 0 00.22-.09.29.29 0 00.08-.22 8.14 8.14 0 01.27-2.61 4.57 4.57 0 012.08-.87h.09a.8.8 0 01.25 0l.24.06a5.93 5.93 0 012.23.81 8 8 0 01.28 2.61.29.29 0 00.08.22.3.3 0 00.22.09h.75a.3.3 0 00.3-.28 7.34 7.34 0 00-.52-3.42c-.5-.73-1.62-1.04-3.03-1.35z"/><path d="M.35 7.11h.47a3.9 3.9 0 001-.21 6.87 6.87 0 011.76-.35 1.81 1.81 0 011.63.85 2.1 2.1 0 01.29 1.83A2.81 2.81 0 015 10a.31.31 0 00-.07.3.31.31 0 00.22.21l.79.2H6a.31.31 0 00.25-.12 5.68 5.68 0 00.35-.51A3 3 0 007 8.51a3.28 3.28 0 00-.13-.85c-.07-.23-.12-.48.05-.58l.78-.41a16.44 16.44 0 001.81-1 6.05 6.05 0 001.91-2.17 2.39 2.39 0 000-2.7A2.16 2.16 0 009.13.08 2.65 2.65 0 008 1a2.57 2.57 0 00-1-.67 1.93 1.93 0 00-1.82.25l-.13.1A2.28 2.28 0 005 3.84a3.65 3.65 0 00.73.76 3.66 3.66 0 00.41.27l.45.26a.23.23 0 00.25 0l.76-.56a.23.23 0 000-.39l-.51-.28A2.85 2.85 0 016 2.84a1.23 1.23 0 01-.21-1 .55.55 0 01.55-.26 1.19 1.19 0 01.72.57 1.28 1.28 0 00.82.61c.46.06.71-.34.9-.66a1.3 1.3 0 01.72-.64.78.78 0 01.71.14.74.74 0 01.26.64C10.38 3.43 9 4.39 8 5a7 7 0 01-1 .53l-.26.11a1.73 1.73 0 01-1 .25 1.54 1.54 0 01-.48-.22l-.2-.11a3.34 3.34 0 00-1.51-.36 8 8 0 00-2.13.4 6 6 0 01-.6.16H.35a.3.3 0 00-.3.3v.76a.3.3 0 00.3.29z"/>
</symbol>
<!-- /icons/subcategories/icon-skin-care.svg -->
<symbol id="icon-skin-care" viewBox="0 0 11.93 16"><path d="M11.81 13.58v-.1l-1-2.13a.27.27 0 00-.36-.13l-.73.35a.27.27 0 00-.13.36l1 2.08a.44.44 0 01-.79.38l-1.42-3a.63.63 0 010-.12 4.63 4.63 0 002.67-2.42 6 6 0 00.18-4.64C10.62 2.87 9.58 1 8.27.35S5.28.22 4 .71h-.11C2.05 1.5 1 2.53.68 3.81a4.6 4.6 0 000 1.8.1.1 0 010 .08.09.09 0 01-.07 0H.26c-.15 0-.23.08-.26.23v.8a.33.33 0 000 .21.26.26 0 00.22.07 4.36 4.36 0 001.47 0 .68.68 0 00.49-.87A3.77 3.77 0 012 4.1c.18-.82 1-1.52 2.42-2.1h.12c1.09-.44 2.23-.88 3.11-.43A6.36 6.36 0 019.84 4.7a4.69 4.69 0 01-.12 3.6A3.29 3.29 0 017.84 10c-1.72.59-3.32-.12-4.77-2.1a.27.27 0 00-.38-.06L2 8.33a.27.27 0 00-.11.18.26.26 0 000 .2c1.39 1.91 3 2.87 4.71 2.87h.2a.24.24 0 01.16.14L8.54 15l.05.09a1.8 1.8 0 001.55.89 1.79 1.79 0 001.68-2.42z"/><path d="M5.47 5.05l1.93.77h.1a.27.27 0 00.25-.17l.3-.75a.27.27 0 00-.15-.35L6 3.8a.27.27 0 00-.35.15l-.3.75a.27.27 0 00.15.35zM4.19 5.82l-.3.75a.27.27 0 00.11.35l3.46 1.37h.1a.27.27 0 00.25-.17l.3-.75A.27.27 0 008 7L4.54 5.67a.27.27 0 00-.35.15z"/>
</symbol>
<!-- /icons/subcategories/icon-social-good.svg -->
<symbol id="icon-social-good" viewBox="0 0 50 50"><g><path class="cls-5" d="M8.92 43.48l-.87-.93a1 1 0 01.08-1.39 13 13 0 014.22-2.71c1.82-.43 5.19 0 10.13.6 2.54.33 6.89 1.15 7.25 1.07s8-6.36 14.09-11.63a7.48 7.48 0 00-.5-.58.88.88 0 00-.6.05 9.8 9.8 0 00-3.58 2.26 13.93 13.93 0 01-1.31 1.08c-.24.18-.52.43-.84.72a9.41 9.41 0 01-6.51 2.92C27 35 22.71 35 22.71 35a1.61 1.61 0 01-1.59-1.83 1.67 1.67 0 011.69-1.37h.67c2.18 0 7.83-.07 8.28-2.13a3.54 3.54 0 00-1.13-.06 31.82 31.82 0 01-10.76-.42c-4.13-.93-6 .6-7.24 1.61l-.36.29a48.83 48.83 0 01-6.43 3.35 1 1 0 01-1.32-.5L4 32.82a1 1 0 01.49-1.3 50.26 50.26 0 005.78-3l.31-.25c1.4-1.14 4.31-3.52 10-2.26a29.05 29.05 0 009.63.38 5.33 5.33 0 013.89.91 2.74 2.74 0 01.9 2.11v.06a11.73 11.73 0 011-.8c.34-.25.69-.56 1.06-.89a13 13 0 014.68-2.9 3.83 3.83 0 013.32.27 6.48 6.48 0 012.26 3.59 1.59 1.59 0 01-.54 1.42C42.51 33.84 32.53 42.37 31 43.05c-1.16.53-3.65-.13-9-.83-3.39-.44-7.6-1-9-.66a13.11 13.11 0 00-2.83 2 1 1 0 01-1.25-.08z"/><path class="cls-5" d="M20.63 24.74c-.47-.18.06-.92.5-1.09a66.89 66.89 0 0011.59-6.22 7.23 7.23 0 002.57-4.32 2.83 2.83 0 000-.88.85.85 0 00-1.14-.64 8.27 8.27 0 00-3.25 2c-1.34 1.37-2.2 1.34-3.5.21a13.63 13.63 0 00-3.58-2.35.85.85 0 00-1 .33 1.48 1.48 0 00-.27 1c.08 1.06 1.93 3.71 4.25 5.57.36.29.41 1 .14 1.2s-.84.53-1.26.82-.85.46-1.23.16C21.23 17.94 19.47 15 19.31 13a5 5 0 011.54-3.91c1-1 2.81-1.73 6.23.48.52.34 1 .69 1.43 1a.84.84 0 001 0c1.49-1.1 3.73-2.43 5.59-2.3a3.21 3.21 0 012.32 1.19 5.24 5.24 0 011 4A10.26 10.26 0 0134.65 20a45.26 45.26 0 01-10.29 5.41 13.36 13.36 0 01-3.73-.67z"/></g>
</symbol>
<!-- /icons/subcategories/icon-spirituality.svg -->
<symbol id="icon-spirituality" viewBox="0 0 9.45 16"><path d="M9.27 7.41c0-.32.08-.63.13-.85a2.17 2.17 0 00.05-.4.66.66 0 00-.72-.6h-.05a24.64 24.64 0 01-3.31.15l-5-.08a.43.43 0 00-.35.17 2.55 2.55 0 000 1 .4.4 0 00.37.2l5 .08C6.15 7 6.93 7 7.68 7a.26.26 0 01.24.13.3.3 0 010 .18v.07a28.73 28.73 0 000 5.16 2.06 2.06 0 01-.58 1.64 3.65 3.65 0 01-2.48.5h-.7a4.09 4.09 0 01-1.91-.27 1.16 1.16 0 01-.3-.22 1.39 1.39 0 01-.25-.38 3 3 0 01-.2-1.4v-.24c0-.65 0-1.34-.06-2v-.25a1.58 1.58 0 01.08-.95.28.28 0 01.32-.14c.27.09.31.46.32.81v.33a5.79 5.79 0 000 .61 3 3 0 00.23 1 2 2 0 00.21.36 1.26 1.26 0 001.12.48 1.49 1.49 0 001.14-.79 3.61 3.61 0 00.33-1.25v-.41c0-.1 0-.46.2-.5a.13.13 0 01.12 0c.11.09.11.36.11.6v.14a3 3 0 00.23 1.15 1.62 1.62 0 001.1.9.41.41 0 00.35-.09.4.4 0 00.14-.33v-.54a.42.42 0 00-.25-.35h-.07a1.27 1.27 0 01-.26-.92v-.31a1.69 1.69 0 00-.78-1.44 1.33 1.33 0 00-1.77.57A3.59 3.59 0 004 10.17c0 .16 0 .32-.05.48a.64.64 0 01-.08.24.22.22 0 01-.14.08.15.15 0 01-.12 0 .55.55 0 01-.13-.31 2.54 2.54 0 010-.35v-.18a7.27 7.27 0 000-.83c-.09-.86-.54-1.8-1.53-1.87a1.51 1.51 0 00-1.19.42 2.28 2.28 0 00-.57 1.7v.13c0 .91.09 1.78.06 2.66a3.59 3.59 0 00.81 2.76 2.48 2.48 0 00.65.49 5.19 5.19 0 002.51.41h1.19a4.25 4.25 0 002.86-.83 3.34 3.34 0 001-2.74 27.51 27.51 0 010-4.92zM3.26 4.31a.36.36 0 00.29 0l.56-.22a.36.36 0 00.21-.44 1.83 1.83 0 010-1.19 3.13 3.13 0 01.32-.58.16.16 0 01.13-.07.15.15 0 01.13.07 3.91 3.91 0 01.32 3 .35.35 0 000 .32.36.36 0 00.29.15h.54a.36.36 0 00.32-.19A4.13 4.13 0 005.64.65l-.1-.11-.12-.13-.1-.1-.11-.13L5.1.09a.68.68 0 00-.9.21L4 .62A6 6 0 003.12 2a3.15 3.15 0 000 2.12.36.36 0 00.14.19z"/>
</symbol>
<!-- /icons/subcategories/icon-star.svg -->
<symbol id="icon-star" viewBox="0 0 15.57 16"><path d="M10.41 4.61a.43.43 0 01-.3-.2L7.89.32a.6.6 0 00-1.08 0l-1.9 4.3a.47.47 0 01-.28.23c-1.84.44-3.74.86-4 .88H.09s-.09.1-.09.21v.8a.21.21 0 00.2.21h.45c.5 0 3.76-.79 4.75-1a.6.6 0 00.41-.34l1.52-3.46c0-.1.13-.11.18 0L9.3 5.44a.6.6 0 00.47.31l3.72.4c.11 0 .14.09.06.17L11 9a.6.6 0 00-.16.51l.65 4c0 .11 0 .15-.14.1l-3.2-1.91a.6.6 0 00-.67 0L4.42 14c-.09.07-.16 0-.15-.08l.34-4.15a.6.6 0 00-.22-.52L2.58 7.82l-.11-.05a1.08 1.08 0 00-.33 0L1.07 8C1 8 .94 8.06 1 8.13l2.22 1.75a.43.43 0 01.14.33l-.42 5.14a.6.6 0 001 .54l3.78-2.76a.33.33 0 01.34 0l4 2.36a.6.6 0 00.91-.61l-.81-5a.46.46 0 01.11-.35l3.22-3.38a.6.6 0 00-.37-1z"/>
</symbol>
<!-- /icons/subcategories/icon-style.svg -->
<symbol id="icon-style" viewBox="0 0 16.49 16"><path d="M3.57 6.5l-.5 5.53a.67.67 0 00.35.68 9.3 9.3 0 004.13.83 22.26 22.26 0 003.33-.19.29.29 0 00.24-.31l-.06-.79a.25.25 0 00-.09-.18.26.26 0 00-.2-.05 24.38 24.38 0 01-3.22.18 9.16 9.16 0 01-3-.46.21.21 0 01-.13-.2l.57-6.31a.67.67 0 00-1-.63l-1.66 1a.82.82 0 01-.34.1H.21A.27.27 0 000 6v.81a.27.27 0 00.27.27h2.17A.67.67 0 002.77 7l.78-.47z"/><path d="M8.3 1.82h-.1c-.64 0-1.75-.94-2.31-1.59A.67.67 0 005 .11C3.72 1 .68 3 .23 3.75v.1s0 .42-.05.74A.41.41 0 00.55 5h.61a.36.36 0 00.36-.35 1.2 1.2 0 01.06-.43 40.82 40.82 0 013.58-2.6.19.19 0 01.23 0 4.57 4.57 0 002.85 1.55 4.64 4.64 0 002.8-1.5.18.18 0 01.22 0l3.56 2.59a.18.18 0 01.06.22 4.71 4.71 0 01-.4.67 1.64 1.64 0 01-.51.44.29.29 0 01-.27 0l-1.27-.88a.67.67 0 00-1.05.6L12 14c0 .08-.13.19-.13.19a17.78 17.78 0 01-3.63.49 17.12 17.12 0 01-4.87-.79A.27.27 0 003 14l-.27.76a.26.26 0 000 .21.26.26 0 00.15.13 18.24 18.24 0 005.37.9 12.33 12.33 0 004.75-.81.68.68 0 00.39-.66l-.53-7.9.5.35A.67.67 0 0014 7a3.36 3.36 0 001.63-1.13 7.05 7.05 0 00.83-1.6.67.67 0 00-.24-.76L11.51.13a.68.68 0 00-.9.1C10.16.75 9 1.82 8.3 1.82z"/>
</symbol>
<!-- /icons/subcategories/icon-travel.svg -->
<symbol id="icon-travel" viewBox="0 0 11.98 16"><path d="M11.3 2.75H9.15A.13.13 0 019 2.62V.67A.67.67 0 008.35 0H4.67A.67.67 0 004 .67v1.19a.27.27 0 00.27.27h.81a.27.27 0 00.27-.27v-.38a.13.13 0 01.13-.13h2.06a.13.13 0 01.13.13v1.14a.13.13 0 01-.13.13H1.61a.67.67 0 00-.67.71 16.61 16.61 0 010 2.13.19.19 0 01-.16.16 2.86 2.86 0 01-.43 0 .29.29 0 00-.35.2v.79a.49.49 0 000 .21.25.25 0 00.17.11 2.12 2.12 0 001.7-.31.67.67 0 00.17-.22 6.55 6.55 0 00.23-2.29.13.13 0 010-.09.13.13 0 01.09 0h8a.13.13 0 01.13.13v8.46a.13.13 0 01-.13.13H2.42a.13.13 0 01-.13-.13V8A.27.27 0 002 7.75h-.79A.27.27 0 00.94 8v5.5a.67.67 0 00.67.67h9.69a.67.67 0 00.7-.67V3.42a.67.67 0 00-.7-.67z"/><rect x="8.35" y="5.4" width="1.35" height="6.35" rx=".27" ry=".27"/><rect x="5.83" y="5.4" width="1.35" height="6.35" rx=".27" ry=".27"/><rect x="3.32" y="5.4" width="1.35" height="6.35" rx=".27" ry=".27"/><path d="M8.11 15.07a1.41 1.41 0 002.65 0 .21.21 0 00-.22-.28H8.33a.21.21 0 00-.22.28zM1.93 15.07a1.41 1.41 0 002.65 0 .21.21 0 00-.22-.28H2.15a.21.21 0 00-.22.28z"/>
</symbol>
<!-- /icons/subcategories/icon-trying.svg -->
<symbol id="icon-trying" viewBox="0 0 22.45 16"><defs><style>.cls-1{fill:#f36868}</style></defs><g><g><path class="cls-1" d="M21.82 13.65a4.59 4.59 0 00-2.6-1.24 3.33 3.33 0 00.35-.29 3.47 3.47 0 00.92-1.52 3.75 3.75 0 00-3.54-4.84 3.75 3.75 0 00-3.53 4.84 3.28 3.28 0 00.66 1.08 5.73 5.73 0 00.78.61h-.14a1.88 1.88 0 00-.7.21.33.33 0 00-.16.37l.23.81a.23.23 0 00.13.15.24.24 0 00.2 0 3.69 3.69 0 011.09-.3h.26c.29-.05.58-.1.89-.18l.25-.06a.39.39 0 01.14 0h.12l.79.17c.67.14 2.46.51 2.73.9a2.17 2.17 0 01.38 1.29.27.27 0 00.08.2.26.26 0 00.19.08h.82a.28.28 0 00.28-.27 3.65 3.65 0 00-.62-2.01zm-6.76-5.57a2.3 2.3 0 013.77 0 2.43 2.43 0 01.36 2.1 2.11 2.11 0 01-.56.92 3.38 3.38 0 01-1.35.69.73.73 0 01-.35 0 5.27 5.27 0 01-1.71-.92 1.94 1.94 0 01-.27-.28 1.67 1.67 0 01-.25-.41 2.43 2.43 0 01.36-2.1zM11.22 10.29c-.46-.2-1.37-.49-2.54-.85a5 5 0 001.15-.81 4.7 4.7 0 001.25-2 5.18 5.18 0 00-.76-4.48A5.22 5.22 0 006.31 0a5.22 5.22 0 00-4 2.09 4.44 4.44 0 00-.82 2.84c0 .5-.13.69-.19.72a2.55 2.55 0 01-.92.06A.27.27 0 000 6v.81a.27.27 0 00.26.28 3.44 3.44 0 001.58-.19 1.93 1.93 0 001-2 3.1 3.1 0 01.56-2 3.83 3.83 0 012.9-1.54 3.83 3.83 0 013 1.54 3.79 3.79 0 01.56 3.28 3.33 3.33 0 01-.88 1.46 5.37 5.37 0 01-2.22 1.09.68.68 0 01-.35 0 15 15 0 01-3.25-1.52.38.38 0 00-.4 0l-.63.37a.33.33 0 00-.13.34c.2.5.85.92 2.26 1.47a6.24 6.24 0 00-3.44 1.86c-.92 1.31-.8 3-.73 4.47v.11c0 .1.12.17.28.17h.82a.29.29 0 00.21-.08.18.18 0 00.05-.13v-.14C1.39 14.4 1.28 13 1.93 12s2.37-1.23 3.57-1.54l.36-.09.51-.13a.76.76 0 01.35 0l1.54.49c1 .32 2 .62 2.4.8a1.33 1.33 0 01.62.5 8.71 8.71 0 01.64 3.69.26.26 0 00.07.19.26.26 0 00.19.08H13a.28.28 0 00.28-.27 9.37 9.37 0 00-.89-4.48 2.66 2.66 0 00-1.17-.95z"/></g></g>
</symbol>
<!-- /icons/subcategories/icon-wellness-trends.svg -->
<symbol id="icon-wellness-trends" viewBox="0 0 15.46 16"><path d="M7.43 2.67A2.53 2.53 0 007.24 1 2.11 2.11 0 004.78.1a2.46 2.46 0 00-1.09.72.2.2 0 01-.28 0A2 2 0 001.16.51a1.69 1.69 0 00-1 1A2.75 2.75 0 00.59 3.7a6.18 6.18 0 001.17 1.25.32.32 0 00.38 0l.49-.31a.33.33 0 000-.51 7.73 7.73 0 01-1-1.09c-.18-.3-.46-.79-.31-1.15.4-1 1.51.06 1.8.53a.63.63 0 00.45.29.62.62 0 00.68-.45 1.45 1.45 0 01.88-1 .87.87 0 01.94.27c.68.93-.58 2.08-1.21 2.59a7.64 7.64 0 01-2.19 1.43 17.5 17.5 0 01-2.36.18.33.33 0 00-.31.32v.59A.32.32 0 00.34 7a16.27 16.27 0 002.73-.25c.58-.23 4.04-2.11 4.36-4.08zM15.41 5.68l-1.52-2.54A.37.37 0 0013.4 3l-2.57 1.29a.37.37 0 00-.17.48l.21.47a.37.37 0 00.49.19l1.11-.56h.09a.76.76 0 010 .23l-1.86 7.19s-.06.05-.08 0c-.07-.35-.44-2.31-.53-2.84L9.51 6.3a.62.62 0 00-1.18-.13L7 9.26a.12.12 0 01-.21 0L5.13 6.78a.37.37 0 00-.51-.1L4.2 7a.37.37 0 00-.1.52l2.46 3.66a.62.62 0 00.81.2.6.6 0 00.19-.16 1.87 1.87 0 00.18-.37L8.47 9a.14.14 0 01.27 0l1.12 6.41c.05.29.13.5.43.51h.39c.29 0 .33-.2.39-.48l2.7-10.03h.06l.5.87a.37.37 0 00.28.18.89.89 0 00.39-.13l.26-.13a.37.37 0 00.15-.52z"/>
</symbol>
<!-- /icons/subcategories/icon-womens-health.svg -->
<symbol id="icon-womens-health" viewBox="0 0 10.6 16"><path d="M9.23 4.76c0 1.54-1.38 2.63-2.59 3.41l-.22.15c-.12.09-.1.31 0 .5l.3.4c.14.19.34.29.44.22l.18-.13C8.77 8.42 10.6 7 10.6 4.76A4.71 4.71 0 005.94 0a4.65 4.65 0 00-3.4 1.44A4.85 4.85 0 001 4.95a.86.86 0 01-.11.57 1.28 1.28 0 01-.69.11H.14a.1.1 0 00-.07 0 .39.39 0 00-.07.26v.78c0 .23 0 .27.09.28a2.17 2.17 0 001.74-.44 1.53 1.53 0 00.53-1.36A4 4 0 013.52 2.4a3.31 3.31 0 015.7 2.36z"/><path d="M8.76 12.15H6.48a.14.14 0 01-.14-.15v-.94a3.14 3.14 0 00-1.78-2.64 6.17 6.17 0 01-1.3-1.09L3 7a.27.27 0 00-.39 0L2 7.5a.27.27 0 000 .39l.26.32a7.37 7.37 0 001.52 1.33c.8.56 1.19.85 1.19 1.52V12a.14.14 0 01-.14.14H2.39a.27.27 0 00-.27.27v.82a.27.27 0 00.27.27h2.44a.14.14 0 01.14.14v2.07a.27.27 0 00.27.27h.82a.27.27 0 00.27-.27v-2.05a.14.14 0 01.14-.14h2.29a.27.27 0 00.24-.28v-.82a.27.27 0 00-.24-.27z"/>
</symbol>
<!-- >>>>>>>>> LOGOS <<<<<<<<< -->
<!-- DEFAULT -->
<symbol id="mbg-logo" viewBox="0 0 177 30">
<path d="M60.46 11.082V.367A.354.354 0 0060.091 0h-1.898a.354.354 0 00-.367.367V21.43c0 .214.153.367.367.367h1.898a.354.354 0 00.367-.367v-.888c0-.214.092-.245.245-.092.98 1.102 2.327 1.684 4.04 1.684 1.685 0 3.093-.613 4.195-1.837 1.102-1.225 1.653-2.725 1.653-4.5 0-1.776-.551-3.245-1.653-4.47-1.102-1.224-2.48-1.836-4.194-1.836s-3.061.55-4.04 1.683c-.123.123-.246.092-.246-.091zm-.123 4.745A3.828 3.828 0 0164.163 12a3.828 3.828 0 013.827 3.827 3.828 3.828 0 01-3.827 3.826 3.828 3.828 0 01-3.826-3.826zm69.765-4.256c.888-1.224 2.51-2.081 4.225-2.081h.122c.061 0 .122.183.122.398v1.898c0 .214-.153.336-.367.336h-.367c-1.715 0-3.123.919-3.766 2.02-.091.185-.183.49-.183.705v6.582a.354.354 0 01-.368.367h-1.898a.354.354 0 01-.367-.367V10.163c0-.214.153-.367.367-.367h1.898c.215 0 .368.153.368.367v1.347c0 .214.092.214.214.061zm11.449-2.081c-1.837 0-3.306.612-4.439 1.806-1.163 1.194-1.714 2.724-1.714 4.5 0 1.898.643 3.398 1.898 4.561 1.286 1.163 2.847 1.776 4.714 1.776 1.684 0 3.061-.337 4.133-.98.184-.092.306-.367.306-.582v-1.5c0-.214-.153-.275-.306-.183a7.45 7.45 0 01-3.551.888c-2.296 0-3.98-1.072-4.439-2.878-.061-.184.092-.367.306-.367h8.45c.213 0 .367-.153.367-.337v-.337c0-2.173-.766-4.163-2.541-5.418-.919-.643-1.96-.95-3.184-.95zm-3.46 4.867c.246-1.47 1.47-2.633 3.307-2.633.98 0 1.745.307 2.296.888.52.52.765 1.133.826 1.776a.21.21 0 01-.214.214h-6.061c-.092-.03-.184-.122-.153-.245zm16.685-4.867c-1.837 0-3.307.612-4.44 1.806-1.163 1.194-1.714 2.724-1.714 4.5 0 1.898.643 3.398 1.898 4.561 1.286 1.163 2.847 1.776 4.715 1.776 1.683 0 3.06-.337 4.132-.98.184-.092.306-.367.306-.582v-1.5c0-.214-.153-.275-.306-.183a7.45 7.45 0 01-3.55.888c-2.297 0-3.98-1.072-4.44-2.878-.06-.184.092-.367.307-.367h8.418c.214 0 .367-.153.367-.337v-.337c0-2.173-.765-4.163-2.54-5.418-.888-.643-1.929-.95-3.153-.95zm-3.43 4.867c.246-1.47 1.47-2.633 3.307-2.633.98 0 1.745.307 2.296.888.52.52.765 1.133.827 1.776a.21.21 0 01-.215.214h-6.03c-.123-.03-.215-.122-.184-.245zM78.185 9.49a6.297 6.297 0 00-6.306 6.306 6.297 6.297 0 006.306 6.306 6.297 6.297 0 006.306-6.306 6.297 6.297 0 00-6.306-6.306zm0 10.071a3.763 3.763 0 01-3.766-3.765 3.763 3.763 0 013.766-3.765 3.763 3.763 0 013.765 3.765 3.763 3.763 0 01-3.765 3.765zm-25.868-8.388c-.98-1.102-2.326-1.683-4.04-1.683-1.684 0-3.092.612-4.194 1.837-1.102 1.224-1.653 2.724-1.653 4.469 0 1.775.55 3.275 1.653 4.5 1.102 1.224 2.48 1.837 4.194 1.837s3.06-.551 4.04-1.684c.123-.153.245-.122.245.092v.888c0 .214.153.367.368.367h1.898a.354.354 0 00.367-.367V.367A.354.354 0 0054.827 0h-1.898a.354.354 0 00-.368.367v10.715c0 .183-.092.214-.245.091zm-3.459 8.48a3.828 3.828 0 01-3.826-3.826A3.828 3.828 0 0148.857 12a3.828 3.828 0 013.827 3.827 3.828 3.828 0 01-3.827 3.826zm46.806-8.48c-.98-1.102-2.326-1.683-4.04-1.683-1.684 0-3.092.612-4.194 1.837-1.102 1.224-1.653 2.724-1.653 4.469 0 1.775.55 3.275 1.653 4.5 1.102 1.224 2.48 1.837 4.193 1.837 1.715 0 3.062-.551 4.041-1.684.123-.153.245-.122.245.092v.888c0 .214.153.367.368.367h1.897a.354.354 0 00.368-.367V.367A.354.354 0 0098.173 0h-1.897a.354.354 0 00-.368.367v10.715c-.03.183-.122.214-.245.091zm-3.459 8.48a3.828 3.828 0 01-3.826-3.826A3.828 3.828 0 0192.204 12a3.828 3.828 0 013.827 3.827c-.031 2.112-1.745 3.826-3.827 3.826zM36.122 9.49c2.847 0 4.44 1.898 4.44 4.99v6.949a.354.354 0 01-.368.367h-1.898a.354.354 0 01-.367-.367l.03-6.368a3.083 3.083 0 00-3.092-3.092 3.083 3.083 0 00-3.091 3.092l-.062 6.368a.354.354 0 01-.367.367h-1.898a.354.354 0 01-.367-.367V10.163c0-.214.153-.367.367-.367h1.898c.214 0 .367.153.367.367v.857c0 .215.123.245.245.092 1.133-1.071 2.51-1.622 4.163-1.622zM23.786 21.429V10.163c0-.214.153-.367.367-.367h1.898c.214 0 .367.153.367.367V21.43a.354.354 0 01-.367.367h-1.898a.354.354 0 01-.367-.367zm2.938-18.674c0 .98-.765 1.684-1.714 1.653-.918-.03-1.653-.857-1.592-1.806.092-.857.766-1.53 1.684-1.53.918 0 1.622.734 1.622 1.683zm-5.57 11.572v7.102a.354.354 0 01-.368.367h-1.898a.354.354 0 01-.368-.367v-6.643a2.744 2.744 0 00-2.755-2.755 2.744 2.744 0 00-2.755 2.755v6.643a.354.354 0 01-.367.367h-1.898a.354.354 0 01-.367-.367v-6.643A2.796 2.796 0 007.592 12a2.796 2.796 0 00-2.786 2.786v6.643a.354.354 0 01-.367.367H2.602a.354.354 0 01-.367-.367v-7.592c0-.796-.368-1.408-1.347-1.408h-.52A.354.354 0 010 12.06v-1.898c0-.214.153-.367.367-.367h1.409c2.326-.061 2.846 1.194 2.908 1.286.122.153.183.153.245.06.887-1.04 2.295-1.591 3.857-1.591 1.714 0 3 .735 3.612 1.806.092.184.245.184.367.03.888-1.101 2.357-1.836 4.133-1.836 2.663 0 4.255 1.684 4.255 4.776zm154.866 5.265v1.898a.354.354 0 01-.367.367h-1.347c-.275 0-.52-.03-.735-.061-2.234-.398-2.418-2.48-2.418-2.97v-3.704a3.083 3.083 0 00-3.092-3.091 3.083 3.083 0 00-3.092 3.091l-.03 6.307a.354.354 0 01-.368.367h-1.898c-.183 0-.306-.123-.367-.276V10.163c0-.214.153-.367.367-.367h1.898c.123 0 .245.061.307.153.03.061.06.122.06.214v.949c.031.123.123.153.246.03 1.132-1.101 2.51-1.652 4.132-1.652 2.847 0 4.44 1.898 4.44 4.99v3.857c.06.612.244.857.826.887h1.071c.214 0 .367.154.367.368zm-63-9.46l-.734 1.715.03-.03-5.51 12.734c-.765 1.714-1.775 3-3.49 3.03h-1.745a.354.354 0 01-.367-.367v-1.806c0-.214.153-.367.367-.367h1.47c1.071 0 1.683-1.898 1.99-2.572.183-.428.398-.887.398-.887l-5.174-11.419c-.092-.183 0-.336.214-.336h2.204a.62.62 0 01.52.336l3.674 7.99 3.337-7.99a.622.622 0 01.52-.336h2.113c.153-.031.245.122.183.306zm7.776-.336c-.061 0-.153-.03-.214-.03a5.482 5.482 0 00-1.745-.276c-3 0-5.45 2.449-5.45 5.449 0 1.316.46 2.54 1.256 3.49.03.03.03.122 0 .153a3.383 3.383 0 00-.796 2.173c0 .643.184 1.225.49 1.714.03.062.03.123-.03.153-.92.766-1.5 1.868-1.5 3.092v.03c0 .338.03 1.47.979 2.511 1.04 1.133 2.755 1.714 5.112 1.714 2.296 0 4.01-.581 5.051-1.683.98-1.072 1.04-2.235 1.04-2.541v-.03c0-2.266-1.928-4.103-4.316-4.103h-3.611a.85.85 0 01-.582-.275c0-.03-.031-.03-.031-.061a.917.917 0 01-.122-.245V21c0-.03-.031-.061-.031-.092v-.184c0-.306.122-.55.337-.734.03-.03.122-.03.183-.03a5.525 5.525 0 002.02.397c3 0 5.45-2.449 5.45-5.449 0-.949-.245-1.837-.674-2.632-.03-.062 0-.092.061-.092h1.041a.354.354 0 00.368-.368v-1.683a.354.354 0 00-.368-.368h-3.918v.03zm1.714 15.949v.214a1.18 1.18 0 01-.337.643c-.55.612-1.714.918-3.244.918-1.531 0-2.694-.306-3.245-.887-.337-.337-.368-.674-.368-.766v-.153c0-.887.827-1.622 1.837-1.622h3.52c1.01 0 1.837.735 1.837 1.653 0-.03 0 0 0 0zm-3.673-7.776c-1.653 0-3-1.347-3-3s1.347-3 3-3 3 1.347 3 3-1.347 3-3 3z"/>
</symbol>
<symbol id="mbg-logo-short" viewBox="0 0 98.35 60">
<path d="M68.76 22.63A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.73v42.14a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.94zm-9.52 16.65a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 10-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 10-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.58 4.37 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.05a7.24 7.24 0 001.95 5C77.82 58.84 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002.05-5.07v-.07a8.41 8.41 0 00-8.6-8.18h-7.27a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51 1.92 1.92 0 010-.19v-.11a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.52-15.47c-.06-.1 0-.19.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.15h7a3.5 3.5 0 013.68 3.27v.16a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31C91.38 54.38 89.07 55 86 55s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.65-3.24zm3.39-12.25a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<!-- CLASSES -->
<symbol id="mbg-classes-mbg" viewBox="0 0 260.78 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-classes" viewBox="0 0 260.78 60">
<path d="M111.22 27.29l.24.12c4.06 2 11.56 3.37 13.85-1.83a3.81 3.81 0 00-1.31-4.65l-.27-.21c-2.43-1.8-6.71-2.14-9.23-1.51a22.69 22.69 0 00-4.19 1.61 2 2 0 01-1.21.24c-1.41-.34-2-.81-4.08-1.25a9.35 9.35 0 00-1.79-.15.79.79 0 00-.68.76v3.41c0 .38.11.49.21.53s2.43.69 2.88.84.42.16.5.22c.28.23-.07.83-.18 1.08a13.74 13.74 0 00-1.14 4.62v.59c0 3.65.93 6.65 3.38 9a12.69 12.69 0 009 3.5 14.93 14.93 0 006.93-1.59 1.24 1.24 0 00.6-1v-3c0-.38-.26-.52-.6-.35a12.87 12.87 0 01-6.13 1.37 8.47 8.47 0 01-6-2.21 7.89 7.89 0 01-1.08-10c.08-.13.23-.17.3-.14zm3.7-3.47a.73.73 0 01.27-.16 8.93 8.93 0 011.45-.39 10.27 10.27 0 014 .24c.62.24.87.62.25 1.21-1.32 1.26-3.65.61-5.71-.3-.37-.16-.45-.42-.25-.6zm28.53 18.26a9.61 9.61 0 006.34 2.11A11.06 11.06 0 00158 41c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.54c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.87-1.76c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.65 5.78 7.15 7.15 0 002.45 5.8zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74 0-2.31 2.06-3.65 5.52-3.65zm81.45-11.56a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16V38c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.37-1.54-8.35-5.1-10.87zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm-51.06.27l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1v-2.5a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.41 1.85c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.36 2.09c6.2 0 10.36-2.91 10.36-7.24q-.05-5.74-8.17-7.57zm23.06 0l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1v-2.5a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.41 1.85c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24q-.06-5.74-8.18-7.57zm48.35 0l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1v-2.5a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.41 1.85c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24q-.06-5.74-8.18-7.57zM138.46 39.57a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.11A1.11 1.11 0 00133.18 0H130a1.11 1.11 0 00-1.11 1.11V38c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1v-2.4a1.12 1.12 0 00-.36-.83z"/>
</symbol>
<symbol id="mbg-classes-underlined" viewBox="0 0 56 19">
<path d="M3.235 9.834l.084.043c1.425.721 4.056 1.215 4.86-.659.255-.6.063-1.301-.46-1.676l-.094-.075c-.853-.649-2.355-.772-3.239-.544-.508.143-1 .337-1.47.58a.686.686 0 01-.425.086c-.495-.122-.702-.292-1.431-.45a3.197 3.197 0 00-.628-.054.282.282 0 00-.239.274v1.228c0 .137.039.177.074.191.035.015.852.249 1.01.303.158.054.148.058.176.08.098.082-.025.298-.064.389a5.06 5.06 0 00-.4 1.664v.213c0 1.315.327 2.396 1.186 3.243a4.389 4.389 0 003.158 1.262 5.125 5.125 0 002.432-.573.449.449 0 00.21-.36v-1.082c0-.137-.09-.187-.21-.126a4.417 4.417 0 01-2.151.494 2.927 2.927 0 01-2.105-.797 2.9 2.9 0 01-.38-3.603c.029-.047.082-.062.106-.05zm1.298-1.25a.255.255 0 01.095-.058 3.12 3.12 0 01.509-.14 3.512 3.512 0 011.403.086c.218.087.306.223.088.436-.463.454-1.28.22-2.003-.108-.13-.058-.158-.151-.088-.216h-.004zm10.011 6.58a3.31 3.31 0 002.224.76 3.826 3.826 0 002.881-1.15c.095-.097.193-.071.242.055.263.656.825.976 1.656.976.292.01.582-.043.853-.155a.442.442 0 00.207-.36v-.915c0-.137-.095-.188-.221-.155-.087.02-.177.03-.267.029-.403 0-.701-.31-.701-.847v-3.168c0-2.075-1.534-3.434-3.825-3.434a5.983 5.983 0 00-2.807.609.449.449 0 00-.21.36v1.15c0 .137.09.187.206.122a4.787 4.787 0 012.411-.634c1.618 0 2.425.807 2.425 2.033v.234c0 .13-.095.18-.214.119a5.36 5.36 0 00-2.432-.544 3.71 3.71 0 00-2.358.742 2.452 2.452 0 00-.93 2.083 2.61 2.61 0 00.86 2.09zm2.88-3.51a4.334 4.334 0 011.994.49.446.446 0 01.214.36v.545a.647.647 0 01-.172.418 3.335 3.335 0 01-2.186.85c-1.053 0-1.786-.45-1.786-1.348 0-.832.723-1.315 1.937-1.315zm28.58-4.166a3.695 3.695 0 00-2.236-.684 4.044 4.044 0 00-3.122 1.308 4.552 4.552 0 00-1.204 3.243 4.32 4.32 0 001.333 3.29 4.69 4.69 0 003.313 1.28 5.458 5.458 0 002.901-.721.505.505 0 00.215-.418v-1.092c0-.155-.11-.199-.215-.134a5.12 5.12 0 01-2.484.667c-1.614 0-2.807-.775-3.119-2.076a.217.217 0 01.04-.19.205.205 0 01.174-.076h5.933a.242.242 0 00.178-.064.255.255 0 00.082-.174v-.242c-.004-1.574-.54-3.009-1.79-3.917zm-.302 3.002h-4.256a.151.151 0 01-.11-.176c.193-1.147 1.192-1.964 2.324-1.9.602-.033 1.19.2 1.614.642.335.342.54.795.579 1.28a.154.154 0 01-.039.108.146.146 0 01-.102.05l-.01-.004zm-17.916.097l-.954-.205-.204-.061a5.482 5.482 0 01-.572-.191c-.256-.13-.516-.31-.516-.653 0-.565.625-.904 1.67-.904.851.01 1.69.212 2.457.591a.38.38 0 00.373-.024c.112-.073.18-.2.181-.336v-.901a.402.402 0 00-.2-.36 5.708 5.708 0 00-2.88-.653c-2.18 0-3.534.966-3.534 2.523 0 1.625 1.12 2.245 2.807 2.677l1.018.256c.266.065.527.15.782.252a.743.743 0 01.495.667c0 .227-.13.973-1.79.973a5.838 5.838 0 01-2.807-.688.38.38 0 00-.389.01.403.403 0 00-.186.35v.9a.402.402 0 00.196.361c1.02.52 2.147.778 3.285.753 2.175 0 3.635-1.048 3.635-2.609-.012-1.379-.968-2.288-2.867-2.728zm8.091 0l-.954-.205-.204-.061a5.482 5.482 0 01-.572-.191c-.256-.13-.515-.31-.515-.653 0-.565.624-.904 1.67-.904.85.01 1.69.212 2.456.591a.38.38 0 00.373-.024c.112-.073.18-.2.181-.336v-.901a.402.402 0 00-.2-.36 5.708 5.708 0 00-2.88-.653c-2.18 0-3.534.966-3.534 2.523 0 1.625 1.12 2.245 2.807 2.677l1.018.256c.266.065.528.15.782.252a.743.743 0 01.495.667c0 .227-.13.973-1.79.973a5.838 5.838 0 01-2.806-.688.38.38 0 00-.39.01.403.403 0 00-.186.35v.9a.402.402 0 00.197.361 6.9 6.9 0 003.287.753c2.176 0 3.635-1.048 3.635-2.609-.014-1.379-.97-2.288-2.87-2.728zm16.965 0l-.954-.205-.204-.061a5.482 5.482 0 01-.572-.191c-.256-.13-.516-.31-.516-.653 0-.565.625-.904 1.67-.904.852.01 1.69.212 2.457.591a.38.38 0 00.373-.024c.112-.073.18-.2.181-.336v-.901a.402.402 0 00-.2-.36 5.708 5.708 0 00-2.88-.653c-2.18 0-3.534.966-3.534 2.523 0 1.625 1.12 2.245 2.807 2.677l1.018.256c.266.065.528.15.782.252a.743.743 0 01.495.667c0 .227-.13.973-1.79.973a5.838 5.838 0 01-2.807-.688.38.38 0 00-.388.01.403.403 0 00-.187.35v.9a.402.402 0 00.196.361 6.91 6.91 0 003.288.753c2.176 0 3.635-1.048 3.635-2.609-.014-1.379-.97-2.288-2.87-2.728zM12.793 14.26a.382.382 0 00-.316-.09 1.6 1.6 0 01-.266.021c-.593 0-.881-.328-.881-1.005V.4a.406.406 0 00-.114-.283A.384.384 0 0010.94 0H9.825a.384.384 0 00-.276.117.406.406 0 00-.114.283v13.294c0 1.87 1.144 2.263 2.105 2.263.38.008.759-.05 1.12-.173a.399.399 0 00.26-.36v-.865a.409.409 0 00-.127-.3z"/><path class="main" d="M0 18h56v1H0z"/>
</symbol>
<symbol id="classes" viewBox="0 0 56 19">
<path d="M3.23508772,9.83423423 L3.31929825,9.87747748 C4.74385965,10.5981982 7.3754386,11.0918919 8.17894737,9.21801802 C8.43418652,8.6183372 8.24180359,7.91699484 7.71929825,7.54234234 L7.6245614,7.46666667 C6.77192982,6.81801802 5.27017544,6.6954955 4.38596491,6.92252252 C3.87843947,7.06553492 3.38597188,7.25987903 2.91578947,7.5027027 C2.78667696,7.57675455 2.63808635,7.60702363 2.49122807,7.58918919 C1.99649123,7.46666667 1.78947368,7.2972973 1.05964912,7.13873874 C0.852466697,7.10006082 0.64213962,7.08195929 0.431578947,7.08468468 C0.297641222,7.10397001 0.19680854,7.21971118 0.192982456,7.35855856 L0.192982456,8.58738739 C0.192982456,8.72432432 0.231578947,8.76396396 0.266666667,8.77837838 C0.301754386,8.79279279 1.11929825,9.02702703 1.27719298,9.08108108 C1.43508772,9.13513514 1.4245614,9.13873874 1.45263158,9.16036036 C1.55087719,9.24324324 1.42807018,9.45945946 1.38947368,9.54954955 C1.16287319,10.0763876 1.02751024,10.6397901 0.989473684,11.2144144 C0.989473684,11.2864865 0.989473684,11.3585586 0.989473684,11.427027 C0.989473684,12.7423423 1.31578947,13.8234234 2.1754386,14.6702703 C3.02510013,15.5016662 4.15999495,15.9549425 5.33333333,15.9315315 C6.17695997,15.9444327 7.0111393,15.7478682 7.76491228,15.3585586 C7.88913937,15.2819389 7.96807195,15.1468291 7.9754386,14.9981982 L7.9754386,13.9171171 C7.9754386,13.7801802 7.88421053,13.7297297 7.76491228,13.790991 C7.09865817,14.1354727 6.35969186,14.3050887 5.61403509,14.2846847 C4.83792132,14.3119015 4.08226338,14.026045 3.50877193,13.4882883 C2.55671333,12.5361722 2.39765584,11.0236134 3.12982456,9.88468468 C3.15789474,9.83783784 3.21052632,9.82342342 3.23508772,9.83423423 Z M4.53333333,8.58378378 C4.5604685,8.55773762 4.59279443,8.53806378 4.62807018,8.52612613 C4.7935184,8.46469315 4.96371052,8.41768016 5.13684211,8.38558559 C5.6056694,8.31948744 6.08258238,8.34887559 6.54035088,8.47207207 C6.75789474,8.55855856 6.84561404,8.6954955 6.62807018,8.90810811 C6.16491228,9.36216216 5.34736842,9.12792793 4.6245614,8.8 C4.49473684,8.74234234 4.46666667,8.64864865 4.53684211,8.58378378 L4.53333333,8.58378378 Z" fill-rule="nonzero"></path>
<path d="M14.5438596,15.163964 C15.1729517,15.6825407 15.9622149,15.9523127 16.7684211,15.9243243 C17.8422105,15.9672955 18.885278,15.5510574 19.6491228,14.7747748 C19.7438596,14.6774775 19.8421053,14.7027027 19.8912281,14.8288288 C20.154386,15.4846847 20.7157895,15.8054054 21.5473684,15.8054054 C21.838963,15.8149865 22.1293137,15.762219 22.4,15.6504505 C22.5238052,15.5739155 22.6016574,15.4383964 22.6070175,15.2900901 L22.6070175,14.3747748 C22.6070175,14.2378378 22.5122807,14.1873874 22.3859649,14.2198198 C22.2985621,14.2406156 22.2090015,14.2502978 22.1192982,14.2486486 C21.7157895,14.2486486 21.4175439,13.9387387 21.4175439,13.4018018 L21.4175439,10.2342342 C21.4175439,8.15855856 19.8842105,6.8 17.5929825,6.8 C16.6235399,6.77168377 15.661427,6.98042327 14.7859649,7.40900901 C14.6617378,7.48562863 14.5828052,7.62073845 14.5754386,7.76936937 L14.5754386,8.91891892 C14.5754386,9.05585586 14.6666667,9.10630631 14.7824561,9.04144144 C15.5192321,8.61998859 16.3496528,8.40149639 17.1929825,8.40720721 C18.8105263,8.40720721 19.6175439,9.21441441 19.6175439,10.4396396 L19.6175439,10.6738739 C19.6175439,10.8036036 19.522807,10.8540541 19.4035088,10.7927928 C18.6443322,10.4223187 17.8123601,10.2361381 16.9719298,10.2486486 C16.1272493,10.2183244 15.2970531,10.4796973 14.6140351,10.990991 C13.9841453,11.4816568 13.6351217,12.2634983 13.6842105,13.0738739 C13.6405815,13.8696233 13.9579769,14.6413159 14.5438596,15.163964 Z M17.4245614,11.6540541 C18.1170634,11.6551175 18.7996697,11.8229758 19.4175439,12.1441441 C19.5435759,12.2194233 19.6240808,12.3549655 19.6315789,12.5045045 L19.6315789,13.0486486 C19.6260996,13.2049221 19.5649144,13.3536834 19.4596491,13.4666667 C18.8523967,14.0076688 18.0775354,14.3091289 17.2736842,14.3171171 C16.2210526,14.3171171 15.4877193,13.8666667 15.4877193,12.9693694 C15.4877193,12.1369369 16.2105263,11.6540541 17.4245614,11.6540541 L17.4245614,11.6540541 Z" fill-rule="nonzero"></path>
<path d="M46.0035088,7.48828829 C45.3478326,7.02282554 44.5652365,6.7830893 43.7684211,6.8036036 C42.5929346,6.75916613 41.4555264,7.23561341 40.645614,8.11171171 C39.8366972,8.98297095 39.4029799,10.1517623 39.4421053,11.354955 C39.3974971,12.5989854 39.8845776,13.8008895 40.7754386,14.645045 C41.6785089,15.4926629 42.864603,15.9507598 44.0877193,15.9243243 C45.1007783,15.9594548 46.1039963,15.7102814 46.9894737,15.2036036 C47.1243172,15.1097209 47.2046171,14.9528924 47.2035088,14.7855856 L47.2035088,13.6936937 C47.2035088,13.5387387 47.0947368,13.4954955 46.9894737,13.5603604 C46.2281818,13.9910698 45.3743986,14.2201924 44.5052632,14.227027 C42.8912281,14.227027 41.6982456,13.4522523 41.3859649,12.1513514 C41.3688483,12.0851115 41.3838706,12.0144593 41.4263153,11.9615774 C41.46876,11.9086954 41.5334222,11.8800686 41.6,11.8846847 L47.5333333,11.8846847 C47.5985007,11.8886188 47.6625122,11.8657474 47.7112302,11.8211218 C47.7599483,11.7764962 47.7893647,11.713788 47.7929825,11.6468468 L47.7929825,11.6468468 L47.7929825,11.4054054 C47.7894737,9.83063063 47.2526316,8.3963964 46.0035088,7.48828829 Z M45.7017544,10.4900901 L41.445614,10.4900901 C41.3692677,10.4704984 41.3213794,10.3927582 41.3368421,10.3135135 C41.5293127,9.16659906 42.5281927,8.34992677 43.6596491,8.41441441 C44.2623149,8.38072618 44.8500739,8.61431029 45.2736842,9.05585586 C45.6091952,9.3976147 45.8145568,9.85139492 45.8526316,10.3351351 C45.8545377,10.3752878 45.8408119,10.4145697 45.8144818,10.4443155 C45.7881517,10.4740614 45.7513809,10.4918271 45.7122807,10.4936937 L45.7122807,10.4936937 L45.7017544,10.4900901 Z" fill-rule="nonzero"></path>
<path d="M27.7859649,10.5873874 L26.8315789,10.381982 L26.6280702,10.3207207 C26.4342259,10.2676509 26.243306,10.2038949 26.0561404,10.1297297 C25.8,10 25.5403509,9.81981982 25.5403509,9.47747748 C25.5403509,8.91171171 26.1649123,8.57297297 27.2105263,8.57297297 C28.0614596,8.58321531 28.8998579,8.78494883 29.6666667,9.16396396 C29.7869795,9.22171888 29.9276546,9.21252982 30.0398735,9.13958564 C30.1520923,9.06664147 30.2203853,8.93999773 30.2210526,8.8036036 L30.2210526,7.9027027 C30.2249729,7.75369284 30.1478905,7.6148057 30.0210526,7.54234234 C29.1310609,7.07512013 28.13913,6.85052582 27.1403509,6.89009009 C24.9614035,6.89009009 23.6070175,7.85585586 23.6070175,9.41261261 C23.6070175,11.0378378 24.7263158,11.6576577 26.4140351,12.0900901 L27.4315789,12.3459459 C27.6979009,12.4108344 27.9593818,12.495132 28.2140351,12.5981982 C28.4964199,12.6952517 28.6925166,12.9594955 28.7087719,13.2648649 C28.7087719,13.4918919 28.5789474,14.2378378 26.9192982,14.2378378 C25.9428755,14.2478345 24.978994,14.0114881 24.1122807,13.5495495 C23.990232,13.4813863 23.8420709,13.4851528 23.7234552,13.5594341 C23.6048396,13.6337155 23.5337311,13.7672636 23.5368421,13.9099099 L23.5368421,14.8108108 C23.532221,14.959055 23.6078491,15.0977552 23.7333333,15.1711712 C24.7529557,15.6904325 25.8797,15.9488237 27.0175439,15.9243243 C29.1929825,15.9243243 30.6526316,14.8756757 30.6526316,13.3153153 C30.6409357,11.9363363 29.6853801,11.027027 27.7859649,10.5873874 Z" fill-rule="nonzero"></path>
<path d="M35.877193,10.5873874 L34.922807,10.381982 L34.7192982,10.3207207 C34.5254539,10.2676509 34.334534,10.2038949 34.1473684,10.1297297 C33.8912281,10 33.6315789,9.81981982 33.6315789,9.47747748 C33.6315789,8.91171171 34.2561404,8.57297297 35.3017544,8.57297297 C36.1526877,8.58321531 36.991086,8.78494883 37.7578947,9.16396396 C37.8782076,9.22171888 38.0188827,9.21252982 38.1311015,9.13958564 C38.2433204,9.06664147 38.3116133,8.93999773 38.3122807,8.8036036 L38.3122807,7.9027027 C38.3162009,7.75369284 38.2391186,7.6148057 38.1122807,7.54234234 C37.222289,7.07512013 36.230358,6.85052582 35.2315789,6.89009009 C33.0526316,6.89009009 31.6982456,7.85585586 31.6982456,9.41261261 C31.6982456,11.0378378 32.8175439,11.6576577 34.5052632,12.0900901 L35.522807,12.3459459 C35.7891289,12.4108344 36.0506099,12.495132 36.3052632,12.5981982 C36.587648,12.6952517 36.7837447,12.9594955 36.8,13.2648649 C36.8,13.4918919 36.6701754,14.2378378 35.0105263,14.2378378 C34.0341036,14.2478345 33.0702221,14.0114881 32.2035088,13.5495495 C32.08146,13.4813863 31.9332989,13.4851528 31.8146833,13.5594341 C31.6960677,13.6337155 31.6249591,13.7672636 31.6280702,13.9099099 L31.6280702,14.8108108 C31.6234491,14.959055 31.6990772,15.0977552 31.8245614,15.1711712 C32.8452407,15.6910005 33.973256,15.9494071 35.1122807,15.9243243 C37.2877193,15.9243243 38.7473684,14.8756757 38.7473684,13.3153153 C38.7333333,11.9363363 37.7766082,11.027027 35.877193,10.5873874 Z" fill-rule="nonzero"></path>
<path d="M52.8421053,10.5873874 L51.8877193,10.381982 L51.6842105,10.3207207 C51.4903662,10.2676509 51.2994463,10.2038949 51.1122807,10.1297297 C50.8561404,10 50.5964912,9.81981982 50.5964912,9.47747748 C50.5964912,8.91171171 51.2210526,8.57297297 52.2666667,8.57297297 C53.1176,8.58321531 53.9559983,8.78494883 54.722807,9.16396396 C54.8431199,9.22171888 54.983795,9.21252982 55.0960138,9.13958564 C55.2082327,9.06664147 55.2765256,8.93999773 55.277193,8.8036036 L55.277193,7.9027027 C55.2811132,7.75369284 55.2040309,7.6148057 55.077193,7.54234234 C54.1872013,7.07512013 53.1952703,6.85052582 52.1964912,6.89009009 C50.0175439,6.89009009 48.6631579,7.85585586 48.6631579,9.41261261 C48.6631579,11.0378378 49.7824561,11.6576577 51.4701754,12.0900901 L52.4877193,12.3459459 C52.7540412,12.4108344 53.0155222,12.495132 53.2701754,12.5981982 C53.5525603,12.6952517 53.748657,12.9594955 53.7649123,13.2648649 C53.7649123,13.4918919 53.6350877,14.2378378 51.9754386,14.2378378 C50.9990159,14.2478345 50.0351344,14.0114881 49.1684211,13.5495495 C49.0463723,13.4813863 48.8982112,13.4851528 48.7795956,13.5594341 C48.66098,13.6337155 48.5898714,13.7672636 48.5929825,13.9099099 L48.5929825,14.8108108 C48.5883613,14.959055 48.6639895,15.0977552 48.7894737,15.1711712 C49.810153,15.6910005 50.9381683,15.9494071 52.077193,15.9243243 C54.2526316,15.9243243 55.7122807,14.8756757 55.7122807,13.3153153 C55.6982456,11.9363363 54.7415205,11.027027 52.8421053,10.5873874 Z" fill-rule="nonzero"></path>
<path d="M12.7929825,14.2594595 C12.7057443,14.18319 12.5902344,14.1502368 12.477193,14.1693694 C12.3890245,14.1840126 12.2998398,14.1912438 12.2105263,14.190991 C11.6175439,14.190991 11.3298246,13.8630631 11.3298246,13.1855856 L11.3298246,0.4 C11.3298246,0.293913404 11.2887908,0.192171839 11.2157504,0.117157288 C11.1427099,0.0421427361 11.0436457,-1.50108527e-15 10.9403509,0 L9.8245614,0 C9.72126656,-1.51407713e-15 9.6222024,0.0421427361 9.54916192,0.117157288 C9.47612144,0.192171839 9.43508772,0.293913404 9.43508772,0.4 L9.43508772,13.6936937 C9.43508772,15.563964 10.5789474,15.9567568 11.5403509,15.9567568 C11.9203412,15.96534 12.2989441,15.9068318 12.6596491,15.7837838 C12.8097657,15.7294391 12.9125776,15.586749 12.9192982,15.4234234 L12.9192982,14.5585586 C12.9200186,14.4450521 12.8741667,14.3364809 12.7929825,14.2594595 Z" fill-rule="nonzero"></path>
</symbol>
<!-- COLLECTIVE -->
<symbol id="mbg-collective-mbg" viewBox="0 0 310 62">
<path d="M85.81 37a6.06 6.06 0 116-6.06 6 6 0 01-6 6.06m-3.4 12.34h7a3.5 3.5 0 013.68 3.29v.12a1.83 1.83 0 010 .28 2.66 2.66 0 01-.67 1.32c-1.09 1.2-3.4 1.86-6.51 1.86s-5.35-.62-6.45-1.76a2.5 2.5 0 01-.74-1.57v-.3a3.5 3.5 0 013.68-3.29m15.18-28.73h-7.89a1.41 1.41 0 01-.41-.07 10.79 10.79 0 00-3.47-.57 11 11 0 00-8.4 18 .26.26 0 010 .33 6.86 6.86 0 00-1.57 4.39 6.63 6.63 0 001 3.45.25.25 0 01-.05.32 8.08 8.08 0 00-3 6.22v.06a7.37 7.37 0 001.95 5.08c2.08 2.29 5.52 3.45 10.21 3.45s8-1.15 10.13-3.41a7.48 7.48 0 002-5.1v-.08a8.43 8.43 0 00-8.6-8.23h-7.21a1.63 1.63 0 01-1.14-.55.44.44 0 01-.08-.11 2.13 2.13 0 01-.25-.5 1.29 1.29 0 010-.19.52.52 0 010-.11 2.11 2.11 0 010-.25 1.93 1.93 0 01.68-1.48.38.38 0 01.37-.05 11 11 0 0013.52-15.53c-.05-.1 0-.19.11-.19h2.1a.74.74 0 00.74-.74v-3.4a.74.74 0 00-.74-.74m-55.27 9.13V44a.74.74 0 01-.73.74h-3.79a.73.73 0 01-.73-.74V30.6a5.5 5.5 0 10-11 0V44a.74.74 0 01-.74.74h-3.77a.73.73 0 01-.73-.74V30.59a5.55 5.55 0 10-11.09 0V44a.74.74 0 01-.73.74H5.21a.73.73 0 01-.73-.74V28.7c0-1.63-.72-2.81-2.67-2.81H.74a.74.74 0 01-.74-.76v-3.81a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.43 5.83 2.58.23.33.36.28.5.11A9.88 9.88 0 0117.61 20c3.4 0 6 1.46 7.22 3.64a.41.41 0 00.75.08A10.57 10.57 0 0133.85 20c5.25 0 8.46 3.38 8.46 9.65m16.9 10.68a7.68 7.68 0 117.63-7.68 7.65 7.65 0 01-7.63 7.68m9.53-16.76a10.73 10.73 0 00-8.36-3.69 10.21 10.21 0 00-8.08 3.37c-.27.3-.47.24-.47-.17V1.57a.74.74 0 00-.74-.74h-3.81a.73.73 0 00-.73.73V44a.74.74 0 00.73.74h3.81a.74.74 0 00.74-.74v-1.83c0-.41.2-.47.47-.17a10.21 10.21 0 008.08 3.37 10.73 10.73 0 008.36-3.69A13.11 13.11 0 0072 32.62a13.07 13.07 0 00-3.27-9"/>
</symbol>
<symbol id="mbg-collective" viewBox="0 0 310 62">
<path d="M178.1 40.67a1.11 1.11 0 00-.91-.25 4.47 4.47 0 01-.75.06c-1.69 0-2.51-.92-2.51-2.81V2a1.12 1.12 0 00-1.11-1.17h-3.13A1.12 1.12 0 00168.58 2v37.12c0 5.22 3.25 6.32 6 6.32a9.3 9.3 0 003.18-.48 1.12 1.12 0 00.74-1.06v-2.37a1.12 1.12 0 00-.39-.86m-13.02 0a1.09 1.09 0 00-.9-.25 4.59 4.59 0 01-.76.06c-1.68 0-2.5-.92-2.5-2.81V2a1.12 1.12 0 00-1.12-1.17h-3.12A1.12 1.12 0 00155.57 2v37.12c0 5.22 3.26 6.32 6 6.32a9.4 9.4 0 003.19-.48 1.13 1.13 0 00.73-1.06v-2.37a1.12 1.12 0 00-.39-.86m32.04-10.53H185a.42.42 0 01-.31-.49 6.37 6.37 0 016.62-5.31 6 6 0 014.59 1.79 5.77 5.77 0 011.66 3.58.42.42 0 01-.43.43m.86-8.39a10.74 10.74 0 00-6.38-1.91 11.63 11.63 0 00-8.88 3.64 12.57 12.57 0 00-3.43 9.07 12 12 0 003.8 9.19 13.49 13.49 0 009.43 3.58 15.84 15.84 0 008.27-2 1.42 1.42 0 00.62-1.18v-3c0-.43-.31-.55-.62-.37a14.82 14.82 0 01-7.1 1.79c-4.6 0-8-2.16-8.89-5.8a.59.59 0 01.62-.74h16.9a.7.7 0 00.74-.68v-.68c0-4.38-1.53-8.39-5.08-10.92m105.25 8.4h-12.13a.41.41 0 01-.3-.49 6.36 6.36 0 016.61-5.31 6.05 6.05 0 014.6 1.79 5.7 5.7 0 011.65 3.58.41.41 0 01-.43.43m.86-8.39a10.71 10.71 0 00-6.37-1.91 11.64 11.64 0 00-8.89 3.64 12.61 12.61 0 00-3.43 9.07 12 12 0 003.8 9.19 13.51 13.51 0 009.44 3.58 15.86 15.86 0 008.27-2 1.43 1.43 0 00.61-1.18v-3c0-.43-.31-.55-.61-.37a14.89 14.89 0 01-7.11 1.79c-4.59 0-8-2.16-8.88-5.8a.59.59 0 01.61-.74h16.91a.69.69 0 00.73-.68v-.68c0-4.38-1.53-8.39-5.08-10.92m-189.26 2.83a.72.72 0 01.26-.16 8.85 8.85 0 011.45-.39 10.26 10.26 0 014 .24c.62.24.88.62.26 1.22-1.32 1.27-3.65.62-5.72-.3-.36-.16-.44-.42-.24-.61m-3.71 3.49l.25.12c4.06 2.05 11.55 3.39 13.84-1.85a3.86 3.86 0 00-1.35-4.67 2.78 2.78 0 00-.27-.21c-2.43-1.81-6.7-2.16-9.22-1.53a22.1 22.1 0 00-4.19 1.63 2 2 0 01-1.22.23c-1.41-.34-2-.81-4.07-1.26a9.87 9.87 0 00-1.8-.15.79.79 0 00-.68.77v3.43c0 .38.11.49.21.53s2.44.69 2.89.84.42.16.49.22c.28.23-.06.83-.18 1.09a13.93 13.93 0 00-1.14 4.65v.6c0 3.67.93 6.69 3.38 9.06a12.62 12.62 0 009 3.52 14.83 14.83 0 006.93-1.6 1.24 1.24 0 00.6-1V39.4c0-.39-.26-.53-.59-.35a12.85 12.85 0 01-6.12 1.44 8.4 8.4 0 01-6-2.22 8 8 0 01-1.09-10.1c.12-.09.23-.14.3-.11m164.14 16.03l10-23a.42.42 0 00-.41-.64h-4.15a1.12 1.12 0 00-.95.64L273 37c-.15.35-.39.35-.54 0l-6.8-15.89a1.14 1.14 0 00-1-.64h-4.34a.42.42 0 00-.4.64l10 23a1.13 1.13 0 001 .63h3.33a1.16 1.16 0 001-.63M251.33 44V21.26a.71.71 0 01.73-.74h3.8a.71.71 0 01.73.74V44a.71.71 0 01-.73.74h-3.8a.71.71 0 01-.73-.74m5.88-37.67a3.26 3.26 0 01-3.43 3.33A3.4 3.4 0 01250.59 6 3.35 3.35 0 01254 2.94a3.27 3.27 0 013.25 3.39M139.86 40.19a7.59 7.59 0 117.53-7.59 7.56 7.56 0 01-7.53 7.59m0-20.3a12.71 12.71 0 1012.62 12.71 12.64 12.64 0 00-12.62-12.71m65.38 12.86a11.79 11.79 0 013.69-8.94 12.83 12.83 0 019.07-3.48 15.25 15.25 0 016.36 1.28 1.42 1.42 0 01.73 1.19v2.84a.49.49 0 01-.74.49 14.09 14.09 0 00-5.59-1.21 8.44 8.44 0 00-5.95 2.22 7.48 7.48 0 00-2.39 5.66 7.58 7.58 0 002.39 5.7 8.48 8.48 0 005.95 2.22 12.84 12.84 0 006-1.38c.41-.21.72 0 .72.42v2.79a1.51 1.51 0 01-.72 1.22 14.88 14.88 0 01-6.76 1.54 12.63 12.63 0 01-9-3.53 12 12 0 01-3.69-9m39.84 11.62a.86.86 0 00.46-.77v-2.81a.88.88 0 00-.36-.71.86.86 0 00-.79-.11 7.36 7.36 0 01-2.45.4c-2.49 0-3.6-1.15-3.6-3.73V25.35h6.53a.87.87 0 00.87-.87v-3.11a.88.88 0 00-.87-.88h-6.53v-5.56a.87.87 0 00-.87-.88H234a.87.87 0 00-.87.88v5.56H229a.88.88 0 00-.87.88v3.11a.87.87 0 00.87.87h4.14v12.82c0 4.53 2.64 7.14 7.24 7.14a10.35 10.35 0 004.81-.91"/>
</symbol>
<!-- REVITALIZE -->
<symbol id="mbg-revitalize-mbg" viewBox="0 0 152 30">
<path d="M35.174 11.32a5.564 5.564 0 00-4.277-1.82 5.308 5.308 0 00-4.138 1.67c-.138.15-.24.12-.24-.085V.37a.375.375 0 00-.374-.37h-1.949a.38.38 0 00-.266.104.363.363 0 00-.113.256v21.076c0 .203.169.369.378.369h1.949a.374.374 0 00.378-.369v-.9c0-.205.103-.235.24-.085a5.312 5.312 0 004.139 1.67 5.565 5.565 0 004.276-1.835 6.37 6.37 0 001.678-4.5 6.342 6.342 0 00-1.681-4.466zm-4.87 8.321c-2.156 0-3.903-1.709-3.903-3.815 0-2.107 1.747-3.815 3.903-3.815s3.903 1.708 3.903 3.815a3.77 3.77 0 01-1.143 2.697 3.952 3.952 0 01-2.76 1.118zm-8.65-5.306v7.101a.369.369 0 01-.373.364h-1.944a.369.369 0 01-.373-.364V14.78c0-1.519-1.26-2.75-2.813-2.75-1.554 0-2.814 1.231-2.814 2.75v6.655a.369.369 0 01-.373.364H11.03a.369.369 0 01-.373-.364v-6.65c0-1.533-1.271-2.775-2.839-2.775s-2.839 1.243-2.839 2.775v6.65a.369.369 0 01-.374.364h-1.94a.369.369 0 01-.373-.364v-7.601c0-.81-.369-1.395-1.366-1.395H.378A.373.373 0 010 12.07v-1.89c0-.205.169-.37.378-.37h1.433c2.384-.05 2.9 1.205 2.987 1.285.118.16.179.14.256.055a5.12 5.12 0 013.959-1.605c1.744 0 3.069.725 3.693 1.81.102.175.256.195.389.035a5.477 5.477 0 014.23-1.845c2.682-.005 4.329 1.675 4.329 4.79zM49.938 9.8h-4.036a.826.826 0 01-.215-.035c-2.367-.78-4.975.071-6.387 2.085s-1.283 4.699.315 6.575c.04.048.04.117 0 .165a3.354 3.354 0 00-.803 2.16 3.19 3.19 0 00.511 1.71.123.123 0 01-.025.16 3.97 3.97 0 00-1.535 3.095v.035c-.007.928.35 1.822.998 2.5C39.81 29.425 41.57 30 43.994 30c2.425 0 4.093-.57 5.182-1.695a3.637 3.637 0 001.023-2.555c-.064-2.314-2.031-4.143-4.399-4.09h-3.699a.849.849 0 01-.588-.27l-.041-.056a.953.953 0 01-.123-.255v-.149a1.18 1.18 0 010-.119.955.955 0 01.348-.74.21.21 0 01.189 0c2.198.847 4.704.25 6.257-1.489s1.82-4.247.664-6.261a.057.057 0 01-.003-.065.06.06 0 01.06-.029h1.074a.375.375 0 00.379-.37V10.17a.376.376 0 00-.379-.37zm-7.761 14.28h3.581c.98-.051 1.819.678 1.882 1.635v.09a.665.665 0 010 .141 1.313 1.313 0 01-.343.654c-.558.596-1.739.926-3.33.926s-2.742-.311-3.305-.875a1.218 1.218 0 01-.378-.78v-.15c.061-.964.908-1.698 1.893-1.641zm1.735-6.13c-1.695 0-3.069-1.343-3.069-3s1.374-3 3.069-3c1.695 0 3.069 1.343 3.069 3s-1.375 3-3.069 3z"/>
</symbol>
<symbol id="mbg-revitalize" viewBox="0 0 152 30">
<path fill="#1262b2" d="M139.107 19.178h-6.225c-.196 0-.246-.099-.099-.246l6.029-7.248a.952.952 0 00.196-.592v-1.084a.336.336 0 00-.344-.345H129.5a.337.337 0 00-.344.345v1.676c0 .197.147.345.344.345h5.441c.195 0 .245.099.098.246l-6.029 7.198c-.146.196-.196.394-.245.591V21.1c0 .197.147.346.343.346h9.951a.337.337 0 00.344-.346v-1.577c.048-.197-.099-.345-.296-.345zM86.265 9.663h-2.01a.539.539 0 00-.49.296l-3.333 7.79c-.049.148-.196.148-.246 0l-3.332-7.74a.542.542 0 00-.491-.296h-2.108a.269.269 0 00-.245.148c0 .049 0 .099.049.148L78.961 21.2a.538.538 0 00.49.295h1.617c.196 0 .393-.147.441-.295l4.902-11.241c.098-.049.049-.197 0-.247s-.098-.049-.146-.049zm4.264 0h-1.863a.336.336 0 00-.342.345V21.1c0 .197.146.346.342.346h1.863a.337.337 0 00.344-.346V10.008a.336.336 0 00-.344-.345zm-.883-8.579c-.882 0-1.568.641-1.666 1.528-.049.937.637 1.726 1.568 1.775h.098c.883 0 1.569-.739 1.569-1.627v-.049c.001-.936-.735-1.627-1.569-1.627zm31.864 18.291c-.146 0-.245.049-.393.049-.833 0-1.225-.443-1.225-1.38V.542a.546.546 0 00-.538-.542h-1.52a.546.546 0 00-.54.542v18.192c0 2.562 1.618 3.105 2.941 3.105.539 0 1.079-.049 1.568-.246.196-.1.343-.247.343-.494v-1.183c0-.147-.098-.296-.195-.395s-.245-.146-.441-.146zm4.755-9.762h-1.862a.337.337 0 00-.344.345V21.05c0 .197.147.346.344.346h1.862a.336.336 0 00.343-.346V10.008c-.001-.197-.147-.395-.343-.395zm-.931-8.578c-.883 0-1.569.641-1.668 1.528-.049.937.638 1.726 1.569 1.775h.099c.882 0 1.568-.74 1.568-1.627v-.049c.049-.887-.686-1.627-1.568-1.627zm24.117 9.219c-.932-.641-2.01-.986-3.138-.937-1.667-.049-3.235.592-4.362 1.775s-1.716 2.81-1.667 4.437a5.867 5.867 0 001.862 4.486 6.488 6.488 0 004.608 1.726c1.421.05 2.794-.296 4.069-.985a.707.707 0 00.293-.592v-1.479c0-.197-.146-.247-.293-.197a7.169 7.169 0 01-3.48.888c-2.256 0-3.922-1.085-4.363-2.859-.049-.148.049-.296.195-.346h8.383a.336.336 0 00.344-.345v-.346c.049-2.021-.686-3.993-2.451-5.226zm-.392 4.092h-5.98c-.098-.049-.195-.148-.146-.247.244-1.578 1.666-2.662 3.234-2.613.834-.049 1.668.296 2.256.887.49.444.734 1.085.833 1.726-.001.149-.1.247-.197.247zm-47.843-4.634h-3.187V6.951a.439.439 0 00-.441-.443h-1.764c-.246 0-.393.197-.393.443v2.761h-2.01c-.246 0-.441.197-.441.395v1.479a.44.44 0 00.441.444h2.01v6.311c0 2.219 1.274 3.5 3.529 3.5a4.91 4.91 0 002.353-.443c.147-.1.245-.197.245-.395v-1.381c0-.246-.195-.443-.441-.395h-.146c-.393.148-.784.197-1.226.197-1.226 0-1.765-.542-1.765-1.824v-5.57h3.186a.44.44 0 00.441-.444v-1.479c.049-.198-.146-.395-.391-.395zm14.216 9.762c-.098.049-.245.049-.393.049-.588 0-.98-.443-.98-1.134V14.05c0-2.859-2.156-4.683-5.343-4.683a8.267 8.267 0 00-3.922.838.543.543 0 00-.294.493v1.577c0 .197.146.247.294.148a6.763 6.763 0 013.333-.887c2.256 0 3.383 1.084 3.383 2.761v.345c0 .197-.146.247-.294.148-1.029-.493-2.206-.74-3.382-.74-1.178-.049-2.354.296-3.285 1.036-.883.641-1.422 1.725-1.323 2.859-.05 1.084.392 2.169 1.226 2.859.883.689 1.961 1.084 3.088 1.035 1.52.049 2.99-.493 4.02-1.578.147-.147.245-.098.344.05.392.888 1.127 1.331 2.304 1.331.392 0 .833-.049 1.177-.197a.544.544 0 00.293-.493V19.72c.048-.246-.1-.296-.246-.246zm-3.873-1.627c0 .197-.098.394-.245.591-.833.74-1.911 1.135-3.039 1.184-1.471 0-2.5-.592-2.5-1.824 0-1.134 1.029-1.774 2.696-1.774.98 0 1.912.247 2.794.69a.54.54 0 01.294.492v.641zm-50.392-8.48h-.098a5.333 5.333 0 00-4.167 2.021c-.098.148-.147.148-.147.099-.539-.937-1.422-1.578-2.451-1.726-.686-.099-1.373-.099-2.01.049-.196.05-.294.198-.294.395v1.627c0 .148.098.345.294.345h.098c.196 0 .392-.049.637-.049.735-.049 1.177.099 1.177.591v8.43c0 .197.147.345.343.345h1.863a.335.335 0 00.343-.345v-6.507c0-.247.049-.493.147-.69a4.155 4.155 0 013.677-1.972h.392c.196 0 .294-.148.294-.345V9.761c.098-.197.049-.394-.098-.394zm10.049.887c-.932-.641-2.01-.986-3.137-.937-1.667-.049-3.235.592-4.363 1.775s-1.716 2.81-1.667 4.437a5.861 5.861 0 001.863 4.486 6.486 6.486 0 004.608 1.726c1.422.05 2.794-.296 4.069-.985a.706.706 0 00.294-.592v-1.479c0-.197-.147-.247-.294-.197a7.166 7.166 0 01-3.48.888c-2.255 0-3.922-1.085-4.363-2.859-.049-.148.049-.296.196-.346h8.383a.335.335 0 00.343-.345v-.346c-.001-2.021-.737-3.993-2.452-5.226zm-.442 4.092h-5.98c-.098-.049-.196-.148-.147-.247.245-1.578 1.667-2.662 3.235-2.613.833-.049 1.667.296 2.255.887.49.444.735 1.085.784 1.726.05.149 0 .247-.147.247z"/>
</symbol>
<symbol id="mbg-revitalize-short" viewBox="0 0 71 31">
<path fill="#222" d="M34.38 12.315A5.381 5.381 0 0030.2 10.5a5.13 5.13 0 00-4.045 1.67c-.135.15-.235.12-.235-.085V1.37a.37.37 0 00-.365-.37H23.65a.367.367 0 00-.37.365v21.07a.37.37 0 00.37.369h1.905a.37.37 0 00.37-.369v-.9c0-.205.1-.235.235-.085a5.133 5.133 0 004.045 1.67 5.383 5.383 0 004.18-1.835 6.458 6.458 0 001.641-4.5 6.449 6.449 0 00-1.646-4.47zm-4.76 8.326a3.816 3.816 0 11.001-7.631 3.816 3.816 0 01-.001 7.631zm-8.455-5.306v7.101a.365.365 0 01-.365.364h-1.9a.364.364 0 01-.365-.364V15.78a2.75 2.75 0 10-5.5 0v6.655a.365.365 0 01-.365.364h-1.89a.365.365 0 01-.365-.364v-6.65a2.775 2.775 0 00-5.55 0v6.65a.365.365 0 01-.365.364H2.605a.364.364 0 01-.365-.364v-7.601c0-.81-.36-1.395-1.335-1.395H.37A.369.369 0 010 13.07v-1.89a.37.37 0 01.37-.37h1.4c2.33-.05 2.835 1.205 2.92 1.285.115.16.175.14.25.055a4.95 4.95 0 013.87-1.605c1.705 0 3 .725 3.61 1.81.1.175.25.195.38.035a5.3 5.3 0 014.135-1.845c2.62-.005 4.23 1.675 4.23 4.79zM48.811 10.8h-3.945a.796.796 0 01-.211-.035 5.454 5.454 0 00-5.933 8.66.131.131 0 010 .165 3.404 3.404 0 00-.791 2.186c.004.605.178 1.197.5 1.709a.125.125 0 01-.025.16 4.01 4.01 0 00-1.5 3.096v.025a3.625 3.625 0 00.976 2.5C38.91 30.42 40.63 31 43 31s4-.57 5.064-1.695a3.686 3.686 0 001.025-2.535v-.035a4.204 4.204 0 00-4.3-4.09h-3.636a.813.813 0 01-.574-.27l-.04-.055a.966.966 0 01-.12-.256.753.753 0 010-.095v-.055a1.2 1.2 0 010-.12.962.962 0 01.34-.74.21.21 0 01.186 0 5.46 5.46 0 006.76-7.735c-.03-.05 0-.095.055-.095h1.051a.37.37 0 00.369-.37V11.17a.37.37 0 00-.369-.37zm-7.586 14.275h3.5a1.75 1.75 0 011.84 1.635v.08a.547.547 0 010 .14 1.326 1.326 0 01-.334.655c-.542.604-1.696.915-3.231.915s-2.68-.311-3.23-.875a1.227 1.227 0 01-.369-.78v-.149a1.747 1.747 0 011.824-1.621zm1.695-6.125a3 3 0 110-6 3 3 0 010 6z"/><path fill="#1262B2" d="M61.979.441c-.33.001-.642.151-.849.408-.106.142-4.209 6.331-5.306 7.927a.41.41 0 00.159.532l1.132.638a.476.476 0 00.619-.16c.725-1.153 2.953-4.664 3.979-6.136a.301.301 0 01.532 0c5.889 7.945 6.525 11.917 6.525 13.283a6.484 6.484 0 01-5.306 6.578.405.405 0 01-.495-.354 64.04 64.04 0 01.159-13.743.55.55 0 00-.371-.567l-1.202-.354a.374.374 0 00-.478.319c-.105.851-.336 2.819-.459 4.504 0 .249-.178.319-.371.16l-.637-.621c-1.309-1.117-5.111-1.951-6.172-2.217a.334.334 0 00-.442.355v1.472a.549.549 0 00.442.514 11.73 11.73 0 016.72 3.264c.197.206.316.477.336.762 0 .869 0 1.773.089 2.66 0 .55.088 1.897.229 3.547a.316.316 0 01-.106.289.314.314 0 01-.301.065 6.415 6.415 0 01-5.305-6.509 6.945 6.945 0 01.318-1.648.46.46 0 00-.301-.55l-1.132-.585a.424.424 0 00-.531.355 11.23 11.23 0 00-.46 2.376 8.348 8.348 0 003.183 6.846 9.708 9.708 0 004.457 1.932.603.603 0 01.495.497c.089.751.242 1.493.46 2.217a.434.434 0 00.223.261c.107.055.23.062.343.023l1.291-.408c.229 0 .407-.16.407-.195a11.335 11.335 0 01-.442-1.88.48.48 0 01.389-.515 9.592 9.592 0 003.979-1.932 8.474 8.474 0 003.183-6.916c0-5.977-7.799-15.676-8.135-16.084a1.075 1.075 0 00-.848-.41"/>
</symbol>
<symbol id="mbg-revitalize--hashtag" viewBox="0 0 535 93">
<g fill="none" fill-rule="evenodd"><g transform="translate(61)"><path d="M106.53 35.108a16.667 16.667 0 00-12.953-5.658 15.892 15.892 0 00-12.533 5.177c-.419.465-.728.372-.728-.263V1.163A1.147 1.147 0 0079.185 0h-5.903a1.13 1.13 0 00-1.147 1.116v65.348c0 .634.514 1.147 1.147 1.147h5.903c.633 0 1.146-.513 1.146-1.147v-2.79c0-.635.31-.728.728-.263a15.892 15.892 0 0012.534 5.177 16.667 16.667 0 0012.952-5.689 20.016 20.016 0 005.082-13.95 19.97 19.97 0 00-5.097-13.841zM91.78 60.9c-6.528 0-11.82-5.295-11.82-11.827s5.292-11.826 11.82-11.826c6.529 0 11.821 5.294 11.821 11.826a11.83 11.83 0 01-3.462 8.363A11.818 11.818 0 0191.78 60.9zM65.582 44.454v22.01c0 .625-.507 1.132-1.131 1.132h-5.888a1.131 1.131 0 01-1.13-1.132v-20.63c0-4.709-3.816-8.525-8.522-8.525s-8.52 3.816-8.52 8.525v20.63c0 .625-.507 1.132-1.132 1.132h-5.856a1.131 1.131 0 01-1.131-1.132V45.849a8.6 8.6 0 00-8.599-8.602c-4.749 0-8.598 3.851-8.598 8.602v20.615c0 .625-.507 1.132-1.131 1.132H8.072a1.131 1.131 0 01-1.131-1.132v-23.56c0-2.51-1.116-4.324-4.137-4.324H1.146A1.147 1.147 0 010 37.433v-5.86c0-.633.513-1.146 1.146-1.146h4.339c7.22-.155 8.784 3.673 9.047 3.983.357.496.543.434.775.17a15.335 15.335 0 0111.992-4.975c5.283 0 9.295 2.248 11.186 5.611.31.543.774.605 1.177.109a16.42 16.42 0 0112.813-5.72c8.118-.015 13.107 5.193 13.107 14.85zm85.66-14.058h-12.224a2.431 2.431 0 01-.65-.109 16.899 16.899 0 00-19.345 6.464 16.917 16.917 0 00.955 20.382.403.403 0 010 .512 10.543 10.543 0 00-2.433 6.696 10.047 10.047 0 001.55 5.3.389.389 0 01-.078.497 12.402 12.402 0 00-4.648 9.594v.109a11.225 11.225 0 003.021 7.75c3.176 3.642 8.506 5.409 15.85 5.409 7.343 0 12.394-1.767 15.694-5.254a11.426 11.426 0 003.098-7.921c-.194-7.176-6.15-12.844-13.324-12.679h-11.2a2.54 2.54 0 01-1.783-.837l-.124-.17a2.992 2.992 0 01-.371-.791v-.465a3.101 3.101 0 010-.372 2.992 2.992 0 011.053-2.294.62.62 0 01.573 0 16.913 16.913 0 0018.951-4.616 16.932 16.932 0 002.011-19.409.186.186 0 01.17-.294h3.254c.633 0 1.147-.514 1.147-1.147v-5.208c0-.634-.514-1.147-1.147-1.147zM127.74 74.664h10.846a5.423 5.423 0 015.701 5.068v.279c.014.144.014.29 0 .434a4.14 4.14 0 01-1.038 2.03c-1.689 1.845-5.268 2.868-10.086 2.868-4.818 0-8.304-.961-10.008-2.712a3.814 3.814 0 01-1.147-2.418v-.465a5.423 5.423 0 015.732-5.084zm5.253-19.003c-5.134 0-9.296-4.164-9.296-9.3 0-5.137 4.162-9.3 9.296-9.3 5.134 0 9.295 4.163 9.295 9.3 0 5.136-4.161 9.3-9.295 9.3z" fill="#FFF" fill-rule="nonzero" class="mbg-character"/><path d="M433.933 60.122h-19.69c-.603 0-.773-.372-.386-.821l19.101-22.754c.42-.55.662-1.215.697-1.907V31.2c0-.6-.485-1.086-1.084-1.086h-28.915c-.598 0-1.084.486-1.084 1.085v5.317c0 .599.486 1.085 1.084 1.085h17.12c.604 0 .774.372.387.821l-19.117 22.615a3.428 3.428 0 00-.696 1.906v3.286c0 .6.485 1.085 1.083 1.085h31.5c.599 0 1.084-.485 1.084-1.085v-5.022c0-.599-.485-1.085-1.084-1.085zm-182.677 6.186l15.32-35.21a.64.64 0 00.003-.695.626.626 0 00-.63-.28h-6.358a1.715 1.715 0 00-1.532.975l-10.204 24.376c-.23.542-.597.542-.827 0L236.61 31.13a1.73 1.73 0 00-1.532-.975h-6.649a.626.626 0 00-.63.28.64.64 0 00.002.695l15.32 35.21c.294.586.883.96 1.532.975h5.102a1.761 1.761 0 001.501-1.006z" fill="#005CD5" fill-rule="nonzero" class="revitalize-character"/><rect fill="#005CD5" fill-rule="nonzero" x="272.882" y="30.114" width="7.974" height="37.2" rx=".74" class="revitalize-character"/><path d="M282.627 8.873a5.208 5.208 0 01-5.102 5.298h-.401a5.444 5.444 0 01-3.75-1.807 5.418 5.418 0 01-1.369-3.923 5.37 5.37 0 015.407-4.898 5.237 5.237 0 013.694 1.54 5.212 5.212 0 011.521 3.694v.096zm96.776 52.07a1.666 1.666 0 00-1.365-.386 6.993 6.993 0 01-1.152.093c-2.564 0-3.808-1.402-3.808-4.297V1.71A1.697 1.697 0 00371.455 0h-4.747c-.93 0-1.684.765-1.684 1.71v56.815c0 7.993 4.945 9.671 9.101 9.671 1.643.037 3.28-.213 4.839-.739a1.707 1.707 0 001.122-1.54v-3.696a1.732 1.732 0 00-.683-1.278z" fill="#005CD5" fill-rule="nonzero" class="revitalize-character"/><rect fill="#005CD5" fill-rule="nonzero" x="386.288" y="30.114" width="7.974" height="37.2" rx=".74" class="revitalize-character"/><path d="M395.067 8.873a5.208 5.208 0 01-5.102 5.298h-.321a5.445 5.445 0 01-3.75-1.807 5.418 5.418 0 01-1.369-3.923 5.37 5.37 0 015.408-4.898 5.238 5.238 0 013.694 1.54 5.211 5.211 0 011.52 3.694s-.064.032-.08.096zm70.962 23.291a16.96 16.96 0 00-9.956-2.923c-5.236-.19-10.303 1.844-13.91 5.585a18.975 18.975 0 00-5.362 13.849c-.198 5.312 1.971 10.444 5.94 14.049a21.402 21.402 0 0014.754 5.462 25.15 25.15 0 0012.926-3.077c.6-.401.958-1.07.953-1.785v-4.647c0-.662-.484-.847-.953-.57a23.591 23.591 0 01-11.066 2.847c-7.19 0-12.504-3.308-13.895-8.863a.897.897 0 01.18-.81.929.929 0 01.774-.329h26.43a1.1 1.1 0 00.792-.271 1.07 1.07 0 00.364-.744v-1.031c-.016-6.74-2.407-12.864-7.971-16.742zm-1.344 12.818h-18.96a.646.646 0 01-.484-.754c.858-4.897 5.307-8.384 10.347-8.11a9.459 9.459 0 017.19 2.74 8.622 8.622 0 012.579 5.462.64.64 0 01-.17.467.66.66 0 01-.455.21l-.047-.015zM314.381 66.814c.443-.234.718-.69.717-1.186v-4.294a1.334 1.334 0 00-.569-1.085 1.369 1.369 0 00-1.223-.178 11.67 11.67 0 01-3.817.616c-3.879 0-5.608-1.755-5.608-5.696V37.69h10.173c.749 0 1.355-.6 1.355-1.34v-4.617c0-.74-.606-1.34-1.355-1.34h-10.173v-8.681a1.33 1.33 0 00-.397-.947 1.364 1.364 0 00-.958-.393h-5.562a1.346 1.346 0 00-1.277 1.34v8.635h-6.388a1.333 1.333 0 00-.956.373 1.3 1.3 0 00-.4.936v4.618c0 .355.144.696.398.947s.599.392.958.392h6.45V57.27c0 6.942 4.113 10.914 11.279 10.914a16.482 16.482 0 007.353-1.37zm9.412-1.874a15.166 15.166 0 009.905 3.246 17.427 17.427 0 0012.841-4.906c.422-.416.86-.308 1.078.23 1.172 2.8 3.671 4.169 7.374 4.169a9.503 9.503 0 003.796-.662 1.87 1.87 0 00.921-1.538v-3.907c0-.584-.421-.8-.984-.661-.389.089-.788.13-1.187.123-1.797 0-3.124-1.323-3.124-3.615V43.9c0-8.86-6.827-14.66-17.029-14.66-4.316-.12-8.6.77-12.497 2.6a1.903 1.903 0 00-.938 1.538v4.907c0 .585.407.8.922.523a22.028 22.028 0 0110.701-2.723c7.202 0 10.795 3.446 10.795 8.676v1c0 .553-.422.769-.953.507a24.722 24.722 0 00-10.826-2.322c-3.76-.13-7.457.986-10.498 3.168-2.844 2.077-4.436 5.425-4.234 8.906a10.922 10.922 0 003.937 8.922zm12.827-14.98c3.083.004 6.122.72 8.873 2.092.561.321.92.9.953 1.538v2.323a2.702 2.702 0 01-.765 1.784 15.212 15.212 0 01-9.733 3.63c-4.686 0-7.951-1.923-7.951-5.753 0-3.553 3.218-5.614 8.623-5.614zm-149.3-20.731h-.245a16.28 16.28 0 00-12.98 6.404c-.369.48-.476.403-.538.28a11.082 11.082 0 00-7.748-5.506 15.99 15.99 0 00-6.322.124c-.66.14-.874.745-.89 1.365v5.086a.983.983 0 00.31.839.96.96 0 00.857.231c.66 0 1.304-.14 1.964-.186 2.24-.109 3.667.264 3.667 1.938V66.26c.012.292.138.567.351.765.213.198.495.302.784.29h5.846c.289-.013.561-.14.757-.356.196-.215.299-.5.286-.792V45.82a5.77 5.77 0 01.568-2.187c2.531-3.954 6.91-6.302 11.57-6.202h1.288c.553-.017.99-.48.982-1.04V30.5c.015-.667-.123-1.271-.506-1.271zm32.43 2.935a16.984 16.984 0 00-9.964-2.923c-5.24-.19-10.311 1.844-13.922 5.585-3.606 3.72-5.54 8.711-5.365 13.849-.2 5.312 1.972 10.444 5.944 14.049 4.026 3.619 9.314 5.575 14.767 5.462a25.19 25.19 0 0012.936-3.077c.601-.401.96-1.07.954-1.785V58.66c0-.661-.485-.846-.954-.569a23.627 23.627 0 01-11.075 2.847c-7.196 0-12.514-3.309-13.906-8.863a.897.897 0 01.18-.81.93.93 0 01.774-.33h26.42c.291.018.576-.08.794-.27a1.07 1.07 0 00.364-.745v-1.03c.016-6.725-2.378-12.849-7.946-16.727zm-1.345 12.818h-18.974a.646.646 0 01-.485-.754c.859-4.91 5.33-8.4 10.386-8.11a9.471 9.471 0 017.196 2.74 8.619 8.619 0 012.581 5.462.64.64 0 01-.17.467.662.662 0 01-.455.21l-.079-.015z" fill="#005CD5" fill-rule="nonzero" class="revitalize-character"/></g><text class="hashtag-character" font-family="Maax" font-size="80" letter-spacing="-.667" fill="#FFF" transform="translate(-6)"><tspan x="0" y="75">#</tspan></text></g>
</symbol>
<!-- REVITALIZE HERO -->
<symbol id="revitalize" viewBox="0 0 203.9 44.3">
<path d="M177.7 38.9H165c-.4 0-.5-.2-.2-.5l12.3-14.7c.3-.4.4-.8.4-1.2v-2.2c0-.4-.3-.7-.7-.7h-18.7c-.4 0-.7.3-.7.7v3.4c0 .4.3.7.7.7h11.1c.4 0 .5.2.2.5l-12.3 14.6c-.3.4-.4.8-.5 1.2v2.1c0 .4.3.7.7.7h20.3c.4 0 .7-.3.7-.7v-3.2c.1-.4-.2-.7-.6-.7zM69.9 19.6h-4.1c-.4 0-.8.2-1 .6L58 36c-.1.3-.4.3-.5 0l-6.8-15.7c-.2-.4-.6-.6-1-.6h-4.3c-.2 0-.4.1-.5.3 0 .1 0 .2.1.3L55 43c.2.4.6.6 1 .6h3.3c.4 0 .8-.3.9-.6l10-22.8c.2-.1.1-.4 0-.5-.1-.1-.2-.1-.3-.1zm8.7 0h-3.8c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.3c0-.4-.3-.7-.7-.7zM76.8 2.2c-1.8 0-3.2 1.3-3.4 3.1-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3v-.1c0-1.9-1.5-3.3-3.2-3.3zm65 37.1c-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.1c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1V38c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1v-2.4c0-.3-.2-.6-.4-.8-.2-.2-.5-.3-.9-.3zm9.7-19.8h-3.8c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.3c0-.4-.3-.8-.7-.8zm-1.9-17.4c-1.8 0-3.2 1.3-3.4 3.1-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3v-.1c.1-1.8-1.4-3.3-3.2-3.3zm49.2 18.7c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c.1-4.1-1.4-8.1-5-10.6zm-.8 8.3h-12.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.7 3.5 0 .3-.2.5-.4.5zm-97.6-9.4h-6.5v-5.6c0-.5-.4-.9-.9-.9h-3.6c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1v12.8c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.3-.2 4.8-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.8h-.3c-.8.3-1.6.4-2.5.4-2.5 0-3.6-1.1-3.6-3.7V24.4h6.5c.5 0 .9-.4.9-.9v-3c.1-.4-.3-.8-.8-.8zm29 19.8c-.2.1-.5.1-.8.1-1.2 0-2-.9-2-2.3v-8.8c0-5.8-4.4-9.5-10.9-9.5-2.8-.1-5.5.5-8 1.7-.4.2-.6.6-.6 1v3.2c0 .4.3.5.6.3 2.1-1.2 4.5-1.8 6.8-1.8 4.6 0 6.9 2.2 6.9 5.6v.7c0 .4-.3.5-.6.3-2.1-1-4.5-1.5-6.9-1.5-2.4-.1-4.8.6-6.7 2.1-1.8 1.3-2.9 3.5-2.7 5.8-.1 2.2.8 4.4 2.5 5.8 1.8 1.4 4 2.2 6.3 2.1 3.1.1 6.1-1 8.2-3.2.3-.3.5-.2.7.1.8 1.8 2.3 2.7 4.7 2.7.8 0 1.7-.1 2.4-.4.4-.2.6-.6.6-1V40c.1-.5-.2-.6-.5-.5zm-7.9-3.3c0 .4-.2.8-.5 1.2-1.7 1.5-3.9 2.3-6.2 2.4-3 0-5.1-1.2-5.1-3.7 0-2.3 2.1-3.6 5.5-3.6 2 0 3.9.5 5.7 1.4.4.2.6.6.6 1v1.3zM18.7 19h-.2c-3.3 0-6.4 1.5-8.5 4.1-.2.3-.3.3-.3.2-1.1-1.9-2.9-3.2-5-3.5-1.4-.2-2.8-.2-4.1.1-.4.1-.6.4-.6.8V24c0 .3.2.7.6.7h.2c.4 0 .8-.1 1.3-.1 1.5-.1 2.4.2 2.4 1.2v17.1c0 .4.3.7.7.7H9c.4 0 .7-.3.7-.7V29.7c0-.5.1-1 .3-1.4 1.6-2.6 4.5-4.1 7.5-4h.8c.4 0 .6-.3.6-.7v-3.8c.2-.4.1-.8-.2-.8zm20.5 1.8c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c0-4.1-1.5-8.1-5-10.6zm-.9 8.3H26.1c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.6 3.5.1.3 0 .5-.3.5z"/>
</symbol>
<!-- PRACTICES -->
<symbol id="mbg-practices-mbg" viewBox="0 0 302.12 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-practices" viewBox="0 0 302.12 60">
<path d="M178.94 31.46a11.93 11.93 0 013.77-9.06 13.15 13.15 0 019.29-3.52 15.63 15.63 0 016.5 1.29 1.44 1.44 0 01.75 1.21v2.88a.5.5 0 01-.76.49 14.54 14.54 0 00-5.7-1.22 8.64 8.64 0 00-6.07 2.25 7.55 7.55 0 00-2.45 5.73 7.65 7.65 0 002.45 5.78 8.64 8.64 0 006.07 2.25 13.16 13.16 0 006.12-1.4c.41-.21.73 0 .73.43v2.83a1.51 1.51 0 01-.74 1.23 15.26 15.26 0 01-6.95 1.56 13 13 0 01-9.2-3.57 12.14 12.14 0 01-3.81-9.16zm54.13.01a11.93 11.93 0 013.77-9.06 13.15 13.15 0 019.25-3.53 15.63 15.63 0 016.5 1.29 1.44 1.44 0 01.75 1.21v2.88a.5.5 0 01-.76.49 14.54 14.54 0 00-5.7-1.22 8.64 8.64 0 00-6.07 2.25 7.55 7.55 0 00-2.45 5.73 7.65 7.65 0 002.45 5.78 8.64 8.64 0 006.07 2.25 13.16 13.16 0 006.12-1.4c.41-.21.73 0 .73.43v2.83a1.51 1.51 0 01-.74 1.23A15.26 15.26 0 01246 44.2a13 13 0 01-9.2-3.57 12.14 12.14 0 01-3.73-9.16zm-100.52.14a13 13 0 00-3.31-9 10.83 10.83 0 00-8.4-3.68 10.32 10.32 0 00-8 3.32.69.69 0 01-.53 0h-.08c-.15-.14-1.06-2.1-4.46-2.49h-.22a10.92 10.92 0 00-1.28 0h-3a.74.74 0 00-.74.74v3.35a.74.74 0 00.74.74h1.1c1.84 0 2.58 1.49 2.65 3V57a.71.71 0 00.74.74h3.8a.71.71 0 00.74-.74V41.12c0-.37.25-.43.49-.18a10.11 10.11 0 008.09 3.37 10.74 10.74 0 008.4-3.68 12.82 12.82 0 003.31-8.95v-.06zm-12.87 7.66a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.67zm174.24-9.83l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1V22a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24-.06-3.8-2.77-6.33-8.2-7.54zM219 43.29a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.49V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.86.87v5.6h-4.1a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.1v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zm-64.56-1.21a9.61 9.61 0 006.34 2.11A11.06 11.06 0 00169 41c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.87-1.76c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.53 5.82zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74-.01-2.31 2.06-3.66 5.52-3.66zm111.73-11.57a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.18v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.38-1.54-8.36-5.1-10.88zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.7 3.55.42.42 0 01-.4.44zm-131.84-5.96a10.65 10.65 0 018.46-4.14h.16c.25 0 .34.37.34.8v3.8a.66.66 0 01-.64.67h-.84a8.76 8.76 0 00-7.54 4 3.69 3.69 0 00-.37 1.41v13.17a.71.71 0 01-.68.74h-3.81a.71.71 0 01-.74-.68V20.33a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v2.74c-.05.44.14.44.38.13z"/><rect class="main" x="224.27" y="19.6" width="5.27" height="24" rx=".74" ry=".74"/>
<path d="M230.19 5.51A3.25 3.25 0 01227 8.82h-.25a3.39 3.39 0 01-3.19-3.58 3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27s.01.02.01.06z"/>
</symbol>
<!-- PRACTICES HERO -->
<symbol id="practices" viewBox="0 0 161 45">
<path d="M77.464 28.929a11.52 11.52 0 01-4.901 1.125c-1.768.08-3.536-.563-4.902-1.768a6.381 6.381 0 01-2.01-4.661c0-1.768.644-3.455 2.01-4.58 1.366-1.206 3.053-1.849 4.901-1.768 1.608 0 3.134.321 4.58.964.081.08.162.08.242.08.241 0 .402-.24.321-.482v-2.33c0-.402-.24-.804-.642-.964-1.688-.724-3.456-1.045-5.224-1.045-2.732-.08-5.384.964-7.393 2.813-2.008 1.848-3.133 4.5-3.053 7.312-.08 2.813 1.044 5.464 3.053 7.393 2.01 1.928 4.661 2.893 7.393 2.893 1.929 0 3.857-.402 5.625-1.286.322-.241.563-.563.563-.964v-2.25c0-.482-.241-.643-.563-.482z"/><path class="main" d="M120.938 28.929c-1.527.803-3.215 1.125-4.902 1.125-1.768.08-3.536-.563-4.902-1.768-1.286-1.206-2.009-2.893-1.929-4.661 0-1.768.643-3.455 1.929-4.58 1.366-1.206 3.053-1.849 4.902-1.768 1.607 0 3.134.321 4.58.964.08.08.16.08.241.08.241 0 .402-.24.322-.482v-2.33c0-.402-.242-.804-.643-.964-1.607-.724-3.456-1.045-5.224-1.045-2.732-.08-5.383.964-7.392 2.813-2.01 1.848-3.134 4.5-3.054 7.312-.08 2.732 1.045 5.464 3.054 7.313 2.009 1.928 4.66 2.892 7.392 2.892 1.93 0 3.858-.401 5.545-1.285.322-.241.563-.563.563-.965v-2.25c.08-.401-.161-.562-.483-.401zM14.705 13.5c-2.41-.08-4.74.884-6.428 2.652-.16.08-.322.08-.402 0h-.08c-.161-.08-.884-1.688-3.616-2.01H.563c-.242 0-.483.162-.563.483v2.652a.55.55 0 00.563.562h.883c1.447 0 2.09 1.206 2.09 2.411v23.786a.55.55 0 00.562.562h3.134a.55.55 0 00.563-.562V31.339c0-.321.16-.321.401-.16 1.608 1.848 4.018 2.812 6.51 2.732 2.57.08 5.062-1.045 6.75-2.974 1.767-2.008 2.732-4.58 2.651-7.232v-.08c.08-2.652-.884-5.223-2.652-7.232-1.687-1.848-4.178-2.973-6.75-2.893zm-.884 16.313c-3.375 0-6.187-2.733-6.187-6.188 0-3.375 2.732-6.188 6.187-6.188 3.375 0 6.188 2.733 6.188 6.188-.08 3.455-2.813 6.188-6.188 6.188zm139.983-7.875l-2.17-.483-.482-.16c-.482-.08-.884-.241-1.286-.402-.562-.322-1.205-.723-1.205-1.447 0-1.285 1.446-2.009 3.857-2.009 1.928 0 3.857.483 5.625 1.286.482.241.964 0 1.205-.402.08-.08.08-.24.08-.401v-2.01a.884.884 0 00-.482-.803c-2.008-1.044-4.339-1.527-6.589-1.446-4.982 0-8.116 2.17-8.116 5.625 0 3.616 2.571 4.982 6.429 5.946l2.33.563c.643.16 1.205.321 1.768.562.643.241 1.125.804 1.125 1.447 0 .482-.322 2.17-4.098 2.17-2.25 0-4.42-.483-6.429-1.528-.402-.24-.964-.08-1.205.322-.08.16-.08.321-.08.482v2.09c0 .32.16.642.482.803 2.33 1.125 4.901 1.768 7.553 1.687 4.982 0 8.357-2.33 8.357-5.785-.08-3.134-2.25-5.143-6.67-6.108zm-60.349-7.875h-5.223v-4.5a.72.72 0 00-.723-.724h-2.893c-.402 0-.643.322-.643.723v4.5H80.68c-.402 0-.724.322-.724.643v2.411a.72.72 0 00.724.723h3.294v10.286c0 3.616 2.09 5.705 5.786 5.705 1.286.08 2.652-.24 3.857-.723.241-.16.402-.321.402-.643v-2.25a.72.72 0 00-.723-.723h-.241c-.643.241-1.286.322-2.01.322-2.008 0-2.892-.884-2.892-2.974v-9h5.223a.72.72 0 00.723-.723v-2.41c.08-.322-.24-.643-.643-.643zm-33.75 15.91c-.16.08-.401.08-.642.08-.965 0-1.608-.723-1.608-1.928v-7.071c0-4.661-3.535-7.634-8.759-7.634-2.25-.08-4.42.401-6.428 1.366a.884.884 0 00-.482.803v2.572c0 .321.24.401.482.24a11.123 11.123 0 015.464-1.446c3.697 0 5.545 1.768 5.545 4.5v.563c0 .321-.241.402-.482.24a13.251 13.251 0 00-5.545-1.204c-1.929-.08-3.857.482-5.384 1.687-1.446 1.045-2.33 2.813-2.17 4.66-.08 1.769.643 3.537 2.01 4.662 1.446 1.124 3.214 1.767 5.062 1.687 2.49.08 4.821-.804 6.59-2.491.24-.241.4-.16.562.08.642 1.447 1.928 2.17 3.776 2.17.643 0 1.367-.08 1.929-.322a.884.884 0 00.482-.803v-2.09c.08-.24-.08-.401-.402-.32zm-6.348-2.571c0 .321-.16.643-.402.964-1.366 1.205-3.134 1.848-4.982 1.929-2.41 0-4.098-.965-4.098-2.974 0-1.848 1.688-2.892 4.42-2.892 1.607 0 3.134.401 4.58 1.125.321.16.482.482.482.803v1.045zm84.777-12.456c-1.527-1.044-3.295-1.607-5.143-1.526-2.732-.08-5.304.964-7.152 2.893-1.848 1.928-2.812 4.58-2.732 7.232-.08 2.812 1.045 5.464 3.054 7.312 2.089 1.848 4.821 2.893 7.553 2.813 2.33.08 4.58-.483 6.67-1.608.321-.24.482-.562.482-.964v-2.41c0-.322-.241-.483-.482-.322a11.804 11.804 0 01-5.705 1.447c-3.697 0-6.429-1.768-7.152-4.661-.08-.241.08-.482.321-.563h13.741a.55.55 0 00.563-.562v-.563c.08-3.294-1.206-6.428-4.018-8.518zm-.723 6.75h-9.804c-.16-.08-.321-.24-.24-.401.4-2.572 2.731-4.34 5.303-4.26 1.366-.08 2.732.483 3.696 1.447.804.723 1.205 1.768 1.286 2.813.16.24 0 .401-.241.401zM38.41 13.58h-.16c-2.652 0-5.143 1.206-6.83 3.295-.161.241-.322.241-.322-.08v-2.17a.55.55 0 00-.562-.563h-3.134a.55.55 0 00-.563.563v18.16a.55.55 0 00.563.563h3.053a.55.55 0 00.563-.562V22.098c0-.402.16-.803.321-1.125 1.286-2.09 3.616-3.294 6.027-3.214h.643c.321 0 .482-.241.482-.563v-3.053c.16-.322.08-.563-.08-.563zm63.081.483h-3.053a.55.55 0 00-.563.562v18.08a.55.55 0 00.563.563h3.053a.55.55 0 00.563-.563v-18.08a.55.55 0 00-.563-.563zM99.964 0c-1.446 0-2.571 1.045-2.732 2.491-.08 1.527 1.045 2.813 2.572 2.893h.16c1.447 0 2.572-1.205 2.572-2.652v-.08C102.616 1.205 101.41 0 99.964 0z"/>
</symbol>
<!-- TRAINING -->
<symbol id="mbg-training-mbg" viewBox="0 0 290.61 60">
<path class="mbg" d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-training" viewBox="0 0 290.61 60">
<path d="M193.17 19c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.75a6.19 6.19 0 00-12.38 0l-.12 12.75a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V20.34a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V22c0 .43.25.49.49.18a11.66 11.66 0 018.34-3.18z"/><rect class="main" x="168.87" y="19.6" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M174.79 5.51a3.25 3.25 0 01-3.18 3.31h-.25a3.39 3.39 0 01-3.19-3.58 3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27v.06zM231.71 19c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.75a6.19 6.19 0 00-12.38 0l-.12 12.75a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V20.34a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V22c0 .43.25.49.49.18a11.66 11.66 0 018.34-3.18z"/><rect class="main" x="206.91" y="19.6" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M212.83 5.51a3.25 3.25 0 01-3.18 3.31h-.25a3.39 3.39 0 01-3.19-3.58 3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27v.06zm69.58 23.93l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1V22a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24-.06-3.8-2.77-6.33-8.2-7.54zM119.52 43.29a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zm10.27-20.15a10.65 10.65 0 018.46-4.14h.16c.25 0 .34.37.34.8v3.8a.66.66 0 01-.64.67h-.84a8.76 8.76 0 00-7.54 4 3.69 3.69 0 00-.37 1.41v13.17a.71.71 0 01-.68.74h-3.81a.71.71 0 01-.74-.68V20.33a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v2.74c-.05.44.14.44.38.13zm12.15 18.94a9.61 9.61 0 006.34 2.11A11.06 11.06 0 00156.5 41c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.55 5.83zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74 0-2.31 2.07-3.66 5.52-3.66zM266.76 19.6h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33A6.8 6.8 0 00245 41.5a6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5c2.1 2.35 5.5 3.5 10.24 3.5s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18h-7.24a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.73-.74zm-15.17 28.56h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zM255 35.9a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="training" viewBox="0 0 64 20">
<path d="M30.775 6.054c1.924 0 3 1.293 3 3.402v4.728a.243.243 0 01-.229.251h-1.303a.239.239 0 01-.25-.23v-.021l.02-4.337a2.097 2.097 0 00-2.089-2.106c-1.154 0-2.09.943-2.09 2.106l-.04 4.337a.243.243 0 01-.23.251h-1.302a.239.239 0 01-.25-.23V6.51a.243.243 0 01.23-.251h1.302a.239.239 0 01.25.23v.586c0 .146.084.166.165.061a3.92 3.92 0 012.816-1.082z"/><rect class="main" x="22.572" y="6.259" width="1.779" height="8.163" rx=".74"/><path class="main" d="M24.57 1.466a1.102 1.102 0 01-1.073 1.126h-.084a1.141 1.141 0 01-.79-.384 1.159 1.159 0 01-.287-.834 1.134 1.134 0 011.137-1.04c.292 0 .572.118.778.327.205.208.32.49.32.785v.02zm19.214 4.588c1.924 0 3 1.293 3 3.402v4.728a.243.243 0 01-.229.251h-1.303a.239.239 0 01-.25-.23v-.021l.02-4.337a2.097 2.097 0 00-2.089-2.106c-1.154 0-2.09.943-2.09 2.106l-.04 4.337a.243.243 0 01-.23.251h-1.302a.239.239 0 01-.25-.23V6.51a.243.243 0 01.23-.251h1.303a.239.239 0 01.25.23v.586c0 .146.084.166.165.061a3.92 3.92 0 012.815-1.082z"/><rect class="main" x="35.413" y="6.259" width="1.779" height="8.163" rx=".74"/><path class="main" d="M37.411 1.466a1.102 1.102 0 01-1.073 1.126h-.085a1.141 1.141 0 01-.789-.384 1.159 1.159 0 01-.288-.834 1.134 1.134 0 011.138-1.04c.292 0 .571.118.777.327.206.208.32.49.32.785v.02zm23.487 8.139l-.918-.193-.196-.058c-.187-.05-.37-.11-.55-.18-.247-.123-.496-.293-.496-.616 0-.534.6-.854 1.606-.854.819.01 1.625.2 2.363.558a.372.372 0 00.36-.023.378.378 0 00.174-.317v-.847a.378.378 0 00-.193-.34 5.578 5.578 0 00-2.771-.616c-2.096 0-3.4.912-3.4 2.381 0 1.534 1.077 2.119 2.701 2.527l.979.242c.256.061.508.14.753.238a.7.7 0 01.482.615c0 .215-.124.919-1.721.919a5.703 5.703 0 01-2.7-.65.372.372 0 00-.375.01.378.378 0 00-.18.33v.85a.38.38 0 00.19.34 6.754 6.754 0 003.163.712c2.093 0 3.497-.99 3.497-2.463-.02-1.292-.935-2.153-2.768-2.565zM5.914 14.316a.296.296 0 00.155-.262v-.949a.297.297 0 00-.123-.24.292.292 0 00-.265-.038 2.484 2.484 0 01-.827.136c-.84 0-1.215-.388-1.215-1.259V7.881h2.204a.295.295 0 00.294-.296v-1.02a.295.295 0 00-.294-.296H3.639V4.354a.295.295 0 00-.294-.296H2.14a.295.295 0 00-.277.296v1.905H.466a.286.286 0 00-.294.289v1.02c0 .163.132.296.294.296h1.397v4.343c0 1.534.891 2.412 2.444 2.412a3.51 3.51 0 001.607-.303zM9.38 7.463a3.585 3.585 0 012.856-1.409h.054c.085 0 .115.126.115.273v1.292a.224.224 0 01-.216.228h-.284a2.951 2.951 0 00-2.545 1.36 1.27 1.27 0 00-.125.48v4.48a.243.243 0 01-.23.251H7.72a.239.239 0 01-.25-.23V6.506a.243.243 0 01.23-.252h1.303a.239.239 0 01.25.231v.932c-.018.15.047.15.128.045zm4.102 6.442a3.22 3.22 0 002.14.717 3.718 3.718 0 002.775-1.085c.09-.091.185-.068.233.051.253.62.793.922 1.593.922.28.01.56-.04.82-.146.12-.072.194-.2.2-.34v-.868c0-.129-.092-.176-.213-.146-.085.02-.17.029-.257.027-.388 0-.675-.292-.675-.799V9.252c0-1.96-1.475-3.242-3.68-3.242a5.85 5.85 0 00-2.7.575.422.422 0 00-.202.34V8.01c0 .13.087.177.199.116a4.674 4.674 0 012.312-.602c1.556 0 2.332.762 2.332 1.918v.221c0 .123-.09.17-.205.113a5.239 5.239 0 00-2.34-.514 3.616 3.616 0 00-2.268.7 2.296 2.296 0 00-.925 1.96 2.44 2.44 0 00.86 1.983zm2.771-3.313c.666 0 1.323.16 1.917.462a.419.419 0 01.206.34v.514a.604.604 0 01-.165.395c-.584.51-1.33.795-2.103.802-1.013 0-1.718-.425-1.718-1.272 0-.785.699-1.245 1.863-1.245v.004zm39.362-4.333h-2.663a.526.526 0 01-.142-.024 3.668 3.668 0 00-4.215 1.418 3.733 3.733 0 00.208 4.473.089.089 0 010 .112 2.33 2.33 0 00-.533 1.47c.002.411.12.814.338 1.163a.085.085 0 01-.017.109 2.729 2.729 0 00-1.013 2.105v.024c-.005.63.23 1.24.658 1.7.71.8 1.857 1.191 3.457 1.191 1.6 0 2.7-.388 3.42-1.153.438-.47.68-1.093.674-1.738a2.848 2.848 0 00-2.903-2.782h-2.443a.552.552 0 01-.389-.184l-.027-.038a.659.659 0 01-.08-.173v-.102a.685.685 0 010-.082.652.652 0 01.229-.503.138.138 0 01.125 0 3.67 3.67 0 004.129-1.013 3.737 3.737 0 00.438-4.26.041.041 0 01-.003-.044.04.04 0 01.04-.02h.709a.25.25 0 00.25-.252V6.51a.25.25 0 00-.247-.251zm-5.12 9.714h2.362a1.185 1.185 0 011.243 1.112v.061a.483.483 0 010 .095.91.91 0 01-.227.446c-.368.405-1.147.63-2.197.63s-1.81-.212-2.18-.596a.84.84 0 01-.25-.53v-.103a1.185 1.185 0 011.249-1.115zm1.15-4.17a2.033 2.033 0 01-2.025-2.041c0-1.127.907-2.04 2.026-2.04 1.118 0 2.025.913 2.025 2.04s-.907 2.04-2.025 2.04zM0 17h47v1H0zm57 0h7v1h-7z"/>
</symbol>
<!-- PODCAST -->
<symbol id="mbg-podcast" viewBox="0 0 282.55 60">
<path d="M191.21 31.47A11.94 11.94 0 01195 22.4a13.16 13.16 0 019.26-3.53 15.64 15.64 0 016.5 1.3 1.44 1.44 0 01.75 1.21v2.88a.5.5 0 01-.76.49 14.55 14.55 0 00-5.7-1.22 8.65 8.65 0 00-6.05 2.25 7.55 7.55 0 00-2.45 5.73A7.66 7.66 0 00199 37.3a8.65 8.65 0 006 2.25 13.17 13.17 0 006.13-1.4c.41-.21.73 0 .73.43v2.83a1.51 1.51 0 01-.74 1.23 15.27 15.27 0 01-7 1.56 13 13 0 01-9.12-3.57 12.15 12.15 0 01-3.79-9.16zM217 42.08a9.61 9.61 0 006.34 2.11 11.06 11.06 0 008.17-3.19c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.6 5.83zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74-.05-2.31 2.02-3.66 5.47-3.66zm56.68 10.95a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zM132.55 31.61a13 13 0 00-3.31-9 10.83 10.83 0 00-8.4-3.68 10.32 10.32 0 00-8 3.32.69.69 0 01-.53 0h-.08c-.15-.14-1.06-2.1-4.46-2.49h-.22a10.92 10.92 0 00-1.28 0h-3a.74.74 0 00-.74.74v3.35a.74.74 0 00.74.74h1.1c1.84 0 2.58 1.49 2.65 3V57a.71.71 0 00.74.74h3.8a.71.71 0 00.74-.74V41.12c0-.37.25-.43.49-.18a10.11 10.11 0 008.09 3.37 10.74 10.74 0 008.4-3.68 12.82 12.82 0 003.31-8.95v-.06zm-12.87 7.66a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.67zm27.91-20.32a12.62 12.62 0 1012.63 12.62 12.62 12.62 0 00-12.63-12.62zm0 20.16a7.54 7.54 0 117.54-7.54 7.53 7.53 0 01-7.52 7.54zm107.19-9.67l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1V22a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71A16.42 16.42 0 01256 35a2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24-.06-3.77-2.77-6.3-8.2-7.51zM183.58 0a.71.71 0 00-.74.68v21.46c0 .37-.18.43-.49.18a10.31 10.31 0 00-8.1-3.32 10.83 10.83 0 00-8.4 3.68 12.93 12.93 0 00-3.31 9 13 13 0 003.31 9 10.74 10.74 0 008.4 3.68 10.11 10.11 0 008.09-3.37c.25-.31.49-.25.49.18v1.78a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V.83a.71.71 0 00-.69-.73zm-8.21 39.31a7.66 7.66 0 117.63-7.65 7.66 7.66 0 01-7.66 7.66z"/>
</symbol>
<symbol id="mbg-podcast-mbg" viewBox="0 0 282.55 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<!-- CURATED -->
<symbol id="curated" viewBox="0 0 270.65 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.8-6.51 1.8s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.23zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/><path class="main" d="M111.22 27.28l.24.12c4.06 2 11.56 3.37 13.85-1.83a3.81 3.81 0 00-1.31-4.65l-.27-.21c-2.43-1.8-6.71-2.14-9.23-1.51a22.69 22.69 0 00-4.19 1.61 2 2 0 01-1.21.24c-1.41-.34-2-.81-4.08-1.25a9.35 9.35 0 00-1.79-.15.79.79 0 00-.68.76v3.41c0 .38.11.49.21.53s2.43.69 2.88.84.42.16.5.22c.28.23-.07.83-.18 1.08a13.74 13.74 0 00-1.14 4.62v.59c0 3.65.93 6.65 3.38 9a12.69 12.69 0 009 3.5 14.93 14.93 0 006.93-1.59 1.24 1.24 0 00.6-1v-3c0-.38-.26-.52-.6-.35a12.87 12.87 0 01-6.13 1.37 8.47 8.47 0 01-6-2.21 7.89 7.89 0 01-1.08-10 .28.28 0 01.3-.14zm3.7-3.47a.73.73 0 01.27-.16 8.93 8.93 0 011.45-.39 10.27 10.27 0 014 .24c.62.24.87.62.25 1.21-1.32 1.26-3.65.61-5.71-.3-.37-.16-.45-.41-.25-.6zm100.55 19.48a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.83v3a.87.87 0 00.87.87h4.14v12.79c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zM266.11 0a.71.71 0 00-.74.68v21.46c0 .37-.18.43-.49.18a10.31 10.31 0 00-8.1-3.32 10.83 10.83 0 00-8.4 3.68 12.93 12.93 0 00-3.31 9 13 13 0 003.31 9 10.74 10.74 0 008.4 3.68 10.11 10.11 0 008.09-3.36c.25-.31.49-.25.49.18V43a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V.83a.71.71 0 00-.58-.82h-4zm-8.21 39.32a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.66zm-82.22 2.76a9.61 9.61 0 006.32 2.11 11.06 11.06 0 008.24-3.19c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.55 5.83zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74 0-2.31 2.06-3.66 5.52-3.66zm53.64-11.57a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2A1.39 1.39 0 00241 41v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.45-.71h17a.7.7 0 00.74-.66v-.67c.01-4.41-1.52-8.39-5.08-10.91zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm-99.22 15.14c-5.7 0-8.89-3.8-8.89-10v-13.9a.71.71 0 01.68-.74h3.84a.72.72 0 01.75.68v12.8a6.19 6.19 0 0012.38 0l.12-12.74a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v22.58a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-1.75c0-.43-.25-.49-.49-.18a11.66 11.66 0 01-8.39 3.25zm24.92-21.1a10.65 10.65 0 018.46-4.14h.17c.25 0 .34.37.34.8v3.8a.66.66 0 01-.64.67h-.84a8.76 8.76 0 00-7.54 4 3.69 3.69 0 00-.37 1.41v13.17a.71.71 0 01-.68.74h-3.81a.71.71 0 01-.74-.68V20.33a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V23c-.06.45.13.45.37.14z"/>
</symbol>
<!-- SHOP -->
<symbol id="shop-logo" viewBox="0 0 40 21">
<path d="M35.459 6.816l.24.006c1.032.052 1.913.439 2.63 1.161l.161.173.165.194c.634.79.975 1.728 1.024 2.813l.006.275-.006.274c-.049 1.083-.39 2.004-1.024 2.792l-.165.194-.162.172c-.714.723-1.579 1.11-2.625 1.161l-.244.006-.245-.005c-1.043-.047-1.887-.396-2.531-1.063l-.146-.16-.037-.031c-.062-.041-.118-.025-.135.048l-.005.05v5.82l-.006.064a.25.25 0 01-.196.197l-.063.007h-1.372l-.064-.007a.25.25 0 01-.195-.197l-.007-.064V7.33l.007-.064a.25.25 0 01.195-.197l.064-.007h1.372l.063.007a.25.25 0 01.196.197l.006.064v.648l.004.058c.016.101.078.104.173.008.709-.804 1.682-1.228 2.922-1.228zm-11.05.01l.214.006c2.345.111 4.224 2.01 4.33 4.376l.006.216-.005.217c-.109 2.365-1.99 4.264-4.335 4.375l-.214.005-.214-.004c-2.346-.108-4.23-2.006-4.34-4.373l-.006-.216.005-.217c.107-2.367 1.988-4.268 4.334-4.38l.214-.004h.011zM5.275 6.763l.227.005c.763.034 1.59.236 2.149.652l.049.038.047.04.096.083c.401.366.628.787.391 1.427l-.068.165c-.791 1.694-3.357 1.25-4.807.561l.033.068a.616.616 0 00.09.12l.11.096c.078.059.166.108.254.152l.145.054.147.05.147.047.15.042.104.031.105.031.982.208.287.07c.838.22 1.478.537 1.92.95l.14.141c.4.435.604.965.614 1.589l-.007.18c-.052.71-.419 1.304-1.024 1.73l-.17.112c-.643.393-1.514.616-2.54.616l-.351-.001a7.2 7.2 0 01-1.386-.173l-.339-.085a7.26 7.26 0 01-1.308-.502l-.06-.043a.402.402 0 01-.09-.111l-.03-.066a.413.413 0 01-.022-.145v-.91l.003-.053.009-.052.015-.05.022-.048.046-.067a.397.397 0 01.193-.127l.075-.015a.393.393 0 01.23.047l.27.133c.364.169.743.3 1.132.394l.292.063c.392.074.793.11 1.194.106l.206-.004c.724-.028 1.13-.203 1.355-.402l.083-.082a.75.75 0 00.198-.496l-.017-.112a.753.753 0 00-.142-.297l-.073-.08a.752.752 0 00-.284-.17l-.198-.075-.2-.067-.203-.06-.205-.053-.523-.13-.524-.129-.284-.074c-.742-.206-1.363-.457-1.811-.827l-.122-.107c-.43-.406-.672-.945-.672-1.698l.007-.168a2.6 2.6 0 01.045-.322l-.26-.098-.054-.014C.818 8.8.098 8.748.076 8.74l-.022-.01C.024 8.707 0 8.659 0 8.549v-1.24l.009-.068a.285.285 0 01.237-.21l.085-.003c.17.001.455.035.563.058l.213.048c.593.145.8.296 1.259.408l.085.01a.838.838 0 00.353-.096l.113-.057c.333-.162.902-.407 1.401-.532.274-.068.604-.105.957-.105zM11.77 0l.059.01c.09.025.159.098.18.189l.007.07v7.765l.005.06c.016.084.07.1.133.046l.038-.04.177-.162a4.191 4.191 0 012.592-1.02l.24-.002.202.005c1.864.085 2.929 1.352 3.007 3.414l.004.224v5.075l-.01.06a.258.258 0 01-.187.18l-.07.007h-1.394l-.059-.009a.258.258 0 01-.18-.19l-.006-.07.021-4.645-.005-.155a2.245 2.245 0 00-2.07-2.094l-.16-.006-.153.005a2.245 2.245 0 00-2.076 2.088l-.006.162-.043 4.645v.022l-.01.06a.258.258 0 01-.187.18l-.07.007h-1.395l-.058-.009a.258.258 0 01-.18-.19l-.007-.07V.247a.258.258 0 01.19-.238L10.364 0h1.405zm23.27 8.625l-.17.005a2.782 2.782 0 00-2.597 2.786A2.782 2.782 0 0034.87 14.2l.168.005.169-.005a2.78 2.78 0 002.592-2.608l.005-.177-.005-.17c-.087-1.462-1.29-2.621-2.76-2.621zm-10.64.052l-.167.005a2.737 2.737 0 00-2.556 2.742c0 1.46 1.13 2.656 2.556 2.742l.166.005h.007l.166-.005a2.732 2.732 0 002.544-2.568l.006-.174-.005-.167c-.086-1.44-1.27-2.58-2.718-2.58zM6.403 8.394c-.408-.1-1.05-.088-1.3-.043l-.179.037a3.274 3.274 0 00-.345.103l-.055.026-.042.031-.027.037c-.031.062.008.135.118.184.448.2.93.365 1.348.365l.136-.006a.935.935 0 00.579-.25l.058-.062c.146-.18.053-.301-.15-.379z"/>
</symbol>
<!-- SUPPLEMENTS -->
<symbol id="supplements" viewBox="0 0 591.29 116.38">
<path d="M26.19 88.75c-7.19 0-14.48-1.63-19.09-4.22a2.47 2.47 0 01-1.15-2v-5.1a2.25 2.25 0 012.21-2.3c2 0 8.05 4.22 17.55 4.22 6.82 0 10-1.63 10-4.51 0-2.69-2.4-3.94-7.58-5.28-16.62-4.41-21.7-8.44-21.7-15.25a12.37 12.37 0 011.05-5.09c-3.55-1-6.23-1.53-6.71-1.73A1.27 1.27 0 010 46.25v-5.38a1.56 1.56 0 011.44-1.53c4.12 0 6.91.86 12.09 2.88 4.8-3.36 8.35-4.32 15.06-4.32 7.49 0 15.93 3.26 15.93 9.79 0 6-5.57 9-12.57 9a30.21 30.21 0 01-15.64-4.41c.67 5 9.88 6.72 14.3 7.87 11.89 3.26 16.6 7.67 16.6 15.35 0 8.84-8.45 13.25-21.02 13.25zm-4.31-41.83a20.7 20.7 0 009 2.49c2.87 0 4.6-.38 4.6-1.72 0-1.54-3.26-2.12-6-2.12a21 21 0 00-7.6 1.35zM55.84 68.6V40.68a1.36 1.36 0 011.44-1.44H65a1.36 1.36 0 011.44 1.44v20.44c0 13.43 5.47 17.56 12.28 17.56A12.46 12.46 0 0091.15 66.2l.19-25.52a1.44 1.44 0 011.53-1.44h7.58a1.36 1.36 0 011.44 1.44v45.19a1.35 1.35 0 01-1.44 1.44h-7.58a1.43 1.43 0 01-1.53-1.44v-3.36c0-.86-.39-1-1-.38-4.41 4.41-8.83 6.62-15.45 6.62-11.38 0-19.05-7.75-19.05-20.15zM123.29 81.65v33c0 1-.39 1.72-1.44 1.72H115a1.44 1.44 0 01-1.63-1.53V40.78a1.34 1.34 0 011.54-1.44h6.62c1.25 0 1.73.48 1.73 1.73v6.14a19.53 19.53 0 0116.34-9.31c13.62 0 24.4 11.51 24.4 26.1 0 13-8.83 24.75-24.47 24.75a21.31 21.31 0 01-16.24-7.1zM124.53 64a14.68 14.68 0 1029.36 0c0-8.16-6.62-16.22-14.68-16.22S124.53 55.84 124.53 64zM182.48 81.65v33c0 1-.38 1.72-1.44 1.72h-6.81a1.43 1.43 0 01-1.63-1.53V40.78a1.34 1.34 0 011.53-1.44h6.62c1.25 0 1.73.48 1.73 1.73v6.14a19.53 19.53 0 0116.31-9.31c13.63 0 24.37 11.51 24.37 26.1 0 13-8.83 24.75-24.46 24.75a21.34 21.34 0 01-16.22-7.1zM183.73 64a14.68 14.68 0 1029.36 0c0-8.16-6.62-16.22-14.68-16.22S183.73 55.84 183.73 64zM251.65 81v4.7c0 2.3-3.55 3.07-7.86 3.07-5.47 0-12-2.21-12-12.57v-74A2.17 2.17 0 01234 0h6.24a2.17 2.17 0 012.2 2.21v72.15c0 3.07 1.63 4.7 3.55 4.7 1.44 0 2.4-.29 3.27-.29a2.27 2.27 0 012.39 2.23zM305.67 63.42c0 2.11-1.05 2.78-2.78 2.78H269c1.05 7.87 7.77 13 17.85 13 8.53 0 13.43-3.74 14.87-3.74.38 0 .57.29.57.86v6a3.07 3.07 0 01-1.15 2.4c-4.32 2.59-9.88 3.93-16.69 3.93-14.78 0-26.58-10-26.58-25.52 0-14 9.79-25.33 24.75-25.33 14.51.1 23.05 11.8 23.05 25.62zm-11.13-5.85c-.38-5.47-5-10.75-12.47-10.75-8.06 0-12.57 4.51-13.24 11.61h24.94a.78.78 0 00.77-.86zM316.41 39.34h7.2a1.71 1.71 0 011.73 1.66v5.56c3.93-5.66 8.73-8.63 15.83-8.63 6.91 0 12.18 2.88 14.58 7.29a.88.88 0 001.54.19A21.32 21.32 0 01374 37.9c10.56 0 17.08 6.72 17.08 19.28v28.69a1.49 1.49 0 01-1.53 1.44H382a1.5 1.5 0 01-1.54-1.44V59a11.08 11.08 0 00-22.16 0v26.87a1.47 1.47 0 01-1.44 1.44h-7.68a1.41 1.41 0 01-1.44-1.44V59a11.18 11.18 0 00-22.35 0v26.87a1.5 1.5 0 01-1.54 1.44h-7.58a1.42 1.42 0 01-1.44-1.44V41a1.62 1.62 0 011.58-1.66zM448.43 63.42c0 2.11-1.05 2.78-2.78 2.78h-33.87c1.06 7.87 7.77 13 17.85 13 8.54 0 13.43-3.74 14.87-3.74.38 0 .57.29.57.86v6a3.07 3.07 0 01-1.15 2.4c-4.31 2.59-9.88 3.93-16.69 3.93-14.78 0-26.58-10-26.58-25.52 0-14 9.79-25.33 24.76-25.33 14.48.1 23.02 11.8 23.02 25.62zm-11.13-5.85c-.38-5.47-5-10.75-12.47-10.75-8.06 0-12.57 4.51-13.24 11.61h25a.77.77 0 00.71-.86zM467 87.31h-7.29a1.69 1.69 0 01-1.71-1.73V41.07c0-1.25.48-1.73 1.73-1.73H467c1.35 0 1.83.48 1.83 2v5.47c5.18-6.23 10-8.92 16.21-8.92 11.61 0 18.71 8.25 18.71 21.49v26.2c0 1.25-.48 1.73-1.63 1.73h-7.48c-1.35 0-1.73-.48-1.73-1.92V61c0-6.62-4.7-13.24-11.61-13.24s-12.47 4-12.47 12.76v25c.04 1.79-1.83 1.79-1.83 1.79zM517.79 39.15V28a1.75 1.75 0 011.73-1.83h7.2a1.75 1.75 0 011.73 1.83v11.15h14.1a1.72 1.72 0 011.73 1.72v6.24a1.72 1.72 0 01-1.73 1.73h-14.1v22.64c0 5.18 2.2 7.48 7.29 7.48 2.78 0 4.6-.86 5.85-.86.86 0 1.34.77 1.34 1.73v5.56a1.63 1.63 0 01-.86 1.54c-2.3 1.25-5.57 1.82-9.69 1.82-9.31 0-14.59-5.18-14.59-14.29V48.84h-6.9a1.75 1.75 0 01-1.83-1.73v-6.24a1.74 1.74 0 011.83-1.72zM591.29 74.07c0 8.83-8.44 14.68-21 14.68-7.2 0-14.49-1.63-19.1-4.22a2.47 2.47 0 01-1.15-2v-5.1a2.26 2.26 0 012.21-2.3c2 0 8.06 4.22 17.56 4.22 6.81 0 10.36-2.3 10.36-5.18 0-2.69-2.69-4.32-8-5.47-16-3.46-21.69-7.1-21.69-16.31 0-8.73 7.87-14.49 20.53-14.49 6.72 0 12.29 1.34 15.84 3.36 1.34.76 2 1.63 2 2.68v4.71a2.27 2.27 0 01-2.3 2.3c-1.44 0-7.49-3.65-15.16-3.65-6 0-9.69 1.92-9.69 5.09 0 3.45 4.89 4.7 10.26 5.85 15.2 3.17 19.33 8.16 19.33 15.83z"/>
</symbol>
<symbol id="mbg-supplements-mbg" viewBox="0 0 795.64 120.22">
<path fill="#222" d="M85.3 85.87a1.48 1.48 0 01-1.44 1.44h-7.77a1.47 1.47 0 01-1.44-1.44V59a11.09 11.09 0 00-22.17 0v26.87A1.49 1.49 0 0151 87.31h-7.54a1.49 1.49 0 01-1.53-1.44V59a11.18 11.18 0 00-22.36 0v26.87a1.41 1.41 0 01-1.44 1.44h-7.58a1.48 1.48 0 01-1.44-1.44v-30.7c0-3.17-1.53-5.57-5.37-5.57h-2.2A1.51 1.51 0 010 48.07v-7.29a1.44 1.44 0 011.54-1.44h8.05c5.76 0 8.16 2.49 9.89 5.28a20.94 20.94 0 0116-6.72c6.91 0 11.8 3.17 14.58 7.29.39.58 1 .67 1.54 0a21.59 21.59 0 0116.6-7.29c10.65 0 17.08 6.81 17.08 19.38zM147 63.33c0 14.39-9.78 25.42-23.41 25.42-6.9 0-12.28-2.3-16.21-6.72-.48-.67-1-.47-1 .29V86a1.47 1.47 0 01-1.38 1.41h-7.72A1.48 1.48 0 0195.84 86V1.44A1.42 1.42 0 0197.28 0H105a1.47 1.47 0 011.44 1.44v43c0 .77.48 1 1 .29 3.93-4.41 9.31-6.71 16.21-6.71C137.2 38 147 49.12 147 63.33zm-9.59.19a15.31 15.31 0 10-15.26 15.35 15.23 15.23 0 0015.24-15.35zM199.66 40.78v6.71a1.47 1.47 0 01-1.44 1.44h-4.7a19.47 19.47 0 013 10.94 21.87 21.87 0 01-21.88 21.88 21.18 21.18 0 01-8.44-1.63c-.86 0-1.82 1.72-1.82 3.07a3.35 3.35 0 003.16 3.55H182c9.5 0 17.27 7.38 17.27 16.4 0 8.35-6.33 17.08-24.46 17.08s-24.37-8.63-24.37-17.08c0-5.85 3-9.88 6.14-12.76a13.3 13.3 0 01-2-7.19 14.51 14.51 0 013.36-9.12c-3.36-3.64-5.28-8-5.28-14.2a22 22 0 0122-22 30.19 30.19 0 017.78 1.44h15.83a1.47 1.47 0 011.39 1.47zm-39.25 62.27c0 4.31 4.61 7.29 14.4 7.29 10 0 14.48-3.74 14.48-7.29s-3.35-6.53-7.38-6.53H167.8c-4.12 0-7.39 2.88-7.39 6.53zm26.29-43.18a12.09 12.09 0 10-12.09 12 12.1 12.1 0 0012.09-12z"/>
</symbol>
<symbol id="mbg-supplements" viewBox="0 0 795.64 120.22">
<path fill="#F89C22" d="M230.55 88.75c-7.2 0-14.49-1.63-19.1-4.22a2.47 2.47 0 01-1.15-2v-5.1a2.26 2.26 0 012.21-2.3c2 0 8.06 4.22 17.56 4.22 6.81 0 10-1.63 10-4.51 0-2.69-2.4-3.94-7.58-5.28-16.6-4.41-21.69-8.44-21.69-15.25a12.37 12.37 0 011.06-5.09c-3.55-1-6.24-1.53-6.72-1.73a1.27 1.27 0 01-.77-1.24v-5.38a1.57 1.57 0 011.44-1.53c4.13 0 6.91.86 12.09 2.88 4.8-3.36 8.35-4.32 15.07-4.32 7.48 0 15.92 3.26 15.92 9.79 0 6-5.56 9-12.57 9a30.2 30.2 0 01-15.63-4.41c.67 5 9.88 6.72 14.29 7.87 11.9 3.26 16.6 7.67 16.6 15.35-.02 8.84-8.46 13.25-21.03 13.25zm-4.32-41.83a20.7 20.7 0 009 2.49c2.88 0 4.6-.38 4.6-1.72 0-1.54-3.26-2.12-6-2.12a21 21 0 00-7.6 1.35zM260.19 68.6V40.68a1.36 1.36 0 011.44-1.44h7.68a1.36 1.36 0 011.44 1.44v20.44c0 13.43 5.46 17.56 12.28 17.56A12.45 12.45 0 00295.5 66.2l.19-25.52a1.44 1.44 0 011.54-1.44h7.58a1.36 1.36 0 011.44 1.44v45.19a1.36 1.36 0 01-1.44 1.44h-7.58a1.44 1.44 0 01-1.54-1.44v-3.36c0-.86-.38-1-1-.38-4.41 4.41-8.82 6.62-15.44 6.62-11.38 0-19.06-7.75-19.06-20.15zM327.64 81.65v33c0 1-.39 1.72-1.44 1.72h-6.81a1.43 1.43 0 01-1.63-1.53V40.78a1.34 1.34 0 011.53-1.44h6.62c1.25 0 1.73.48 1.73 1.73v6.14A19.53 19.53 0 01344 37.9c13.62 0 24.37 11.51 24.37 26.1 0 13-8.83 24.75-24.47 24.75a21.32 21.32 0 01-16.26-7.1zM328.89 64a14.68 14.68 0 1029.36 0c0-8.16-6.62-16.22-14.68-16.22S328.89 55.84 328.89 64zM386.83 81.65v33c0 1-.38 1.72-1.43 1.72h-6.82a1.44 1.44 0 01-1.63-1.53V40.78a1.34 1.34 0 011.54-1.44h6.62c1.24 0 1.72.48 1.72 1.73v6.14a19.54 19.54 0 0116.32-9.31c13.62 0 24.37 11.51 24.37 26.1 0 13-8.83 24.75-24.47 24.75a21.34 21.34 0 01-16.22-7.1zM388.08 64a14.68 14.68 0 1029.36 0c0-8.16-6.62-16.22-14.68-16.22S388.08 55.84 388.08 64zM456 81v4.7c0 2.3-3.55 3.07-7.87 3.07-5.47 0-12-2.21-12-12.57v-74a2.17 2.17 0 012.22-2.2h6.24a2.17 2.17 0 012.21 2.21v72.15c0 3.07 1.63 4.7 3.55 4.7 1.44 0 2.4-.29 3.26-.29A2.28 2.28 0 01456 81zM510 63.42c0 2.11-1 2.78-2.78 2.78h-33.85c1.06 7.87 7.77 13 17.85 13 8.54 0 13.43-3.74 14.87-3.74.38 0 .58.29.58.86v6a3.07 3.07 0 01-1.15 2.4c-4.32 2.59-9.89 3.93-16.7 3.93-14.78 0-26.58-10-26.58-25.52 0-14 9.79-25.33 24.76-25.33 14.49.1 23 11.8 23 25.62zm-11.13-5.85c-.38-5.47-5-10.75-12.47-10.75-8.06 0-12.57 4.51-13.24 11.61h24.95a.77.77 0 00.78-.86zM520.77 39.34H528a1.71 1.71 0 011.69 1.66v5.56c3.93-5.66 8.73-8.63 15.83-8.63 6.91 0 12.19 2.88 14.59 7.29a.87.87 0 001.53.19 21.35 21.35 0 0116.7-7.48c10.55 0 17.08 6.72 17.08 19.28v28.66a1.5 1.5 0 01-1.54 1.44h-7.58a1.5 1.5 0 01-1.54-1.44V59a11.08 11.08 0 00-22.16 0v26.87a1.47 1.47 0 01-1.44 1.44h-7.67a1.41 1.41 0 01-1.44-1.44V59a11.18 11.18 0 00-22.36 0v26.87a1.49 1.49 0 01-1.53 1.44h-7.58a1.41 1.41 0 01-1.44-1.44V41a1.62 1.62 0 011.63-1.66zM652.79 63.42c0 2.11-1.06 2.78-2.79 2.78h-33.87c1.06 7.87 7.78 13 17.85 13 8.54 0 13.43-3.74 14.87-3.74.39 0 .58.29.58.86v6a3.07 3.07 0 01-1.15 2.4c-4.32 2.59-9.89 3.93-16.7 3.93-14.77 0-26.58-10-26.58-25.52 0-14 9.79-25.33 24.76-25.33 14.49.1 23.03 11.8 23.03 25.62zm-11.13-5.85c-.39-5.47-5-10.75-12.48-10.75-8.06 0-12.57 4.51-13.24 11.61h24.95a.78.78 0 00.77-.86zM671.4 87.31h-7.29a1.69 1.69 0 01-1.73-1.73V41.07c0-1.25.48-1.73 1.73-1.73h7.29c1.34 0 1.82.48 1.82 2v5.47c5.18-6.23 10-8.92 16.22-8.92 11.6 0 18.71 8.25 18.71 21.49v26.2c0 1.25-.48 1.73-1.64 1.73H699c-1.34 0-1.73-.48-1.73-1.92V61c0-6.62-4.7-13.24-11.61-13.24s-12.47 4-12.47 12.76v25a1.76 1.76 0 01-1.79 1.79zM722.15 39.15V28a1.75 1.75 0 011.73-1.83h7.19A1.75 1.75 0 01732.8 28v11.15h14.1a1.72 1.72 0 011.73 1.72v6.24a1.72 1.72 0 01-1.73 1.73h-14.1v22.64c0 5.18 2.21 7.48 7.29 7.48 2.78 0 4.61-.86 5.85-.86.87 0 1.35.77 1.35 1.73v5.56a1.64 1.64 0 01-.87 1.54c-2.3 1.25-5.56 1.82-9.69 1.82-9.3 0-14.58-5.18-14.58-14.29V48.84h-6.91a1.75 1.75 0 01-1.82-1.73v-6.24a1.74 1.74 0 011.82-1.72zM795.64 74.07c0 8.83-8.44 14.68-21 14.68-7.2 0-14.49-1.63-19.09-4.22a2.45 2.45 0 01-1.16-2v-5.1a2.26 2.26 0 012.21-2.3c2 0 8.06 4.22 17.56 4.22 6.81 0 10.36-2.3 10.36-5.18 0-2.69-2.68-4.32-8-5.47-16-3.46-21.69-7.1-21.69-16.31 0-8.73 7.87-14.49 20.54-14.49 6.71 0 12.28 1.34 15.83 3.36 1.34.76 2 1.63 2 2.68v4.71a2.27 2.27 0 01-2.3 2.3c-1.44 0-7.48-3.65-15.16-3.65-6 0-9.69 1.92-9.69 5.09 0 3.45 4.89 4.7 10.27 5.85 15.2 3.17 19.32 8.16 19.32 15.83z"/>
</symbol>
<!-- FUNCTIONAL NUTRITION PROGRAM -->
<symbol id="fnp" viewBox="0 0 166 17">
<path d="M2.586 12a.29.29 0 00.294-.294V6.854h1.78c.166 0 .306-.14.306-.307v-.691a.3.3 0 00-.307-.294H2.88V2.426c0-.679.32-1.012.96-1.012.384 0 .704.128.832.128s.294-.14.294-.294V.646a.304.304 0 00-.204-.281A3.829 3.829 0 003.456.16c-1.254 0-2.01.755-2.01 2.022v3.38H.563a.3.3 0 00-.307.294v.627c0 .167.14.371.307.371h.883v4.852c0 .166.141.294.295.294h.845zm5.67.192c.884 0 1.473-.294 2.061-.883.077-.077.128-.064.128.051v.448c0 .115.09.192.205.192h1.011c.116 0 .192-.077.192-.192V5.779c0-.115-.076-.192-.192-.192h-1.01c-.116 0-.206.077-.206.192l-.025 3.405a1.66 1.66 0 01-1.664 1.664c-.909 0-1.639-.55-1.639-2.342V5.779c0-.115-.076-.192-.192-.192H5.901c-.115 0-.192.077-.192.192v3.725c0 1.651 1.024 2.688 2.548 2.688zm6.299-.422V8.429c0-1.165.755-1.703 1.664-1.703.921 0 1.549.884 1.549 1.767v3.251c0 .192.05.256.23.256h.998c.154 0 .218-.064.218-.23V8.275c0-1.766-.947-2.867-2.496-2.867-.832 0-1.472.358-2.163 1.19v-.73c0-.204-.064-.268-.243-.268h-.973c-.167 0-.23.064-.23.23v5.94c0 .201.176.226.22.23h.983s.243 0 .243-.23zm9.012.422c.678 0 1.293-.14 1.856-.422.115-.052.192-.205.192-.333v-.755c0-.09-.039-.141-.115-.141-.308 0-.768.41-1.716.41-1.267 0-2.278-.91-2.278-2.151 0-1.28 1.011-2.15 2.278-2.15.512 0 1.024.115 1.524.332.025.013.05.013.076.013.077 0 .128-.051.128-.14v-.781a.407.407 0 00-.192-.32 4.313 4.313 0 00-1.74-.346c-1.933 0-3.495 1.408-3.495 3.366 0 2.01 1.575 3.418 3.482 3.418zm5.325 0c.55 0 .986-.077 1.293-.243.077-.039.115-.115.115-.205v-.742c0-.128-.064-.23-.179-.23-.166 0-.41.114-.78.114-.68 0-.974-.307-.974-.998v-3.02h1.882a.23.23 0 00.23-.231v-.832a.23.23 0 00-.23-.23h-1.882V4.09c0-.141-.102-.244-.23-.244h-.96c-.128 0-.23.103-.23.244v1.484h-.922c-.14 0-.243.103-.243.23v.833c0 .128.102.23.243.23h.922v3.418c0 1.216.704 1.907 1.945 1.907zm3.367-8.909c.5 0 .87-.371.87-.909a.848.848 0 00-.87-.87c-.525 0-.909.371-.909.87 0 .525.397.91.91.91zm.5 8.717c.115 0 .204-.09.204-.205V5.792c0-.115-.09-.192-.205-.192h-1.01c-.116 0-.193.077-.193.192v6.003c0 .115.077.205.192.205h1.011zm4.98.192c1.83 0 3.391-1.331 3.391-3.366 0-2.061-1.561-3.418-3.392-3.418-2.06 0-3.61 1.357-3.61 3.418 0 2.035 1.55 3.366 3.61 3.366zm0-1.344c-1.14 0-2.151-.922-2.151-2.035 0-1.165.998-2.061 2.137-2.061 1.14 0 1.959.896 1.959 2.06 0 1.114-.807 2.036-1.946 2.036zm5.837.922V8.429c0-1.165.755-1.703 1.664-1.703.921 0 1.549.884 1.549 1.767v3.251c0 .192.05.256.23.256h.998c.154 0 .218-.064.218-.23V8.275c0-1.766-.947-2.867-2.496-2.867-.832 0-1.472.358-2.163 1.19v-.73c0-.204-.064-.268-.243-.268h-.973c-.167 0-.23.064-.23.23v5.94c0 .201.176.226.22.23h.983s.243 0 .243-.23zm7.885.422c.87 0 1.741-.32 2.304-.947.32.627.768.87 1.485.87.512 0 .755-.153.755-.448v-.627c0-.102-.038-.154-.128-.154h-.32c-.281 0-.473-.204-.473-.614V7.878c0-1.574-1.19-2.47-2.97-2.47-.858 0-1.574.115-2.189.46a.308.308 0 00-.166.282v.845c0 .128.102.167.217.103a3.602 3.602 0 011.818-.474c1.267 0 1.894.422 1.894 1.498v.32c-.652-.41-1.203-.55-1.958-.55-1.485 0-2.688.729-2.688 2.137 0 1.331 1.011 2.163 2.42 2.163zm.384-1.216c-.819 0-1.382-.346-1.382-1.024 0-.627.563-.998 1.497-.998.55 0 1.178.14 1.562.37.128.078.166.167.166.27v.422a.404.404 0 01-.14.307 2.633 2.633 0 01-1.703.653zm6.631 1.216c.576 0 1.05-.102 1.05-.41v-.627c0-.166-.141-.294-.32-.294-.115 0-.243.038-.435.038-.256 0-.474-.217-.474-.627V.646a.29.29 0 00-.294-.294h-.832a.29.29 0 00-.295.294v9.87c0 1.382.87 1.676 1.6 1.676zm6.158-.422V8.429c0-1.165.756-1.703 1.664-1.703.922 0 1.55.884 1.55 1.767v3.251c0 .192.05.256.23.256h.998c.154 0 .218-.064.218-.23V8.275c0-1.766-.948-2.867-2.496-2.867-.832 0-1.472.358-2.164 1.19v-.73c0-.204-.064-.268-.243-.268h-.973c-.166 0-.23.064-.23.23v5.94c0 .201.176.226.22.23h.983s.243 0 .243-.23zm8.398.422c.883 0 1.472-.294 2.06-.883.077-.077.129-.064.129.051v.448c0 .115.09.192.204.192h1.012c.115 0 .192-.077.192-.192V5.779c0-.115-.077-.192-.192-.192h-1.012c-.115 0-.204.077-.204.192l-.026 3.405a1.66 1.66 0 01-1.664 1.664c-.909 0-1.638-.55-1.638-2.342V5.779c0-.115-.077-.192-.192-.192h-1.024c-.116 0-.192.077-.192.192v3.725c0 1.651 1.024 2.688 2.547 2.688zm7.194 0c.55 0 .986-.077 1.293-.243.077-.039.115-.115.115-.205v-.742c0-.128-.064-.23-.18-.23-.166 0-.409.114-.78.114-.678 0-.973-.307-.973-.998v-3.02h1.882a.23.23 0 00.23-.231v-.832a.23.23 0 00-.23-.23H79.7V4.09c0-.141-.102-.244-.23-.244h-.96c-.128 0-.23.103-.23.244v1.484h-.922c-.141 0-.243.103-.243.23v.833c0 .128.102.23.243.23h.921v3.418c0 1.216.704 1.907 1.946 1.907zM83.772 12c.167 0 .218-.09.218-.218v-3.57c.537-.743 1.229-1.089 2.189-1.089.153 0 .243-.077.243-.217v-1.23c0-.05-.013-.076-.051-.076-.756 0-1.562.32-2.381 1.088v-.87c0-.154-.064-.218-.205-.218h-.909c-.128 0-.192.064-.192.218v5.964c0 .128.077.218.218.218h.87zm4.43-8.717c.499 0 .87-.371.87-.909a.848.848 0 00-.87-.87c-.525 0-.91.371-.91.87 0 .525.398.91.91.91zM88.7 12c.115 0 .205-.09.205-.205V5.792c0-.115-.09-.192-.205-.192H87.69c-.115 0-.192.077-.192.192v6.003c0 .115.077.205.192.205h1.01zm3.969.192c.55 0 .985-.077 1.292-.243.077-.039.116-.115.116-.205v-.742c0-.128-.064-.23-.18-.23-.166 0-.41.114-.78.114-.679 0-.973-.307-.973-.998v-3.02h1.881a.23.23 0 00.23-.231v-.832a.23.23 0 00-.23-.23h-1.881V4.09c0-.141-.103-.244-.23-.244h-.96c-.129 0-.231.103-.231.244v1.484h-.922c-.14 0-.243.103-.243.23v.833c0 .128.103.23.243.23h.922v3.418c0 1.216.704 1.907 1.946 1.907zm3.367-8.909c.499 0 .87-.371.87-.909a.848.848 0 00-.87-.87c-.525 0-.91.371-.91.87 0 .525.398.91.91.91zM96.536 12c.115 0 .205-.09.205-.205V5.792c0-.115-.09-.192-.205-.192h-1.011c-.116 0-.192.077-.192.192v6.003c0 .115.076.205.192.205h1.01zm4.98.192c1.83 0 3.392-1.331 3.392-3.366 0-2.061-1.562-3.418-3.392-3.418-2.061 0-3.61 1.357-3.61 3.418 0 2.035 1.549 3.366 3.61 3.366zm0-1.344c-1.14 0-2.15-.922-2.15-2.035 0-1.165.998-2.061 2.137-2.061 1.14 0 1.958.896 1.958 2.06 0 1.114-.806 2.036-1.945 2.036zm5.837.922V8.429c0-1.165.755-1.703 1.664-1.703.922 0 1.549.884 1.549 1.767v3.251c0 .192.051.256.23.256h.999c.153 0 .217-.064.217-.23V8.275c0-1.766-.947-2.867-2.496-2.867-.832 0-1.472.358-2.163 1.19v-.73c0-.204-.064-.268-.243-.268h-.973c-.166 0-.23.064-.23.23v5.94c0 .201.176.226.22.23h.983s.243 0 .243-.23zm9.896 4.108c.14 0 .192-.102.192-.23v-4.403c.55.64 1.37.947 2.163.947 2.086 0 3.264-1.574 3.264-3.302 0-1.946-1.434-3.482-3.251-3.482-.947 0-1.741.55-2.176 1.242v-.82c0-.166-.064-.23-.23-.23h-.884c-.14 0-.205.077-.205.192v9.882c0 .128.077.204.218.204h.909zm2.317-5.017a1.961 1.961 0 01-1.959-1.971c0-1.088.87-2.164 1.959-2.164 1.075 0 1.958 1.076 1.958 2.164a1.97 1.97 0 01-1.958 1.97zM124.827 12c.166 0 .218-.09.218-.218v-3.57c.537-.743 1.228-1.089 2.188-1.089.154 0 .244-.077.244-.217v-1.23c0-.05-.013-.076-.052-.076-.755 0-1.561.32-2.38 1.088v-.87c0-.154-.064-.218-.205-.218h-.909c-.128 0-.192.064-.192.218v5.964c0 .128.077.218.218.218h.87zm6.874.192c1.83 0 3.392-1.331 3.392-3.366 0-2.061-1.561-3.418-3.392-3.418-2.06 0-3.61 1.357-3.61 3.418 0 2.035 1.55 3.366 3.61 3.366zm0-1.344c-1.139 0-2.15-.922-2.15-2.035 0-1.165.998-2.061 2.138-2.061 1.139 0 1.958.896 1.958 2.06 0 1.114-.806 2.036-1.946 2.036zm7.271 5.542c2.42 0 3.264-1.164 3.264-2.278 0-1.203-1.036-2.189-2.304-2.189H138c-.218 0-.423-.192-.423-.473 0-.18.128-.41.243-.41.18.064.512.218 1.127.218a2.917 2.917 0 002.918-2.919c0-.601-.153-1.1-.397-1.459h.628c.102 0 .192-.09.192-.192v-.896a.197.197 0 00-.192-.192h-2.112c-.27-.077-.679-.192-1.037-.192a2.939 2.939 0 00-2.931 2.931c0 .832.256 1.408.704 1.895-.23.281-.448.704-.448 1.216 0 .41.128.742.268.96-.422.384-.819.921-.819 1.702 0 1.126.832 2.278 3.251 2.278zm-.025-6.45a1.606 1.606 0 110-3.213c.883 0 1.613.716 1.613 1.612 0 .883-.73 1.6-1.613 1.6zm.025 5.132c-1.305 0-1.92-.397-1.92-.973 0-.486.436-.87.986-.87h1.882c.537 0 .985.384.985.87 0 .474-.601.973-1.933.973zM144.234 12c.166 0 .217-.09.217-.218v-3.57c.538-.743 1.23-1.089 2.19-1.089.153 0 .242-.077.242-.217v-1.23c0-.05-.012-.076-.05-.076-.756 0-1.562.32-2.382 1.088v-.87c0-.154-.064-.218-.204-.218h-.91c-.127 0-.191.064-.191.218v5.964c0 .128.077.218.217.218h.87zm5.556.192c.87 0 1.74-.32 2.304-.947.32.627.768.87 1.484.87.512 0 .756-.153.756-.448v-.627c0-.102-.039-.154-.128-.154h-.32c-.282 0-.474-.204-.474-.614V7.878c0-1.574-1.19-2.47-2.97-2.47-.857 0-1.574.115-2.188.46a.308.308 0 00-.167.282v.845c0 .128.103.167.218.103a3.602 3.602 0 011.817-.474c1.268 0 1.895.422 1.895 1.498v.32c-.653-.41-1.203-.55-1.959-.55-1.484 0-2.688.729-2.688 2.137 0 1.331 1.012 2.163 2.42 2.163zm.384-1.216c-.82 0-1.383-.346-1.383-1.024 0-.627.563-.998 1.498-.998.55 0 1.177.14 1.561.37.128.078.167.167.167.27v.422a.404.404 0 01-.141.307 2.633 2.633 0 01-1.702.653zm6.17 1.024c.115 0 .205-.09.205-.192V8.224c0-.82.665-1.485 1.484-1.485.832 0 1.498.666 1.498 1.485v3.584c0 .115.09.192.192.192h1.024c.102 0 .192-.09.192-.192V8.224c0-.82.666-1.472 1.472-1.472.82 0 1.485.653 1.485 1.472v3.584c0 .102.09.192.205.192h1.01c.116 0 .206-.09.206-.192V7.981c0-1.677-.87-2.573-2.279-2.573-.947 0-1.753.41-2.227.998-.064.077-.154.064-.205-.025-.32-.589-1.024-.973-1.945-.973-.948 0-1.588.397-2.112 1.152v-.742c0-.116-.103-.218-.23-.218h-.96a.216.216 0 00-.218.218v5.99c0 .102.076.192.192.192h1.01z" fill-rule="nonzero"/>
</symbol>
<!-- FUNCTIONAL NUTRITION COACHING -->
<symbol id="fnc" viewBox="0 0 168 17">
<path d="M2.78199862,12 C2.94839853,12 3.07639846,11.8720001 3.07639846,11.7056002 L3.07639846,6.85440275 L4.85559751,6.85440275 C5.02199742,6.85440275 5.16279735,6.71360283 5.16279735,6.54720291 L5.16279735,5.85600328 C5.16279735,5.68960337 5.02199742,5.56160344 4.85559751,5.56160344 L3.07639846,5.56160344 L3.07639846,2.42560512 C3.07639846,1.74720548 3.39639829,1.41440566 4.03639795,1.41440566 C4.42039774,1.41440566 4.74039757,1.54240559 4.8683975,1.54240559 C4.99639743,1.54240559 5.16279735,1.40160567 5.16279735,1.24800575 L5.16279735,0.646406069 C5.16279735,0.518406138 5.07319739,0.403206199 4.95799745,0.36480622 C4.56119767,0.224006295 4.13879789,0.160006329 3.65239815,0.160006329 C2.39799882,0.160006329 1.64279923,0.915205926 1.64279923,2.18240525 L1.64279923,5.56160344 L0.759599699,5.56160344 C0.593199788,5.56160344 0.452399863,5.68960337 0.452399863,5.85600328 L0.452399863,6.48320295 C0.452399863,6.64960286 0.593199788,6.85440275 0.759599699,6.85440275 L1.64279923,6.85440275 L1.64279923,11.7056002 C1.64279923,11.8720001 1.78359915,12 1.93719907,12 L2.78199862,12 Z M8.43399823,12.1919999 C9.31719776,12.1919999 9.90599744,11.8976001 10.4947971,11.3088004 C10.5715971,11.2320004 10.6227971,11.2448004 10.6227971,11.3600003 L10.6227971,11.8080001 C10.6227971,11.9232 10.712397,12 10.8275969,12 L11.8387964,12 C11.9539963,12 12.0307963,11.9232 12.0307963,11.8080001 L12.0307963,5.77920333 C12.0307963,5.66400339 11.9539963,5.58720343 11.8387964,5.58720343 L10.8275969,5.58720343 C10.712397,5.58720343 10.6227971,5.66400339 10.6227971,5.77920333 L10.5971971,9.18400151 C10.5971971,10.105601 9.85479747,10.8480006 8.93319796,10.8480006 C8.02439845,10.8480006 7.29479884,10.2976009 7.29479884,8.50560187 L7.29479884,5.77920333 C7.29479884,5.66400339 7.21799888,5.58720343 7.10279894,5.58720343 L6.07879949,5.58720343 C5.96359955,5.58720343 5.88679959,5.66400339 5.88679959,5.77920333 L5.88679959,9.50400133 C5.88679959,11.1552005 6.91079904,12.1919999 8.43399823,12.1919999 Z M14.7131988,11.7696001 L14.7131988,8.42880191 C14.7131988,7.26400253 15.4683984,6.72640282 16.3771979,6.72640282 C17.2987974,6.72640282 17.9259971,7.60960235 17.9259971,8.49280187 L17.9259971,11.7440001 C17.9259971,11.936 17.9771971,12 18.156397,12 L19.1547964,12 C19.3083964,12 19.3723963,11.936 19.3723963,11.7696001 L19.3723963,8.27520199 C19.3723963,6.50880294 18.4251968,5.40800352 16.8763977,5.40800352 C16.0443981,5.40800352 15.4043984,5.76640333 14.7131988,6.59840289 L14.7131988,5.86880328 C14.7131988,5.66400339 14.6491989,5.60000342 14.4699989,5.60000342 L13.4971995,5.60000342 C13.3307996,5.60000342 13.2667996,5.66400339 13.2667996,5.8304033 L13.2667996,11.7696001 C13.2667996,11.9712 13.4431995,11.9964 13.4872995,11.99955 L14.4699989,12 C14.4699989,12 14.7131988,12 14.7131988,11.7696001 Z M23.7059979,12.1919999 C24.3843975,12.1919999 24.9987972,12.0512 25.5619969,11.7696001 C25.6771968,11.7184002 25.7539968,11.5648002 25.7539968,11.4368003 L25.7539968,10.6816007 C25.7539968,10.5920008 25.7155968,10.5408008 25.6387969,10.5408008 C25.331597,10.5408008 24.8707973,10.9504006 23.9235978,10.9504006 C22.6563985,10.9504006 21.645199,10.041601 21.645199,8.80000171 C21.645199,7.52000239 22.6563985,6.64960286 23.9235978,6.64960286 C24.4355975,6.64960286 24.9475972,6.7648028 25.446797,6.98240268 C25.472397,6.99520268 25.4979969,6.99520268 25.5235969,6.99520268 C25.6003969,6.99520268 25.6515969,6.9440027 25.6515969,6.85440275 L25.6515969,6.07360317 C25.6515969,5.95840323 25.5619969,5.80480331 25.459597,5.75360334 C24.9347972,5.52320346 24.3459976,5.40800352 23.7187979,5.40800352 C21.7859989,5.40800352 20.2243998,6.81600277 20.2243998,8.77440172 C20.2243998,10.7840007 21.7987989,12.1919999 23.7059979,12.1919999 Z M29.0123983,12.1919999 C29.562798,12.1919999 29.9979978,12.1151999 30.3051976,11.9488 C30.3819976,11.9104 30.4203976,11.8336001 30.4203976,11.7440001 L30.4203976,11.0016005 C30.4203976,10.8736006 30.3563976,10.7712007 30.2411977,10.7712007 C30.0747978,10.7712007 29.8315979,10.8864006 29.4603981,10.8864006 C28.7819985,10.8864006 28.4875986,10.5792008 28.4875986,9.88800113 L28.4875986,6.86720274 L30.3691976,6.86720274 C30.4971975,6.86720274 30.5995975,6.7648028 30.5995975,6.63680287 L30.5995975,5.80480331 C30.5995975,5.67680338 30.4971975,5.57440343 30.3691976,5.57440343 L28.4875986,5.57440343 L28.4875986,4.08960423 C28.4875986,3.9488043 28.3851987,3.84640436 28.2571987,3.84640436 L27.2971993,3.84640436 C27.1691993,3.84640436 27.0667994,3.9488043 27.0667994,4.08960423 L27.0667994,5.57440343 L26.1451999,5.57440343 C26.0043999,5.57440343 25.902,5.67680338 25.902,5.80480331 L25.902,6.63680287 C25.902,6.7648028 26.0043999,6.86720274 26.1451999,6.86720274 L27.0667994,6.86720274 L27.0667994,10.2848009 C27.0667994,11.5008003 27.770799,12.1919999 29.0123983,12.1919999 Z M32.3603991,3.28320466 C32.8595988,3.28320466 33.2307986,2.91200486 33.2307986,2.37440515 C33.2307986,1.86240542 32.8467988,1.50400561 32.3603991,1.50400561 C31.8355994,1.50400561 31.4515996,1.87520541 31.4515996,2.37440515 C31.4515996,2.89920487 31.8483994,3.28320466 32.3603991,3.28320466 Z M32.8595988,12 C32.9747988,12 33.0643987,11.9104 33.0643987,11.7952001 L33.0643987,5.79200332 C33.0643987,5.67680338 32.9747988,5.60000342 32.8595988,5.60000342 L31.8483994,5.60000342 C31.7331994,5.60000342 31.6563995,5.67680338 31.6563995,5.79200332 L31.6563995,11.7952001 C31.6563995,11.9104 31.7331994,12 31.8483994,12 L32.8595988,12 Z M37.8203978,12.1919999 C39.6507968,12.1919999 41.212396,10.8608006 41.212396,8.8256017 C41.212396,6.7648028 39.6507968,5.40800352 37.8203978,5.40800352 C35.7595989,5.40800352 34.2107997,6.7648028 34.2107997,8.8256017 C34.2107997,10.8608006 35.7595989,12.1919999 37.8203978,12.1919999 Z M37.8203978,10.8480006 C36.6811984,10.8480006 35.6699989,9.92640111 35.6699989,8.8128017 C35.6699989,7.64800233 36.6683984,6.75200281 37.8075978,6.75200281 C38.9467972,6.75200281 39.7659968,7.64800233 39.7659968,8.8128017 C39.7659968,9.92640111 38.9595972,10.8480006 37.8203978,10.8480006 Z M43.6387988,11.7696001 L43.6387988,8.42880191 C43.6387988,7.26400253 44.3939984,6.72640282 45.3027979,6.72640282 C46.2243974,6.72640282 46.8515971,7.60960235 46.8515971,8.49280187 L46.8515971,11.7440001 C46.8515971,11.936 46.9027971,12 47.081997,12 L48.0803964,12 C48.2339964,12 48.2979963,11.936 48.2979963,11.7696001 L48.2979963,8.27520199 C48.2979963,6.50880294 47.3507968,5.40800352 45.8019977,5.40800352 C44.9699981,5.40800352 44.3299984,5.76640333 43.6387988,6.59840289 L43.6387988,5.86880328 C43.6387988,5.66400339 43.5747989,5.60000342 43.3955989,5.60000342 L42.4227995,5.60000342 C42.2563996,5.60000342 42.1923996,5.66400339 42.1923996,5.8304033 L42.1923996,11.7696001 C42.1923996,11.9712 42.3687995,11.9964 42.4128995,11.99955 L43.3955989,12 C43.3955989,12 43.6387988,12 43.6387988,11.7696001 Z M51.5051985,12.1919999 C52.375598,12.1919999 53.2459976,11.8720001 53.8091973,11.2448004 C54.1291971,11.8720001 54.5771969,12.1151999 55.2939965,12.1151999 C55.8059962,12.1151999 56.0491961,11.9616 56.0491961,11.6672002 L56.0491961,11.0400005 C56.0491961,10.9376006 56.0107961,10.8864006 55.9211961,10.8864006 L55.6011963,10.8864006 C55.3195965,10.8864006 55.1275966,10.6816007 55.1275966,10.2720009 L55.1275966,7.8784022 C55.1275966,6.30400304 53.9371972,5.40800352 52.1579982,5.40800352 C51.3003986,5.40800352 50.583599,5.52320346 49.9691993,5.86880328 C49.8539994,5.93280324 49.8027994,6.03520319 49.8027994,6.15040313 L49.8027994,6.99520268 C49.8027994,7.12320261 49.9051994,7.16160259 50.0203993,7.09760262 C50.596399,6.77760279 51.1723987,6.62400287 51.8379983,6.62400287 C53.1051976,6.62400287 53.7323973,7.04640265 53.7323973,8.12160207 L53.7323973,8.4416019 C53.0795977,8.03200212 52.529198,7.8912022 51.7739984,7.8912022 C50.2891992,7.8912022 49.0859998,8.62080181 49.0859998,10.0288011 C49.0859998,11.3600003 50.0971993,12.1919999 51.5051985,12.1919999 Z M51.8891983,10.9760005 C51.0699987,10.9760005 50.506799,10.6304007 50.506799,9.95200109 C50.506799,9.32480143 51.0699987,8.95360163 52.0043982,8.95360163 C52.5547979,8.95360163 53.1819976,9.09440155 53.5659974,9.32480143 C53.6939973,9.40160139 53.7323973,9.49120134 53.7323973,9.59360129 L53.7323973,10.0160011 C53.7323973,10.118401 53.6939973,10.2336009 53.5915974,10.3232009 C53.1691976,10.6944007 52.5547979,10.9760005 51.8891983,10.9760005 Z M58.5011987,12.1919999 C59.0771984,12.1919999 59.5507982,12.0896 59.5507982,11.7824001 L59.5507982,11.1552005 C59.5507982,10.9888005 59.4099982,10.8608006 59.2307983,10.8608006 C59.1155984,10.8608006 58.9875985,10.8992006 58.7955986,10.8992006 C58.5395987,10.8992006 58.3219988,10.6816007 58.3219988,10.2720009 L58.3219988,0.646406069 C58.3219988,0.480006158 58.1939989,0.352006227 58.027599,0.352006227 L57.1955994,0.352006227 C57.0291995,0.352006227 56.9011996,0.480006158 56.9011996,0.646406069 L56.9011996,10.5152008 C56.9011996,11.8976001 57.7715991,12.1919999 58.5011987,12.1919999 Z M64.6211988,11.7696001 L64.6211988,8.42880191 C64.6211988,7.26400253 65.3763984,6.72640282 66.2851979,6.72640282 C67.2067974,6.72640282 67.8339971,7.60960235 67.8339971,8.49280187 L67.8339971,11.7440001 C67.8339971,11.936 67.8851971,12 68.064397,12 L69.0627964,12 C69.2163964,12 69.2803963,11.936 69.2803963,11.7696001 L69.2803963,8.27520199 C69.2803963,6.50880294 68.3331968,5.40800352 66.7843977,5.40800352 C65.9523981,5.40800352 65.3123984,5.76640333 64.6211988,6.59840289 L64.6211988,5.86880328 C64.6211988,5.66400339 64.5571989,5.60000342 64.3779989,5.60000342 L63.4051995,5.60000342 C63.2387996,5.60000342 63.1747996,5.66400339 63.1747996,5.8304033 L63.1747996,11.7696001 C63.1747996,11.9712 63.3511995,11.9964 63.3952995,11.99955 L64.3779989,12 C64.3779989,12 64.6211988,12 64.6211988,11.7696001 Z M72.9995982,12.1919999 C73.8827978,12.1919999 74.4715974,11.8976001 75.0603971,11.3088004 C75.1371971,11.2320004 75.1883971,11.2448004 75.1883971,11.3600003 L75.1883971,11.8080001 C75.1883971,11.9232 75.277997,12 75.3931969,12 L76.4043964,12 C76.5195963,12 76.5963963,11.9232 76.5963963,11.8080001 L76.5963963,5.77920333 C76.5963963,5.66400339 76.5195963,5.58720343 76.4043964,5.58720343 L75.3931969,5.58720343 C75.277997,5.58720343 75.1883971,5.66400339 75.1883971,5.77920333 L75.1627971,9.18400151 C75.1627971,10.105601 74.4203975,10.8480006 73.498798,10.8480006 C72.5899984,10.8480006 71.8603988,10.2976009 71.8603988,8.50560187 L71.8603988,5.77920333 C71.8603988,5.66400339 71.7835989,5.58720343 71.6683989,5.58720343 L70.6443995,5.58720343 C70.5291995,5.58720343 70.4523996,5.66400339 70.4523996,5.77920333 L70.4523996,9.50400133 C70.4523996,11.1552005 71.476399,12.1919999 72.9995982,12.1919999 Z M80.1747983,12.1919999 C80.725198,12.1919999 81.1603978,12.1151999 81.4675976,11.9488 C81.5443976,11.9104 81.5827976,11.8336001 81.5827976,11.7440001 L81.5827976,11.0016005 C81.5827976,10.8736006 81.5187976,10.7712007 81.4035977,10.7712007 C81.2371978,10.7712007 80.9939979,10.8864006 80.6227981,10.8864006 C79.9443985,10.8864006 79.6499986,10.5792008 79.6499986,9.88800113 L79.6499986,6.86720274 L81.5315976,6.86720274 C81.6595975,6.86720274 81.7619975,6.7648028 81.7619975,6.63680287 L81.7619975,5.80480331 C81.7619975,5.67680338 81.6595975,5.57440343 81.5315976,5.57440343 L79.6499986,5.57440343 L79.6499986,4.08960423 C79.6499986,3.9488043 79.5475987,3.84640436 79.4195987,3.84640436 L78.4595993,3.84640436 C78.3315993,3.84640436 78.2291994,3.9488043 78.2291994,4.08960423 L78.2291994,5.57440343 L77.3075999,5.57440343 C77.1667999,5.57440343 77.0644,5.67680338 77.0644,5.80480331 L77.0644,6.63680287 C77.0644,6.7648028 77.1667999,6.86720274 77.3075999,6.86720274 L78.2291994,6.86720274 L78.2291994,10.2848009 C78.2291994,11.5008003 78.933199,12.1919999 80.1747983,12.1919999 Z M83.701999,12 C83.8683989,12 83.9195989,11.9104 83.9195989,11.7824001 L83.9195989,8.21120203 C84.4571986,7.46880242 85.1483982,7.12320261 86.1083977,7.12320261 C86.2619976,7.12320261 86.3515976,7.04640265 86.3515976,6.90560272 L86.3515976,5.67680338 C86.3515976,5.62560341 86.3387976,5.60000342 86.3003976,5.60000342 C85.545198,5.60000342 84.7387985,5.92000325 83.9195989,6.68800284 L83.9195989,5.8176033 C83.9195989,5.66400339 83.8555989,5.60000342 83.714799,5.60000342 L82.8059995,5.60000342 C82.6779996,5.60000342 82.6139996,5.66400339 82.6139996,5.8176033 L82.6139996,11.7824001 C82.6139996,11.9104 82.6907995,12 82.8315995,12 L83.701999,12 Z M88.1123991,3.28320466 C88.6115988,3.28320466 88.9827986,2.91200486 88.9827986,2.37440515 C88.9827986,1.86240542 88.5987988,1.50400561 88.1123991,1.50400561 C87.5875994,1.50400561 87.2035996,1.87520541 87.2035996,2.37440515 C87.2035996,2.89920487 87.6003994,3.28320466 88.1123991,3.28320466 Z M88.6115988,12 C88.7267988,12 88.8163987,11.9104 88.8163987,11.7952001 L88.8163987,5.79200332 C88.8163987,5.67680338 88.7267988,5.60000342 88.6115988,5.60000342 L87.6003994,5.60000342 C87.4851994,5.60000342 87.4083995,5.67680338 87.4083995,5.79200332 L87.4083995,11.7952001 C87.4083995,11.9104 87.4851994,12 87.6003994,12 L88.6115988,12 Z M92.5611983,12.1919999 C93.111598,12.1919999 93.5467978,12.1151999 93.8539976,11.9488 C93.9307976,11.9104 93.9691976,11.8336001 93.9691976,11.7440001 L93.9691976,11.0016005 C93.9691976,10.8736006 93.9051976,10.7712007 93.7899977,10.7712007 C93.6235978,10.7712007 93.3803979,10.8864006 93.0091981,10.8864006 C92.3307985,10.8864006 92.0363986,10.5792008 92.0363986,9.88800113 L92.0363986,6.86720274 L93.9179976,6.86720274 C94.0459975,6.86720274 94.1483975,6.7648028 94.1483975,6.63680287 L94.1483975,5.80480331 C94.1483975,5.67680338 94.0459975,5.57440343 93.9179976,5.57440343 L92.0363986,5.57440343 L92.0363986,4.08960423 C92.0363986,3.9488043 91.9339987,3.84640436 91.8059987,3.84640436 L90.8459993,3.84640436 C90.7179993,3.84640436 90.6155994,3.9488043 90.6155994,4.08960423 L90.6155994,5.57440343 L89.6939999,5.57440343 C89.5531999,5.57440343 89.4508,5.67680338 89.4508,5.80480331 L89.4508,6.63680287 C89.4508,6.7648028 89.5531999,6.86720274 89.6939999,6.86720274 L90.6155994,6.86720274 L90.6155994,10.2848009 C90.6155994,11.5008003 91.319599,12.1919999 92.5611983,12.1919999 Z M95.9091991,3.28320466 C96.4083988,3.28320466 96.7795986,2.91200486 96.7795986,2.37440515 C96.7795986,1.86240542 96.3955988,1.50400561 95.9091991,1.50400561 C95.3843994,1.50400561 95.0003996,1.87520541 95.0003996,2.37440515 C95.0003996,2.89920487 95.3971994,3.28320466 95.9091991,3.28320466 Z M96.4083988,12 C96.5235988,12 96.6131987,11.9104 96.6131987,11.7952001 L96.6131987,5.79200332 C96.6131987,5.67680338 96.5235988,5.60000342 96.4083988,5.60000342 L95.3971994,5.60000342 C95.2819994,5.60000342 95.2051995,5.67680338 95.2051995,5.79200332 L95.2051995,11.7952001 C95.2051995,11.9104 95.2819994,12 95.3971994,12 L96.4083988,12 Z M101.369198,12.1919999 C103.199597,12.1919999 104.761196,10.8608006 104.761196,8.8256017 C104.761196,6.7648028 103.199597,5.40800352 101.369198,5.40800352 C99.3083989,5.40800352 97.7595997,6.7648028 97.7595997,8.8256017 C97.7595997,10.8608006 99.3083989,12.1919999 101.369198,12.1919999 Z M101.369198,10.8480006 C100.229998,10.8480006 99.2187989,9.92640111 99.2187989,8.8128017 C99.2187989,7.64800233 100.217198,6.75200281 101.356398,6.75200281 C102.495597,6.75200281 103.314797,7.64800233 103.314797,8.8128017 C103.314797,9.92640111 102.508397,10.8480006 101.369198,10.8480006 Z M107.187599,11.7696001 L107.187599,8.42880191 C107.187599,7.26400253 107.942798,6.72640282 108.851598,6.72640282 C109.773197,6.72640282 110.400397,7.60960235 110.400397,8.49280187 L110.400397,11.7440001 C110.400397,11.936 110.451597,12 110.630797,12 L111.629196,12 C111.782796,12 111.846796,11.936 111.846796,11.7696001 L111.846796,8.27520199 C111.846796,6.50880294 110.899597,5.40800352 109.350798,5.40800352 C108.518798,5.40800352 107.878798,5.76640333 107.187599,6.59840289 L107.187599,5.86880328 C107.187599,5.66400339 107.123599,5.60000342 106.944399,5.60000342 L105.971599,5.60000342 C105.8052,5.60000342 105.7412,5.66400339 105.7412,5.8304033 L105.7412,11.7696001 C105.7412,11.9712 105.917599,11.9964 105.961699,11.99955 L106.944399,12 C106.944399,12 107.187599,12 107.187599,11.7696001 Z M119.451598,12.1919999 C120.142797,12.1919999 120.757197,12.0512 121.320397,11.7696001 C121.409997,11.7184002 121.473997,11.5904002 121.473997,11.4880003 L121.473997,10.6816007 C121.473997,10.5792008 121.409997,10.5408008 121.320397,10.5792008 C120.833997,10.8480006 120.283597,10.9632006 119.681998,10.9632006 C119.041998,10.9632006 118.517198,10.7712007 118.081998,10.3744009 C117.659599,9.97760108 117.429199,9.46560135 117.429199,8.85120168 C117.429199,8.40320192 117.557199,8.01920213 117.787599,7.68640231 C117.825999,7.66080232 117.851599,7.64800233 117.864399,7.66080232 C117.889999,7.66080232 117.915599,7.67360231 117.928399,7.68640231 C119.029198,8.23680201 121.038797,8.59520182 121.653197,7.20000257 C121.883596,6.66240285 121.627597,6.22720309 121.294797,5.94560324 C121.269197,5.93280324 121.243597,5.90720326 121.217997,5.89440326 C120.565197,5.40796508 119.413198,5.31840357 118.734798,5.48480348 C118.325198,5.58720343 117.838799,5.80480331 117.621199,5.92000325 C117.518799,5.95840323 117.390799,6.0096032 117.288399,5.98400322 C116.917199,5.89440326 116.763599,5.76640333 116.200399,5.65120339 C116.097999,5.62560341 115.8164,5.60000342 115.714,5.60000342 C115.6116,5.61280341 115.5348,5.70240337 115.5348,5.80480331 L115.5348,6.72640282 C115.5348,6.82880276 115.5604,6.85440275 115.586,6.86720274 C115.6116,6.86720274 116.238799,7.04640265 116.366799,7.08480263 C116.481999,7.12320261 116.469199,7.1360026 116.494799,7.14880259 C116.571599,7.21280256 116.481999,7.36640248 116.443599,7.44320244 C116.289999,7.78880225 116.161999,8.249602 116.136399,8.67200178 C116.136399,8.73600174 116.123599,8.78720172 116.123599,8.83840169 C116.123599,9.81120117 116.379599,10.6176007 117.032399,11.2576004 C117.710799,11.8848001 118.517198,12.1919999 119.451598,12.1919999 Z M118.926798,6.88000274 C118.837198,6.84160276 118.811598,6.77760279 118.862798,6.72640282 C118.875598,6.70080283 118.901198,6.68800284 118.939598,6.67520285 C119.054798,6.63680287 119.195598,6.59840289 119.323598,6.5728029 C119.528398,6.53440292 120.104397,6.53440292 120.398797,6.63680287 C120.565197,6.70080283 120.629197,6.80320278 120.462797,6.96960269 C120.104397,7.30240251 119.489998,7.1360026 118.926798,6.88000274 Z M125.948398,12.1919999 C127.778797,12.1919999 129.340396,10.8608006 129.340396,8.8256017 C129.340396,6.7648028 127.778797,5.40800352 125.948398,5.40800352 C123.887599,5.40800352 122.3388,6.7648028 122.3388,8.8256017 C122.3388,10.8608006 123.887599,12.1919999 125.948398,12.1919999 Z M125.948398,10.8480006 C124.809198,10.8480006 123.797999,9.92640111 123.797999,8.8128017 C123.797999,7.64800233 124.796398,6.75200281 125.935598,6.75200281 C127.074797,6.75200281 127.893997,7.64800233 127.893997,8.8128017 C127.893997,9.92640111 127.087597,10.8480006 125.948398,10.8480006 Z M132.355599,12.1919999 C133.225998,12.1919999 134.096398,11.8720001 134.659597,11.2448004 C134.979597,11.8720001 135.427597,12.1151999 136.144396,12.1151999 C136.656396,12.1151999 136.899596,11.9616 136.899596,11.6672002 L136.899596,11.0400005 C136.899596,10.9376006 136.861196,10.8864006 136.771596,10.8864006 L136.451596,10.8864006 C136.169996,10.8864006 135.977997,10.6816007 135.977997,10.2720009 L135.977997,7.8784022 C135.977997,6.30400304 134.787597,5.40800352 133.008398,5.40800352 C132.150799,5.40800352 131.433999,5.52320346 130.819599,5.86880328 C130.704399,5.93280324 130.653199,6.03520319 130.653199,6.15040313 L130.653199,6.99520268 C130.653199,7.12320261 130.755599,7.16160259 130.870799,7.09760262 C131.446799,6.77760279 132.022799,6.62400287 132.688398,6.62400287 C133.955598,6.62400287 134.582797,7.04640265 134.582797,8.12160207 L134.582797,8.4416019 C133.929998,8.03200212 133.379598,7.8912022 132.624398,7.8912022 C131.139599,7.8912022 129.9364,8.62080181 129.9364,10.0288011 C129.9364,11.3600003 130.947599,12.1919999 132.355599,12.1919999 Z M132.739598,10.9760005 C131.920399,10.9760005 131.357199,10.6304007 131.357199,9.95200109 C131.357199,9.32480143 131.920399,8.95360163 132.854798,8.95360163 C133.405198,8.95360163 134.032398,9.09440155 134.416397,9.32480143 C134.544397,9.40160139 134.582797,9.49120134 134.582797,9.59360129 L134.582797,10.0160011 C134.582797,10.118401 134.544397,10.2336009 134.441997,10.3232009 C134.019598,10.6944007 133.405198,10.9760005 132.739598,10.9760005 Z M140.913198,12.1919999 C141.591598,12.1919999 142.205997,12.0512 142.769197,11.7696001 C142.884397,11.7184002 142.961197,11.5648002 142.961197,11.4368003 L142.961197,10.6816007 C142.961197,10.5920008 142.922797,10.5408008 142.845997,10.5408008 C142.538797,10.5408008 142.077997,10.9504006 141.130798,10.9504006 C139.863598,10.9504006 138.852399,10.041601 138.852399,8.80000171 C138.852399,7.52000239 139.863598,6.64960286 141.130798,6.64960286 C141.642798,6.64960286 142.154797,6.7648028 142.653997,6.98240268 C142.679597,6.99520268 142.705197,6.99520268 142.730797,6.99520268 C142.807597,6.99520268 142.858797,6.9440027 142.858797,6.85440275 L142.858797,6.07360317 C142.858797,5.95840323 142.769197,5.80480331 142.666797,5.75360334 C142.141997,5.52320346 141.553198,5.40800352 140.925998,5.40800352 C138.993199,5.40800352 137.4316,6.81600277 137.4316,8.77440172 C137.4316,10.7840007 139.005999,12.1919999 140.913198,12.1919999 Z M145.080399,12 C145.195599,12 145.285199,11.9104 145.285199,11.7952001 L145.310799,8.39040193 C145.310799,7.48160242 146.053198,6.73920281 146.961998,6.73920281 C147.883597,6.73920281 148.625997,7.48160242 148.625997,8.39040193 L148.625997,11.7952001 C148.625997,11.9104 148.689997,12 148.805197,12 L149.816396,12 C149.931596,12 150.008396,11.9104 150.008396,11.7952001 L150.008396,8.08320209 C150.008396,6.43200298 148.869197,5.40800352 147.640398,5.40800352 C146.693198,5.40800352 145.912399,5.92000325 145.336399,6.34240302 C145.310799,6.34240302 145.285199,6.31680304 145.285199,6.27840306 L145.285199,0.544006124 C145.285199,0.428806186 145.195599,0.352006227 145.080399,0.352006227 L144.069199,0.352006227 C143.954,0.352006227 143.8772,0.428806186 143.8772,0.544006124 L143.8772,11.7952001 C143.8772,11.9104 143.954,12 144.069199,12 L145.080399,12 Z M152.153199,3.28320466 C152.652399,3.28320466 153.023599,2.91200486 153.023599,2.37440515 C153.023599,1.86240542 152.639599,1.50400561 152.153199,1.50400561 C151.628399,1.50400561 151.2444,1.87520541 151.2444,2.37440515 C151.2444,2.89920487 151.641199,3.28320466 152.153199,3.28320466 Z M152.652399,12 C152.767599,12 152.857199,11.9104 152.857199,11.7952001 L152.857199,5.79200332 C152.857199,5.67680338 152.767599,5.60000342 152.652399,5.60000342 L151.641199,5.60000342 C151.525999,5.60000342 151.449199,5.67680338 151.449199,5.79200332 L151.449199,11.7952001 C151.449199,11.9104 151.525999,12 151.641199,12 L152.652399,12 Z M155.705999,11.7696001 L155.705999,8.42880191 C155.705999,7.26400253 156.461198,6.72640282 157.369998,6.72640282 C158.291597,6.72640282 158.918797,7.60960235 158.918797,8.49280187 L158.918797,11.7440001 C158.918797,11.936 158.969997,12 159.149197,12 L160.147596,12 C160.301196,12 160.365196,11.936 160.365196,11.7696001 L160.365196,8.27520199 C160.365196,6.50880294 159.417997,5.40800352 157.869198,5.40800352 C157.037198,5.40800352 156.397198,5.76640333 155.705999,6.59840289 L155.705999,5.86880328 C155.705999,5.66400339 155.641999,5.60000342 155.462799,5.60000342 L154.489999,5.60000342 C154.3236,5.60000342 154.2596,5.66400339 154.2596,5.8304033 L154.2596,11.7696001 C154.2596,11.9712 154.435999,11.9964 154.480099,11.99955 L155.462799,12 C155.462799,12 155.705999,12 155.705999,11.7696001 Z M164.417198,16.3903977 C166.836397,16.3903977 167.681196,15.2255983 167.681196,14.1119989 C167.681196,12.9087995 166.644397,11.9232 165.377198,11.9232 L163.444399,11.9232 C163.226799,11.9232 163.021999,11.7312001 163.021999,11.4496003 C163.021999,11.2704004 163.149999,11.0400005 163.265199,11.0400005 C163.444399,11.1040005 163.777198,11.2576004 164.391598,11.2576004 C166.004397,11.2576004 167.309997,9.95200109 167.309997,8.33920196 C167.309997,7.73760228 167.156397,7.23840255 166.913197,6.88000274 L167.540396,6.88000274 C167.642796,6.88000274 167.732396,6.79040278 167.732396,6.68800284 L167.732396,5.79200332 C167.732396,5.68960337 167.642796,5.60000342 167.540396,5.60000342 L165.428398,5.60000342 C165.159598,5.52320346 164.749998,5.40800352 164.391598,5.40800352 C162.778799,5.40800352 161.4604,6.72640282 161.4604,8.33920196 C161.4604,9.17120151 161.716399,9.7472012 162.164399,10.2336009 C161.933999,10.5152008 161.716399,10.9376006 161.716399,11.4496003 C161.716399,11.8592001 161.844399,12.1919999 161.985199,12.4095998 C161.5628,12.7935996 161.166,13.3311993 161.166,14.1119989 C161.166,15.2383983 161.997999,16.3903977 164.417198,16.3903977 Z M164.391598,9.9392011 C163.495599,9.9392011 162.778799,9.22240148 162.778799,8.33920196 C162.778799,7.44320244 163.495599,6.72640282 164.391598,6.72640282 C165.274798,6.72640282 166.004397,7.44320244 166.004397,8.33920196 C166.004397,9.22240148 165.274798,9.9392011 164.391598,9.9392011 Z M164.417198,15.0719984 C163.111599,15.0719984 162.497199,14.6751986 162.497199,14.0991989 C162.497199,13.6127991 162.932399,13.2287993 163.482799,13.2287993 L165.364398,13.2287993 C165.901997,13.2287993 166.349997,13.6127991 166.349997,14.0991989 C166.349997,14.5727986 165.748397,15.0719984 164.417198,15.0719984 Z" fill-rule="nonzero"/>
</symbol>
<!-- >>>>>>>>> VERTICALS <<<<<<<<< -->
<!-- MINDFULNESS -->
<symbol id="mbg-mindfulness-mbg" viewBox="0 0 376.83 60.52">
<path d="M68.76 23.16a10.76 10.76 0 00-8.36-3.67 10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V1.26a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zM59.24 39.8a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 29.19v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V30.08a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.39 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.3 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19V52a7.24 7.24 0 001.95 5c2.05 2.35 5.49 3.5 10.23 3.5s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.35a.74.74 0 00-.74-.74zM82.45 48.68h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56V52a3.5 3.5 0 013.7-3.32zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-mindfulness" viewBox="0 0 376.83 60.52">
<path d="M345.36 29.94l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1v-2.5a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.42 1.85c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24q-.07-5.75-8.19-7.57zm23.24 0l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51A16.59 16.59 0 01374 26a1.11 1.11 0 001.58-1v-2.51a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24-.1-3.79-2.84-6.32-8.24-7.53zM174.83 19.47c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.75a6.19 6.19 0 00-12.38 0L166 43.37a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V20.85a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v1.75c0 .43.25.49.49.18a11.66 11.66 0 018.34-3.25zm120.04 0c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.75a6.19 6.19 0 00-12.38 0L286 43.37a.71.71 0 01-.68.74h-3.82a.71.71 0 01-.74-.68V20.85a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v1.75c0 .43.25.49.49.18a11.66 11.66 0 018.34-3.25z"/><rect class="main" x="150.08" y="20.11" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M156 6a3.25 3.25 0 01-3.18 3.31h-.25a3.39 3.39 0 01-3.19-3.58 3.35 3.35 0 013.37-3.06A3.26 3.26 0 01156 5.92V6zm91.7 38.75c-5.7 0-8.89-3.8-8.89-10v-13.9a.71.71 0 01.68-.74h3.84a.72.72 0 01.75.68v12.8a6.19 6.19 0 0012.38 0l.12-12.74a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68v22.58a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-1.75c0-.43-.25-.49-.49-.18a11.66 11.66 0 01-8.39 3.25zM230.75 4.68a10.11 10.11 0 012.75.42 1.11 1.11 0 001.41-1.1V1.8a1.11 1.11 0 00-.75-1 14.72 14.72 0 00-4.85-.8c-4.68 0-7.48 2.81-7.48 7.53v12.58h-3.3a1.09 1.09 0 00-1.13 1.07v2.34c0 .62.5 1.38 1.11 1.38h3.3V43a1.11 1.11 0 001.11 1.11h3.13a1.11 1.11 0 001.14-1.11V24.92h6.61a1.11 1.11 0 001.11-1.11v-2.59a1.11 1.11 0 00-1.11-1.11h-6.61V8.44c0-2.53 1.21-3.76 3.56-3.76zM277 40.09a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.63a1.11 1.11 0 00-1.11-1.11h-3.13a1.11 1.11 0 00-1.11 1.11v36.91c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1v-2.4a1.12 1.12 0 00-.41-.85zM208.49.52a.71.71 0 00-.74.68v21.46c0 .37-.18.43-.49.18a10.31 10.31 0 00-8.09-3.37 10.83 10.83 0 00-8.4 3.68 12.93 12.93 0 00-3.31 9 13 13 0 003.31 9 10.74 10.74 0 008.4 3.68 10.11 10.11 0 008.09-3.37c.25-.31.49-.25.49.18v1.78a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V1.3a.71.71 0 00-.69-.73zm-8.21 39.31a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.66zm125.39-18.54a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.61 12.44 12.44 0 00-3.4 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16v-3c0-.43-.31-.55-.61-.37A14.91 14.91 0 01321.4 40c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74H330a.7.7 0 00.74-.66v-.67c.02-4.38-1.51-8.36-5.07-10.88zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.63-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm-180-.47v14.22a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V30.07a5.52 5.52 0 10-11 0v13.3a.71.71 0 01-.68.74H124a.71.71 0 01-.74-.68V30.07a5.58 5.58 0 00-11.15-.47v13.77a.71.71 0 01-.68.74h-3.74a.71.71 0 01-.74-.68V28.17c0-1.59-.74-3.21-2.7-3.21h-1a.71.71 0 01-.74-.68v-3.43a.71.71 0 01.68-.74H106c4.66-.12 5.7 2.39 5.82 2.57s.37.27.49.08a10 10 0 017.69-3.19c3.43 0 6 1.47 7.23 3.62.18.37.49.37.74.06a10.46 10.46 0 018.27-3.68c5.39.02 8.57 3.43 8.57 9.58z"/>
</symbol>
<!-- MINDFULNESS HERO -->
<symbol id="mindfulness" viewBox="0 0 274.3 44.8">
<path d="M242.9 29.9l-2.7-.6-.6-.2c-.6-.1-1.1-.3-1.6-.5-.7-.4-1.5-.9-1.5-1.8 0-1.6 1.8-2.5 4.8-2.5 2.4 0 4.8.6 7 1.6.6.3 1.2 0 1.5-.5.1-.1.1-.3.1-.5v-2.5c0-.4-.2-.8-.6-1-2.5-1.3-5.4-1.9-8.2-1.8-6.2 0-10.1 2.7-10.1 7 0 4.5 3.2 6.2 8 7.4l2.9.7c.8.2 1.5.4 2.2.7.8.3 1.4 1 1.4 1.8 0 .6-.4 2.7-5.1 2.7-2.8 0-5.5-.6-8-1.9-.5-.3-1.2-.1-1.5.4-.1.2-.1.4-.1.6v2.5c0 .4.2.8.6 1 2.9 1.4 6.1 2.2 9.4 2.1 6.2 0 10.4-2.9 10.4-7.2-.2-3.7-2.9-6.2-8.3-7.5zm23.2 0l-2.7-.6-.6-.2c-.6-.1-1.1-.3-1.6-.5-.7-.4-1.5-.9-1.5-1.8 0-1.6 1.8-2.5 4.8-2.5 2.4 0 4.8.6 7 1.7.6.3 1.2 0 1.5-.5.1-.1.1-.3.1-.5v-2.5c0-.4-.2-.8-.6-1-2.5-1.3-5.4-1.9-8.2-1.8-6.2 0-10.1 2.7-10.1 7 0 4.5 3.2 6.2 8 7.4l2.9.7c.8.2 1.5.4 2.2.7.8.3 1.4 1 1.4 1.8 0 .6-.4 2.7-5.1 2.7-2.8 0-5.5-.6-8-1.9-.5-.3-1.2-.1-1.5.4-.1.2-.1.4-.1.6v2.5c0 .4.2.8.6 1 2.9 1.5 6.2 2.2 9.4 2.1 6.2 0 10.4-2.9 10.4-7.2-.2-3.8-2.9-6.4-8.3-7.6zM72.3 19.5c-3.1-.1-6 1.1-8.2 3.4-.3.3-.5.2-.5-.2v-1.8c0-.4-.3-.7-.7-.7H59c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7l.1-12.8c0-3.4 2.8-6.2 6.2-6.2 3.4 0 6.2 2.8 6.2 6.2l-.1 12.7v.1c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29.5c0-6.2-3.2-10-8.9-10zm120.1 0c-3.1-.1-6.1 1.1-8.3 3.4-.3.3-.5.2-.5-.2v-1.8c0-.4-.3-.7-.7-.7H179c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7l.1-12.8c0-3.4 2.8-6.2 6.2-6.2 3.4 0 6.2 2.8 6.2 6.2v12.8c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29.5c0-6.2-3.2-10-8.9-10zm-140.3.6h-3.8c-.4 0-.7.3-.7.8v22.4c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.8c0-.4-.3-.7-.7-.7zM50.2 2.7c-1.7 0-3.2 1.3-3.3 3-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3 0-1.9-1.5-3.3-3.3-3.3zm108.5 17.6h-3.9c-.4 0-.7.3-.7.7l-.1 12.7c0 3.4-2.8 6.2-6.2 6.2-3.4 0-6.2-2.8-6.2-6.2V20.9c-.1-.4-.4-.7-.8-.7H137c-.4 0-.7.3-.7.7v13.9c0 6.2 3.2 10 8.9 10 3.1 0 6.1-1.1 8.4-3.2.3-.3.5-.2.5.2v1.8c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V21c0-.4-.3-.7-.7-.7zM131.6.8c-1.6-.5-3.2-.8-4.8-.8-4.7 0-7.5 2.8-7.5 7.5v12.6H116c-.6 0-1.1.4-1.1 1v2.3c0 .6.5 1.4 1.1 1.4h3.3V43c0 .6.5 1.1 1.1 1.1h3.1c.6 0 1.1-.4 1.2-1.1V24.9h6.6c.6 0 1.1-.5 1.1-1.1v-2.6c0-.6-.5-1.1-1.1-1.1h-6.6V8.4c0-2.5 1.2-3.7 3.5-3.7.9 0 1.9.2 2.8.4.6.2 1.2-.2 1.4-.8V1.8c0-.5-.3-.9-.8-1zm42.9 39.3c-.2-.2-.6-.3-.9-.2-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.6c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1v36.9c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1v-2.4c0-.3-.1-.6-.4-.8zM109.9.6L106 .5c-.4 0-.7.3-.7.7v21.5c0 .4-.2.4-.5.2-2.1-2.3-5-3.5-8.1-3.4-3.2-.1-6.3 1.3-8.4 3.7-2.2 2.5-3.4 5.7-3.3 9-.1 3.3 1.1 6.5 3.3 9 2.1 2.4 5.2 3.8 8.4 3.7 3.1.2 6-1.1 8.1-3.4.2-.3.5-.2.5.2v1.8c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V1.3c0-.4-.3-.7-.7-.7zM97.8 39.8c-4.2 0-7.7-3.4-7.7-7.7s3.4-7.7 7.7-7.7 7.7 3.4 7.7 7.7c-.1 4.3-3.5 7.7-7.7 7.7zm125.4-18.5c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c0-4.1-1.5-8.1-5-10.6zm-.9 8.3h-12.1c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.6 3.5 0 .3-.1.5-.4.5zm-188.6-10c-3.2-.1-6.2 1.3-8.3 3.7-.2.3-.5.3-.7-.1-1.2-2.1-3.8-3.6-7.2-3.6-2.9-.1-5.7 1.1-7.7 3.2-.1.2-.4.1-.5-.1-.1-.2-1.1-2.7-5.8-2.6H.7c-.4 0-.7.3-.7.7v3.5c0 .4.3.7.8.7h1c2 0 2.7 1.6 2.7 3.2v15.2c0 .4.3.7.7.7h3.7c.4 0 .7-.3.7-.7V29.6c.2-3 2.7-5.4 5.8-5.3 3.1.1 5.5 2.7 5.4 5.8v13.2c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V29.1c.3-3 3-5.3 6-5s5.3 3 5 6v13.2c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29.1c0-6.1-3.2-9.5-8.6-9.5z"/>
</symbol>
<!-- HEALTH -->
<symbol id="mbg-health-mbg" viewBox="0 0 244.26 60.52">
<path d="M68.76 23.16a10.76 10.76 0 00-8.36-3.67 10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V1.26a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zM59.24 39.8a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 29.19v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V30.08a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.39 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.3 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19V52a7.24 7.24 0 001.95 5c2.05 2.35 5.49 3.5 10.23 3.5s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.35a.74.74 0 00-.74-.74zM82.45 48.68h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56V52a3.5 3.5 0 013.7-3.32zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-health" viewBox="0 0 244.26 60.52">
<path d="M162.65 42.59a9.61 9.61 0 006.35 2.12 11.06 11.06 0 008.22-3.15c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1V40.4c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35v-8.79c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.88-1.45 10.77 10.77 0 00-6.72 2 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.49 5.83zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74 0-2.31 2.07-3.65 5.52-3.65zm-49.27-13.38a11.66 11.66 0 00-8.33 3.25c-.25.31-.49.25-.49-.18V20a1.47 1.47 0 01.28-.38 17.36 17.36 0 005-7.47C119 9.41 119.31 5.7 118 3a5.39 5.39 0 00-8.34-1.67 7.45 7.45 0 00-2.15 5.55c-.06 2.08 0 11.26 0 11.26a1.27 1.27 0 01-.54.7 18.15 18.15 0 01-3.78 1.34 1 1 0 00-.66.85v3.47a.52.52 0 00.67.52 24.06 24.06 0 003.8-1.23.45.45 0 01.47 0v19.55a.71.71 0 00.74.74H112a.71.71 0 00.74-.74l.12-12.75a6.19 6.19 0 0112.38 0l-.06 12.75a.71.71 0 00.74.74h3.8a.71.71 0 00.74-.74V29.46c.01-6.19-3.17-9.99-8.87-9.99zM112.65 6.1c0-2.14 1.12-1.18 1.47.54a7.82 7.82 0 01.12 1.36 10.2 10.2 0 01-.48 3.15 19.3 19.3 0 01-.76 1.75c-.16.32-.3.29-.31-.05-.03-.01-.04-5.57-.04-6.75zm40.08 15.19a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63A12.44 12.44 0 00134 32a11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.05 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.38-1.54-8.36-5.1-10.88zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm64.32 14.18a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.88H216a.87.87 0 00.87-.87V21a.87.87 0 00-.87-.87h-6.53V14.5a.87.87 0 00-.87-.87H205a.87.87 0 00-.82.87v5.61H200a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14V37.6c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.81-.89zm19.17-24.3a11.66 11.66 0 00-8.36 3.25c-.25.31-.49.25-.49-.18V1.26a.71.71 0 00-.68-.74H222a.71.71 0 00-.74.68v42.18a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68v-.06l.12-12.75a6.19 6.19 0 0112.38 0L239 43.37a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V29.5c-.04-6.23-3.22-10-8.92-10zm-36.81 20.59a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.63a1.11 1.11 0 00-1.11-1.11h-3.13A1.11 1.11 0 00189 1.63v36.91c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1v-2.4a1.12 1.12 0 00-.38-.85z"/>
</symbol>
<!-- HEALTH HERO -->
<symbol id="health" viewBox="0 0 141.8 44.8">
<path d="M82.5 40c-.2 0-.5.1-.7 0-1.2 0-2-.9-2-2.3v-8.8c0-5.8-4.4-9.5-10.9-9.5-2.8-.1-5.5.5-8 1.7-.4.2-.6.6-.6 1v3.2c0 .4.3.5.6.3 2.1-1.2 4.5-1.8 6.9-1.8 4.6 0 6.9 2.2 6.9 5.6v.6c0 .4-.3.5-.6.3-2.2-1-4.5-1.5-6.9-1.5-2.4-.1-4.8.6-6.7 2-1.8 1.3-2.9 3.5-2.7 5.8-.1 2.2.8 4.4 2.5 5.8 1.8 1.4 4 2.2 6.3 2.1 3.1.1 6-1 8.2-3.2.3-.3.5-.2.7.2.8 1.8 2.3 2.7 4.7 2.7.8 0 1.7-.1 2.4-.4.4-.2.6-.6.6-1v-2.6c0-.2-.3-.3-.7-.2zm-7.9-3.3c0 .4-.2.8-.5 1.2-1.7 1.5-3.9 2.3-6.2 2.4-3 0-5.1-1.2-5.1-3.7 0-2.3 2.1-3.7 5.6-3.7 2 0 3.9.5 5.6 1.4.4.2.6.6.6 1v1.4zM19.1 19.5c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2V20c.1-.1.2-.3.3-.4 2.3-2 4-4.6 5-7.5.9-2.8 1.2-6.5-.1-9.2C14.1.3 10.9-.8 8.2.6c-.4.2-.7.4-1.1.7C5.7 2.8 4.9 4.8 5 6.9c-.1 2 0 11.2 0 11.2-.1.3-.3.5-.5.7-1.2.6-2.5 1-3.8 1.3-.4.2-.7.5-.7.9v3.5c0 .3.2.5.5.5h.2c1.3-.3 2.6-.7 3.8-1.2.1-.1.3-.1.5 0v19.6c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7v-.1l.1-12.8c0-3.4 2.8-6.2 6.2-6.2 3.4 0 6.2 2.8 6.2 6.2l-.1 12.8c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29.5c0-6.2-3.2-10-8.9-10zm-8.9-6.6V6.1c0-2.1 1.1-1.2 1.5.5.1.4.1.9.1 1.4 0 1.1-.2 2.1-.5 3.2-.2.6-.5 1.2-.8 1.8-.2.3-.3.2-.3-.1zm40 8.4c-1.9-1.3-4.1-2-6.4-1.9-3.3-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.1 1.3-4.5 2-7 2-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c0-4.3-1.5-8.3-5.1-10.8zm-.8 8.3H37.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.6 3.5.1.3-.1.5-.3.5zm64.1-9.5H107v-5.6c0-.5-.4-.9-.9-.9h-3.6c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1v12.8c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.3-.2 4.8-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.9h-.3c-.8.3-1.6.4-2.5.4-2.5 0-3.6-1.1-3.6-3.7V24.9h6.5c.5 0 .9-.4.9-.9v-3c.1-.5-.3-.9-.8-.9zm19.4-.6c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2V1.3c0-.4-.3-.7-.7-.7h-3.9c-.4 0-.7.3-.7.7v42.2c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7v-.1l.1-12.8c0-3.4 2.8-6.2 6.2-6.2s6.2 2.8 6.2 6.2l-.1 12.8c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V29.5c0-6.2-3.1-10-8.8-10zM95.2 39.8c-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.6c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1v36.9c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1v-2.4c0-.3-.2-.6-.4-.8-.3-.2-.6-.3-.9-.3z"/>
</symbol>
<!-- FOOD -->
<symbol id="mbg-food-mbg" class="logo mbg-food" viewBox="0 0 201.95 60.52">
<path d="M68.76 23.16a10.76 10.76 0 00-8.36-3.67 10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V1.26a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zM59.24 39.8a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 29.19v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V30.08a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.39 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.3 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19V52a7.24 7.24 0 001.95 5c2.05 2.35 5.49 3.5 10.23 3.5s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.35a.74.74 0 00-.74-.74zM82.45 48.68h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56V52a3.5 3.5 0 013.7-3.32zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-food" class="logo mbg-food" viewBox="0 0 201.95 60.52">
<path d="M116.85 4.68a10.11 10.11 0 012.75.42A1.11 1.11 0 00121 4V1.8a1.11 1.11 0 00-.75-1 14.72 14.72 0 00-4.84-.8c-4.68 0-7.48 2.81-7.48 7.53v12.58h-4.3a1.09 1.09 0 00-1.13 1.07v2.34c0 .62.5 1.38 1.11 1.38h4.3V43a1.11 1.11 0 001.09 1.11h3.13a1.11 1.11 0 001.16-1.11V24.92h6.61a1.11 1.11 0 001.1-1.11v-2.59a1.11 1.11 0 00-1.11-1.11h-6.61V8.44c.01-2.53 1.22-3.76 3.57-3.76zM197.41.52a.71.71 0 00-.74.68v21.46c0 .37-.18.43-.49.18a10.31 10.31 0 00-8.09-3.37 10.83 10.83 0 00-8.4 3.68 12.93 12.93 0 00-3.31 9 13 13 0 003.31 9 10.74 10.74 0 008.4 3.68 10.11 10.11 0 008.09-3.37c.25-.31.49-.25.49.18v1.78a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V1.3a.71.71 0 00-.69-.73zm-8.21 39.31a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.66zm-27.7-20.37a12.62 12.62 0 1012.63 12.62 12.62 12.62 0 00-12.63-12.62zm0 20.16a7.54 7.54 0 117.5-7.54 7.53 7.53 0 01-7.52 7.54zm-27.63-20.16a12.62 12.62 0 1012.63 12.62 12.62 12.62 0 00-12.63-12.62zm0 20.16a7.54 7.54 0 117.54-7.54 7.53 7.53 0 01-7.52 7.54z"/>
</symbol>
<!-- FOOD HERO -->
<symbol id="food" viewBox="0 0 99.45 44.8">
<path d="M14.35 4.68a10.11 10.11 0 012.75.42A1.11 1.11 0 0018.51 4V1.8a1.11 1.11 0 00-.75-1 14.72 14.72 0 00-4.85-.8C8.23 0 5.43 2.81 5.43 7.53v12.58h-4.3A1.09 1.09 0 000 21.18v2.34c0 .62.5 1.38 1.11 1.38h4.3V43a1.11 1.11 0 001.11 1.11h3.13A1.11 1.11 0 0010.79 43V24.92h6.61a1.11 1.11 0 001.11-1.11v-2.59a1.11 1.11 0 00-1.11-1.11h-6.61V8.44c0-2.53 1.21-3.76 3.56-3.76zM94.91.52a.71.71 0 00-.74.68v21.46c0 .37-.18.43-.49.18a10.31 10.31 0 00-8.09-3.37 10.83 10.83 0 00-8.4 3.68 12.93 12.93 0 00-3.31 9 13 13 0 003.31 9 10.74 10.74 0 008.4 3.68 10.11 10.11 0 008.09-3.37c.25-.31.49-.25.49.18v1.78a.71.71 0 00.68.74h3.85a.71.71 0 00.74-.68V1.3a.71.71 0 00-.69-.73zM86.7 39.83a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.66zM59 19.46a12.62 12.62 0 1012.63 12.62A12.62 12.62 0 0059 19.46zm0 20.16a7.54 7.54 0 117.54-7.54A7.53 7.53 0 0159 39.62zM31.37 19.46A12.62 12.62 0 1044 32.08a12.62 12.62 0 00-12.63-12.62zm0 20.16a7.54 7.54 0 117.54-7.54 7.53 7.53 0 01-7.52 7.54z"/>
</symbol>
<!-- MOVEMENT -->
<symbol id="mbg-movement-mbg" viewBox="0 0 341.59 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-movement" viewBox="0 0 341.59 60">
<path d="M219.51 20.77a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.39 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16V38c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.7-.72h16.91a.7.7 0 00.74-.66v-.67c-.05-4.4-1.58-8.38-5.14-10.9zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zM312.33 19c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.8a6.19 6.19 0 00-12.38 0l-.12 12.75a.71.71 0 01-.68.74H299a.71.71 0 01-.74-.68V20.34a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V22c0 .43.25.49.49.18a11.66 11.66 0 018.3-3.18zm-23.05 1.77a10.73 10.73 0 00-6.37-1.9A11.68 11.68 0 00274 22.5a12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.62-1.18v-3c0-.43-.31-.55-.61-.37A14.91 14.91 0 01285 39.5c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c0-4.4-1.53-8.38-5.09-10.9zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm52.51 14.19a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zm-112-1.1v.68a.73.73 0 00.73.73h3.78a.73.73 0 00.73-.73V29.59a5.54 5.54 0 0111.08 0v13.28a.73.73 0 00.73.73h3.78a.73.73 0 00.73-.73V29.58a5.5 5.5 0 0111 0v13.29a.73.73 0 00.73.73H266a.73.73 0 00.73-.73V28.69c0-6.22-3.2-9.57-8.45-9.57a10.58 10.58 0 00-8.28 3.69.41.41 0 01-.76-.07c-1.21-2.16-3.81-3.61-7.21-3.61a9.2 9.2 0 00-7.42 3.16c-.14.17-.26.23-.34.18a.19.19 0 01-.12-.2v-1.83a.84.84 0 00-.84-.84h-3.55a.84.84 0 00-.86.82l.03 21.77zm-67.79-23.24a12.62 12.62 0 1012.63 12.62 12.62 12.62 0 00-12.63-12.62zm0 20.16a7.54 7.54 0 117.54-7.54 7.53 7.53 0 01-7.52 7.54zM189.69 43l10-22.75a.41.41 0 00-.41-.63h-4.15a1.12 1.12 0 00-1 .63L187.47 36c-.15.35-.39.35-.54 0l-6.8-15.73a1.13 1.13 0 00-1-.63h-4.34a.41.41 0 00-.41.63l10 22.75a1.15 1.15 0 001 .63h3.33a1.15 1.15 0 00.98-.65zm-44.86-14.37v14.22a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V29.55a5.52 5.52 0 10-11 0v13.3a.71.71 0 01-.68.74H124a.71.71 0 01-.74-.68V29.55a5.58 5.58 0 00-11.15-.47v13.77a.71.71 0 01-.68.74h-3.74a.71.71 0 01-.74-.68V27.65c0-1.59-.74-3.21-2.7-3.21h-1a.71.71 0 01-.74-.68v-3.42a.71.71 0 01.68-.74H106c4.66-.12 5.7 2.39 5.82 2.57s.37.27.49.08a10 10 0 017.72-3.19c3.43 0 6 1.47 7.23 3.62.18.37.49.37.74.06a10.46 10.46 0 018.27-3.68c5.38.01 8.56 3.42 8.56 9.57z"/>
</symbol>
<!-- MOVEMENT HERO -->
<symbol id="movement" viewBox="0 0 239.1 31.1">
<path d="M117 7.7c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c.1-4.1-1.5-8.1-5-10.6zm-.8 8.3H104c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.6 3.5.1.3-.1.5-.3.5zm93.6-10.2c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2V7.1c0-.4-.3-.7-.7-.7h-3.9c-.4 0-.7.3-.7.7v22.6c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7l.1-12.7c0-3.4 2.8-6.2 6.2-6.2s6.2 2.8 6.2 6.2l-.1 12.7v.1c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7v-14c0-6.2-3.2-10-8.9-10zm-23.1 1.9c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.2-8.9-5.8-.1-.3.1-.6.4-.7H191c.4 0 .7-.3.7-.7v-.7c.1-4.1-1.4-8.1-5-10.6zm-.8 8.3h-12.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.6 3.5.1.3-.1.5-.3.5zm52.3-4.8c.5 0 .9-.4.9-.9v-3c0-.5-.4-.9-.9-.9h-6.5V.9c0-.5-.4-.9-.9-.9h-3.6c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1V24c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.3-.2 4.8-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.9h-.3c-.8.3-1.6.4-2.5.4-2.5 0-3.6-1.1-3.6-3.7V11.2h6.6zM155.7 6c-3.2-.1-6.2 1.3-8.2 3.7-.1.2-.3.3-.6.2-.1-.1-.2-.1-.2-.3-1.2-2.2-3.8-3.6-7.2-3.6-2.8-.1-5.6 1-7.4 3.2-.1.2-.3.2-.3.2-.1 0-.1-.1-.1-.2V7.3c0-.5-.4-.8-.8-.8h-3.6c-.5 0-.8.4-.9.8v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V16.5c0-3.1 2.5-5.5 5.5-5.5 3.1 0 5.5 2.5 5.5 5.5v13.3c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V16.5c0-3 2.5-5.5 5.5-5.5s5.5 2.5 5.5 5.5v13.3c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V15.6c.2-6.2-3-9.6-8.3-9.6zm-97.1-.2c-7 0-12.6 5.7-12.6 12.6 0 7 5.7 12.6 12.6 12.6 7 0 12.6-5.7 12.6-12.6 0-6.9-5.6-12.6-12.6-12.6zm0 20.2c-4.2 0-7.6-3.4-7.6-7.5s3.4-7.5 7.5-7.5c4.2 0 7.5 3.4 7.5 7.5.2 4.1-3.2 7.5-7.4 7.5zM97 6.5c-.1-.1-.2-.1-.3-.1h-4.1c-.4 0-.8.2-1 .6l-6.7 15.7c-.2.3-.4.3-.5 0L77.6 7.1c-.2-.4-.6-.6-1-.6h-4.3c-.2 0-.4.1-.5.3 0 .1 0 .2.1.3l10 22.8c.2.4.6.6 1 .6h3.3c.4 0 .8-.3 1-.6l10-22.8c.1-.2 0-.4-.2-.6zm-63.2-.6c-3.2-.1-6.2 1.3-8.3 3.7-.2.3-.6.3-.7-.1-1.2-2.2-3.8-3.6-7.2-3.6-2.9-.1-5.7 1.1-7.7 3.2-.2.2-.5 0-.6-.1S8.2 6.4 3.5 6.5H.7c-.4 0-.7.3-.7.7v3.5c0 .4.3.7.7.7h1c2 0 2.7 1.6 2.7 3.2v15.3c0 .4.3.7.7.7h3.7c.4 0 .7-.3.7-.7V16c.2-3 2.7-5.3 5.7-5.3 3.1.1 5.5 2.6 5.4 5.7v13.4c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V15.5c.3-3 2.9-5.3 6-5 3 .3 5.3 2.9 5 6v13.4c0 .4.4.7.8.7h3.9c.4 0 .7-.3.7-.7V15.5c.1-6.1-3.1-9.5-8.4-9.6z"/>
</symbol>
<!-- PLANET -->
<symbol id="mbg-planet-mbg" viewBox="0 0 245.87 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-planet" viewBox="0 0 245.87 60">
<path d="M107 57V27.4 57a.71.71 0 00.74.74.71.71 0 01-.74-.74zm83.86-38c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.06-12.75a6.19 6.19 0 10-12.38 0l-.15 12.7a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V20.34a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V22c0 .43.25.49.49.18a11.66 11.66 0 018.37-3.18zm-40.59 23.08a9.61 9.61 0 006.34 2.11 11.06 11.06 0 008.22-3.19c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.72 2.06 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.55 5.83zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74.04-2.31 2.04-3.66 5.52-3.66zm86.73 10.95a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37H245a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53V14a.87.87 0 00-.87-.87H234a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.79-.89zm-23.37-22.52a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16V38c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.38-1.54-8.36-5.1-10.88zM221 29.1h-12.15a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm-75.5 10.47a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.11A1.11 1.11 0 00140.22 0h-3.13A1.11 1.11 0 00136 1.11V38c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1v-2.4a1.12 1.12 0 00-.43-.83z"/><path class="main" d="M132.55 31.61a13 13 0 00-3.31-9 10.83 10.83 0 00-8.4-3.68 10.32 10.32 0 00-8 3.32.69.69 0 01-.53 0h-.08c-.15-.14-1.06-2.1-4.46-2.49h-.22a10.92 10.92 0 00-1.28 0h-3a.74.74 0 00-.74.74v3.35a.74.74 0 00.74.74h1.1c1.84 0 2.58 1.49 2.65 3V57a.71.71 0 00.74.74h3.8a.71.71 0 00.74-.74V41.12c0-.37.25-.43.49-.18a10.11 10.11 0 008.09 3.37 10.74 10.74 0 008.4-3.68 12.82 12.82 0 003.31-8.95v-.06zm-12.87 7.66a7.66 7.66 0 117.66-7.66 7.66 7.66 0 01-7.66 7.67z"/>
</symbol>
<!-- HERO -->
<symbol id="planet" viewBox="0 0 143.4 57.8">
<path d="M88.4 19c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2v-1.8c0-.4-.3-.7-.7-.7H75c-.4 0-.7.3-.7.7v22.6c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7l.1-12.8c0-3.4 2.8-6.2 6.2-6.2 3.4 0 6.2 2.8 6.2 6.2v12.9c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29c-.1-6.2-3.2-10-8.9-10zM70.1 39.5c-.2.1-.5.1-.8.1-1.1 0-2-.9-2-2.4v-8.8c0-5.8-4.4-9.5-10.9-9.5-2.8-.1-5.5.5-8 1.7-.4.2-.6.6-.6 1v3.2c0 .4.3.5.6.3 2.1-1.2 4.5-1.8 6.8-1.8 4.6 0 6.9 2.2 6.9 5.6v.6c0 .4-.3.5-.6.3-2.2-1-4.5-1.5-6.9-1.5-2.4-.1-4.7.7-6.7 2.1-1.8 1.3-2.9 3.5-2.7 5.8-.1 2.2.8 4.4 2.5 5.8 1.8 1.4 4 2.2 6.3 2.1 3.1.1 6-1 8.2-3.2.3-.3.5-.2.7.2.8 1.8 2.3 2.7 4.7 2.7.8 0 1.7-.1 2.4-.4.4-.2.6-.6.6-1v-2.5c.2-.4-.1-.5-.5-.4zm-7.8-3.3c0 .4-.2.8-.5 1.2-1.7 1.5-3.9 2.3-6.2 2.4-3 0-5.1-1.2-5.1-3.7 0-2.3 2-3.6 5.5-3.6 2 0 3.9.5 5.7 1.4.4.2.6.6.6 1v1.3zm80.2-11.8c.5 0 .9-.4.9-.9v-3c0-.5-.4-.9-.9-.9H136V14c0-.5-.4-.9-.9-.9h-3.6c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1v12.8c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.2-.2 4.7-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.9h-.3c-.8.3-1.6.4-2.5.4-2.5 0-3.6-1.1-3.6-3.7V24.4h6.7zm-23.2-3.6c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.1-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c.1-4.1-1.4-8.1-5-10.6zm-.8 8.3h-12.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.7 3.5 0 .3-.2.5-.4.5zM42.1 39.3c-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.1c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1V38c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1v-2.4c0-.3-.2-.6-.4-.8-.2-.2-.6-.3-.9-.3zM18.3 18.9c-3-.1-5.9 1.1-8 3.3-.2.1-.4.1-.5 0h-.1c-.1-.1-1.1-2.1-4.5-2.5H.7c-.4 0-.7.3-.7.7v3.4c0 .4.3.7.7.7h1.1c1.8 0 2.6 1.5 2.6 3V57c0 .4.3.7.7.7H9c.4 0 .7-.3.8-.7V41.1c0-.4.2-.4.5-.2 2 2.3 5 3.5 8.1 3.4 3.2.1 6.3-1.3 8.4-3.7 2.2-2.5 3.4-5.7 3.3-9v-.1c.1-3.3-1.1-6.5-3.3-9-2.2-2.3-5.3-3.6-8.5-3.6zm-1.1 20.4c-4.2 0-7.7-3.4-7.7-7.7 0-4.2 3.4-7.7 7.7-7.7 4.2 0 7.7 3.4 7.7 7.7-.1 4.3-3.5 7.7-7.7 7.7z"/>
</symbol>
<!-- PARENTING -->
<!-- RELATIONSHIPS -->
<symbol id="mbg-relationships-mbg" viewBox="0 0 390.39 60">
<path d="M68.76 22.64A10.76 10.76 0 0060.4 19a10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V.74a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zm-9.52 16.64a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 28.67v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V29.56a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.35 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.32 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19v.07a7.24 7.24 0 001.95 5C77.82 58.85 81.26 60 86 60s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.37a.74.74 0 00-.74-.74zM82.45 48.16h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56v-.3a3.5 3.5 0 013.7-3.28zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-relationships" viewBox="0 0 390.39 60">
<path d="M364.09 40.56a10.74 10.74 0 01-8.4 3.68 10.11 10.11 0 01-8.09-3.37c-.25-.25-.49-.18-.49.18V57a.71.71 0 01-.74.74h-3.8a.71.71 0 01-.74-.74V20.34a.71.71 0 01.74-.74h3.8a.71.71 0 01.74.74v1.78c0 .43.18.49.49.18a10.31 10.31 0 018.09-3.37 10.83 10.83 0 018.4 3.68 13 13 0 013.31 9 12.83 12.83 0 01-3.31 8.95zm-9.56-16.67a7.66 7.66 0 107.66 7.66 7.66 7.66 0 00-7.66-7.66zM264.29 19c5.7 0 8.89 3.8 8.89 10v13.9a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68v-.06l.1-12.8a6.19 6.19 0 00-12.38 0l-.12 12.75a.71.71 0 01-.68.74h-3.86a.71.71 0 01-.74-.68V20.34a.71.71 0 01.68-.74h3.86a.71.71 0 01.74.68V22c0 .43.25.49.49.18a11.66 11.66 0 018.3-3.18zM234 18.95a12.62 12.62 0 1012.63 12.62A12.62 12.62 0 00234 18.95zm0 20.16a7.54 7.54 0 117.54-7.54 7.53 7.53 0 01-7.52 7.54zm-68.27 2.97a9.61 9.61 0 006.34 2.11 11.06 11.06 0 008.21-3.19c.27-.27.55-.2.69.15.75 1.82 2.35 2.71 4.72 2.71a6 6 0 002.43-.43 1.22 1.22 0 00.59-1v-2.55c0-.38-.27-.52-.63-.43a3.12 3.12 0 01-.76.08c-1.15 0-2-.86-2-2.35V28.4c0-5.76-4.37-9.53-10.9-9.53a17.44 17.44 0 00-8 1.69 1.24 1.24 0 00-.6 1v3.19c0 .38.26.52.59.34a13.93 13.93 0 016.85-1.77c4.61 0 6.91 2.24 6.91 5.64v.65c0 .36-.27.5-.61.33a15.62 15.62 0 00-6.93-1.51 10.77 10.77 0 00-6.63 2.08 6.73 6.73 0 00-2.74 5.76 7.15 7.15 0 002.47 5.81zm8.21-9.74a12.62 12.62 0 015.68 1.36 1.23 1.23 0 01.61 1v1.51a1.77 1.77 0 01-.49 1.16 9.65 9.65 0 01-6.23 2.36c-3 0-5.09-1.25-5.09-3.74-.01-2.31 2.06-3.66 5.51-3.66zm31.79 10.95a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V24.37h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87H199V14a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.6h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.75-.89zM316.18 19a11.66 11.66 0 00-8.33 3.25c-.25.31-.49.25-.49-.18V.74a.71.71 0 00-.68-.74h-3.86a.71.71 0 00-.74.68v42.18a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68v-.06l.12-12.75a6.19 6.19 0 0112.38 0l-.06 12.75a.71.71 0 00.68.74h3.86a.71.71 0 00.74-.68V29c-.02-6.25-3.2-10-8.9-10zm-194.95 0h-.16a10.65 10.65 0 00-8.46 4.13c-.24.31-.31.26-.35.18a7.22 7.22 0 00-5.05-3.55 10.53 10.53 0 00-4.12.08c-.43.09-.57.48-.58.88V24a.63.63 0 00.76.69c.43 0 .85-.09 1.28-.12 1.46-.07 2.39.17 2.39 1.25v17.06a.71.71 0 00.74.68h3.81a.71.71 0 00.68-.74V29.69a3.69 3.69 0 01.37-1.41 8.76 8.76 0 017.54-4h.84a.66.66 0 00.64-.67v-3.8c.01-.42-.08-.81-.33-.81zm20.39 1.77a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2A1.39 1.39 0 00145 41v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74H146a.7.7 0 00.74-.66v-.67c-.03-4.38-1.56-8.36-5.12-10.88zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm19.63 10.47a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.11A1.11 1.11 0 00155.11 0H152a1.11 1.11 0 00-1.11 1.11V38c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1v-2.4a1.12 1.12 0 00-.43-.83z"/><rect class="main" x="211.69" y="19.6" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M217.61 5.51a3.25 3.25 0 01-3.18 3.31h-.25A3.39 3.39 0 01211 5.24a3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27s-.01.02-.01.06z"/><rect class="main" x="330.7" y="19.6" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M336.62 5.51a3.25 3.25 0 01-3.18 3.31h-.25A3.39 3.39 0 01330 5.24a3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27v.06zm45.57 23.93l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1V22a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.34 2.1c6.2 0 10.36-2.91 10.36-7.24-.03-3.81-2.74-6.34-8.17-7.55zm-92.52 0l-2.67-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1V22a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.43 1.81c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24-.11-3.8-2.82-6.33-8.25-7.54z"/>
</symbol>
<!-- RELATIONSHIPS HERO -->
<symbol id="relationships" viewBox="0 0 287.9 57.8">
<path d="M253.2 18.9c-3.1-.1-6 1.1-8.1 3.4-.3.3-.5.2-.5-.2V20.2c0-.4-.3-.7-.7-.7H240c-.4 0-.7.3-.7.7v36.9c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V41c0-.4.2-.4.5-.2 2 2.3 5 3.5 8.1 3.4 3.2.1 6.3-1.3 8.4-3.7 2.2-2.4 3.4-5.7 3.3-9 .1-3.3-1.1-6.5-3.3-9-2.1-2.3-5.2-3.6-8.4-3.6zM252 39.2c-4.2 0-7.7-3.4-7.7-7.7 0-4.2 3.4-7.7 7.7-7.7 4.2 0 7.7 3.4 7.7 7.7 0 4.3-3.5 7.7-7.7 7.7zM161.8 19c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2v-1.8c0-.4-.3-.7-.7-.7h-3.9c-.4 0-.7.3-.7.7v22.6c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7l.1-12.7c0-3.4 2.8-6.2 6.2-6.2s6.2 2.8 6.2 6.2l-.1 12.8v.1c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29c0-6.2-3.2-10-8.9-10zm-30.3 0c-7 0-12.6 5.7-12.6 12.6 0 7 5.7 12.6 12.6 12.6 7 0 12.6-5.7 12.6-12.6.1-7-5.6-12.6-12.6-12.6zm0 20.1c-4.2 0-7.6-3.4-7.6-7.5s3.4-7.5 7.5-7.5c4.2 0 7.5 3.4 7.5 7.5.2 4.1-3.2 7.5-7.4 7.5zm-45.9.4c-.2.1-.5.1-.8.1-1.2 0-2-.9-2-2.4v-8.8c0-5.8-4.4-9.5-10.9-9.5-2.8-.1-5.5.5-8 1.7-.4.2-.6.6-.6 1v3.2c0 .4.3.5.6.3 2.1-1.2 4.5-1.8 6.8-1.8 4.6 0 6.9 2.2 6.9 5.6v.6c0 .4-.3.5-.6.3-2.2-1-4.5-1.5-6.9-1.5-2.4-.1-4.8.6-6.7 2.1-1.8 1.3-2.9 3.5-2.7 5.8-.1 2.2.8 4.4 2.6 5.8 1.8 1.4 4 2.2 6.3 2.1 3.1.1 6-1 8.2-3.2.3-.3.5-.2.7.2.8 1.8 2.3 2.7 4.7 2.7.8 0 1.7-.1 2.4-.4.4-.2.6-.6.6-1v-2.5c0-.4-.3-.5-.6-.4zm-7.9-3.3c0 .4-.2.8-.5 1.2-1.7 1.5-3.9 2.3-6.2 2.4-3 0-5.1-1.2-5.1-3.7 0-2.3 2.1-3.6 5.5-3.6 2 0 3.9.5 5.7 1.4.4.2.6.6.6 1v1.3zM103 19.6h-6.5V14c0-.5-.4-.9-.9-.9H92c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1v12.8c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.3-.2 4.8-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.9h-.3c-.8.3-1.6.4-2.5.4-2.5 0-3.6-1.1-3.6-3.7V24.4h6.5c.5 0 .9-.4.9-.9v-3c.1-.5-.3-.9-.8-.9zm110.7-.6c-3.1-.1-6.1 1.1-8.3 3.2-.2.3-.5.2-.5-.2V.7c0-.4-.3-.7-.7-.7h-3.9c-.4 0-.7.3-.7.7v42.2c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7v-.1l.2-12.8c0-3.4 2.8-6.2 6.2-6.2s6.2 2.8 6.2 6.2l-.1 12.8c0 .4.3.7.7.7h3.9c.4 0 .7-.3.7-.7V29c-.2-6.3-3.3-10-9-10zm-195 0h-.2c-3.3 0-6.4 1.5-8.5 4.1-.2.3-.3.3-.3.2-1.1-1.9-2.9-3.2-5-3.5-1.4-.2-2.8-.2-4.1.1-.4 0-.6.4-.6.8V24c0 .3.2.7.6.7h.2c.4 0 .8-.1 1.3-.1 1.5-.1 2.4.2 2.4 1.2v17.1c0 .4.3.7.7.7H9c.4 0 .7-.3.7-.7V29.7c0-.5.1-1 .3-1.4 1.6-2.6 4.5-4.1 7.5-4h.8c.4 0 .6-.3.6-.7v-3.8c.2-.4.1-.8-.2-.8zm20.4 1.8c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.1-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7v-.7c.1-4.1-1.4-8.1-5-10.6zm-.8 8.3H26.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.7 3.5-.1.3-.3.5-.5.5zM57 39.3c-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.1c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1V38c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1v-2.4c0-.3-.2-.6-.4-.8-.3-.2-.6-.3-.9-.3zm56.7-19.7h-3.8c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.3c.1-.4-.3-.7-.7-.7zm-1.9-17.4c-1.8 0-3.2 1.3-3.4 3.1-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3v-.1c.1-1.9-1.3-3.3-3.2-3.3zm120.9 17.4h-3.8c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.3c.1-.4-.3-.7-.7-.7zm-1.8-17.4c-1.8 0-3.2 1.3-3.4 3.1-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3v-.1c0-1.9-1.4-3.3-3.2-3.3zm48.8 27.2l-2.7-.6-.6-.2c-.6-.1-1.1-.3-1.6-.5-.7-.4-1.5-.9-1.5-1.8 0-1.6 1.8-2.5 4.8-2.5 2.4 0 4.8.6 7 1.6.6.3 1.2 0 1.5-.5.1-.1.1-.3.1-.5V22c0-.4-.2-.8-.6-1-2.5-1.3-5.4-1.9-8.2-1.8-6.2 0-10.1 2.7-10.1 7 0 4.5 3.2 6.2 8 7.4l2.9.7c.8.2 1.5.4 2.2.7.8.3 1.4 1 1.4 1.8 0 .6-.4 2.7-5.1 2.7-2.8 0-5.5-.6-8-1.9-.5-.3-1.2-.1-1.5.4-.1.2-.1.4-.1.6v2.5c0 .4.2.8.6 1 2.9 1.4 6.1 2.2 9.4 2.1 6.2 0 10.4-2.9 10.4-7.2-.2-3.8-2.9-6.3-8.3-7.6zm-92.5 0l-2.7-.6-.6-.2c-.6-.1-1.1-.3-1.6-.5-.7-.4-1.5-.9-1.5-1.8 0-1.6 1.8-2.5 4.8-2.5 2.4 0 4.8.6 7 1.6.6.3 1.2 0 1.5-.5.1-.1.1-.3.1-.5V22c0-.4-.2-.8-.6-1-2.5-1.3-5.4-1.9-8.2-1.8-6.2 0-10.1 2.7-10.1 7 0 4.5 3.2 6.2 8 7.4l2.9.7c.8.2 1.5.4 2.2.7.8.3 1.4 1 1.4 1.8 0 .6-.4 2.7-5.1 2.7-2.8 0-5.5-.6-8-1.9-.5-.3-1.2-.1-1.5.4-.1.2-.1.4-.1.6v2.5c0 .4.2.8.6 1 2.9 1.4 6.1 2.2 9.4 2.1 6.2 0 10.4-2.9 10.4-7.2-.2-3.8-2.9-6.3-8.3-7.6z"/>
</symbol>
<!-- HOME -->
<!-- BEAUTY -->
<!-- LIFESTYLE -->
<!-- SOCIAL GOOD -->
<symbol id="mbg-lifestyle-mbg" viewBox="0 0 283.42 60.52">
<path d="M68.76 23.16a10.76 10.76 0 00-8.36-3.67 10.26 10.26 0 00-8.09 3.34c-.27.3-.47.24-.47-.17V1.26a.74.74 0 00-.73-.74H47.3a.73.73 0 00-.74.72v42.15a.74.74 0 00.74.74h3.81a.74.74 0 00.74-.74v-1.8c0-.41.2-.47.47-.17a10.26 10.26 0 008.09 3.34 10.76 10.76 0 008.36-3.67 12.91 12.91 0 003.28-9 12.88 12.88 0 00-3.29-8.93zM59.24 39.8a7.63 7.63 0 117.63-7.63 7.63 7.63 0 01-7.63 7.63zM42.33 29.19v14.2a.73.73 0 01-.73.73h-3.8a.73.73 0 01-.73-.73V30.08a5.5 5.5 0 00-11 0v13.31a.73.73 0 01-.73.73h-3.78a.73.73 0 01-.73-.73v-13.3a5.55 5.55 0 00-11.1 0v13.3a.73.73 0 01-.73.73H5.21a.73.73 0 01-.73-.73v-15.2c0-1.62-.72-2.79-2.67-2.79H.74a.74.74 0 01-.74-.74v-3.78a.74.74 0 01.74-.74h2.8c4.66-.1 5.67 2.41 5.84 2.57.23.32.35.28.5.11a9.9 9.9 0 017.74-3.21c3.41 0 6 1.45 7.22 3.62.2.35.5.39.76.07a10.6 10.6 0 018.27-3.69c5.24-.01 8.46 3.39 8.46 9.58zm55.29-9.07h-7.89a1.57 1.57 0 01-.42-.07 10.91 10.91 0 00-11.87 17.32.26.26 0 010 .33 6.8 6.8 0 00-1.57 4.3 6.48 6.48 0 001 3.42.25.25 0 01-.05.32 8 8 0 00-3 6.19V52a7.24 7.24 0 001.95 5c2.05 2.35 5.49 3.5 10.23 3.5s8-1.14 10.13-3.39a7.37 7.37 0 002-5.11 8.41 8.41 0 00-8.6-8.18H82.3a1.64 1.64 0 01-1.15-.54l-.08-.11a1.93 1.93 0 01-.24-.51v-.3a2 2 0 010-.24 1.93 1.93 0 01.68-1.48.4.4 0 01.37 0 10.92 10.92 0 0013.53-15.5.12.12 0 01.11-.19h2.1a.74.74 0 00.74-.74v-3.35a.74.74 0 00-.74-.74zM82.45 48.68h7a3.5 3.5 0 013.68 3.27v.18a1.41 1.41 0 010 .28 2.67 2.67 0 01-.67 1.31c-1.09 1.19-3.4 1.85-6.51 1.85s-5.36-.62-6.46-1.75a2.46 2.46 0 01-.74-1.56V52a3.5 3.5 0 013.7-3.32zm3.39-12.26a6 6 0 116-6 6 6 0 01-6 6z"/>
</symbol>
<symbol id="mbg-lifestyle" viewBox="0 0 283.42 60.52">
<path class="main" d="M189.12 30l-2.72-.57-.58-.17a15.92 15.92 0 01-1.63-.53c-.73-.36-1.47-.86-1.47-1.81 0-1.57 1.78-2.51 4.76-2.51a16.59 16.59 0 017 1.64 1.11 1.11 0 001.58-1v-2.5a1.11 1.11 0 00-.57-1 16.63 16.63 0 00-8.21-1.81c-6.21 0-10.07 2.68-10.07 7 0 4.51 3.19 6.23 8 7.43l2.9.71a16.42 16.42 0 012.23.7 2.07 2.07 0 011.41 1.85c0 .63-.37 2.7-5.1 2.7a17 17 0 01-8-1.91 1.11 1.11 0 00-1.64 1v2.5a1.11 1.11 0 00.56 1 20.12 20.12 0 009.37 2.09c6.2 0 10.36-2.91 10.36-7.24q-.06-5.74-8.18-7.57z"/><rect class="main" x="122.43" y="20.11" width="5.27" height="24" rx=".74" ry=".74"/><path class="main" d="M128.35 6a3.25 3.25 0 01-3.18 3.31h-.25a3.39 3.39 0 01-3.19-3.58 3.35 3.35 0 013.37-3.06 3.26 3.26 0 013.25 3.27V6zm16.8-1.25a10.11 10.11 0 012.75.42 1.11 1.11 0 001.41-1.1v-2.2a1.11 1.11 0 00-.75-1 14.72 14.72 0 00-4.85-.75c-4.68 0-7.48 2.81-7.48 7.53v12.53h-3.3a1.09 1.09 0 00-1.13 1.07v2.34c0 .62.5 1.38 1.11 1.38h3.3v18.1a1.11 1.11 0 001.11 1.11h3.13a1.11 1.11 0 001.14-1.08V25h6.61a1.11 1.11 0 001.11-1.11v-2.6a1.11 1.11 0 00-1.11-1.11h-6.61V8.51c0-2.51 1.21-3.76 3.56-3.76zm113.07 35.41a1.11 1.11 0 00-.9-.25 4.68 4.68 0 01-.76.06c-1.69 0-2.51-.91-2.51-2.79V1.7a1.11 1.11 0 00-1.11-1.11h-3.13a1.11 1.11 0 00-1.11 1.11v36.91c0 5.19 3.26 6.28 6 6.28a9.46 9.46 0 003.19-.48 1.11 1.11 0 00.74-1V41a1.12 1.12 0 00-.41-.84zm20.1-18.8a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.4-1.54-8.38-5.1-10.9zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm-108.29-8.33a10.73 10.73 0 00-6.37-1.9 11.68 11.68 0 00-8.9 3.63 12.44 12.44 0 00-3.43 9 11.83 11.83 0 003.8 9.13 13.57 13.57 0 009.44 3.55 15.89 15.89 0 008.27-2 1.39 1.39 0 00.61-1.16v-3c0-.43-.31-.55-.61-.37a14.91 14.91 0 01-7.08 1.85c-4.6 0-8-2.15-8.89-5.76a.59.59 0 01.61-.74h16.91a.7.7 0 00.74-.66v-.67c-.01-4.4-1.54-8.38-5.1-10.9zm-.86 8.33h-12.13a.42.42 0 01-.31-.49 6.36 6.36 0 016.62-5.27 6 6 0 014.6 1.78 5.64 5.64 0 011.65 3.55.42.42 0 01-.4.44zm48.54 14.18a.87.87 0 00.46-.77v-2.79a.87.87 0 00-1.15-.82 7.41 7.41 0 01-2.45.4c-2.49 0-3.6-1.14-3.6-3.7V25h6.53a.87.87 0 00.87-.87v-3a.87.87 0 00-.87-.87h-6.53v-5.69a.87.87 0 00-.87-.87h-3.57a.87.87 0 00-.82.87v5.61h-4.14a.85.85 0 00-.87.85v3a.87.87 0 00.87.87h4.14v12.77c0 4.51 2.64 7.09 7.24 7.09a10.47 10.47 0 004.76-.89zm29.02-23.08l-1.47 3.43.06-.06-11 25.5c-1.53 3.43-3.55 6-7 6.07H223a.71.71 0 01-.74-.74v-3.62a.71.71 0 01.74-.74h2.94c2.15 0 3.37-3.8 4-5.15.37-.86.8-1.78.8-1.78l-10.42-22.85c-.18-.37 0-.67.43-.67h4.41a1.24 1.24 0 011 .67l7.35 16 6.68-16a1.24 1.24 0 011-.67h4.23c.39-.06.58.24.45.61zM113 19.67a17.36 17.36 0 005-7.47c1-2.79 1.31-6.5 0-9.2a5.39 5.39 0 00-8.34-1.67 7.45 7.45 0 00-2.15 5.55c-.06 2.08 0 11.26 0 11.26a1.27 1.27 0 01-.54.7 18.17 18.17 0 01-3.78 1.34 1 1 0 00-.66.85v3.47a.52.52 0 00.67.52 24.08 24.08 0 003.8-1.23c.17-.07.4-.24.46.21v14.54c0 4.65 2.57 6.19 6 6.19a9.46 9.46 0 003.09-.45 1.29 1.29 0 00.75-1.14v-2.82c0-.45-.32-.63-.75-.5a4.38 4.38 0 01-1.21.16c-1.73 0-2.56-1-2.56-2.88v-17c-.02-.16.16-.34.22-.43zm-.39-6.54v-7c0-2.22 1.12-1.22 1.47.56a8.39 8.39 0 01.11 1.37 10.89 10.89 0 01-.48 3.26c-.17.49-.5 1.24-.79 1.85-.12.35-.26.31-.26-.04z"/>
</symbol>
<!-- LIFESTYLE HERO -->
<symbol id="lifestyle" viewBox="0 0 180.9 55.7">
<path d="M86.6 30l-2.7-.6-.6-.2c-.6-.1-1.1-.3-1.6-.5-.7-.4-1.5-.9-1.5-1.8 0-1.6 1.8-2.5 4.8-2.5 2.4 0 4.8.6 7 1.6.6.3 1.2 0 1.5-.5.1-.1.1-.3.1-.5v-2.5c0-.4-.2-.8-.6-1-2.5-1.3-5.4-1.9-8.2-1.8-6.2 0-10.1 2.7-10.1 7 0 4.5 3.2 6.2 8 7.4l2.9.7c.8.2 1.5.4 2.2.7.8.3 1.4 1 1.4 1.9 0 .6-.4 2.7-5.1 2.7-2.8 0-5.5-.6-8-1.9-.5-.3-1.2-.1-1.5.4-.1.2-.1.4-.1.6v2.5c0 .4.2.8.6 1 2.9 1.4 6.1 2.2 9.4 2.1 6.2 0 10.4-2.9 10.4-7.2-.1-3.9-2.9-6.4-8.3-7.6zm-62.1-9.9h-3.8c-.4 0-.7.3-.7.7v22.5c0 .4.3.7.7.7h3.8c.4 0 .7-.3.7-.7V20.8c0-.4-.3-.7-.7-.7zM22.6 2.6c-1.8 0-3.2 1.3-3.4 3.1-.1 1.9 1.3 3.5 3.2 3.6h.2c1.8 0 3.2-1.5 3.2-3.3v-.1c.1-1.8-1.4-3.2-3.2-3.3zM46.1.9C44.5.4 42.9.1 41.3.1c-4.7 0-7.5 2.8-7.5 7.5v12.6h-3.3c-.6 0-1.1.4-1.1 1v2.3c0 .6.5 1.4 1.1 1.4h3.3V43c0 .6.5 1.1 1.1 1.1H38c.6 0 1.1-.5 1.1-1.1V25h6.6c.6 0 1.1-.5 1.1-1.1v-2.6c0-.6-.5-1.1-1.1-1.1h-6.6V8.5c0-2.5 1.2-3.8 3.6-3.8.9 0 1.9.2 2.8.4.5.2 1.1-.1 1.3-.7V1.9c0-.5-.3-.9-.7-1zm108.7 39c-.3 0-.5.1-.8.1-1.7 0-2.5-.9-2.5-2.8V1.7c0-.6-.5-1.1-1.1-1.1h-3.1c-.6 0-1.1.5-1.1 1.1v36.9c0 5.2 3.3 6.3 6 6.3 1.1 0 2.2-.1 3.2-.5.4-.2.7-.5.7-1V41c0-.3-.2-.6-.4-.8-.2-.3-.6-.3-.9-.3zm21-18.5c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.1-8.9-5.8-.1-.3.1-.6.4-.7h17.1c.4 0 .7-.3.7-.7V32c.1-4.1-1.4-8.1-5-10.6zm-.8 8.3h-12.2c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.4 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.7 3.6 0 .2-.2.4-.4.4zM66.7 21.4c-1.9-1.3-4.1-2-6.4-1.9-3.4-.1-6.6 1.2-8.9 3.6-2.3 2.4-3.5 5.7-3.4 9-.1 3.5 1.3 6.8 3.8 9.1 2.6 2.4 6 3.6 9.4 3.5 2.9.1 5.7-.6 8.3-2 .4-.3.6-.7.6-1.2v-3c0-.4-.3-.5-.6-.4-2.2 1.2-4.6 1.8-7.1 1.8-4.6 0-8-2.1-8.9-5.8-.1-.3.1-.6.4-.7H71c.4 0 .7-.3.7-.7V32c.1-4.1-1.5-8.1-5-10.6zm-.8 8.3H53.7c-.2-.1-.4-.3-.3-.5.5-3.2 3.4-5.5 6.6-5.3 1.7-.1 3.4.6 4.6 1.8 1 .9 1.5 2.2 1.7 3.6 0 .2-.2.4-.4.4zm48.2-9.4h-6.5v-5.7c0-.5-.4-.9-.9-.9h-3.6c-.5 0-.8.4-.8.9v5.6h-4.1c-.5 0-.9.4-.9.8v3c0 .5.4.9.9.9h4.1v12.8c0 4.5 2.6 7.1 7.2 7.1 1.6.1 3.3-.2 4.8-.9.3-.2.5-.4.5-.8v-2.8c0-.5-.4-.9-.9-.9h-.3c-.8.3-1.6.4-2.4.4-2.5 0-3.6-1.1-3.6-3.7V25h6.5c.5 0 .9-.4.9-.9v-3c0-.5-.4-.8-.9-.8zm28.9-.1h-4.3c-.4 0-.8.3-1 .7l-6.7 16-7.3-16c-.2-.4-.6-.6-1-.7h-4.4c-.4 0-.6.3-.4.7l10.4 22.8-.8 1.8c-.6 1.3-1.8 5.2-4 5.2h-3c-.4 0-.7.3-.7.7v3.7c0 .4.3.7.7.7h3.5c3.4-.1 5.5-2.6 7-6.1l11-25.5-.1.1 1.5-3.4c.1-.5-.1-.8-.4-.7zM8.2.6c-.4.2-.7.4-1.1.7C5.7 2.8 4.9 4.8 5 6.9c-.1 2 0 11.2 0 11.2-.1.3-.3.5-.5.7-1.2.6-2.5 1-3.8 1.3-.4.2-.7.5-.7.9v3.5c0 .3.2.5.5.5h.2c1.3-.3 2.6-.7 3.8-1.2.2-.1.4-.2.5.2v14.5c0 4.7 2.6 6.2 6 6.2 1 0 2.1-.1 3-.4.4-.2.7-.6.8-1.1v-2.8c0-.5-.3-.6-.8-.5-.4.1-.8.2-1.2.2-1.7 0-2.6-1-2.6-2.9v-17c0-.2.2-.3.3-.4 2.3-2 4-4.6 5-7.5.9-2.8 1.2-6.5-.1-9.2C14.1.3 10.8-.7 8.2.6zm3 10.7c-.2.5-.5 1.2-.8 1.8-.2.3-.3.3-.3 0v-7c0-2.2 1.1-1.2 1.5.6.1.5.1.9.1 1.4 0 1.1-.1 2.2-.5 3.2z"/>
</symbol>
<symbol id="alert" viewBox="0 0 21 21">
<g transform="translate(1 1)" fill="currentColor" fill-rule="evenodd">
<circle stroke="currentColor" stroke-width="1.5" fill="currentColor" cx="9.5" cy="9.5" r="9.5"/>
<path d="M10.443 10.99c.208-.31.687-6.546.54-7.03-.147-.485-.747-.555-1.188-.555-.441 0-.99.028-1.216.555-.225.527.37 6.72.481 7.03.112.31.409.415.712.415.304 0 .464-.105.671-.415zm-.613 3.415a1 1 0 10-1-.993c0 .546.444.993 1 .993z" fill="#FFF" fill-rule="nonzero"/>
</g>
</symbol>
<symbol id="lock" viewBox="0 0 55 67">
<path d="M28.09.6c10.614 0 17.926 8.11 18.085 18.52l.003.348-.001 8.499h4.743a4.08 4.08 0 014.08 4.08V62.92A4.08 4.08 0 0150.92 67H4.08A4.08 4.08 0 010 62.92V32.047a4.08 4.08 0 014.08-4.08h5.421v-8.502C9.501 9.043 17.333.6 28.09.6zm.089 36.27c-3.188 0-5.772 2.606-5.772 5.82a5.821 5.821 0 003.733 5.447l-.001 9.946h4.08v-9.946a5.821 5.821 0 003.732-5.447c0-3.214-2.584-5.82-5.772-5.82zm-.09-29.47c-6.776 0-11.636 5.127-11.784 11.754l-.004.311v8.502h23.076v-8.5c0-6.99-4.504-12.067-11.288-12.067z" fill="#767676" fill-rule="evenodd"/>
</symbol>
<symbol id="pdp-share-fb" viewBox="0 0 11 21">
<g>
<path fill="currentColor" d="M7.1,21v-9.6h3.2l0.5-3.7H7.1V5.3c0-1.1,0.3-1.8,1.9-1.8l2,0V0.1
C10.6,0.1,9.4,0,8.1,0C5.2,0,3.3,1.7,3.3,4.9v2.8H0v3.7h3.2V21H7.1z"/>
</g>
</symbol>
<symbol id="pdp-share-twitter" viewBox="0 0 19 16">
<g>
<path fill="currentColor" d="M18.8,2.2c-0.7,0.3-1.4,0.5-2.2,0.6c0.8-0.5,1.4-1.2,1.7-2.1
c-0.7,0.4-1.6,0.8-2.4,0.9c-0.7-0.7-1.7-1.2-2.8-1.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.3,0,0.6,0.1,0.9c-3.2-0.2-6-1.7-7.9-4
C1.2,1.7,1,2.4,1,3.1c0,1.3,0.7,2.5,1.7,3.2C2,6.2,1.5,6,0.9,5.8c0,0,0,0,0,0c0,1.8,1.3,3.4,3.1,3.7C3.7,9.6,3.4,9.7,3,9.7
c-0.2,0-0.5,0-0.7-0.1c0.5,1.5,1.9,2.6,3.6,2.7c-1.3,1-3,1.6-4.7,1.6c-0.3,0-0.6,0-0.9-0.1c1.7,1.1,3.7,1.7,5.9,1.7
c7,0,10.9-5.8,10.9-10.9c0-0.2,0-0.3,0-0.5C17.6,3.7,18.3,3,18.8,2.2"/>
</g>
</symbol>
<symbol id="pdp-share-instagram" viewBox="0 0 19 19">
<g>
<path fill="currentColor" d="M14,9.7c0,2.4-2,4.4-4.4,4.4s-4.4-2-4.4-4.4c0-0.7,0.2-1.3,0.4-1.9H0.2v6.3
c0,2.5,2.1,4.6,4.6,4.6h9.3c2.6,0,4.6-2.1,4.6-4.6V7.8h-5.2C13.8,8.4,14,9,14,9.7 M16,4.6c0,0.3-0.2,0.5-0.5,0.5h-1.6
c-0.3,0-0.5-0.2-0.5-0.5V3c0-0.3,0.2-0.5,0.5-0.5h1.6C15.8,2.5,16,2.8,16,3V4.6z M14.1,0.2H4.9c-2.6,0-4.6,2.1-4.6,4.6v1.3h6.8
c0.7-0.5,1.6-0.8,2.5-0.8s1.8,0.3,2.5,0.8h6.6V4.9C18.8,2.3,16.7,0.2,14.1,0.2 M11.4,9.7c0-1-0.8-1.8-1.8-1.8S7.8,8.7,7.8,9.7
s0.8,1.8,1.8,1.8S11.4,10.7,11.4,9.7"/>
</g>
</symbol>
<symbol id="pdp-share-website" viewBox="0 0 20 20">
<g>
<path fill="currentColor" d="M16.2,10.3c-0.7,0-1.3,0.6-1.3,1.3v5.4c0,0.3-0.2,0.5-0.5,0.5H3.1
c-0.3,0-0.5-0.2-0.5-0.5V5.6c0-0.3,0.2-0.5,0.5-0.5h5.4c0.7,0,1.3-0.6,1.3-1.3c0-0.7-0.6-1.3-1.3-1.3H3.1C1.4,2.5,0,3.9,0,5.6v11.3
C0,18.6,1.4,20,3.1,20h11.3c1.7,0,3.1-1.4,3.1-3.1v-5.4C17.5,10.8,16.9,10.3,16.2,10.3"/>
<path fill="currentColor" d="M16.9,0h-5.3c-0.7,0-1.3,0.6-1.3,1.3c0,0.7,0.6,1.3,1.3,1.3h4L7.2,11
c-0.5,0.5-0.5,1.3,0,1.8c0.2,0.2,0.6,0.4,0.9,0.4c0.3,0,0.7-0.1,0.9-0.4l8.4-8.4v4c0,0.7,0.6,1.3,1.3,1.3C19.4,9.6,20,9,20,8.3V3.1
C20,1.4,18.6,0,16.9,0"/>
</g>
</symbol>
<!-- CTA Arrow -->
<symbol id="cta-arrow" viewBox="0 0 9 13">
<path fill="#FFF" fill-rule="evenodd" d="M253 8.5L253 21.5 262 14.536z" transform="translate(-253 -8.5)"/>
</symbol>
<!-- ANNOUNCEMENT BAR -->
<symbol id="announcement-social-mail" width="21" height="15" viewBox="0 0 21 15">
<g fill="none" fill-rule="evenodd">
<g fill="#010002" fill-rule="nonzero">
<path d="M1322.464 16.268l-8.237.018-8.237-.036h-.004c-1.107 0-1.986.935-1.986 2.104v9.792c0 1.17.879 2.104 1.986 2.104h16.49c1.107 0 1.986-.935 1.986-2.104v-9.792c0-1.17-.871-2.086-1.998-2.086zm-.646 1.443l-7.41 7.252c-.089.087-.193.098-.25.098-.056 0-.16-.015-.244-.105l-7.057-7.274 7.37.044 7.59-.015zm-15.832 11.096c-.14 0-.381-.238-.381-.66v-9.562l7.125 7.345c.361.361.87.57 1.412.577h.025c.533 0 1.03-.198 1.396-.544l7.302-7.166v9.35c-.008.422-.249.66-.39.66h-16.489z" transform="translate(-1304 -16)"/>
</g>
</g>
</symbol>
<symbol id="announcement-social-ig" width="19" height="19" viewBox="0 0 19 19">
<g fill="none" fill-rule="evenodd">
<g fill="#0A0A08" fill-rule="nonzero">
<path d="M1030.469 15.706c2.528 0 2.827.01 3.826.055.923.042 1.424.197 1.758.326.442.172.758.377 1.089.709.331.331.536.646.708 1.088.13.334.284.835.326 1.759.046.998.055 1.297.055 3.826 0 2.528-.01 2.827-.055 3.826-.042.923-.196 1.424-.326 1.758-.172.442-.377.758-.708 1.089-.331.331-.647.536-1.089.708-.334.13-.835.284-1.758.326-.998.046-1.298.055-3.826.055-2.529 0-2.828-.01-3.826-.055-.924-.042-1.425-.196-1.759-.326-.442-.172-.757-.377-1.088-.708-.332-.331-.537-.647-.709-1.089-.13-.334-.284-.835-.326-1.758-.045-.999-.055-1.298-.055-3.826 0-2.529.01-2.828.055-3.826.042-.924.197-1.425.326-1.759.172-.442.377-.757.709-1.088.33-.332.646-.537 1.088-.709.334-.13.835-.284 1.759-.326.998-.045 1.297-.055 3.826-.055m0-1.706c-2.572 0-2.894.01-3.904.057-1.008.046-1.696.206-2.299.44-.622.242-1.15.566-1.677 1.092-.526.527-.85 1.055-1.092 1.677-.234.603-.394 1.291-.44 2.299-.046 1.01-.057 1.332-.057 3.904 0 2.571.01 2.894.057 3.904.046 1.008.206 1.696.44 2.298.242.623.566 1.15 1.092 1.677.527.527 1.055.85 1.677 1.092.603.235 1.29.395 2.299.44 1.01.047 1.332.057 3.904.057 2.571 0 2.894-.01 3.904-.056 1.008-.046 1.696-.206 2.298-.44.623-.243 1.15-.566 1.677-1.093.527-.526.85-1.054 1.092-1.677.234-.602.395-1.29.44-2.298.047-1.01.057-1.333.057-3.904 0-2.572-.01-2.894-.056-3.904-.046-1.008-.207-1.696-.44-2.299-.243-.622-.566-1.15-1.093-1.677-.526-.526-1.054-.85-1.677-1.092-.602-.234-1.29-.394-2.298-.44-1.01-.046-1.333-.057-3.904-.057zm0 4.606c-2.686 0-4.863 2.177-4.863 4.863 0 2.685 2.177 4.862 4.863 4.862 2.685 0 4.862-2.177 4.862-4.862 0-2.686-2.177-4.863-4.862-4.863zm0 8.019c-1.743 0-3.157-1.413-3.157-3.156s1.414-3.157 3.157-3.157 3.156 1.414 3.156 3.157-1.413 3.156-3.156 3.156zm6.19-8.21c0 .627-.508 1.136-1.136 1.136-.627 0-1.136-.51-1.136-1.137s.509-1.136 1.136-1.136c.628 0 1.136.509 1.136 1.136z" transform="translate(-1021 -14)"/>
</g>
</g>
</symbol>
<symbol id="announcement-social-fb" width="9" height="17" viewBox="0 0 9 17">
<g fill="none" fill-rule="evenodd">
<g fill="#000" fill-rule="nonzero">
<path d="M1110.402 16.003l-2.094-.003c-2.353 0-3.873 1.56-3.873 3.974v1.833h-2.106c-.182 0-.329.147-.329.329v2.655c0 .182.148.33.33.33h2.105v6.698c0 .182.147.33.33.33h2.746c.182 0 .33-.148.33-.33V25.12h2.461c.182 0 .33-.147.33-.33v-2.654c0-.087-.034-.171-.096-.233-.061-.062-.145-.096-.233-.096h-2.462v-1.554c0-.746.177-1.125 1.15-1.125h1.41c.182 0 .33-.148.33-.33v-2.465c0-.182-.147-.33-.329-.33z" transform="translate(-1102 -16)"/>
</g>
</g>
</symbol>
<symbol id="announcement-social-pinterest" width="15" height="19" viewBox="0 0 15 19">
<g fill="none" fill-rule="evenodd">
<g fill="#000" fill-rule="nonzero">
<path d="M1177.206 14.064c-3.043.34-6.074 2.801-6.2 6.317-.078 2.147.532 3.758 2.575 4.21.886-1.564-.286-1.91-.469-3.04-.749-4.638 5.349-7.8 8.54-4.563 2.207 2.242.754 9.138-2.807 8.422-3.41-.685 1.67-6.175-1.053-7.252-2.213-.876-3.389 2.68-2.34 4.445-.615 3.037-1.94 5.9-1.403 9.708 1.74-1.262 2.326-3.678 2.806-6.199.875.531 1.341 1.083 2.457 1.17 4.113.317 6.41-4.107 5.849-8.188-.5-3.618-4.11-5.459-7.955-5.03z" transform="translate(-1171 -14)"/>
</g>
</g>
</symbol>
<symbol id="announcement-social-twitter" width="17" height="14" viewBox="0 0 17 14">
<g fill="none" fill-rule="evenodd">
<g fill="#000" fill-rule="nonzero">
<path d="M1256.79 18.789c-.617.274-1.281.459-1.978.542.711-.426 1.258-1.101 1.515-1.906-.666.395-1.403.682-2.188.836-.628-.67-1.524-1.087-2.514-1.087-2.224 0-3.859 2.075-3.356 4.229-2.862-.144-5.4-1.515-7.1-3.6-.902 1.55-.468 3.574 1.066 4.6-.564-.018-1.096-.173-1.56-.43-.038 1.595 1.106 3.088 2.763 3.42-.485.132-1.016.162-1.556.059.438 1.368 1.71 2.364 3.218 2.392-1.448 1.135-3.273 1.642-5.1 1.427 1.524.977 3.336 1.547 5.28 1.547 6.396 0 10.01-5.401 9.791-10.246.674-.486 1.258-1.093 1.72-1.783z" transform="translate(-1240 -17)"/>
</g>
</g>
</symbol>
</svg> <div class="nav-wrapper js-nav-wrapper">
<h1 class="visually-hidden">mindbodygreen</h1>
<div class="nav-wrapper__ad-">
<div class="ad-container">
<div class="ad ad--large nav--ad ad--nav">
<div class="ad__inner">
<div class='htl-ad'
data-unit='Any_Leaderboard'
data-prebid='0x0:|768x0:Any_Leaderboard_M|1024x0:Any_Leaderboard_L'
data-sizes='0x0:|768x0:728x90|1024x0:728x90,970x250,970x400,1200x200,1200x300,1400x200'
data-ref='AboveTheNavAd'
data-refresh="viewable"
data-refresh-secs="30"
data-eager></div>
</div>
</div>
<div class="close_ad">Close Ad <span class="arrow-up" /></div>
</div> <div class="ad ad--large ad--mobile-leaderboard nav--ad ad--nav">
<div class="ad__inner">
<div class='htl-ad'
data-unit='Mobile_Leaderboard'
data-prebid='0x0:Any_Leaderboard_S'
data-sizes='0x0:320x50|768x0'
data-ref='AboveTheNavAd'
data-refresh="viewable"
data-refresh-secs="15"
data-eager
></div>
</div>
</div> </div>
<nav class="nav">
<h1 class="visually-hidden">Navigation</h1>
<nav
class="nav__main-nav nav__main-nav--is-white
"
>
<div class="nav__main-nav-left">
<h1 class="visually-hidden">Main Navigation</h1>
<a href="#" class="menu-toggle js-menu-toggle" aria-label="Menu">
<div class="menu-toggle__hamburger">
<span></span>
<span></span>
<span></span>
</div>
</a>
<div class="nav__main-nav-logo nav__main-nav-logo--partner">
<a href="/" aria-label="Home">
<svg class="icon logo mbg-short" xmlns="http://www.w3.org/2000/svg" version="1.1">
<use href="#mbg-logo-short" xlink:href="#mbg-logo-short"></use>
</svg> </a>
<div class="partner-x">
<span style=""></span>
<span style=""></span></div>