-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2999 lines (2707 loc) · 558 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 class="sticky-footer " lang="en" data-name="CONTEXT_BAR">
<head itemscope itemtype="http://schema.org/WebSite">
<meta name="google-signin-client_id" content="543074773853-5o4th7sqent0dc5f0slvn0cakr152fpv.apps.googleusercontent.com">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="application-name" content="Class Central">
<title itemprop="name">Class Central • Find the best courses, wherever they exist.</title>
<link rel="canonical" href="https://www.classcentral.com">
<meta name="description" content="Class Central aggregates courses from many providers to help you find the best courses on almost any subject, wherever they exist.">
<meta property="og:title" content="Class Central • Find the best courses, wherever they exist.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.classcentral.com">
<meta property="og:image" content="images/https%253A%252F%252Fwww.classcentral.com%252Fimages%252Fmeta%252Fmeta-default.png">
<meta property="og:site_name" content="Class Central">
<meta property="fb:admins" content="851425723">
<meta property="fb:app_id" content="214375822097453">
<meta property="og:description" content="Class Central aggregates courses from many providers to help you find the best courses on almost any subject, wherever they exist.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@classcentral">
<meta name="twitter:title" content="Class Central • Find the best courses, wherever they exist.">
<meta name="twitter:description" content="Class Central aggregates courses from many providers to help you find the best courses on almost any subject, wherever they exist.">
<meta name="twitter:image" content="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fmeta%2Fmeta-default.png?auto=format&ixlib=php-3.3.1&s=abde49e12c23a50309f7d91754b25193">
<script async src="js/analytics.js"></script><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Class Central",
"url": "https://www.classcentral.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.classcentral.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Class Central",
"url": "https://www.classcentral.com",
"logo": "https://www.classcentral.com/images/cc-logo.png",
"sameAs": [
"http://www.facebook.com/classcentral",
"http://twitter.com/classcentral",
"http://www.linkedin.com/company/class-central",
"https://github.com/classcentral",
"angel.co/class-central"
]
}
</script>
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="fonts/safari-pinned-tab.svg" color="#0A2540">
<meta name="msapplication-TileColor" content="#0A2540">
<meta name="theme-color" content="#0A2540">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Class Central MOOC search">
<style>@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-cyrillic-ext.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-cyrillic-ext.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-greek-ext.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-greek.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-vietnamese.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-latin-ext.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;font-display:swap;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(fonts/source-sans-pro-400-italic-latin.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-cyrillic-ext.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-cyrillic.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-greek-ext.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-greek.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-vietnamese.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-latin-ext.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;font-display:swap;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(fonts/source-sans-pro-400-regular-latin.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-cyrillic-ext.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-cyrillic.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-greek-ext.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-greek.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-vietnamese.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-latin-ext.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:600;font-display:swap;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(fonts/source-sans-pro-600-semibold-latin.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-cyrillic-ext.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-cyrillic.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-greek-ext.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-greek.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-vietnamese.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-latin-ext.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;font-display:swap;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(fonts/source-sans-pro-700-bold-latin.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}</style>
<style>a,abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,img,input,ins,kbd,label,legend,li,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,tr,ul,var,video{background:transparent;border:0;margin:0;outline:0;padding:0;vertical-align:baseline}:focus,a img,a:focus{outline:none}html{-webkit-text-size-adjust:100%;overflow-y:scroll}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}button{background:none repeat scroll 0 0 transparent;border:none;border-spacing:0;list-style:none outside none;margin:0;padding:0;text-align:left;text-decoration:none;text-indent:0}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer}button[disabled],input[disabled]{cursor:default}fieldset,legend{padding:0}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}strong{font-weight:400}em{font-style:normal}label{cursor:default}img:-moz-loading{visibility:hidden}.icon-provider{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.79 1.703a.654.654 0 0 1 .42 0c.055.019.112.05.306.163l11.902 6.895c.258.15.44.255.572.343a.87.87 0 0 1 .215.175.675.675 0 0 1-.01.82.87.87 0 0 1-.22.17c-.135.084-.319.184-.58.327l-11.902 6.49c-.186.101-.24.13-.293.147a.655.655 0 0 1-.4 0 1.962 1.962 0 0 1-.293-.147l-11.901-6.49a12.666 12.666 0 0 1-.581-.327.872.872 0 0 1-.22-.17.675.675 0 0 1-.01-.82.872.872 0 0 1 .215-.175c.133-.088.314-.193.572-.343l11.902-6.895c.194-.112.251-.144.306-.163zm.63-.634a1.31 1.31 0 0 0-.84 0c-.125.042-.243.11-.4.202l-.025.015-11.91 6.9a12.26 12.26 0 0 0-.597.358c-.15.1-.284.203-.381.333a1.35 1.35 0 0 0 .02 1.638c.1.127.237.227.39.323.154.096.355.205.605.342l2.374 1.294-2.412 1.397c-.247.143-.445.258-.596.358-.15.1-.284.203-.381.333a1.35 1.35 0 0 0 .02 1.638c.1.127.237.227.39.323.154.096.355.205.605.342l2.105 1.147-2.143 1.242c-.247.143-.445.258-.596.357-.15.1-.284.204-.381.333a1.35 1.35 0 0 0 .02 1.639c.1.127.237.227.39.322.154.096.355.206.605.342l11.911 6.495.024.013c.15.082.264.144.384.183.26.083.538.083.798 0 .12-.039.233-.1.384-.183l.024-.013 11.91-6.495c.251-.136.452-.246.606-.342a1.47 1.47 0 0 0 .39-.322 1.35 1.35 0 0 0 .02-1.639 1.481 1.481 0 0 0-.381-.333c-.151-.1-.35-.214-.596-.357l-2.143-1.242 2.105-1.147c.25-.137.451-.246.605-.342.153-.096.29-.196.39-.323a1.35 1.35 0 0 0 .02-1.638 1.477 1.477 0 0 0-.381-.333c-.151-.1-.35-.215-.596-.358l-2.412-1.397 2.374-1.294c.25-.137.451-.246.605-.342.153-.096.29-.196.39-.323a1.35 1.35 0 0 0 .02-1.638 1.48 1.48 0 0 0-.381-.333c-.151-.1-.35-.215-.596-.358l-11.91-6.9-.026-.015c-.157-.091-.275-.16-.4-.202zM5.077 17.612l.015.026 9.414 5.133c.186.101.24.13.293.146a.65.65 0 0 0 .4 0c.052-.016.107-.045.293-.146l9.414-5.134.015-.025.015.009 2.457-1.34c.262-.143.446-.243.581-.327a.87.87 0 0 0 .22-.17.675.675 0 0 0 .01-.82.869.869 0 0 0-.215-.175 12.687 12.687 0 0 0-.572-.343l-2.76-1.598-8.851 4.827-.024.013c-.15.082-.264.144-.384.182a1.31 1.31 0 0 1-.798 0 2.27 2.27 0 0 1-.384-.182l-.024-.013-2.774-1.513-1.215.737-4.3-2.341 1.28-.706-1.843-1.004-2.759 1.598c-.258.15-.44.255-.572.343a.871.871 0 0 0-.215.175.675.675 0 0 0 .01.82.872.872 0 0 0 .22.17c.135.084.319.184.58.327l2.457 1.34.016-.01zm-2.496 2.217 2.49-1.443 1.474.804-1.303.718 4.3 2.341 1.237-.75 3.413 1.86.024.014c.15.082.264.144.384.182.26.083.538.083.798 0 .12-.038.233-.1.384-.182l.024-.014 9.12-4.973 2.49 1.443c.259.15.44.254.573.342.134.09.19.141.215.176a.675.675 0 0 1-.01.82.87.87 0 0 1-.22.17c-.135.084-.319.184-.58.327l-11.902 6.49c-.186.1-.24.13-.293.146a.655.655 0 0 1-.4 0 1.962 1.962 0 0 1-.293-.147l-11.901-6.49a12.666 12.666 0 0 1-.581-.327.872.872 0 0 1-.22-.17.675.675 0 0 1-.01-.82.874.874 0 0 1 .215-.175c.133-.088.314-.193.572-.342zM6.4 8.873l8.27-5.016 4.034 2.34-8.004 5.017-4.3-2.341z' fill='%230A2540'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-institution{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.08 12.046a.653.653 0 0 0 .647-.648V8.072a.624.624 0 0 0-.353-.56L15.658 1.066a.686.686 0 0 0-.589 0L2.353 7.512c-.206.118-.353.324-.353.56v3.326c0 .353.294.648.648.648h2.148v11.538H2.648a.653.653 0 0 0-.648.648v4.12c0 .354.294.648.648.648h25.431a.653.653 0 0 0 .648-.648v-4.12a.653.653 0 0 0-.648-.648h-2.148V12.046h2.148ZM3.294 8.484 15.364 2.36l12.068 6.093v2.267H3.295V8.484Zm14.688 15.07V12.047h2.679v11.538h-2.679v-.03Zm-5.24-11.508v11.538h-2.678V12.046h2.679Zm1.266 0h2.679v11.538H14.01V12.046Zm-7.918 0H8.77v11.538H6.091V12.046Zm21.34 15.63H3.296V24.85h24.137v2.825Zm-2.796-4.121h-2.678v-11.51h2.678v11.51Z' fill='%2306213D'/%3E%3Cpath d='M15.364 4.392a2.425 2.425 0 0 0-2.414 2.414 2.425 2.425 0 0 0 2.414 2.414 2.425 2.425 0 0 0 2.413-2.414 2.425 2.425 0 0 0-2.414-2.414Zm0 3.562a1.15 1.15 0 0 1-1.149-1.148c0-.648.5-1.148 1.149-1.148.618 0 1.148.5 1.148 1.148a1.15 1.15 0 0 1-1.149 1.148Z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-alert-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1a14 14 0 1 0 0 28 14 14 0 0 0 0-28zm1.44 6.663-.612 10.852h-2.044L13.17 7.663h3.27zm-.387 15.471a1.84 1.84 0 0 1-2.473 0 1.73 1.73 0 1 1 2.473-2.422 1.737 1.737 0 0 1 .01 2.422h-.01z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-arrow-left-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m10.732 21.642-5.906-5.678H29v-1.928H4.826l5.906-5.678L9.32 7 1 15l8.32 8 1.412-1.358z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-article-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 27c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zm0-7.2c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zm0-7.2c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zM25 3H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-article-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 27c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zm0-7.2c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zm0-7.2c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20zM25 3H5c-.55 0-1 .54-1 1.2 0 .66.45 1.2 1 1.2h20c.55 0 1-.54 1-1.2 0-.66-.45-1.2-1-1.2z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-calendar-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.096 3.352h-2.343V1h-1.562v2.352H8.81V1H7.247v2.352H4.904A3.888 3.888 0 0 0 1 7.272v17.92C1 27.32 2.785 29 4.904 29h20.192C27.216 29 29 27.208 29 25.08V7.272c-.112-2.24-1.785-3.92-3.904-3.92zm2.23 21.84c0 1.232-1.003 2.352-2.342 2.352H4.904c-1.338 0-2.342-1.008-2.342-2.352V11.08h24.765v14.112zm0-15.68H2.563v-2.24c0-1.344 1.004-2.352 2.342-2.352h2.343v1.568H8.81V4.92h12.38v1.568h1.562V4.92h2.343c1.227 0 2.342 1.008 2.342 2.352v2.24h-.111z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-checkmark-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.726 25 1 16.463l2.402-2.538 7.135 6.26L26.41 4 29 6.367 10.726 25z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-checkmark{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.726 25 1 16.463l2.402-2.538 7.135 6.26L26.41 4 29 6.367 10.726 25z' fill='%235BD8A0'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-checkmark-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.726 25 1 16.463l2.402-2.538 7.135 6.26L26.41 4 29 6.367 10.726 25z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-down-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 22 1 7.765 2.724 6 15 18.482 27.276 6 29 7.765 15 22z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-down-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 22 1 7.765 2.724 6 15 18.482 27.276 6 29 7.765 15 22z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-left-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 15 21.235 1 23 2.724 10.518 15 23 27.276 21.235 29 7 15z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-right-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 15 8.765 29 7 27.276 19.482 15 7 2.724 8.765 1 23 15z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-left-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 15 21.235 1 23 2.724 10.518 15 23 27.276 21.235 29 7 15z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-right-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 15 8.765 29 7 27.276 19.482 15 7 2.724 8.765 1 23 15z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-left-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 15 21.235 1 23 2.724 10.518 15 23 27.276 21.235 29 7 15z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-chevron-up-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m15 7 14 14.235L27.276 23 15 10.518 2.724 23 1 21.235 15 7z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-copy-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.086 1H10.693a3.867 3.867 0 0 0-2.767 1.174A4.058 4.058 0 0 0 6.779 5.01v1.23H4.914c-.514 0-1.023.103-1.498.305a3.909 3.909 0 0 0-1.27.869 4.016 4.016 0 0 0-.848 1.3A4.093 4.093 0 0 0 1 10.25v14.742c0 1.064.412 2.083 1.146 2.835A3.867 3.867 0 0 0 4.914 29h14.393c.514 0 1.023-.104 1.498-.305a3.91 3.91 0 0 0 1.27-.87c.363-.371.65-.813.848-1.3a4.093 4.093 0 0 0 .298-1.534V23.76h1.865c.514 0 1.023-.104 1.498-.305a3.908 3.908 0 0 0 1.27-.869c.363-.372.651-.814.848-1.3A4.093 4.093 0 0 0 29 19.75V5.009c0-.527-.101-1.048-.298-1.534a4.017 4.017 0 0 0-.848-1.3 3.908 3.908 0 0 0-1.27-.87A3.833 3.833 0 0 0 25.086 1zM20.94 24.991c0 .444-.172.87-.479 1.183a1.61 1.61 0 0 1-1.154.49H4.914c-.433 0-.849-.176-1.155-.49a1.696 1.696 0 0 1-.479-1.183V10.25c0-.443.173-.869.479-1.182.306-.314.722-.49 1.155-.49h14.393c.433 0 .848.176 1.154.49.307.313.479.739.48 1.182v14.742zm5.78-5.24c0 .443-.173.868-.48 1.182-.305.314-.72.49-1.154.49h-1.865V10.25a4.059 4.059 0 0 0-1.147-2.834 3.867 3.867 0 0 0-2.767-1.174H9.059V5.009c.001-.444.173-.87.48-1.183a1.61 1.61 0 0 1 1.154-.49h14.393c.433 0 .849.176 1.155.49.306.314.479.739.479 1.183V19.75z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-course-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='a' fill='%2306213D'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 2H5a2 2 0 0 0-2 2v22.03a2 2 0 0 0 2 2h22V2zM5 1a3 3 0 0 0-3 3v22.03a3 3 0 0 0 3 3h23V1H5z'/%3E%3C/mask%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 2H5a2 2 0 0 0-2 2v22.03a2 2 0 0 0 2 2h22V2zM5 1a3 3 0 0 0-3 3v22.03a3 3 0 0 0 3 3h23V1H5z' fill='%2306213D'/%3E%3Cpath d='M27 2h1V1h-1v1zm0 26.03v1h1v-1h-1zm1 1v1h1v-1h-1zM28 1h1V0h-1v1zM5 3h22V1H5v2zM4 4a1 1 0 0 1 1-1V1a3 3 0 0 0-3 3h2zm0 22.03V4H2v22.03h2zm1 1a1 1 0 0 1-1-1H2a3 3 0 0 0 3 3v-2zm22 0H5v2h22v-2zM26 2v26.03h2V2h-2zM3 4a2 2 0 0 1 2-2V0a4 4 0 0 0-4 4h2zm0 22.03V4H1v22.03h2zm2 2a2 2 0 0 1-2-2H1a4 4 0 0 0 4 4v-2zm23 0H5v2h23v-2zM27 1v28.03h2V1h-2zM5 2h23V0H5v2z' fill='%2306213D' mask='url(%23a)'/%3E%3Cpath fill='%2306213D' d='M8.5 7.229h13v4.672h-13z'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-course-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='a' fill='%23244DCB'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 2H5a2 2 0 0 0-2 2v22.03a2 2 0 0 0 2 2h22V2zM5 1a3 3 0 0 0-3 3v22.03a3 3 0 0 0 3 3h23V1H5z'/%3E%3C/mask%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 2H5a2 2 0 0 0-2 2v22.03a2 2 0 0 0 2 2h22V2zM5 1a3 3 0 0 0-3 3v22.03a3 3 0 0 0 3 3h23V1H5z' fill='%23244DCB'/%3E%3Cpath d='M27 2h1V1h-1v1zm0 26.03v1h1v-1h-1zm1 1v1h1v-1h-1zM28 1h1V0h-1v1zM5 3h22V1H5v2zM4 4a1 1 0 0 1 1-1V1a3 3 0 0 0-3 3h2zm0 22.03V4H2v22.03h2zm1 1a1 1 0 0 1-1-1H2a3 3 0 0 0 3 3v-2zm22 0H5v2h22v-2zM26 2v26.03h2V2h-2zM3 4a2 2 0 0 1 2-2V0a4 4 0 0 0-4 4h2zm0 22.03V4H1v22.03h2zm2 2a2 2 0 0 1-2-2H1a4 4 0 0 0 4 4v-2zm23 0H5v2h23v-2zM27 1v28.03h2V1h-2zM5 2h23V0H5v2z' fill='%23244DCB' mask='url(%23a)'/%3E%3Cpath fill='%23244DCB' d='M8.5 7.229h13v4.672h-13z'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-bookmark{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.628 22.703 6.19 28.101V1.69h17.62v26.411l-8.438-5.398-.372-.238-.372.238z' stroke='%23244DCB' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-bookmarked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.628 22.703 6.19 28.101V1.69h17.62v26.411l-8.438-5.398-.372-.238-.372.238z' fill='%23244DCB' fill-opacity='.5' stroke='%23244DCB' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-book-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.776 26.944A.486.486 0 0 0 15 27c.076 0 .152-.02.224-.056 1.566-.836 4.255-1.277 7.776-1.277 2.688 0 4.922.261 4.945.263a.475.475 0 0 0 .389-.133.553.553 0 0 0 .166-.398V7.266a.525.525 0 0 0-.392-.52c-.063-.016-.67-.158-1.608-.328V3.533C26.5 3.24 26.276 3 26 3c-.285 0-6.918.029-11 2.082C10.918 3.03 4.285 3 4 3c-.276 0-.5.239-.5.533V6.42c-.938.17-1.545.312-1.608.327a.526.526 0 0 0-.392.52V25.4c0 .152.061.297.166.398.107.101.25.15.389.133.023-.002 2.258-.263 4.945-.263 3.521-.001 6.21.44 7.776 1.276zM2.5 7.7c.236-.05.588-.12 1-.198v14.164c0 .294.224.533.5.533.067 0 6.611.03 10.5 1.945v1.509c-1.738-.7-4.255-1.054-7.5-1.054-1.943 0-3.656.133-4.5.213V7.701zm12-1.692V17.4h1V6.009c3.262-1.605 8.389-1.886 10-1.933v17.065c-1.662.041-7.012.318-10.5 2.072-3.488-1.754-8.838-2.03-10.5-2.072V4.076c1.611.048 6.738.328 10 1.933zm13 18.804A50.014 50.014 0 0 0 23 24.6c-3.245 0-5.762.354-7.5 1.054v-1.51C19.389 22.23 25.933 22.2 26 22.2c.276 0 .5-.239.5-.533V7.505c.412.076.764.147 1 .197v17.111z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-book-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.776 26.944A.486.486 0 0 0 15 27c.076 0 .152-.02.224-.056 1.566-.836 4.255-1.277 7.776-1.277 2.688 0 4.922.261 4.945.263a.475.475 0 0 0 .389-.133.553.553 0 0 0 .166-.398V7.266a.525.525 0 0 0-.392-.52c-.063-.016-.67-.158-1.608-.328V3.533C26.5 3.24 26.276 3 26 3c-.285 0-6.918.029-11 2.082C10.918 3.03 4.285 3 4 3c-.276 0-.5.239-.5.533V6.42c-.938.17-1.545.312-1.608.327a.526.526 0 0 0-.392.52V25.4c0 .152.061.297.166.398.107.101.25.15.389.133.023-.002 2.258-.263 4.945-.263 3.521-.001 6.21.44 7.776 1.276zM2.5 7.7c.236-.05.588-.12 1-.198v14.164c0 .294.224.533.5.533.067 0 6.611.03 10.5 1.945v1.509c-1.738-.7-4.255-1.054-7.5-1.054-1.943 0-3.656.133-4.5.213V7.701zm12-1.692V17.4h1V6.009c3.262-1.605 8.389-1.886 10-1.933v17.065c-1.662.041-7.012.318-10.5 2.072-3.488-1.754-8.838-2.03-10.5-2.072V4.076c1.611.048 6.738.328 10 1.933zm13 18.804A50.014 50.014 0 0 0 23 24.6c-3.245 0-5.762.354-7.5 1.054v-1.51C19.389 22.23 25.933 22.2 26 22.2c.276 0 .5-.239.5-.533V7.505c.412.076.764.147 1 .197v17.111z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-ellipsis-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.63 18.26a3.63 3.63 0 1 0 0-7.26 3.63 3.63 0 0 0 0 7.26zm20.74 0a3.63 3.63 0 1 0 0-7.26 3.63 3.63 0 0 0 0 7.26zm-10.37 0A3.63 3.63 0 1 0 15 11a3.63 3.63 0 0 0 0 7.26z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-ellipsis-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.63 18.26a3.63 3.63 0 1 0 0-7.26 3.63 3.63 0 0 0 0 7.26zm20.74 0a3.63 3.63 0 1 0 0-7.26 3.63 3.63 0 0 0 0 7.26zm-10.37 0A3.63 3.63 0 1 0 15 11a3.63 3.63 0 0 0 0 7.26z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-envelope-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4v22h28V4H1zm26.213 1L15 15.841 2.787 5h24.426zM1.966 25V5.587L15 17.159 28.035 5.587V25H1.965z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-external-link-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.832 28.943h22.07c.866 0 1.576-.71 1.576-1.576V14.756h-3.153V25.79H4.409V6.874h11.034V3.721H2.833c-.868 0-1.577.71-1.577 1.577v22.069c0 .867.71 1.576 1.576 1.576z' fill='%2306213D'/%3E%3Cpath d='m13.434 14.598 2.207 2.207L25.846 6.638v3.428H29V1.278h-8.828v3.153h3.43L13.433 14.598z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-external-link-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.832 28.943h22.07c.866 0 1.576-.71 1.576-1.576V14.756h-3.153V25.79H4.409V6.874h11.034V3.721H2.833c-.868 0-1.577.71-1.577 1.577v22.069c0 .867.71 1.576 1.576 1.576z' fill='%23244DCB'/%3E%3Cpath d='m13.434 14.598 2.207 2.207L25.846 6.638v3.428H29V1.278h-8.828v3.153h3.43L13.433 14.598z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-help-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1C7.26 1 1 7.26 1 15s6.26 14 14 14 14-6.26 14-14S22.74 1 15 1zm1 20.92c-.3.3-.72.44-1.24.44-.54 0-.98-.14-1.26-.44-.3-.28-.44-.7-.44-1.22 0-.54.14-.96.44-1.24s.72-.42 1.28-.42c.54 0 .96.14 1.26.42.3.28.44.7.44 1.24-.04.52-.18.94-.48 1.22zm3.22-8.9c-.32.52-.94 1.1-1.86 1.76-.62.46-1.02.82-1.18 1.06-.16.24-.24.56-.24.94v.58h-2.6v-.72c0-.62.14-1.16.4-1.64.26-.46.76-.96 1.46-1.48.68-.48 1.14-.88 1.36-1.2.22-.3.32-.64.32-1.02 0-.42-.16-.74-.46-.96-.32-.22-.74-.34-1.3-.34-.98 0-2.08.32-3.34.96l-1.06-2.14c1.46-.82 3-1.22 4.62-1.22 1.34 0 2.4.32 3.2.96.8.64 1.18 1.5 1.18 2.58-.02.74-.18 1.36-.5 1.88z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-facebook-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 15.086C29 7.306 22.732 1 15 1S1 7.306 1 15.086C1 22.116 6.12 27.943 12.813 29v-9.843H9.258v-4.071h3.555v-3.104c0-3.53 2.09-5.48 5.287-5.48 1.532 0 3.134.275 3.134.275v3.467H19.47c-1.739 0-2.282 1.085-2.282 2.2v2.642h3.883l-.62 4.071h-3.262V29C23.88 27.943 29 22.116 29 15.086z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-facebook-outline-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M17.19 29v-9.84h3.26l.62-4.07h-3.88v-2.65a2.28 2.28 0 0 1 .49-1.51 2.23 2.23 0 0 1 1.79-.69h1.76V6.78H21l-.72-.09a19.11 19.11 0 0 0-2.18-.19 5.25 5.25 0 0 0-3.84 1.42A5.62 5.62 0 0 0 12.81 12v3.11H9.26v4.07h3.55V29l-.6-.12A14.08 14.08 0 1 1 29 15.14a14.1 14.1 0 0 1-11.21 13.75zm1-8.85v7.61A13.09 13.09 0 0 0 15 2a13.09 13.09 0 0 0-3.19 25.77v-7.61H8.26v-6.07h3.55V12a6.6 6.6 0 0 1 1.74-4.77A6.2 6.2 0 0 1 18.1 5.5a21.26 21.26 0 0 1 2.26.15l.55.07 1.32.22v5.31h-2.76a1.31 1.31 0 0 0-1 .34 1.32 1.32 0 0 0-.25.86v1.65h4l-.92 6.07z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-google{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.15 14.81c0-.872.14-1.737.413-2.564L2.927 8.7a13.794 13.794 0 0 0 0 12.219l4.636-3.546a8.182 8.182 0 0 1-.414-2.563z' fill='%23FBBC05'/%3E%3Cpath d='m2.927 8.7 4.636 3.546A8.14 8.14 0 0 1 15.31 6.65a7.983 7.983 0 0 1 5.084 1.82l4.017-4.017A13.775 13.775 0 0 0 2.927 8.7z' fill='%23EA4335'/%3E%3Cpath d='M15.31 12.299v5.335h7.407c-.69 3.39-3.578 5.336-7.407 5.336a8.14 8.14 0 0 1-7.75-5.608l-4.635 3.553A13.756 13.756 0 0 0 15.31 28.62c6.905 0 13.182-5.021 13.182-13.81a11.458 11.458 0 0 0-.314-2.51H15.31z' fill='%2334A853'/%3E%3Cpath d='M15.31 12.299v5.335h7.407a6.22 6.22 0 0 1-2.821 4.128l4.407 3.412a13.737 13.737 0 0 0 4.189-10.364 11.458 11.458 0 0 0-.314-2.511H15.31z' fill='%234285F4'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-globe-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.965 16.085c0-.14.035-.28.035-.42v-1.33c0-.14-.035-.28-.035-.42v-.21C28.3 6.6 22.28 1 15 1 7.93 1 2.05 6.285 1.14 13.11v.035c-.035.175-.035.35-.07.56 0 .07 0 .175-.035.245 0 .14-.035.245-.035.385v1.33c0 .14 0 .245.035.385 0 .07 0 .175.035.245 0 .175.035.35.07.525v.07C2.05 23.715 7.93 29 15 29c7.28 0 13.3-5.6 13.93-12.705 0-.07.035-.14.035-.21zm-2.555 4.62c-.035.105-.105.21-.14.315-.035.07-.105.175-.14.245-.07.105-.105.21-.175.28-.035.07-.105.14-.14.245-.07.105-.105.175-.175.28-.035.07-.105.14-.14.21-.07.105-.14.175-.21.28-.07.07-.105.14-.175.21-.07.105-.14.175-.21.28-.07.07-.105.14-.175.21-.07.07-.14.175-.21.245-.07.07-.105.14-.175.21-.07.07-.14.175-.245.245l-.175.175c-.07.07-.175.14-.245.245-.07.07-.14.105-.21.175-.07.07-.175.14-.245.21-.07.07-.14.105-.21.175-.105.07-.175.14-.28.21-.07.07-.14.105-.21.175-.105.07-.175.14-.28.21-.07.035-.14.105-.21.14-.105.07-.21.14-.28.175-.07.035-.14.105-.21.14-.105.07-.21.105-.315.175-.07.035-.14.07-.245.14-.105.07-.21.105-.315.175-.07.035-.14.07-.245.105-.105.035-.21.105-.315.14-.07.035-.14.07-.245.105-.105.035-.21.105-.315.14-.07.035-.175.07-.245.105-.035 0-.035 0-.07.035 1.54-1.54 2.765-3.885 3.465-6.685h3.885c-.035.035-.035.07-.07.14 0-.035-.07.07-.105.14zM2.33 16.61v-.105c0-.14-.035-.245-.035-.385 0-.105 0-.175-.035-.28v-1.75c0-.105 0-.175.035-.28 0-.14.035-.28.035-.385v-.07c.105-.84.315-1.68.595-2.52H7.02c-.245 1.295-.35 2.66-.35 4.095 0 1.435.14 2.8.35 4.095H2.925c-.28-.735-.49-1.575-.595-2.415zM7.86 15c0-1.435.14-2.8.385-4.095h6.125v8.19H8.245A21.978 21.978 0 0 1 7.86 15zM19.585 3.065c.105.035.21.07.315.14.07.035.175.07.245.105.105.035.21.105.315.14.07.035.175.07.245.105.105.035.21.105.315.14.07.035.14.07.245.14.105.07.21.105.28.175.07.035.14.105.245.14.105.07.175.105.28.175.07.035.14.105.21.14.105.07.175.14.28.21.07.07.14.105.21.175.105.07.175.14.28.21.07.07.14.105.21.175.07.07.175.14.245.21.07.07.14.105.21.175.07.07.175.14.245.245.07.07.14.14.21.175.07.07.14.175.245.245.07.07.14.14.175.21.07.07.14.175.21.245.07.07.105.14.175.21.07.07.14.175.21.245.07.07.105.14.175.21.07.105.14.175.175.28.035.07.105.14.14.21.07.105.105.175.175.28.035.07.105.14.14.245.07.105.105.175.175.28.035.07.105.175.14.245.035.105.105.21.14.28.035.07.07.175.14.245.035.035.035.07.07.14h-3.92c-.7-2.8-1.925-5.145-3.465-6.685.035 0 .035 0 .07.035.07.07.14.105.245.105zM22.14 15c0 1.435-.14 2.8-.385 4.095H15.63v-8.19h6.125c.245 1.295.385 2.66.385 4.095zm-.665 5.32c-1.05 4.06-3.255 7-5.845 7.385V20.32h5.845zM15.63 9.68V2.295c2.59.385 4.795 3.325 5.845 7.385H15.63zm-1.26-7.385V9.68H8.525c1.05-4.095 3.255-7 5.845-7.385zm0 18.025v7.385c-2.59-.385-4.795-3.325-5.845-7.385h5.845zm13.37-4.725c0 .105 0 .175-.035.28 0 .07 0 .175-.035.245 0 .14-.035.28-.035.42v.035c-.105.84-.315 1.715-.595 2.52h-4.06c.245-1.295.35-2.66.35-4.095 0-1.435-.14-2.8-.35-4.095h4.095c.28.84.49 1.68.595 2.52v.035c.035.14.035.28.035.42 0 .07 0 .175.035.245 0 .105 0 .175.035.28V15c0 .21 0 .385-.035.595zM10.73 2.96C9.19 4.5 7.965 6.845 7.265 9.645h-3.85c1.435-3.08 4.06-5.53 7.315-6.685zM3.415 20.32H7.3c.7 2.8 1.925 5.145 3.465 6.685-3.29-1.12-5.915-3.57-7.35-6.685z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-globe-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.965 16.085c0-.14.035-.28.035-.42v-1.33c0-.14-.035-.28-.035-.42v-.21C28.3 6.6 22.28 1 15 1 7.93 1 2.05 6.285 1.14 13.11v.035c-.035.175-.035.35-.07.56 0 .07 0 .175-.035.245 0 .14-.035.245-.035.385v1.33c0 .14 0 .245.035.385 0 .07 0 .175.035.245 0 .175.035.35.07.525v.07C2.05 23.715 7.93 29 15 29c7.28 0 13.3-5.6 13.93-12.705 0-.07.035-.14.035-.21zm-2.555 4.62c-.035.105-.105.21-.14.315-.035.07-.105.175-.14.245-.07.105-.105.21-.175.28-.035.07-.105.14-.14.245-.07.105-.105.175-.175.28-.035.07-.105.14-.14.21-.07.105-.14.175-.21.28-.07.07-.105.14-.175.21-.07.105-.14.175-.21.28-.07.07-.105.14-.175.21-.07.07-.14.175-.21.245-.07.07-.105.14-.175.21-.07.07-.14.175-.245.245l-.175.175c-.07.07-.175.14-.245.245-.07.07-.14.105-.21.175-.07.07-.175.14-.245.21-.07.07-.14.105-.21.175-.105.07-.175.14-.28.21-.07.07-.14.105-.21.175-.105.07-.175.14-.28.21-.07.035-.14.105-.21.14-.105.07-.21.14-.28.175-.07.035-.14.105-.21.14-.105.07-.21.105-.315.175-.07.035-.14.07-.245.14-.105.07-.21.105-.315.175-.07.035-.14.07-.245.105-.105.035-.21.105-.315.14-.07.035-.14.07-.245.105-.105.035-.21.105-.315.14-.07.035-.175.07-.245.105-.035 0-.035 0-.07.035 1.54-1.54 2.765-3.885 3.465-6.685h3.885c-.035.035-.035.07-.07.14 0-.035-.07.07-.105.14zM2.33 16.61v-.105c0-.14-.035-.245-.035-.385 0-.105 0-.175-.035-.28v-1.75c0-.105 0-.175.035-.28 0-.14.035-.28.035-.385v-.07c.105-.84.315-1.68.595-2.52H7.02c-.245 1.295-.35 2.66-.35 4.095 0 1.435.14 2.8.35 4.095H2.925c-.28-.735-.49-1.575-.595-2.415zM7.86 15c0-1.435.14-2.8.385-4.095h6.125v8.19H8.245A21.978 21.978 0 0 1 7.86 15zM19.585 3.065c.105.035.21.07.315.14.07.035.175.07.245.105.105.035.21.105.315.14.07.035.175.07.245.105.105.035.21.105.315.14.07.035.14.07.245.14.105.07.21.105.28.175.07.035.14.105.245.14.105.07.175.105.28.175.07.035.14.105.21.14.105.07.175.14.28.21.07.07.14.105.21.175.105.07.175.14.28.21.07.07.14.105.21.175.07.07.175.14.245.21.07.07.14.105.21.175.07.07.175.14.245.245.07.07.14.14.21.175.07.07.14.175.245.245.07.07.14.14.175.21.07.07.14.175.21.245.07.07.105.14.175.21.07.07.14.175.21.245.07.07.105.14.175.21.07.105.14.175.175.28.035.07.105.14.14.21.07.105.105.175.175.28.035.07.105.14.14.245.07.105.105.175.175.28.035.07.105.175.14.245.035.105.105.21.14.28.035.07.07.175.14.245.035.035.035.07.07.14h-3.92c-.7-2.8-1.925-5.145-3.465-6.685.035 0 .035 0 .07.035.07.07.14.105.245.105zM22.14 15c0 1.435-.14 2.8-.385 4.095H15.63v-8.19h6.125c.245 1.295.385 2.66.385 4.095zm-.665 5.32c-1.05 4.06-3.255 7-5.845 7.385V20.32h5.845zM15.63 9.68V2.295c2.59.385 4.795 3.325 5.845 7.385H15.63zm-1.26-7.385V9.68H8.525c1.05-4.095 3.255-7 5.845-7.385zm0 18.025v7.385c-2.59-.385-4.795-3.325-5.845-7.385h5.845zm13.37-4.725c0 .105 0 .175-.035.28 0 .07 0 .175-.035.245 0 .14-.035.28-.035.42v.035c-.105.84-.315 1.715-.595 2.52h-4.06c.245-1.295.35-2.66.35-4.095 0-1.435-.14-2.8-.35-4.095h4.095c.28.84.49 1.68.595 2.52v.035c.035.14.035.28.035.42 0 .07 0 .175.035.245 0 .105 0 .175.035.28V15c0 .21 0 .385-.035.595zM10.73 2.96C9.19 4.5 7.965 6.845 7.265 9.645h-3.85c1.435-3.08 4.06-5.53 7.315-6.685zM3.415 20.32H7.3c.7 2.8 1.925 5.145 3.465 6.685-3.29-1.12-5.915-3.57-7.35-6.685z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-link-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12.123 20.566-1.012 1.019c-.89.897-2.1 1.4-3.36 1.4a4.735 4.735 0 0 1-3.359-1.4 4.8 4.8 0 0 1-1.391-3.382 4.8 4.8 0 0 1 1.391-3.382l3.438-3.462a4.728 4.728 0 0 1 5.953-.626 4.78 4.78 0 0 1 1.93 2.54 4.814 4.814 0 0 1-.09 3.194c-.096.25-.089.527.019.77a.994.994 0 0 0 1.32.513c.241-.108.431-.308.527-.557a6.84 6.84 0 0 0 .127-4.54 6.792 6.792 0 0 0-2.74-3.608 6.717 6.717 0 0 0-8.46.89l-3.438 3.461a6.8 6.8 0 0 0-1.464 2.205 6.837 6.837 0 0 0 1.463 7.408 6.75 6.75 0 0 0 2.19 1.474 6.712 6.712 0 0 0 7.358-1.474l1.012-1.018a1.009 1.009 0 0 0-.707-1.72.994.994 0 0 0-.707.295zM27.026 6.987A6.737 6.737 0 0 0 22.25 5c-1.79 0-3.507.715-4.774 1.987l-1.012 1.02a1.007 1.007 0 0 0-.218 1.097 1.01 1.01 0 0 0 .542.546.994.994 0 0 0 1.09-.22l1.012-1.018a4.75 4.75 0 0 1 3.36-1.401 4.724 4.724 0 0 1 3.36 1.4 4.784 4.784 0 0 1 1.391 3.383 4.811 4.811 0 0 1-1.391 3.382l-3.438 3.461a4.727 4.727 0 0 1-5.953.625 4.78 4.78 0 0 1-1.929-2.538 4.815 4.815 0 0 1 .09-3.195 1.013 1.013 0 0 0-.574-1.3.994.994 0 0 0-.765.018 1.004 1.004 0 0 0-.528.557 6.842 6.842 0 0 0-.125 4.539 6.794 6.794 0 0 0 2.741 3.605 6.718 6.718 0 0 0 8.457-.886l3.439-3.462A6.828 6.828 0 0 0 29 11.794c0-1.802-.71-3.53-1.974-4.807z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-lock-yellow{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.147 1h1.69l.567.1a8.456 8.456 0 0 1 4.91 2.67 8.008 8.008 0 0 1 2.066 5.08v3.8h1.03c.324-.016.648.03.953.135a2.46 2.46 0 0 1 1.401 1.229c.138.284.218.592.233.906v11.71a2.265 2.265 0 0 1-.501 1.527 2.39 2.39 0 0 1-1.405.843H4.882a2.429 2.429 0 0 1-1.265-.71 2.31 2.31 0 0 1-.61-1.29 2.135 2.135 0 0 1 0-.34V15.05a2.27 2.27 0 0 1 .587-1.58c.224-.26.505-.47.822-.611a2.41 2.41 0 0 1 1.013-.209h1.185V9.03a7.986 7.986 0 0 1 1.709-4.821 8.398 8.398 0 0 1 4.33-2.889c.484-.13.989-.22 1.494-.32zm5.637 11.69a.31.31 0 0 0 0-.12V8.86a4.615 4.615 0 0 0-1.626-3.082 4.894 4.894 0 0 0-3.367-1.143 4.869 4.869 0 0 0-3.251 1.427A4.589 4.589 0 0 0 10.2 9.27v3.43l9.584-.01z' fill='%23FFCA65'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-list-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.29 9.145c0-.254.255-.509.51-.509h11.836c.255 0 .382.255.382.51 0 .254-.127.509-.382.509H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm2.545 4.327c0-.254.128-.508.383-.508h11.963c.255 0 .382.254.382.508 0 .255-.127.51-.382.51H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm2.545 4.709c0-.254.128-.509.383-.509h11.963c.255 0 .382.255.382.51 0 .254-.127.508-.382.508H10.8c-.255 0-.51-.254-.51-.509zM7.745 22a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545z' fill='%2306213D'/%3E%3Cpath d='M24.927 29H5.073C2.909 29 1 27.218 1 24.927V5.073C1 2.909 2.91 1 5.073 1H24.8C27.09 1 29 2.91 29 5.073V24.8c0 2.418-1.91 4.2-4.073 4.2zM5.073 2.273c-1.528 0-2.8 1.272-2.8 2.8V24.8c0 1.654 1.272 2.927 2.8 2.927H24.8c1.527 0 2.8-1.273 2.8-2.8V5.073c.127-1.528-1.146-2.8-2.673-2.8H5.073z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-list-add-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.29 9.145c0-.254.255-.509.51-.509h11.836c.255 0 .382.255.382.51 0 .254-.127.509-.382.509H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm0 5.6a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm0 5.982a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545z' fill='%2306213D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.942 14.236h-9.27c-.254 0-.381.255-.381.51 0 .254.254.509.509.509h6.614a8.944 8.944 0 0 1 2.528-1.019z' fill='%2306213D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.292 29a9.033 9.033 0 0 1-.952-1.273H5.073c-1.528 0-2.8-1.273-2.8-2.8V5.073c0-1.528 1.272-2.8 2.8-2.8H24.8c1.654 0 2.927 1.272 2.927 2.8v10.984c.466.385.893.816 1.273 1.286V5.2C29 2.91 27.09 1 24.927 1H5.073C2.909 1 1 2.91 1 5.073V24.8C1 27.218 2.91 29 5.073 29h10.219z' fill='%2306213D'/%3E%3Cpath d='M28 21.396h-4.755V16h-2.49v5.396H16v2.453h4.755V29h2.49v-5.15H28v-2.454z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-list-add-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.29 9.145c0-.254.255-.509.51-.509h11.836c.255 0 .382.255.382.51 0 .254-.127.509-.382.509H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm0 5.6a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm0 5.982a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.942 14.236h-9.27c-.254 0-.381.255-.381.51 0 .254.254.509.509.509h6.614a8.944 8.944 0 0 1 2.528-1.019z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.292 29a9.033 9.033 0 0 1-.952-1.273H5.073c-1.528 0-2.8-1.273-2.8-2.8V5.073c0-1.528 1.272-2.8 2.8-2.8H24.8c1.654 0 2.927 1.272 2.927 2.8v10.984c.466.385.893.816 1.273 1.286V5.2C29 2.91 27.09 1 24.927 1H5.073C2.909 1 1 2.91 1 5.073V24.8C1 27.218 2.91 29 5.073 29h10.219z' fill='%23fff'/%3E%3Cpath d='M28 21.396h-4.755V16h-2.49v5.396H16v2.453h4.755V29h2.49v-5.15H28v-2.454z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-menu-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 5h28v3H1V5zm22 8H1v3h22v-3zm6 9H1v3h28v-3z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-paper-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 29H2V1h21.19l2.88 2.747L28 5.52V29zm-25-.872h24V6.42h-4.78V1.872H3v26.256z' fill='%23244DCB'/%3E%3Cpath d='M23 10H7v1h16v-1zm0 4H7v1h16v-1zm0 4H7v1h16v-1zm0 4H7v1h16v-1z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-progress-mark{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 28c7.18 0 13-5.82 13-13S22.18 2 15 2 2 7.82 2 15s5.82 13 13 13Zm0 1c7.732 0 14-6.268 14-14S22.732 1 15 1 1 7.268 1 15s6.268 14 14 14Z' fill='%2306213D'/%3E%3Cpath d='M13.21 20.786 8 15.995l1.287-1.425 3.822 3.514L21.612 9 23 10.329l-9.79 10.457Z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-progress-done{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='13' fill='%23244DCB' stroke='%23244DCB' stroke-width='2'/%3E%3Cpath d='M13.944 20.262 9.43 15.858l1.115-1.31 3.313 3.23 7.369-8.35 1.203 1.222-8.485 9.612z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-plus-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6H6.86V0H5.14v6H0v1.846h5.14v6h1.72v-6H12V6z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-plus-gray{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6H6.86V0H5.14v6H0v1.846h5.14v6h1.72v-6H12V6z' fill='%23DFDFDF'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-profile-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 27.243a.753.753 0 0 1-.745.757H3.745A.755.755 0 0 1 3 27.243c0-6.687 5.373-12.108 12-12.108s12 5.421 12 12.108zM15 14.622c-3.728 0-6.75-3.05-6.75-6.811C8.25 4.049 11.272 1 15 1s6.75 3.05 6.75 6.81c0 3.762-3.022 6.812-6.75 6.812z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-public-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.318 25.607c-.24.08-.481.16-.802.241v-.963l-1.123-1.043v2.006c-2.247-.32-4.172-2.888-5.055-6.338h5.054v1.925l.963-1.123.08-.16v-.642h.562l.16-.16.161.16h4.252c-.32 1.123-.642 2.086-1.123 2.968l.802.723c.562-1.043 1.043-2.247 1.444-3.61h1.846l1.043-1.124h-2.648c.24-1.123.321-2.327.321-3.53 0-1.204-.16-2.407-.32-3.53h3.449c.24.722.401 1.444.481 2.166v2.728c0 .24-.08.481-.16.802l1.284-1.524v-1.765A12.056 12.056 0 0 0 12.953 2.822c-6.097 0-11.152 4.573-11.874 10.43 0 .16 0 .321-.08.481v2.247c0 .161 0 .322.08.482v.08c.803 5.857 5.857 10.43 11.954 10.43.803 0 1.685-.08 2.407-.24l-1.123-1.124zm2.407-21.1c.08.08.16.08.24.08.08 0 .161.08.241.16.08 0 .16.081.241.081.08 0 .16.08.24.16.08 0 .161.08.241.08.08 0 .16.081.241.161.08 0 .16.08.24.16.081.08.161.08.241.161.08 0 .16.08.241.16.08.08.16.08.24.161.081 0 .161.08.161.16.08.08.16.161.24.161.081.08.161.08.161.16.08.08.16.16.241.16.08.081.16.081.16.161.08.08.161.16.241.16.08.081.16.081.16.161l.241.24.16.161c.081-.16.081-.08.241 0l.161.16c.08.081.16.161.16.242.08.08.08.16.16.16.081.08.161.16.161.24.08.08.08.161.16.161.081.08.161.16.161.24 0 .081.08.161.16.161.081.08.081.16.161.241 0 .08.08.16.16.24-.08.08 0 .161 0 .241 0 .08.08.16.161.241 0 .08.08.16.16.24 0 .081.08.161.161.241 0 0 0 .08.08.16h-3.37c-.721-2.566-1.764-4.572-3.048-5.856zm-3.21-.561c2.247.32 4.173 2.888 5.055 6.338h-5.054V3.946zm0 7.38h5.296c.24 1.124.32 2.327.32 3.53 0 1.204-.16 2.408-.32 3.53h-5.295v-7.06zm-1.042 7.06H7.178c-.241-1.122-.321-2.326-.321-3.53 0-1.203.16-2.406.32-3.53h5.296v7.06zm0-14.44v6.338H7.418c.883-3.53 2.808-6.018 5.055-6.338zm-3.13.561c-1.363 1.364-2.406 3.37-2.968 5.777h-3.37C4.21 7.636 6.536 5.47 9.345 4.507zm-7.3 11.794v-2.728c.08-.722.24-1.444.481-2.166h3.53a22.523 22.523 0 0 0-.24 3.45c0 1.203.16 2.407.32 3.53h-3.53c-.24-.642-.48-1.364-.561-2.086zm.963 3.209h3.37c.641 2.407 1.684 4.413 2.968 5.776-2.808-1.043-5.135-3.128-6.338-5.776z' fill='%23244DCB'/%3E%3Cpath d='m13.275 23.04 5.456 5.295L29 16.782l-1.444-1.444-8.906 10.029-4.011-3.932-1.364 1.605z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-share-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M3.13 26.23c-3-5.77-3.44-10.32-1.26-13.51 3.82-5.6 14.28-5.16 16.84-5V3l10.07 8.21-10.07 8.71V15.4C17 15 9.91 13.71 6.19 17.05c-2 1.83-2.75 4.82-2.12 8.87zm13-17.56c-4 0-10.72.62-13.44 4.61-1.65 2.41-1.59 5.77.15 10 0-3 .89-5.37 2.68-7 4.62-4.15 13.43-1.88 13.8-1.78l.38.1v3.11l7.51-6.54-7.5-6.12v3.81l-.56-.06s-1.24-.13-3.01-.13z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-search-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m28.5 27.2-7.234-7.185a11.28 11.28 0 0 0 3.034-7.808 11.283 11.283 0 0 0-3.195-7.746 11.435 11.435 0 0 0-7.678-3.449c-2.91-.133-5.76.844-7.966 2.731a11.268 11.268 0 0 0-1.605 15.473 11.415 11.415 0 0 0 7.238 4.287 11.462 11.462 0 0 0 8.225-1.822L26.69 29l1.811-1.8zM3.89 12.194c0-1.762.526-3.485 1.512-4.95a8.956 8.956 0 0 1 4.025-3.28 9.026 9.026 0 0 1 5.182-.507 8.988 8.988 0 0 1 4.592 2.438 8.889 8.889 0 0 1 2.455 4.56 8.852 8.852 0 0 1-.51 5.148 8.923 8.923 0 0 1-3.304 3.998A9.01 9.01 0 0 1 6.52 18.49a8.888 8.888 0 0 1-2.63-6.297z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-search-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m28.5 27.2-7.234-7.185a11.28 11.28 0 0 0 3.034-7.808 11.283 11.283 0 0 0-3.195-7.746 11.435 11.435 0 0 0-7.678-3.449c-2.91-.133-5.76.844-7.966 2.731a11.268 11.268 0 0 0-1.605 15.473 11.415 11.415 0 0 0 7.238 4.287 11.462 11.462 0 0 0 8.225-1.822L26.69 29l1.811-1.8zM3.89 12.194c0-1.762.526-3.485 1.512-4.95a8.956 8.956 0 0 1 4.025-3.28 9.026 9.026 0 0 1 5.182-.507 8.988 8.988 0 0 1 4.592 2.438 8.889 8.889 0 0 1 2.455 4.56 8.852 8.852 0 0 1-.51 5.148 8.923 8.923 0 0 1-3.304 3.998A9.01 9.01 0 0 1 6.52 18.49a8.888 8.888 0 0 1-2.63-6.297z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-star{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27'%3E%3Cpath fill='%23f5f7fa' d='M0 0h27v27H0z'/%3E%3Crect width='27' height='27' rx='4' fill='%230d4df1'/%3E%3Cpath d='M18.65 15.67a1 1 0 0 1 .35-1.22l4.39-2.91a1 1 0 0 0-.53-1.89h-5.67a1 1 0 0 1-.93-.65l-1.84-5.18a1 1 0 0 0-1.85 0L10.74 9a1 1 0 0 1-.93.67H4.1a1 1 0 0 0-.53 1.89L8 14.45a1.05 1.05 0 0 1 .4 1.22l-1.76 4.79a1 1 0 0 0 1.46 1.22l4.9-3.23a.93.93 0 0 1 1.06 0l4.87 3.23a1 1 0 0 0 1.46-1.22z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-star-empty{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27'%3E%3Cpath fill='%23f5f7fa' d='M0 0h27v27H0z'/%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h23a2 2 0 0 1 2 2v23a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2z' fill='%23e2e2e2'/%3E%3Cpath d='M18.65 15.67a1 1 0 0 1 .35-1.22l4.39-2.91a1 1 0 0 0-.53-1.89h-5.67a1 1 0 0 1-.93-.65l-1.84-5.18a1 1 0 0 0-1.85 0L10.74 9a1 1 0 0 1-.93.67H4.1a1 1 0 0 0-.53 1.89L8 14.45a1.05 1.05 0 0 1 .4 1.22l-1.76 4.79a1 1 0 0 0 1.46 1.22l4.9-3.23a.93.93 0 0 1 1.06 0l4.87 3.23a1 1 0 0 0 1.46-1.22z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-star-half{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h27v27H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f5f7fa' d='M0 0h27v27H0z'/%3E%3Cpath d='M0 4a4 4 0 0 1 4-4h9.5v27H4a4 4 0 0 1-4-4z' fill='%230d4df1'/%3E%3Cpath d='M27 4a4 4 0 0 0-4-4h-9.5v27H23a4 4 0 0 0 4-4z' fill='%23dbdbe1'/%3E%3Cpath d='M18.65 15.67a1 1 0 0 1 .35-1.22l4.39-2.91a1 1 0 0 0-.53-1.89h-5.67a1 1 0 0 1-.93-.65l-1.84-5.18a1 1 0 0 0-1.85 0L10.74 9a1 1 0 0 1-.93.67H4.1a1 1 0 0 0-.53 1.89L8 14.45a1.05 1.05 0 0 1 .4 1.22l-1.76 4.79a1 1 0 0 0 1.46 1.22l4.9-3.23a.93.93 0 0 1 1.06 0l4.87 3.23a1 1 0 0 0 1.46-1.22z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat}.icon-star-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27'%3E%3Cpath fill='%23f5f7fa' d='M0 0h27v27H0z'/%3E%3Crect width='27' height='27' rx='4' fill='%2306213D'/%3E%3Cpath d='M18.65 15.67a1 1 0 0 1 .35-1.22l4.39-2.91a1 1 0 0 0-.53-1.89h-5.67a1 1 0 0 1-.93-.65l-1.84-5.18a1 1 0 0 0-1.85 0L10.74 9a1 1 0 0 1-.93.67H4.1a1 1 0 0 0-.53 1.89L8 14.45a1.05 1.05 0 0 1 .4 1.22l-1.76 4.79a1 1 0 0 0 1.46 1.22l4.9-3.23a.93.93 0 0 1 1.06 0l4.87 3.23a1 1 0 0 0 1.46-1.22z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-star-half-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h27v27H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f5f7fa' d='M0 0h27v27H0z'/%3E%3Cpath d='M0 4a4 4 0 0 1 4-4h9.5v27H4a4 4 0 0 1-4-4z' fill='%2306213D'/%3E%3Cpath d='M27 4a4 4 0 0 0-4-4h-9.5v27H23a4 4 0 0 0 4-4z' fill='%23dbdbe1'/%3E%3Cpath d='M18.65 15.67a1 1 0 0 1 .35-1.22l4.39-2.91a1 1 0 0 0-.53-1.89h-5.67a1 1 0 0 1-.93-.65l-1.84-5.18a1 1 0 0 0-1.85 0L10.74 9a1 1 0 0 1-.93.67H4.1a1 1 0 0 0-.53 1.89L8 14.45a1.05 1.05 0 0 1 .4 1.22l-1.76 4.79a1 1 0 0 0 1.46 1.22l4.9-3.23a.93.93 0 0 1 1.06 0l4.87 3.23a1 1 0 0 0 1.46-1.22z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat}.icon-triangle-down{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 24 2.01 9.75h25.98L15 24z' fill='%230A2540'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-twitter-outline-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M10 26.68a16 16 0 0 1-8.76-2.6l.33-.91a10.65 10.65 0 0 0 6.81-1.5 6.06 6.06 0 0 1-4.32-4.06l-.25-.8.82.16h.25a6.15 6.15 0 0 1-2.78-5.14V11l.74.34a3.64 3.64 0 0 0 .63.3A6.16 6.16 0 0 1 3 4.77l.36-.63.46.57a15.26 15.26 0 0 0 10.38 5.62V9.6a6 6 0 0 1 10.2-4.38A10.5 10.5 0 0 0 27.5 4l1.13-.68-.4 1.26a6.26 6.26 0 0 1-1.12 2.06c.4-.13.8-.28 1.19-.45l1.39-.63-.76 1.34a11.89 11.89 0 0 1-2.68 2.89v.48c0 8.06-6.08 16.41-16.25 16.41zm-6.48-2.46A15.12 15.12 0 0 0 10 25.68c9.55 0 15.26-7.85 15.26-15.43v-1l.22-.16a9.64 9.64 0 0 0 1.61-1.45 12.29 12.29 0 0 1-1.71.36l-.32-.92a5.18 5.18 0 0 0 1.61-1.55 12 12 0 0 1-2.34.73h-.27l-.19-.2a5.06 5.06 0 0 0-8.58 4.65l.14.65h-.66A16.2 16.2 0 0 1 3.5 5.93a5.23 5.23 0 0 0-.37 1.91 5.16 5.16 0 0 0 2.24 4.25l1.44 1L5.08 13a5.82 5.82 0 0 1-1.93-.39 5.07 5.07 0 0 0 4 4.26v1a5.79 5.79 0 0 1-1.85.21 5 5 0 0 0 4.4 2.79h1.4l-1.1.87a11.46 11.46 0 0 1-6.48 2.48z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-twitter-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.5 6.626a11 11 0 0 1-3.18.88 5.604 5.604 0 0 0 2.434-3.097 10.988 10.988 0 0 1-3.517 1.358A5.51 5.51 0 0 0 20.194 4c-3.058 0-5.539 2.507-5.539 5.6 0 .438.05.863.143 1.274-4.606-.234-8.685-2.463-11.418-5.85a5.64 5.64 0 0 0-.75 2.815c0 1.942.98 3.657 2.465 4.66a5.482 5.482 0 0 1-2.51-.7v.072c0 2.712 1.91 4.975 4.444 5.49a5.524 5.524 0 0 1-2.502.096c.706 2.223 2.75 3.843 5.176 3.887a11.042 11.042 0 0 1-8.203 2.32 15.545 15.545 0 0 0 8.49 2.515c10.191 0 15.762-8.531 15.762-15.93 0-.24-.006-.483-.017-.723a11.329 11.329 0 0 0 2.763-2.896l.002-.004z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-video-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 30 30'%3E%3Cpath d='M12.53 8.412v12.81l8.235-6.66z' fill='%23244DCB'/%3E%3Cpath d='M15 29a14 14 0 1 1 14-14 14.016 14.016 0 0 1-14 14zm0-27a13 13 0 1 0 13 13A13.014 13.014 0 0 0 15 2z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-video-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 30 30'%3E%3Cpath d='M12.53 8.412v12.81l8.235-6.66z' fill='%2306213D'/%3E%3Cpath d='M15 29a14 14 0 1 1 14-14 14.016 14.016 0 0 1-14 14zm0-27a13 13 0 1 0 13 13A13.014 13.014 0 0 0 15 2z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-x{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 3.426 26.574 1 15 12.574 3.415 1 1 3.426 12.574 15 1 26.574 3.415 29 15 17.426 26.574 29 29 26.574 17.415 15 29 3.426z' fill='%23FF6A6A'/%3E%3C/svg%3E")}.icon-x,.icon-x-green{background-repeat:no-repeat}.icon-x-green{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 3.426 26.574 1 15 12.574 3.415 1 1 3.426 12.574 15 1 26.574 3.415 29 15 17.426 26.574 29 29 26.574 17.415 15 29 3.426z' fill='%235BD8A0'/%3E%3C/svg%3E")}.icon-x-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 3.426 26.574 1 15 12.574 3.415 1 1 3.426 12.574 15 1 26.574 3.415 29 15 17.426 26.574 29 29 26.574 17.415 15 29 3.426z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-x-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 3.426 26.574 1 15 12.574 3.415 1 1 3.426 12.574 15 1 26.574 3.415 29 15 17.426 26.574 29 29 26.574 17.415 15 29 3.426z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-sort-gray{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m23.827 12-8.328-8.581L7.173 12 6 10.79 15.5 1l9.5 9.79L23.827 12ZM15.5 29 6 19.21 7.173 18l8.328 8.581L23.827 18 25 19.21 15.5 29Z' fill='%23DFDFDF'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-sort-up{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m23.827 12-8.328-8.581L7.173 12 6 10.79 15.5 1l9.5 9.79L23.827 12Z' fill='%232348BC'/%3E%3Cpath d='M15.5 29 6 19.21 7.173 18l8.328 8.581L23.827 18 25 19.21 15.5 29Z' fill='%23A7A7A7'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-sort-down{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m23.827 12-8.328-8.581L7.173 12 6 10.79 15.5 1l9.5 9.79L23.827 12Z' fill='%23A7A7A7'/%3E%3Cpath d='M15.5 29 6 19.21 7.173 18l8.328 8.581L23.827 18 25 19.21 15.5 29Z' fill='%232348BC'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-unlocked-yellow{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.778 12.703h-9.57V9.279a4.597 4.597 0 0 1 1.34-3.212 4.863 4.863 0 0 1 3.25-1.428 4.887 4.887 0 0 1 3.365 1.145 4.623 4.623 0 0 1 1.625 3.084v.14h3.596v-.15a8.023 8.023 0 0 0-2.066-5.086A8.45 8.45 0 0 0 16.41 1.1l-.567-.1h-1.69c-.504.1-1.03.19-1.503.32A8.405 8.405 0 0 0 8.327 4.2a8.014 8.014 0 0 0-1.724 4.809v3.623H5.418a2.363 2.363 0 0 0-1.008.208 2.3 2.3 0 0 0-.815.613 2.264 2.264 0 0 0-.587 1.582v11.622a1.93 1.93 0 0 0 0 .34c.06.482.274.933.61 1.292.335.358.777.607 1.265.711h20.211a2.391 2.391 0 0 0 1.387-.825 2.27 2.27 0 0 0 .518-1.498V14.954a2.376 2.376 0 0 0-.81-1.655 2.516 2.516 0 0 0-1.775-.618h-1.03' fill='%23FFCA65'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-clock-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 29a14 14 0 1 1 0-28 14 14 0 0 1 0 28zm0-26.576a12.576 12.576 0 1 0 0 25.153 12.576 12.576 0 0 0 0-25.153z' fill='%2306213D'/%3E%3Cpath d='m15.353 16.152 1.052-.642 4.009-2.49.378-.236a.784.784 0 0 1 1.052.123.587.587 0 0 1-.105.886c-.505.33-1.052.642-1.536.944l-3.409 2.113c-.547.349-1.115.688-1.673 1.028a.78.78 0 0 1-.692.072.699.699 0 0 1-.284-.198.598.598 0 0 1-.139-.299 1.032 1.032 0 0 1 0-.226v-8.49a.602.602 0 0 1 .136-.471.743.743 0 0 1 .464-.255.772.772 0 0 1 .519.092c.153.09.261.23.302.39.013.115.013.232 0 .348v7.31h-.074z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-eye-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.931 14.726C27.429 8.908 20.515 5 15.001 5 9.487 5 2.573 8.914 1.071 14.726L1 15l.07.274C2.573 21.092 9.486 25 15 25c5.514 0 12.427-3.908 13.93-9.726L29 15l-.069-.274zm-13.934 8.148c-4.556 0-10.455-3.217-11.85-7.868 1.395-4.65 7.293-7.866 11.85-7.866 4.558 0 10.456 3.216 11.85 7.866-1.39 4.65-7.293 7.868-11.85 7.868zm.074-13.051a5.08 5.08 0 0 0-2.88.898 5.303 5.303 0 0 0-1.908 2.394 5.477 5.477 0 0 0-.295 3.081 5.383 5.383 0 0 0 1.418 2.731 5.14 5.14 0 0 0 2.654 1.46c1.006.205 2.048.1 2.995-.304a5.218 5.218 0 0 0 2.326-1.964 5.444 5.444 0 0 0-.646-6.729 5.116 5.116 0 0 0-3.66-1.564l-.004-.003zm0 8.532a2.311 2.311 0 0 1-.96-1.463 2.362 2.362 0 0 1 .328-1.734c.328-.51.84-.865 1.422-.988a2.191 2.191 0 0 1 1.684.336c.496.337.842.863.961 1.463.12.599.003 1.223-.325 1.733s-.839.867-1.421.99a2.19 2.19 0 0 1-1.685-.334l-.004-.003z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-arrow-right-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19.268 8.358 5.906 5.678H1v1.928h24.174l-5.906 5.678L20.68 23 29 15l-8.32-8-1.412 1.358z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-arrow-down-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21.642 19.268-5.678 5.906V1h-1.928v24.174l-5.678-5.906L7 20.68 15 29l8-8.32-1.358-1.412z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-envelope-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4v22h28V4H1zm26.213 1L15 15.841 2.787 5h24.426zM1.966 25V5.587L15 17.159 28.035 5.587V25H1.965z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-bookmark-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.628 22.703 6.19 28.101V1.69h17.62v26.411l-8.438-5.398-.372-.238-.372.238z' stroke='%23244DCB' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-list-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.29 9.145c0-.254.255-.509.51-.509h11.836c.255 0 .382.255.382.51 0 .254-.127.509-.382.509H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm2.545 4.327c0-.254.128-.508.383-.508h11.963c.255 0 .382.254.382.508 0 .255-.127.51-.382.51H10.8c-.255 0-.51-.255-.51-.51zm-2.545 1.273a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545zm2.545 4.709c0-.254.128-.509.383-.509h11.963c.255 0 .382.255.382.51 0 .254-.127.508-.382.508H10.8c-.255 0-.51-.254-.51-.509zM7.745 22a1.273 1.273 0 1 0 0-2.545 1.273 1.273 0 0 0 0 2.545z' fill='%23244DCB'/%3E%3Cpath d='M24.927 29H5.073C2.909 29 1 27.218 1 24.927V5.073C1 2.909 2.91 1 5.073 1H24.8C27.09 1 29 2.91 29 5.073V24.8c0 2.418-1.91 4.2-4.073 4.2zM5.073 2.273c-1.528 0-2.8 1.272-2.8 2.8V24.8c0 1.654 1.272 2.927 2.8 2.927H24.8c1.527 0 2.8-1.273 2.8-2.8V5.073c.127-1.528-1.146-2.8-2.673-2.8H5.073z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-linkedin-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 6.275v17.45a5.33 5.33 0 0 1-1.566 3.712A5.355 5.355 0 0 1 23.713 29H6.287a5.356 5.356 0 0 1-3.72-1.563A5.331 5.331 0 0 1 1 23.725V6.275a5.329 5.329 0 0 1 1.566-3.713A5.354 5.354 0 0 1 6.287 1h17.426a5.356 5.356 0 0 1 3.72 1.563A5.33 5.33 0 0 1 29 6.275zM9.81 7.902a2.152 2.152 0 0 0-.652-1.562 2.214 2.214 0 0 0-1.697-.65 2.337 2.337 0 0 0-1.697.585 1.93 1.93 0 0 0-.652 1.562A2.112 2.112 0 0 0 5.764 9.4c.463.424 1.07.656 1.697.651a2.368 2.368 0 0 0 1.763-.65 2.062 2.062 0 0 0 .587-1.498zM5.308 24.377h4.177V11.744H5.307v12.633zm15.142 0h4.177v-7.228a6.198 6.198 0 0 0-1.306-4.232 4.579 4.579 0 0 0-3.522-1.432 4.18 4.18 0 0 0-3.785 2.149h.065v-1.825H11.9c.065.782.065 5.014 0 12.633h4.176v-7.098a4.075 4.075 0 0 1 .13-1.042c.186-.434.478-.814.85-1.106a1.94 1.94 0 0 1 1.37-.456c1.436 0 2.089.977 2.089 2.865v6.772h-.066z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-rss-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.661 2a.849.849 0 0 0 .096.016c.449.025.898.036 1.345.076.552.05 1.103.115 1.653.186.716.097 1.427.229 2.13.396a25.751 25.751 0 0 1 6.028 2.214 25.907 25.907 0 0 1 6.698 4.956 25.892 25.892 0 0 1 7.257 15.428c.094.876.138 1.757.131 2.638 0 .028-.003.056-.005.09h-5.188v-.128c-.018-.477-.026-.953-.056-1.429a20.683 20.683 0 0 0-3.684-10.34 20.964 20.964 0 0 0-6.89-6.242A20.47 20.47 0 0 0 6.51 7.697a20.91 20.91 0 0 0-4.41-.492c-.029 0-.057-.003-.092-.005C2.005 7.168 2 7.14 2 7.113V2.054c0-.018.002-.036.004-.054h.657z' fill='%2306213D'/%3E%3Cpath d='M2 15.53v-5.17c.035 0 .07-.003.106-.003.55 0 1.098.033 1.646.086a17.514 17.514 0 0 1 8.572 3.253A17.662 17.662 0 0 1 19.23 24.2a17.67 17.67 0 0 1 .413 3.697c0 .032-.003.065-.006.103h-5.164l-.005-.127a12.466 12.466 0 0 0-4.419-9.39 12.348 12.348 0 0 0-4.402-2.41 12.274 12.274 0 0 0-3.51-.542H2zm6.5 9.2a3.225 3.225 0 0 1-.693 2.026 3.285 3.285 0 0 1-1.817 1.16 3.276 3.276 0 0 1-2.29-.31 3.221 3.221 0 0 1-1.502-1.74 3.24 3.24 0 0 1 .081-2.43 3.28 3.28 0 0 1 1.755-1.702 3.275 3.275 0 0 1 2.588.067 3.24 3.24 0 0 1 1.059.784c.294.33.517.717.655 1.136.11.325.165.666.164 1.009z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-subject-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%233B3B3B' d='M12.5 8.5h7v20h-7z'/%3E%3Cpath fill='%2306213D' d='M15 23h2v4h-2z'/%3E%3Cpath stroke='%233B3B3B' d='M21.104 5.5H26.5v23h-5.396zM3.5 1.5h7v27h-7z'/%3E%3Cpath fill='%2306213D' d='M9 25v2H5v-2z'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-institution-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.08 12.046a.653.653 0 0 0 .647-.648V8.072a.624.624 0 0 0-.353-.56L15.658 1.066a.686.686 0 0 0-.589 0L2.353 7.512c-.206.118-.353.324-.353.56v3.326c0 .353.294.648.648.648h2.148v11.538H2.648a.653.653 0 0 0-.648.648v4.12c0 .354.294.648.648.648h25.431a.653.653 0 0 0 .648-.648v-4.12a.653.653 0 0 0-.648-.648h-2.148V12.046h2.148ZM3.294 8.484 15.364 2.36l12.068 6.093v2.267H3.295V8.484Zm14.688 15.07V12.047h2.679v11.538h-2.679v-.03Zm-5.24-11.508v11.538h-2.678V12.046h2.679Zm1.266 0h2.679v11.538H14.01V12.046Zm-7.918 0H8.77v11.538H6.091V12.046Zm21.34 15.63H3.296V24.85h24.137v2.825Zm-2.796-4.121h-2.678v-11.51h2.678v11.51Z' fill='%2306213D'/%3E%3Cpath d='M15.364 4.392a2.425 2.425 0 0 0-2.414 2.414 2.425 2.425 0 0 0 2.414 2.414 2.425 2.425 0 0 0 2.413-2.414 2.425 2.425 0 0 0-2.414-2.414Zm0 3.562a1.15 1.15 0 0 1-1.149-1.148c0-.648.5-1.148 1.149-1.148.618 0 1.148.5 1.148 1.148a1.15 1.15 0 0 1-1.149 1.148Z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-provider-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.79 1.703a.654.654 0 0 1 .42 0c.055.019.112.05.306.163l11.902 6.895c.258.15.44.255.572.343a.87.87 0 0 1 .215.175.675.675 0 0 1-.01.82.87.87 0 0 1-.22.17c-.135.084-.319.184-.58.327l-11.902 6.49c-.186.101-.24.13-.293.147a.655.655 0 0 1-.4 0 1.962 1.962 0 0 1-.293-.147l-11.901-6.49a12.666 12.666 0 0 1-.581-.327.872.872 0 0 1-.22-.17.675.675 0 0 1-.01-.82.872.872 0 0 1 .215-.175c.133-.088.314-.193.572-.343l11.902-6.895c.194-.112.251-.144.306-.163zm.63-.634a1.31 1.31 0 0 0-.84 0c-.125.042-.243.11-.4.202l-.025.015-11.91 6.9a12.26 12.26 0 0 0-.597.358c-.15.1-.284.203-.381.333a1.35 1.35 0 0 0 .02 1.638c.1.127.237.227.39.323.154.096.355.205.605.342l2.374 1.294-2.412 1.397c-.247.143-.445.258-.596.358-.15.1-.284.203-.381.333a1.35 1.35 0 0 0 .02 1.638c.1.127.237.227.39.323.154.096.355.205.605.342l2.105 1.147-2.143 1.242c-.247.143-.445.258-.596.357-.15.1-.284.204-.381.333a1.35 1.35 0 0 0 .02 1.639c.1.127.237.227.39.322.154.096.355.206.605.342l11.911 6.495.024.013c.15.082.264.144.384.183.26.083.538.083.798 0 .12-.039.233-.1.384-.183l.024-.013 11.91-6.495c.251-.136.452-.246.606-.342a1.47 1.47 0 0 0 .39-.322 1.35 1.35 0 0 0 .02-1.639 1.481 1.481 0 0 0-.381-.333c-.151-.1-.35-.214-.596-.357l-2.143-1.242 2.105-1.147c.25-.137.451-.246.605-.342.153-.096.29-.196.39-.323a1.35 1.35 0 0 0 .02-1.638 1.477 1.477 0 0 0-.381-.333c-.151-.1-.35-.215-.596-.358l-2.412-1.397 2.374-1.294c.25-.137.451-.246.605-.342.153-.096.29-.196.39-.323a1.35 1.35 0 0 0 .02-1.638 1.48 1.48 0 0 0-.381-.333c-.151-.1-.35-.215-.596-.358l-11.91-6.9-.026-.015c-.157-.091-.275-.16-.4-.202zM5.077 17.612l.015.026 9.414 5.133c.186.101.24.13.293.146a.65.65 0 0 0 .4 0c.052-.016.107-.045.293-.146l9.414-5.134.015-.025.015.009 2.457-1.34c.262-.143.446-.243.581-.327a.87.87 0 0 0 .22-.17.675.675 0 0 0 .01-.82.869.869 0 0 0-.215-.175 12.687 12.687 0 0 0-.572-.343l-2.76-1.598-8.851 4.827-.024.013c-.15.082-.264.144-.384.182a1.31 1.31 0 0 1-.798 0 2.27 2.27 0 0 1-.384-.182l-.024-.013-2.774-1.513-1.215.737-4.3-2.341 1.28-.706-1.843-1.004-2.759 1.598c-.258.15-.44.255-.572.343a.871.871 0 0 0-.215.175.675.675 0 0 0 .01.82.872.872 0 0 0 .22.17c.135.084.319.184.58.327l2.457 1.34.016-.01zm-2.496 2.217 2.49-1.443 1.474.804-1.303.718 4.3 2.341 1.237-.75 3.413 1.86.024.014c.15.082.264.144.384.182.26.083.538.083.798 0 .12-.038.233-.1.384-.182l.024-.014 9.12-4.973 2.49 1.443c.259.15.44.254.573.342.134.09.19.141.215.176a.675.675 0 0 1-.01.82.87.87 0 0 1-.22.17c-.135.084-.319.184-.58.327l-11.902 6.49c-.186.1-.24.13-.293.146a.655.655 0 0 1-.4 0 1.962 1.962 0 0 1-.293-.147l-11.901-6.49a12.666 12.666 0 0 1-.581-.327.872.872 0 0 1-.22-.17.675.675 0 0 1-.01-.82.874.874 0 0 1 .215-.175c.133-.088.314-.193.572-.342zM6.4 8.873l8.27-5.016 4.034 2.34-8.004 5.017-4.3-2.341z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-paper-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 29H2V1h21.19l2.88 2.747L28 5.52V29zm-25-.872h24V6.42h-4.78V1.872H3v26.256z' fill='%2306213D'/%3E%3Cpath d='M23 10H7v1h16v-1zm0 4H7v1h16v-1zm0 4H7v1h16v-1zm0 4H7v1h16v-1z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-search-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m28.5 27.2-7.234-7.185a11.28 11.28 0 0 0 3.034-7.808 11.283 11.283 0 0 0-3.195-7.746 11.435 11.435 0 0 0-7.678-3.449c-2.91-.133-5.76.844-7.966 2.731a11.268 11.268 0 0 0-1.605 15.473 11.415 11.415 0 0 0 7.238 4.287 11.462 11.462 0 0 0 8.225-1.822L26.69 29l1.811-1.8zM3.89 12.194c0-1.762.526-3.485 1.512-4.95a8.956 8.956 0 0 1 4.025-3.28 9.026 9.026 0 0 1 5.182-.507 8.988 8.988 0 0 1 4.592 2.438 8.889 8.889 0 0 1 2.455 4.56 8.852 8.852 0 0 1-.51 5.148 8.923 8.923 0 0 1-3.304 3.998A9.01 9.01 0 0 1 6.52 18.49a8.888 8.888 0 0 1-2.63-6.297z' fill='%23244DCB'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-megaphone-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m4.492 13.866 16.604-8.235 4.25 16.072L6.884 22.9l-2.39-9.033z' fill='%2306213D'/%3E%3Cpath d='M1.039 15.593c-.399-1.727 2.39-2.524 2.922-.664l1.86 7.438c.531 1.727-2.258 2.524-2.79.665L1.04 15.593zM21.893 5.498c-.531-1.86 2.258-2.656 2.79-.797l4.25 16.073c.531 1.86-2.258 2.523-2.79.796l-4.25-16.072zm-9.696 17.667v1.062c0 .266.265.399.53.399l5.314-.133c.266 0 .531-.266.531-.531l-.133-1.196 1.86-.133v1.196c.133 1.328-.93 2.39-2.125 2.39l-5.313.266c-1.329 0-2.391-.93-2.391-2.258l-.133-.93 1.86-.133z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.tippy-box[data-animation=shift-away][data-state=hidden]{opacity:0}.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top]{transform:translateY(10px)}.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom]{transform:translateY(-10px)}.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left]{transform:translateX(10px)}.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right]{transform:translateX(-10px)}.icon-chevron-right-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 15 8.765 29 7 27.276 19.482 15 7 2.724 8.765 1 23 15z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-play-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.182 14.259a1 1 0 0 1 0 1.482l-13.51 12.244c-.643.583-1.672.127-1.672-.74V2.754c0-.867 1.029-1.323 1.671-.74l13.511 12.244z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.l-subjects-page__header{display:grid;padding-block:24px;row-gap:20px}@media only screen and (min-width:670px){.l-subjects-page__header{column-gap:20px;grid-template-columns:1fr 288px;padding-block:32px}}@media only screen and (min-width:769px){.l-subjects-page__header{column-gap:20px;grid-template-columns:1fr 388px}}@media only screen and (min-width:1180px){.l-subjects-page__header{padding-block:48px}}.l-subjects-page__header-title{font-size:24px;line-height:1.2;margin:0}@media only screen and (min-width:670px){.l-subjects-page__header-title{font-size:32px}}@media only screen and (min-width:1180px){.l-subjects-page__header-title{font-size:48px}}.l-subjects-page__header-subtext{font-size:16px;line-height:1.4;margin-block-start:12px;max-width:55ch}@media only screen and (min-width:670px){.l-subjects-page__header-subtext{font-size:18px}}@media only screen and (min-width:1180px){.l-subjects-page__header-subtext{font-size:21px}}.l-subjects-page__hint-card{max-width:388px}@media only screen and (min-width:1025px){.l-subjects-page__container{column-gap:16px;display:grid;grid-template-columns:288px 1fr}}.l-subjects-page__subjects-panel{border-bottom:1px solid;margin-inline:-20px;padding:20px}@media only screen and (min-width:1025px){.l-subjects-page__subjects-panel{border-radius:5px;border-style:solid;border-width:1px;margin-inline:0;padding-block:29px}}@media only screen and (min-width:1180px){.l-subjects-page__subjects-panel{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;row-gap:32px}}@media only screen and (min-width:690px){.l-subjects-page__subjects-list{column-gap:44px;display:grid;grid-auto-flow:column;grid-template-columns:1fr 1fr;grid-template-rows:repeat(var(--subjects-list-rows),auto)}}@media only screen and (min-width:1025px){.l-subjects-page__subjects-list{display:block;row-gap:6px}}@media only screen and (min-width:1180px){.l-subjects-page__subjects-list{display:grid;grid-column:1/span 2}}.l-subjects-page__subject-link{align-items:center;box-sizing:border-box;display:block;font-size:18px;justify-content:space-between;min-height:46px;padding-block:11px}@media only screen and (min-width:800px){.l-subjects-page__subject-link{display:flex}}.l-subjects-page__subject-link:hover{text-decoration:none}.l-subjects-page__subject-label{background-color:rgba(239,249,255,0);margin-inline-end:4px;text-decoration:underline;text-decoration-color:#dbdbe1;transition:text-decoration-color .2s,background-color .2s}@media only screen and (min-width:800px){.l-subjects-page__subject-label{margin-inline-end:0}}@media (hover:hover){.l-subjects-page__subject-link:hover .l-subjects-page__subject-label{text-decoration-color:#6f7074}}.l-subjects-page__subject-link:active .l-subjects-page__subject-label{text-decoration-color:#6f7074}.l-subjects-page__subject-course-count{color:#797979;font-size:14px;line-height:14px;white-space:nowrap}@media only screen and (min-width:800px){.l-subjects-page__subject-course-count{background-color:#edeef1;border-radius:20px;color:inherit;flex-shrink:0;font-size:16px;line-height:16px;margin-inline-start:8px;padding:4px 10px;white-space:normal}.l-subjects-page__subject-course-count strong{font-weight:600}}.l-subjects-page__pagination{justify-content:center;margin-block-start:32px}@media only screen and (min-width:1180px){.l-subjects-page__pagination{grid-column:2;justify-content:flex-end;margin-block-start:0}}.l-subjects-page__topic-link,.l-subjects-page__topic-link:visited{color:#244dcb;display:block;font-weight:600;margin-block-start:12px;padding-block:12px;text-align:center;text-decoration:underline!important}@media only screen and (min-width:1180px){.l-subjects-page__topic-link,.l-subjects-page__topic-link:visited{grid-column:1;grid-row:2;margin-block-start:0;text-align:left}}.cc-header,.cc-header .cmpt-nav{height:75px;min-height:75px;z-index:10}.cc-header .btn-blue.btn-large,.cc-header .cmpt-nav .btn-blue.btn-large{border-radius:0 3px 3px 0;height:50px}.cmpt-nav-logo{left:50%;position:absolute;transform:translateX(-50%)}@media only screen and (min-width:641px){.cmpt-nav-logo{left:56px;transform:none}}@media only screen and (min-width:769px){.cmpt-nav-logo{left:auto;position:static}}@media (max-width:640px){.cc-header .btn-circle.btn-medium,.cc-header .cmpt-avatar{height:35px!important;width:35px!important}[data-cc-header=standard] .cc-header{height:112px;min-height:112px}[data-cc-header=standard] .cc-header [data-search-container]{top:58px}[data-cc-header=standard] .cc-header [data-search-container] .input-white.input-large{height:40px;padding:0 10px}[data-cc-header=standard] .cc-header [data-menu-dropdown]{top:57px}[data-cc-header=standard] .cc-header [data-menu-dropdown=search]{top:53px}[data-cc-header=standard] .cc-header .cmpt-nav{height:65px;min-height:65px}[data-cc-header=standard] .cc-header .btn-blue.btn-large{height:40px;width:35px}}@media (min-width:950px){[data-cc-header] [data-search-container] input[type=text]{min-width:425px}}@media (min-width:1024px) and (max-width:1199px){[data-cc-header] [data-search-container] input[type=text]{min-width:225px}}.cc-header [data-context-bar]{height:76px}.cc-header [data-menu-dropdown]{top:75px}.cc-header [data-menu-dropdown=notifications]{right:0;width:100%}@media (min-width:640px){.cc-header [data-menu-dropdown=notifications]{width:350px}}.cc-header [data-menu-dropdown=lists]{right:0;width:300px}@media (min-width:1024px){.cc-header [data-menu-dropdown=lists]{right:28px}}.cc-header [data-menu-dropdown=lists].has-user{margin-left:0;max-width:100%;right:0;width:550px}.cc-header [data-menu-dropdown=lists].has-user .illus-pointer-left-top{left:180px;top:20px;width:75px}.cc-header [data-menu-dropdown=search]{right:0}@media (min-width:769px){.cc-header [data-menu-dropdown=search]{max-width:660px;min-width:660px}}.cc-header [data-menu-dropdown=user]{max-width:175px;min-width:175px;right:0}.cc-header [data-menu-dropdown=report]{max-width:600px;min-width:600px}@media (max-width:1175px){.cc-header [data-menu-dropdown=report]{right:0}}.cc-header [data-menu-dropdown=rankings]{max-width:320px;min-width:320px}.cc-header [data-menu-dropdown=cohorts]{max-width:600px;min-width:600px}.cc-header [data-menu-dropdown=subjects]{margin-left:-50px;max-height:calc(100vh - 60px);overflow:auto}.cc-header [data-menu-dropdown=subjects] [data-menu-level="1"]{width:270px}@media (max-width:768px){.cc-header [data-menu-dropdown=subjects]{left:0;margin-left:0}}.cc-header [data-menu-dropdown=subjects] [data-menu-level="2"],.cc-header [data-menu-dropdown=subjects] [data-menu-level="3"]{display:none}.cc-header [data-menu-dropdown=subjects].expanded [data-menu-level="2"]{display:block;width:270px}.cc-header [data-menu-dropdown=subjects].expanded [data-menu-level="3"].active{display:block}@media (max-width:768px){.cc-header [data-menu-dropdown=subjects]{max-width:100%!important;min-width:100%!important}.cc-header [data-menu-dropdown=subjects] [data-menu-level]{max-width:100%;min-width:100%}}.cmpt-modal-blanket.fixed,[data-header-blanket],[data-modal-blanket].fixed{background-color:rgba(0,15,31,.7);will-change:opacity;z-index:5}.animate-fade-entered,.animate-fade-hidden{transition:opacity .5s cubic-bezier(0,0,.3,1)}.news-banner-container .promo-title{background:#041240;background:linear-gradient(0deg,rgba(4,18,64,0),#041240 50%,rgba(4,18,64,0))}.cmpt-nav-add-item{transform:scale(1);transition-duration:.35s!important;transition-property:transform,background-color!important;transition-timing-function:ease!important}.cmpt-nav-add-item:hover{transform:scale(1.08)}.cmpt-unread{height:15px;right:-3px;text-align:center;top:-3px;width:15px}.cmpt-unread .color-white{font-size:10px;font-style:normal;height:100%;left:0;line-height:15px;position:absolute;top:0;width:100%}.cmpt-rating-xlarge i{margin:0 2px}.cmpt-rating-large i{margin:0 1.5px}.cmpt-rating-medium i,.cmpt-rating-small i{margin:0 1px}.cmpt-rating-large i:first-child,.cmpt-rating-medium i:first-child,.cmpt-rating-small i:first-child,.cmpt-rating-xlarge i:first-child{margin-left:0}.cmpt-rating-large i:last-child,.cmpt-rating-medium i:last-child,.cmpt-rating-small i:last-child,.cmpt-rating-xlarge i:last-child{margin-right:0}.cmpt-modal,[data-modal]{left:-9999px;opacity:0;pointer-events:none;position:absolute;will-change:opacity;z-index:-1}.cmpt-modal.modal-close-disabled .cmpt-modal-close,.cmpt-modal.modal-close-disabled [data-modal-close],[data-modal].modal-close-disabled .cmpt-modal-close,[data-modal].modal-close-disabled [data-modal-close]{display:none}.cmpt-modal .cmpt-modal-content,.cmpt-modal [data-content],[data-modal] .cmpt-modal-content,[data-modal] [data-content]{min-height:350px}@media (min-width:769px){.cmpt-modal .cmpt-modal-content,.cmpt-modal [data-content],[data-modal] .cmpt-modal-content,[data-modal] [data-content]{min-height:550px}}.cmpt-modal.active,[data-modal].active{bottom:0;left:0;opacity:1;pointer-events:auto;position:fixed;right:0;top:0;transition:opacity .5s cubic-bezier(0,0,.3,1);z-index:2147483647}.cmpt-modal .bg-white.width-centered,[data-modal] .bg-white.width-centered{max-width:850px;min-width:auto}[data-slideshow]{overflow:hidden;position:relative;z-index:1}[data-slideshow] nav{z-index:5}[data-slideshow] nav button{border-radius:50%;color:transparent;height:15px;margin:0 3px;width:15px}@media (max-width:801px){[data-slideshow] nav button{border-radius:0;border-right:1px solid #1639a8;display:block;float:left;height:10px;margin:0}[data-slideshow] nav button.slideshow-1-2{width:50%}[data-slideshow] nav button.slideshow-1-3{width:33.3333%}[data-slideshow] nav button.slideshow-1-4{width:25%}[data-slideshow] nav button.slideshow-1-5{width:20%}}[data-slideshow] [data-slideshow-item]{opacity:0;transition:opacity .5s ease}[data-slideshow] [data-slideshow-item].active{opacity:1;pointer-events:all;z-index:2}[data-slideshow] [data-slideshow-item].next{opacity:0;pointer-events:none;z-index:3}[data-template=table-courses] .cmpt-bookmark .cmpt-bookmark-count{display:none!important}.cmpt-listing{border-collapse:collapse}.cmpt-listing .td-small{min-width:60px}@media (max-width:640px){.cmpt-listing .td-small{min-width:50px}.cmpt-listing td.width-12-16{max-width:75%!important;min-width:auto!important}}@media (max-width:480px){.cmpt-listing td.width-12-16 .truncate{max-width:200px}}tr .hide-on-hover{display:block}@media (max-width:1020px){tr .hide-on-hover.large-down-hidden{display:none!important}}tr .show-on-hover,tr:hover .hide-on-hover{display:none}tr:hover .show-on-hover{display:block}@media (max-width:640px){.course-name{margin:2px 0}}.course-list-course:link .text-1,.course-name:link .text-1,.text-1.course-name:link{font-size:21px!important}.course-name:visited{color:#612894!important}#signup-slidein{height:275px;max-width:676px;min-width:auto;transform:translateY(500px);transition:.5s cubic-bezier(.215,.61,.355,1)}@media only screen and (min-width:481px){#signup-slidein:after{background:#fff;content:" ";display:block;height:100%;left:80px;position:absolute;top:0;transform:skew(-25deg);width:216px;z-index:10}#signup-slidein .cmpt-ss-banner{background-color:#ffeeec;right:0;width:67%}}@media only screen and (max-width:480px){#signup-slidein{align-items:flex-end;border:none!important;display:flex;height:350px;max-width:100%}#signup-slidein .text-left{text-align:center!important}#signup-slidein .head-2{font-size:21px;font-weight:700;line-height:105%}#signup-slidein .text-2{font-size:14px;font-weight:400}#signup-slidein .cmpt-ss-copy{background-color:#fff;line-height:115%;max-width:100%;min-width:100%;padding:20px!important;text-align:center!important;width:100%!important}#signup-slidein .cmpt-ss-banner{background-color:#ffeeec;height:185px;max-width:100%;min-width:100%}#signup-slidein .cmpt-ss-banner img{height:100%;left:-27%;max-width:130%;min-width:130%;object-fit:cover;position:absolute;top:10px}}#signup-slidein.active{transform:translate(0)}@media only screen and (min-width:641px){.cmpt-ss-banner{width:500px}#signup-slidein{bottom:-9px;margin-right:-338px;right:50%!important}}.cmpt-avatar .cmpt-avatar-initials{font-weight:700}.cmpt-avatar.cmpt-avatar-large .cmpt-avatar-initials{font-size:28px}.cmpt-avatar.cmpt-avatar-medium .cmpt-avatar-initials{font-size:21px}.cmpt-avatar.cmpt-avatar-small .cmpt-avatar-initials{font-size:18px}.cmpt-avatar.cmpt-avatar-xsmall .cmpt-avatar-initials{font-size:14px}.cmpt-avatar.cmpt-avatar-xxsmall .cmpt-avatar-initials{font-size:12px}.cmpt-avatar img{overflow:hidden}.cmpt-bookmark.no-count .cmpt-bookmark-count{display:none}.fade-bottom{max-height:500px}.fade-bottom.fade-hidden{overflow:hidden}.fade-bottom:after{background-image:url(images/fade-gradient.png);background-repeat:repeat-x;bottom:0;content:" ";display:block;height:100px;left:0;position:absolute;width:100%}.cmpt-follow.no-count .cmpt-follow-count{display:none}#cohort-ad{overflow:hidden}#cohort-ad .decor.decor-straight{border-left-width:2px;border-radius:0;border-style:dashed;height:200%;left:60%;opacity:.5;position:absolute;top:0;transform:rotate(30deg);transform-origin:top;width:2px}#cohort-ad ol{grid-row-gap:10px;display:grid;grid-template-columns:repeat(1,1fr)}@media (min-width:1025px){#cohort-ad ol{grid-column-gap:20px;grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:769px){#cohort-ad .decor.decor-straight{left:300px}#cohort-ad .large-up-padding-left-large{padding-left:30px}}[data-toggle-id]{display:none}[data-toggle-id].active{display:block}.bg-flag{background-color:#0d4df1;position:relative;top:-2px;transition:background-color .2s linear;will-change:background-color}.bg-flag:after{background:#fff;content:" ";display:block;height:14px;position:absolute;right:-7px;top:2px;transform:rotate(45deg);width:14px}.bg-flag:hover{background-color:#0d2470}.tippy-tooltip.bg-white-theme{background-color:#fff!important;border:1px solid #f2f2f2!important;border-radius:5px!important;box-shadow:0 0 10px 0 rgba(0,0,0,.06)!important;padding:0!important;z-index:2147483647}.tippy-tooltip.overlay-info-theme{width:400px}.tippy-tooltip.tooltip-follow-theme{min-width:150px}.cmpt-tooltip{animation:tooltip .2s cubic-bezier(.46,.1,.52,.98);backface-visibility:hidden;box-shadow:0 0 10px 0 rgba(0,0,0,.06)!important;will-change:transform,opacity}@keyframes tooltip{0%{opacity:0;transform:scale(.98) translateY(-15px)}to{opacity:1;transform:scale(1) translateY(0)}}.radial-progress-container{background-color:inherit;color:var(--progress-color,#0a2540);height:var(--progress-size);position:relative;width:var(--progress-size);z-index:0}.radial-progress-container:after{border:6px solid #edeef1;border-radius:100%;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:-1}.radial-progress-indicator{border-radius:100%;box-sizing:content-box;display:inline-grid;height:var(--progress-size);place-content:center;vertical-align:middle;width:var(--progress-size)}.radial-progress-indicator:after,.radial-progress-indicator:before{border-radius:100%;content:"";position:absolute}.radial-progress-indicator:before{background:radial-gradient(farthest-side,currentColor 98%,#0000) top /6px 6px no-repeat,conic-gradient(currentColor calc(var(--progress-value)*1%),#0000 0);bottom:0;left:0;-webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - 6px),#000 calc(100% - 6px));mask:radial-gradient(farthest-side,#0000 calc(99% - 6px),#000 calc(100% - 6px));right:0;top:0}.radial-progress-indicator:after{background-color:currentColor;inset:calc(50% - 3px);transform:rotate(calc(var(--progress-value)*3.6deg - 90deg)) translate(calc(var(--progress-size)/2 - 50%))}.radial-progress-element{appearance:none;height:1px;left:0;opacity:0;position:absolute;top:0;width:1px}:root.nav-open{overflow:hidden}:root.nav-open #signup-slidein,:root.nav-open .news-banner-container{z-index:-1}@media only screen and (min-width:769px){:root.nav-open .news-banner-container{z-index:10000000000}}.main-nav-dropdown{bottom:0;display:none;height:100vh;height:100dvh;left:0;position:fixed;right:0;top:0;z-index:1}@media only screen and (min-width:769px){.main-nav-dropdown{background-color:#fff;border-top:1px solid #ededed;bottom:auto;box-shadow:0 0 10px rgba(0,0,0,.05);grid-template-columns:270px;height:auto;left:auto;margin-left:-50px;max-height:calc(100vh - 76px);max-height:calc(100dvh - 76px);overflow-y:auto;position:absolute;right:auto;top:75px}#news-banner+[data-cc-header] .main-nav-dropdown{max-height:calc(100vh - 127px)}}.main-nav-dropdown.is-open{display:block}@media only screen and (min-width:769px){.main-nav-dropdown.is-open{display:grid}.main-nav-dropdown.has-visibile-subsection{grid-template-columns:270px 271px}}.main-nav-dropdown__index,.main-nav-dropdown__subsection{background-color:#fff;height:100%;overflow-x:hidden;overflow-y:auto}@media only screen and (min-width:769px){.main-nav-dropdown__index,.main-nav-dropdown__subsection{box-sizing:border-box;overflow:visible;padding:15px 0}}.main-nav-dropdown__subsection{bottom:0;left:0;position:absolute;right:0;top:0;transform:translateX(100%);transition:transform .4s ease}@media only screen and (min-width:769px){.main-nav-dropdown__subsection,.main-nav-dropdown__subsection.is-selected{border-left:1px solid #e2e2e2;position:static;transform:none}}.main-nav-dropdown__subsection.is-selected{transform:translateX(0)}.main-nav-dropdown__header{margin:20px 20px 12px;position:relative}.main-nav-dropdown__header-brand{background-size:29px;height:29px;text-indent:-9999px;width:29px}.main-nav-dropdown__close-button{align-items:center;display:flex;height:46px;justify-content:center;position:absolute;right:-14px;top:50%;transform:translateY(-50%);width:46px}.main-nav-dropdown__close-button-icon{background-size:18px;height:18px;width:18px}.main-nav-dropdown__subsection-header{align-items:center;border-bottom:1px solid #f7f7f7;display:grid;grid-template-columns:46px 1fr 46px;margin-bottom:14px}.main-nav-dropdown__subsection-back-button{height:46px;padding:0 0 0 17px;width:46px}.main-nav-dropdown__subsection-title{font-size:16px;font-weight:600;text-align:center}.main-nav-dropdown__section,.main-nav-dropdown__section--with-header{margin:0 0 12px;position:relative}@media only screen and (min-width:769px){.main-nav-dropdown__section,.main-nav-dropdown__section--with-header{margin:0 0 12px}}.main-nav-dropdown__section+.main-nav-dropdown__section,.main-nav-dropdown__section--with-header+.main-nav-dropdown__section{padding-top:13px}.main-nav-dropdown__section+.main-nav-dropdown__section:before,.main-nav-dropdown__section--with-header+.main-nav-dropdown__section:before{background-color:#f7f7f7;content:"";display:block;height:1px;left:20px;position:absolute;right:0;top:0}@media only screen and (min-width:769px){.main-nav-dropdown__section,.main-nav-dropdown__section--with-header{padding-bottom:10px}.main-nav-dropdown__section--with-header:before,.main-nav-dropdown__section:before{background-color:#ededed;bottom:0;content:"";display:block;height:1px;left:20px;position:absolute;right:17px;top:auto}.main-nav-dropdown__subsection .main-nav-dropdown__section--with-header:last-child:before,.main-nav-dropdown__subsection .main-nav-dropdown__section:last-child:before{display:none}}.main-nav-dropdown__section-header{background-color:#f7f7f7;margin:15px 0 8px;padding:9px 20px;position:relative}@media only screen and (min-width:769px){.main-nav-dropdown__section-header{background-color:transparent;margin:12px 0 4px;padding:0 20px}}.main-nav-dropdown__section-heading{font-size:14px;font-weight:600;line-height:14px;text-transform:uppercase}@media only screen and (min-width:769px){.main-nav-dropdown__section-heading{font-size:16px;line-height:140%;text-transform:none}}.main-nav-dropdown__section-button{align-items:center;color:#fff!important;display:flex;font-size:14px;font-weight:600;height:46px;justify-content:center;line-height:14px;padding:0 5px;position:absolute;right:20px;top:50%;transform:translateY(-50%);z-index:0}.main-nav-dropdown__section-button:before{background-color:#244dcb;border-radius:4px;bottom:13px;content:"";display:block;left:0;position:absolute;right:0;top:13px;z-index:-1}.main-nav-dropdown__item{margin:0 0 1px}.main-nav-dropdown__item-control,.main-nav-dropdown__item-control--highlighted,.main-nav-dropdown__item-control--with-image{align-items:center;column-gap:20px;display:grid;font-size:18px;line-height:23px}.main-nav-dropdown__item-control--with-image{padding:12px 20px}.main-nav-dropdown__item-control,.main-nav-dropdown__item-control--highlighted{grid-template-columns:1fr 16px;padding:12px 17px 12px 20px}.main-nav-dropdown__subsection .main-nav-dropdown__item-control,.main-nav-dropdown__subsection .main-nav-dropdown__item-control--highlighted{grid-template-columns:1fr;padding:12px 20px}.main-nav-dropdown__item-control--highlighted:hover,.main-nav-dropdown__item-control:hover{text-decoration:none}@media only screen and (min-width:769px) and (hover:hover){.main-nav-dropdown__item-control--highlighted:hover,.main-nav-dropdown__item-control:hover{background-color:#edeef1}}@media only screen and (min-width:769px){.main-nav-dropdown__item-control--with-image{padding:5px 20px}.main-nav-dropdown__item-control,.main-nav-dropdown__item-control--highlighted{font-size:16px;padding:5px 13px 5px 20px}.main-nav-dropdown__subsection .main-nav-dropdown__item-control,.main-nav-dropdown__subsection .main-nav-dropdown__item-control--highlighted{padding:5px 20px}}.main-nav-dropdown__item-control--highlighted{font-weight:600}@media only screen and (min-width:769px){.main-nav-dropdown__item-icon.main-nav-dropdown__item-icon{background-size:12px 12px!important}}:root.search-open .navbar-search__container{z-index:1}@media only screen and (min-width:641px){.navbar-search{width:280px}}@media only screen and (min-width:1110px){.navbar-search{width:425px}}.fancy-searchbox{position:relative;z-index:1}.fancy-searchbox__search-icon{background-size:18px 18px!important;height:18px!important;left:14px;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:18px!important}@media only screen and (min-width:769px){.fancy-searchbox__search-icon{left:21px}}.fancy-searchbox__input{background:#fff;border:1px solid #ededed;border-radius:60px;box-shadow:0 2px 12px 2px #e2e2e2;font-size:16px;line-height:20px;padding:17px 42px;width:100%}@media only screen and (min-width:769px){.fancy-searchbox__input{font-size:20px;line-height:25px;padding:17px 52px 18px 54px}}.fancy-searchbox__input:focus{border-color:#989898}.fancy-searchbox__input::placeholder{color:#6f7074;opacity:1}.fancy-searchbox__clear-button{align-items:center;display:none;height:44px;justify-content:center;opacity:.4;position:absolute;right:0;top:50%;transform:translateY(-50%);width:44px}.fancy-searchbox__clear-button i{pointer-events:none}@media only screen and (min-width:769px){.fancy-searchbox__clear-button{right:8px}}.fancy-searchbox:focus-within .fancy-searchbox__input:not(.is-blank)+.fancy-searchbox__clear-button{display:flex}.search-input,.search-input--compact,.search-input--fancy{position:relative}.search-input__search-icon.search-input__search-icon{background-size:18px 18px!important;height:18px!important;left:14px;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);width:18px!important}.search-input--compact .search-input__search-icon.search-input__search-icon{background-size:14px 14px!important;height:14px!important;left:10px;width:14px!important}@media only screen and (min-width:769px){.search-input--fancy .search-input__search-icon{left:21px}}.search-input__input{background:#fff;border:1px solid #e2e2e2;border-radius:30px;box-shadow:none;font-size:16px;line-height:20px;padding:10px 42px;width:100%}.search-input__input::-webkit-search-cancel-button{display:none}.search-input__input::-ms-clear{display:none}.search-input--fancy .search-input__input{border-color:#ededed;border-radius:60px;box-shadow:0 2px 12px 2px #e2e2e2;padding:17px 42px}.search-input--compact .search-input__input{padding:6px 42px 6px 30px}@media only screen and (min-width:641px){.search-input__input{padding-bottom:13px;padding-top:13px}}@media only screen and (min-width:769px){.search-input--fancy .search-input__input{font-size:20px;line-height:25px;padding:17px 52px 18px 54px}}.search-input__input:focus{border-color:#989898}.search-input__input::placeholder{color:#989898;opacity:1}.search-input--fancy .search-input__input::placeholder{color:#8b8b8b}.search-input__clear-button{align-items:center;display:none;height:44px;justify-content:center;opacity:.4;position:absolute;right:0;top:50%;transform:translateY(-50%);width:44px}.search-input__clear-button i{pointer-events:none}@media only screen and (min-width:769px){.search-input--fancy .search-input__clear-button{right:8px}}.search-input__input:not(.is-blank)+.search-input__clear-button:not([hidden]){display:flex}:root.search-open body{overflow:hidden}@media only screen and (min-width:769px){:root.search-open body#page-empty_search,:root.search-open body#page-home{overflow:visible}}:root.search-open .news-banner-container{z-index:0}:root.search-open #signup-slidein{z-index:-1}.search-results{display:none}:root.search-open .search-results{display:block}:root.search-open [data-cc-header=nosearch]{z-index:-1}.search-results__container{background-color:#fff;bottom:0;height:100vh;height:100dvh;left:0;overflow-y:auto;position:fixed;right:0;top:0;z-index:1}@media only screen and (min-width:769px){.search-results__container{background-color:transparent;height:fit-content;max-height:none;overflow-y:visible;position:absolute;top:calc(100% + 8px)}}.search-results__small-header{align-items:center;border-bottom:1px solid #f7f7f7;display:grid;grid-template-columns:46px 1fr;padding:0 20px 0 0}@media only screen and (min-width:769px){.search-results__small-header{display:none}}.search-results__small-header-back{height:46px;padding:0 0 0 17px;width:46px}.search-results__results{padding:14px 0 0}@media only screen and (min-width:769px){.search-results__results{background-color:#fff;border:1px solid hsla(0,0%,60%,.35);border-radius:5px;box-shadow:0 1px 3px 0 rgba(0,0,0,.35);height:fit-content;max-height:calc(100vh - 91px);max-height:calc(100dvh - 91px);overflow-y:auto;padding-top:4px}.search-input--fancy+.search-results .search-results__results{max-height:calc(85vh - 65px);max-height:calc(85dvh - 65px)}#news-banner+[data-cc-header] .search-results__results{max-height:calc(100vh - 142px);max-height:calc(100dvh - 142px)}}.search-results__group{position:relative}.search-results__group-heading{color:#6f7074;font-size:12px;font-weight:600;line-height:15px;margin:12px 20px 6px;text-transform:uppercase}@media only screen and (min-width:769px){.search-results__group-heading{margin-left:12px;margin-right:12px}}.search-results__group-link{color:#1052ef;font-size:14px;font-weight:600;inset-block-start:1px;inset-inline-end:12px;line-height:14px;position:absolute}.search-results__group-link:active,.search-results__group-link:focus,.search-results__group-link:hover,.search-results__group-link:link{text-decoration:none}.search-results__result{box-sizing:border-box;column-gap:8px;display:grid;grid-template-columns:20px 1fr;padding:12px 20px;position:relative;width:100%;z-index:0}.search-results__result:focus:before{background-color:#f5f5f5;border-radius:6px;bottom:5px;content:"";left:8px;position:absolute;right:8px;top:5px;z-index:-1}@media only screen and (min-width:769px){.search-results__result{padding-left:12px;padding-right:12px}}.search-results__result:active,.search-results__result:hover{text-decoration:none}:last-child>.search-results__result{margin-bottom:14px}.search-results__results>.search-results__result:only-child{margin-bottom:4px}.search-results__result-icon{margin-top:4px}.search-results__result-info{display:flex;flex-direction:column;padding-inline-end:var(--offset-right,0)}@media only screen and (min-width:769px){.search-results__result-info{display:block}}.search-results__result-name,.search-results__result-name--bold{color:#0a2540}.search-results__result-name--bold{font-weight:600}@media only screen and (min-width:769px){.search-results__result-name,.search-results__result-name--bold{display:inline}}.search-results__result-highlight{background:transparent;color:#1052ef;font-weight:600;overflow-wrap:anywhere;word-break:normal}.search-results__result-extra{color:#6f7074;font-size:14px;font-style:italic}@media only screen and (min-width:769px){.search-results__result-extra:before{content:"– "}}.search-results__result-tag{background-color:#ffca65;border-radius:5px;color:#0a2540;font-size:14px;font-weight:600;inset-block-start:12px;inset-inline-end:12px;line-height:18px;padding:2px 5px;position:absolute}.search-results__result-tag .icon-xsmall{margin-inline-end:2px}.search-results__no-results-notice{margin:20px}@media only screen and (min-width:769px){.search-results__blanket{background-color:hsla(0,0%,100%,.85);bottom:0;left:0;position:fixed;right:0;top:0;z-index:-1}}.filter-tabs{position:relative;z-index:0}.filter-tabs:after{background:#ededed;content:"";height:1px;inset-block-end:0;inset-inline:-20px;position:absolute;z-index:-1}@media only screen and (min-width:1025px){.filter-tabs:after{display:none}}.filter-tabs__small-title{font-size:21px;font-weight:700;margin:0 0 12px}@media only screen and (min-width:1025px){.filter-tabs__small-title{display:none}}.filter-tabs__large-title{display:none;font-size:16px;font-weight:600;line-height:20px;margin:0;margin-block-end:10px}@media only screen and (min-width:1025px){.filter-tabs__large-title{display:block}}.filter-tabs__list{column-gap:4px;display:grid;grid-template-columns:repeat(var(--filter-tabs-count),1fr);list-style:none;margin-inline:-20px;overflow-x:auto;overflow-y:hidden;padding-block-end:12px;padding-inline:10px}@media only screen and (min-width:1025px){.filter-tabs__list{grid-template-columns:1fr;margin-inline:0;overflow-x:visible;overflow-y:visible;padding-inline:0;row-gap:6px}}.filter-tabs__tab-control{display:block;font-weight:600;padding:12px 10px;position:relative;white-space:nowrap;z-index:0}@media only screen and (min-width:1025px){.filter-tabs__tab-control{align-items:center;box-sizing:border-box;display:flex;font-size:18px;height:46px;padding-block:0}}.filter-tabs__tab-control:not(.is-selected){color:#6f7074}@media only screen and (min-width:1025px){.filter-tabs__tab-control:not(.is-selected){color:inherit}}.filter-tabs__tab-control.is-selected:before{background-color:#fff;border:1px solid #ededed;border-radius:5px;content:"";inset-block:2px;inset-inline:0;position:absolute;z-index:-1}.filter-tabs__tab-control.is-selected:after{background-color:#fff;border:1px solid #ededed;clip-path:polygon(0 0,0 100%,100% 0);content:"";height:12px;inset-block-end:-19px;inset-inline:50%;position:absolute;rotate:45deg;translate:-50%;width:12px;z-index:1}@media only screen and (min-width:1025px){.filter-tabs__tab-control.is-selected:after{display:none}}.filter-tabs__tab-icon{display:none}@media only screen and (min-width:1025px){.filter-tabs__tab-icon{clip-path:circle();display:block;margin-right:8px}}.pagination{display:flex;list-style:none}.pagination__control,.pagination__control:link,.pagination__control:visited{align-items:center;color:#0a2540;display:flex;height:46px;justify-content:center;position:relative;width:46px;z-index:0}.pagination__control.is-selected{color:#fff;font-weight:600}.pagination__control.is-selected:before{background-color:#517ff6;border-radius:32px;content:"";height:32px;inset-block-start:50%;inset-inline-start:50%;position:absolute;translate:-50% -50%;width:32px;z-index:-1}.hint-card{background-color:#f8fafc;border:1px solid #f4f4f6;border-radius:5px;column-gap:8px;display:grid;grid-template-columns:24px 1fr;padding:12px;position:relative}@media only screen and (min-width:769px){.hint-card{column-gap:12px;grid-template-columns:42px 1fr;padding:20px}}.hint-card__icon{max-width:100%}.hint-card__title{font-size:16px;font-weight:600;line-height:20px;margin:0;margin-block-start:2px}@media only screen and (min-width:769px){.hint-card__title{font-size:18px;line-height:23px;margin-block-start:10px}}.hint-card__body{font-size:14px;line-height:18px;margin-block-start:8px}@media only screen and (min-width:769px){.hint-card__body{font-size:16px;line-height:20px;margin-block-start:10px}}.hint-card__arrow{display:none}@media only screen and (min-width:1110px){.hint-card__arrow{display:block;inset-block-end:60px;inset-inline-start:-40px;position:absolute;width:80px}}@media only screen and (min-width:1520px){.hint-card__arrow{transform:rotate(20deg)}}@media only screen and (min-width:1650px){.hint-card__arrow{inset-inline-end:-55px;inset-inline-start:auto;transform:scaleX(-1) rotate(15deg)}}:root{--xlarge-up-bp:1025px;--large-up-bp:769px;--medium-up-bp:641px;--large-down-bp:1024px;--medium-down-bp:768px}body,html{-moz-osx-font-smoothing:grayscale}html.sticky-footer{height:100%}html.sticky-footer body{display:flex;flex-direction:column;height:100%}html.sticky-footer .contain-page{flex:1 0 auto}footer.sticky-footer{flex-shrink:0}.cursor-pointer:hover{cursor:pointer}.cursor-default:hover{cursor:default!important}.z-low{z-index:10}.z-high{z-index:30}.z-top{z-index:2147483646}.z-force-top{z-index:2147483647}.border-box{box-sizing:border-box}.off-page{left:-99999px;position:absolute;top:0}.btn-blue,.btn-blue-outline,.btn-charcoal,.btn-green,.btn-white{background-color:transparent;border-color:transparent;box-sizing:border-box;display:inline-block;font-family:Source Sans Pro,sans-serif;font-size:16px;line-height:100%;padding:9.5px 15px;text-align:center;transition:background-color .3s ease 0s,border-color .3s ease 0s}.btn-blue-outline:hover,.btn-blue-outline:link,.btn-blue-outline:visited,.btn-blue:hover,.btn-blue:link,.btn-blue:visited,.btn-charcoal:hover,.btn-charcoal:link,.btn-green:hover,.btn-green:link,.btn-green:visited,.btn-white:hover,.btn-white:link,.btn-white:visited,.hover.btn-blue,.hover.btn-blue-outline,.hover.btn-green,.hover.btn-white{background-color:transparent;border-color:transparent;cursor:pointer;text-decoration:none}.active.btn-blue,.active.btn-blue-outline,.active.btn-charcoal,.active.btn-green,.active.btn-white,.btn-blue-outline:active,.btn-blue-outline:focus,.btn-blue:active,.btn-blue:focus,.btn-charcoal:active,.btn-charcoal:focus,.btn-green:active,.btn-green:focus,.btn-white:active,.btn-white:focus,.focus.btn-blue,.focus.btn-blue-outline,.focus.btn-green,.focus.btn-white{background-color:transparent;border-color:transparent}.btn-blue-outline[disabled],.btn-blue-outline[disabled]:active,.btn-blue-outline[disabled]:focus,.btn-blue-outline[disabled]:hover,.btn-blue[disabled],.btn-blue[disabled]:active,.btn-blue[disabled]:focus,.btn-blue[disabled]:hover,.btn-charcoal[disabled],.btn-charcoal[disabled]:active,.btn-charcoal[disabled]:focus,.btn-charcoal[disabled]:hover,.btn-green[disabled],.btn-green[disabled]:active,.btn-green[disabled]:focus,.btn-green[disabled]:hover,.btn-white[disabled],.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,.disabled.btn-blue,.disabled.btn-blue-outline,.disabled.btn-green,.disabled.btn-white{cursor:default;opacity:.5}.btn-circle{border-radius:50%!important}.btn-circle.btn-medium,.btn-circle.btn-medium.icon-center{height:40px!important;padding:0!important;width:40px!important}.btn-circle.btn-large,.btn-circle.btn-large.icon-center{height:50px!important;padding:0!important;width:50px!important}.btn-blue{background-color:#0d4df1;border:1px solid #0d4df1;border-radius:7px;color:#fff;font-family:Source Sans Pro,sans-serif;font-weight:600}.btn-blue:link,.btn-blue:visited{background-color:#0d4df1;border-color:#0d4df1;color:#fff}.btn-blue.active,.btn-blue.focus,.btn-blue.hover,.btn-blue.selected,.btn-blue:active,.btn-blue:focus,.btn-blue:hover{background-color:#1235a1;border-color:#1235a1;color:#fff}.btn-blue-outline{background-color:#fff;border:1px solid #0d4df1;border-radius:7px;color:#0d4df1;font-family:Source Sans Pro,sans-serif;font-weight:600}.btn-blue-outline:link,.btn-blue-outline:visited{background-color:#fff;border-color:#0d4df1;color:#0d4df1}.btn-blue-outline.active,.btn-blue-outline.focus,.btn-blue-outline.hover,.btn-blue-outline:active,.btn-blue-outline:focus,.btn-blue-outline:hover{background-color:#fff;border-color:#1235a1;color:#1235a1}.btn-blue-outline.selected{background-color:#1235a1;border-color:#1235a1;color:#1235a1}.btn-green{background-color:#5bd8a0;border:1px solid #5bd8a0;border-radius:7px;color:#fff;font-family:Source Sans Pro,sans-serif;font-weight:600}.btn-green:link,.btn-green:visited{background-color:#5bd8a0;border-color:#5bd8a0;color:#fff}.btn-green.active,.btn-green.focus,.btn-green.hover,.btn-green.selected,.btn-green:active,.btn-green:focus,.btn-green:hover{background-color:#27b474;border-color:#27b474;color:#fff}.btn-white{background-color:#fff;border:1px solid #e2e2e2;border-radius:7px;color:#0a2540;font-family:Source Sans Pro,sans-serif;font-weight:600}.btn-white:link,.btn-white:visited{background-color:#fff;border-color:#e2e2e2;color:#0a2540}.btn-white.active,.btn-white.focus,.btn-white.hover,.btn-white:active,.btn-white:focus,.btn-white:hover{background-color:#fff;border-color:#989898;color:#0a2540}.btn-white.selected{background-color:#244dcb;border-color:#244dcb;color:#fff}.btn-xsmall{font-size:12px;padding:4px 6px}.btn-xsmall.icon-center{background-size:14px 14px;width:30px}.btn-small{font-size:14px;padding:8px 10px}.btn-medium{font-size:16px;padding:9.5px 15px}.btn-large{font-size:18px;padding:13.5px 20px}.btn-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;flex-direction:row;flex-wrap:nowrap}.btn-group .btn-white{border-radius:0;display:block}.btn-group .btn-white.selected{background-color:#244dcb!important;border-color:#244dcb!important;color:#fff!important}.btn-group>.btn-white:nth-child(odd){border-left:1px solid #e2e2e2;border-right:1px solid #e2e2e2}.btn-group>.btn-white:nth-child(odd):focus,.btn-group>.btn-white:nth-child(odd):hover{border-left:1px solid #989898;border-right:1px solid #989898;z-index:10000}.btn-group>.btn-white:nth-child(2n){border-left:1px solid transparent;border-radius:0;border-right:1px solid transparent}.btn-group>.btn-white:nth-child(2n):focus,.btn-group>.btn-white:nth-child(2n):hover{border-left:1px solid #989898;border-right:1px solid #989898;z-index:10000}.btn-group .select:first-child .btn-white,.btn-group div:first-child .btn-white,.btn-group>.btn-white:first-child{border-left:1px solid #e2e2e2;border-radius:5px 0 0 5px}.btn-group .select:last-child .btn-white,.btn-group div:last-child .btn-white,.btn-group>.btn-white:last-child{border-radius:0 5px 5px 0;border-right:1px solid #e2e2e2}.checkbox{box-sizing:border-box}.checkbox label{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox label .checkbox-icon{box-shadow:0 0 10px rgba(0,0,0,.05);transition:all .1s ease}.checkbox label:hover{cursor:pointer}.checkbox input[type=checkbox][disabled]+label,.checkbox.disabled{opacity:.5}.checkbox input[type=checkbox],.checkbox input[type=checkbox]+label .checkbox-icon i{display:none}.checkbox input[type=checkbox]:checked+label .checkbox-icon{align-items:center;display:flex;justify-content:center}.checkbox input[type=checkbox]:checked+label .checkbox-icon i{background-size:contain;display:block;position:absolute}.checkbox label .checkbox-icon{height:16px;max-width:16px;min-width:16px}.checkbox label .checkbox-label{font-size:16px;line-height:120%;padding-left:8px}.checkbox input[type=checkbox]:checked+label .checkbox-icon i{height:13.33333px;width:13.33333px}.checkbox label .checkbox-icon{background-color:#fff;border:1px solid #dbdbe1;border-radius:3px}.checkbox label .checkbox-label{color:#0a2540}.checkbox label:hover .checkbox-label{color:#021527}.checkbox label:hover .checkbox-icon{background:#fff;border:1px solid #6f7074}.checkbox input[type=checkbox]:checked+label .checkbox-icon{background:#244dcb;border:1px solid #244dcb}.checkbox-small label .checkbox-icon{height:14px;max-width:14px;min-width:14px}.checkbox-small label .checkbox-label{font-size:14px;line-height:120%;padding-left:7px}.checkbox-small input[type=checkbox]:checked+label .checkbox-icon i{height:11.66667px;width:11.66667px}.checkbox-large label .checkbox-icon{height:18px;max-width:18px;min-width:18px}.checkbox-large label .checkbox-label{font-size:18px;line-height:120%;padding-left:9px}.checkbox-large input[type=checkbox]:checked+label .checkbox-icon i{height:15px;width:15px}.checkbox-toggle{display:inline-block;height:37px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox-toggle input[type=checkbox]{display:none}.checkbox-toggle input:checked+label:before{background-color:#244dcb;left:34px}.checkbox-toggle input:checked+label .checkbox-label-checked{opacity:1}.checkbox-toggle input:checked+label .checkbox-label-unchecked{opacity:0}.checkbox-toggle label{border:1px solid #dbdbe1;border-radius:30px;display:inline-block;height:35px;position:relative;width:65px}.checkbox-toggle label:before{background-color:#dbdbe1;border-radius:50%;content:" ";display:block;height:25px;left:7px;position:absolute;top:5px;transition:left .2s ease;width:25px}.checkbox-toggle label .checkbox-label-unchecked{color:#3b3b3b;right:9px}.checkbox-toggle label .checkbox-label-checked{color:#244dcb;left:11px;opacity:0}.checkbox-toggle label .checkbox-label-unchecked{opacity:1}.checkbox-toggle label .checkbox-label-checked,.checkbox-toggle label .checkbox-label-unchecked{display:block;font-size:14px;position:absolute;top:5px}.checkbox-toggle label:hover{cursor:pointer}input.input-simple{height:40px;padding:0 10px}input.input-simple.icon-right{background-position:right 10px center;background-size:16px 16px;padding-right:34px}input.input-simple.icon-left{background-position:left 10px center;background-size:16px 16px;padding-left:34px}input.input-white{height:40px;padding:0 10px}input.input-white.icon-right{background-position:right 10px center;background-size:16px 16px;padding-right:34px}input.input-white.icon-left{background-position:left 10px center;background-size:16px 16px;padding-left:34px}input.input-white.input-large{font-size:18px;height:50px;padding:0 15px}input.input-white.input-large.icon-right{background-position:right 15px center;background-size:18px 18px;padding-right:42px}input.input-white.input-large.icon-left{background-position:left 15px center;background-size:18px 18px;padding-left:42px}input.input-white.input-xlarge{font-size:21px;height:60px;padding:0 20px}input.input-white.input-xlarge.icon-right{background-position:right 20px center;background-size:21px 21px;padding-right:51.5px}input.input-white.input-xlarge.icon-left{background-position:left 20px center;background-size:21px 21px;padding-left:51.5px}input.input-white,textarea.input-white{-webkit-appearance:none;background-color:#fff;border:1px solid #e2e2e2;border-radius:3px;box-sizing:border-box;color:#0a2540;line-height:normal;transition:border .2s ease,color .2s ease}input.input-white.disabled,input.input-white[disabled],textarea.input-white.disabled,textarea.input-white[disabled]{opacity:.5}input.input-white.is-error,input.input-white.is-error.selected,input.input-white.is-error:focus,textarea.input-white.is-error,textarea.input-white.is-error.selected,textarea.input-white.is-error:focus{border:1px solid #0a2540}input.input-white.is-error:-ms-input-placeholder,input.input-white.is-error::-moz-placeholder,input.input-white.is-error::-ms-input-placeholder,input.input-white.is-error::-webkit-input-placeholder,input.input-white.is-error::placeholder,textarea.input-white.is-error:-ms-input-placeholder,textarea.input-white.is-error::-moz-placeholder,textarea.input-white.is-error::-ms-input-placeholder,textarea.input-white.is-error::-webkit-input-placeholder,textarea.input-white.is-error::placeholder{color:#0a2540}input.input-white:focus,textarea.input-white:focus{border:1px solid #989898;color:#0a2540}input.input-white:focus:-ms-input-placeholder,input.input-white:focus::-moz-placeholder,input.input-white:focus::-ms-input-placeholder,input.input-white:focus::-webkit-input-placeholder,input.input-white:focus::placeholder,textarea.input-white:focus:-ms-input-placeholder,textarea.input-white:focus::-moz-placeholder,textarea.input-white:focus::-ms-input-placeholder,textarea.input-white:focus::-webkit-input-placeholder,textarea.input-white:focus::placeholder{color:#989898}input.input-white:focus.is-error:-ms-input-placeholder,input.input-white:focus.is-error::-moz-placeholder,input.input-white:focus.is-error::-ms-input-placeholder,input.input-white:focus.is-error::-webkit-input-placeholder,input.input-white:focus.is-error::placeholder,textarea.input-white:focus.is-error:-ms-input-placeholder,textarea.input-white:focus.is-error::-moz-placeholder,textarea.input-white:focus.is-error::-ms-input-placeholder,textarea.input-white:focus.is-error::-webkit-input-placeholder,textarea.input-white:focus.is-error::placeholder{color:#ff6a6a}select.btn-white{-moz-apperance:none;-webkit-appearance:none}select.text-1,select.text-2,select.text-3,select.text-4{-moz-apperance:none;-webkit-appearance:none;background-color:transparent;border:none}.bg-blue-xlight,.hover-bg-blue-xlight:focus,.hover-bg-blue-xlight:hover{background-color:#eff9ff}.bg-charcoal{background-color:#0a2540}.bg-blue-mid{background-color:#244dcb}.bg-blue-light,.hover-bg-blue-light:focus,.hover-bg-blue-light:hover{background-color:#d0ecfd}.bg-blue-dark{background-color:#1235a1}.bg-green-mid{background-color:#5bd8a0}.bg-green-light,.hover-bg-green-light:focus,.hover-bg-green-light:hover{background-color:#e3f8ef}.bg-red-light,.hover-bg-red-light:focus,.hover-bg-red-light:hover{background-color:#ffe5e5}.bg-white{background-color:#fff}.bg-blue-black,.hover-bg-blue-black:focus,.hover-bg-blue-black:hover{background-color:#0d2470}.bg-gray-xlight,.hover-bg-gray-xlight:focus,.hover-bg-gray-xlight:hover{background-color:#f9fafc}.bg-yellow-mid,.hover-bg-yellow-mid:focus,.hover-bg-yellow-mid:hover{background-color:#ffca65}.bg-yellow-xlight,.hover-bg-yellow-xlight:focus,.hover-bg-yellow-xlight:hover{background-color:#fff7e7}.bg-gray-mid{background-color:#dbdbe1}.bg-gray-light,.hover-bg-gray-light:focus,.hover-bg-gray-light:hover{background-color:#edeef1}.bg-red-xlight,.hover-bg-red-xlight:focus,.hover-bg-red-xlight:hover{background-color:#fff7f7}.bg-cover{background-position:50% 50%;background-size:cover}img.bg-cover{box-sizing:border-box;padding-left:100%;width:100%}.border-all,.border-bottom,.border-horz,.border-left,.border-right,.border-top,.border-vert{border-color:#e2e2e2;border-style:solid}.border-all{border-width:1px}.border-horz{border-left-width:1px;border-right-width:1px}.border-vert{border-bottom-width:1px}.border-top,.border-vert{border-top-width:1px}.border-bottom{border-bottom-width:1px}.border-left{border-left-width:1px}.border-right{border-right-width:1px}.border-center{position:relative;z-index:1}.border-gray-light{border-color:#f2f2f2!important}.border-blue-light{border-color:#d0ecfd!important}.border-blue-mid{border-color:#244dcb!important}.border-red-light{border-color:#ffe5e5!important}.border-red-mid{border-color:#ff6a6a!important}.border-yellow-mid{border-color:#ffca65!important}.border-green-mid{border-color:#5bd8a0}.border-center:before{background:#e2e2e2;content:" ";display:block;height:1px;position:absolute;top:50%;width:100%;z-index:-1}.radius{border-radius:10px}.radius-top{border-radius:10px 10px 0 0}.radius-small{border-radius:5px}.radius-circle{border-radius:50%}.radius-small.radius-top{border-radius:5px 5px 0 0}.shadow-light{box-shadow:0 0 10px rgba(0,0,0,.05)}.block{display:block!important}.inline-block{display:inline-block!important}.inline{display:inline!important}.hidden{display:none!important}.invisible{pointer-events:none!important;visibility:hidden}.transparent{opacity:.5;transition:opacity .3s ease}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-left{text-align:left!important}.row{display:flex;flex-direction:row}.col,.row{flex-wrap:wrap}.col{-webkit-box-pack:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;box-sizing:border-box;display:-webkit-box;display:flex;flex-direction:column;justify-content:center}.col.vert-align-distribute,.row.horz-align-distribute{-webkit-box-pack:justify;justify-content:space-between}.row.horz-align-distribute{display:flex}.push{box-sizing:border-box;float:right}.row.vert-align-middle{align-items:center;display:flex}.row.vert-align-bottom{align-items:flex-end;display:flex}.row.horz-align-center{display:flex;justify-content:center}.row.horz-align-right{display:flex;justify-content:flex-end}.height-100{height:100%}.row.nowrap{flex-wrap:nowrap}.width-centered{float:none;margin-left:auto;margin-right:auto}.width-100{max-width:100%;min-width:100%}.flex{display:flex!important}.row .horz-align-right{margin-left:auto}.row .fill-space{flex-grow:1}.row .nowrap{flex-shrink:0}.row .row.nowrap{flex-shrink:1}.width-1-2{max-width:50%;min-height:1px;min-width:50%}.width-1-3{max-width:33.33333%;min-height:1px;min-width:33.33333%}.width-1-4{max-width:25%;min-height:1px;min-width:25%}.width-1-5{max-width:20%;min-height:1px;min-width:20%}.width-2-3{max-width:66.66667%;min-height:1px;min-width:66.66667%}.width-2-16{max-width:12.5%;min-height:1px;min-width:12.5%}.width-3-16{max-width:18.75%;min-height:1px;min-width:18.75%}.width-5-16{max-width:31.25%;min-height:1px;min-width:31.25%}.width-6-16{max-width:37.5%;min-height:1px;min-width:37.5%}.width-7-16{max-width:43.75%;min-height:1px;min-width:43.75%}.width-9-16{max-width:56.25%;min-height:1px;min-width:56.25%}.width-10-16{max-width:62.5%;min-height:1px;min-width:62.5%}.width-11-16{max-width:68.75%;min-height:1px;min-width:68.75%}.width-12-16{max-width:75%;min-height:1px;min-width:75%}.width-13-16{max-width:81.25%;min-height:1px;min-width:81.25%}.width-14-16{max-width:87.5%;min-height:1px;min-width:87.5%}.width-15-16{max-width:93.75%;min-height:1px;min-width:93.75%}ol.list-no-style,ol.list-no-style li,ul.list-no-style,ul.list-no-style li{list-style:none}ol.list-inline li,ul.list-inline li{display:inline-block}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.top{top:0!important}.bottom{bottom:0!important}.right{right:0!important}.left{left:0!important}.auto{margin:auto!important}.ratio{display:block;height:0;overflow:hidden;position:relative;width:100%}.ratio .ratio-content{bottom:0;left:0;position:absolute;right:0;top:0}.ratio.ratio-9-16{padding-bottom:56.25%}.padding-xxsmall{padding:5px!important}.padding-vert-xxsmall{padding-bottom:5px!important;padding-top:5px!important}.padding-horz-xxsmall{padding-right:5px!important}.padding-horz-xxsmall,.padding-left-xxsmall{padding-left:5px!important}.padding-top-xxsmall{padding-top:5px!important}.padding-right-xxsmall{padding-right:5px!important}.padding-bottom-xxsmall{padding-bottom:5px!important}.margin-xxsmall{margin:5px!important}.margin-vert-xxsmall{margin-bottom:5px!important;margin-top:5px!important}.margin-horz-xxsmall{margin-right:5px!important}.margin-horz-xxsmall,.margin-left-xxsmall{margin-left:5px!important}.margin-top-xxsmall{margin-top:5px!important}.margin-right-xxsmall{margin-right:5px!important}.margin-bottom-xxsmall{margin-bottom:5px!important}.padding-xsmall{padding:10px!important}.padding-vert-xsmall{padding-bottom:10px!important;padding-top:10px!important}.padding-horz-xsmall{padding-right:10px!important}.padding-horz-xsmall,.padding-left-xsmall{padding-left:10px!important}.padding-top-xsmall{padding-top:10px!important}.padding-right-xsmall{padding-right:10px!important}.padding-bottom-xsmall{padding-bottom:10px!important}.margin-xsmall{margin:10px!important}.margin-vert-xsmall{margin-bottom:10px!important;margin-top:10px!important}.margin-horz-xsmall{margin-right:10px!important}.margin-horz-xsmall,.margin-left-xsmall{margin-left:10px!important}.margin-top-xsmall{margin-top:10px!important}.margin-right-xsmall{margin-right:10px!important}.margin-bottom-xsmall{margin-bottom:10px!important}.padding-small{padding:15px!important}.padding-vert-small{padding-bottom:15px!important;padding-top:15px!important}.padding-horz-small{padding-right:15px!important}.padding-horz-small,.padding-left-small{padding-left:15px!important}.padding-top-small{padding-top:15px!important}.padding-right-small{padding-right:15px!important}.padding-bottom-small{padding-bottom:15px!important}.margin-small{margin:15px!important}.margin-vert-small{margin-bottom:15px!important;margin-top:15px!important}.margin-horz-small{margin-right:15px!important}.margin-horz-small,.margin-left-small{margin-left:15px!important}.margin-top-small{margin-top:15px!important}.margin-right-small{margin-right:15px!important}.margin-bottom-small{margin-bottom:15px!important}.padding-medium{padding:20px!important}.padding-vert-medium{padding-bottom:20px!important;padding-top:20px!important}.padding-horz-medium{padding-right:20px!important}.padding-horz-medium,.padding-left-medium{padding-left:20px!important}.padding-top-medium{padding-top:20px!important}.padding-right-medium{padding-right:20px!important}.padding-bottom-medium{padding-bottom:20px!important}.margin-medium{margin:20px!important}.margin-vert-medium{margin-bottom:20px!important;margin-top:20px!important}.margin-horz-medium{margin-right:20px!important}.margin-horz-medium,.margin-left-medium{margin-left:20px!important}.margin-top-medium{margin-top:20px!important}.margin-right-medium{margin-right:20px!important}.margin-bottom-medium{margin-bottom:20px!important}.padding-large{padding:30px!important}.padding-vert-large{padding-bottom:30px!important;padding-top:30px!important}.padding-horz-large{padding-right:30px!important}.padding-horz-large,.padding-left-large{padding-left:30px!important}.padding-top-large{padding-top:30px!important}.padding-right-large{padding-right:30px!important}.padding-bottom-large{padding-bottom:30px!important}.margin-large{margin:30px!important}.margin-vert-large{margin-bottom:30px!important;margin-top:30px!important}.margin-horz-large{margin-right:30px!important}.margin-horz-large,.margin-left-large{margin-left:30px!important}.margin-top-large{margin-top:30px!important}.margin-right-large{margin-right:30px!important}.margin-bottom-large{margin-bottom:30px!important}.padding-xlarge{padding:40px!important}.padding-vert-xlarge{padding-bottom:40px!important;padding-top:40px!important}.padding-horz-xlarge{padding-right:40px!important}.padding-horz-xlarge,.padding-left-xlarge{padding-left:40px!important}.padding-top-xlarge{padding-top:40px!important}.padding-right-xlarge{padding-right:40px!important}.padding-bottom-xlarge{padding-bottom:40px!important}.margin-xlarge{margin:40px!important}.margin-vert-xlarge{margin-bottom:40px!important;margin-top:40px!important}.margin-horz-xlarge{margin-right:40px!important}.margin-horz-xlarge,.margin-left-xlarge{margin-left:40px!important}.margin-top-xlarge{margin-top:40px!important}.margin-right-xlarge{margin-right:40px!important}.margin-bottom-xlarge{margin-bottom:40px!important}.padding-xxlarge{padding:50px!important}.padding-vert-xxlarge{padding-bottom:50px!important;padding-top:50px!important}.padding-horz-xxlarge{padding-right:50px!important}.padding-horz-xxlarge,.padding-left-xxlarge{padding-left:50px!important}.padding-top-xxlarge{padding-top:50px!important}.padding-right-xxlarge{padding-right:50px!important}.padding-bottom-xxlarge{padding-bottom:50px!important}.margin-xxlarge{margin:50px!important}.margin-vert-xxlarge{margin-bottom:50px!important;margin-top:50px!important}.margin-horz-xxlarge{margin-right:50px!important}.margin-horz-xxlarge,.margin-left-xxlarge{margin-left:50px!important}.margin-top-xxlarge{margin-top:50px!important}.margin-right-xxlarge{margin-right:50px!important}.margin-bottom-xxlarge{margin-bottom:50px!important}i{background-position:50%;display:inline-block;white-space:nowrap}i:before{color:transparent;content:"i"}.icon-center{background-position:50%;color:transparent;text-indent:-9999px;width:35px}.icon-center.btn-xsmall{background-size:14px 14px;width:30px}.icon-center.btn-xsmall.btn-circle{background-size:17px 17px}.icon-center.btn-small{background-size:13px 13px;width:35px}.icon-center.btn-small.btn-circle{background-size:20px 20px}.icon-center.btn-medium{background-size:15px 15px;width:40px}.icon-center.btn-medium.btn-circle{background-size:23px 23px}.icon-center.btn-large{background-size:17px 17px;width:50px}.icon-center.btn-large.btn-circle{background-size:26px 26px}.icon-right-xxsmall{background-size:8px 8px}.icon-right-xxsmall.btn-small{background-position:right 10px center;padding-right:23px}.icon-right-xxsmall.btn-medium{background-position:right 15px center;padding-right:28px}.icon-right-xxsmall.btn-large{background-position:right 20px center;padding-right:33px}.icon-right-xxsmall.head-1,.icon-right-xxsmall.head-2,.icon-right-xxsmall.head-3,.icon-right-xxsmall.text-1,.icon-right-xxsmall.text-2,.icon-right-xxsmall.text-3,.icon-right-xxsmall.text-4{background-position:100%;display:inline-block;padding-right:13px}.icon-right-xsmall{background-size:12px 12px}.icon-right-xsmall.btn-small{background-position:right 10px center;padding-right:27px}.icon-right-xsmall.btn-medium{background-position:right 15px center;padding-right:32px}.icon-right-xsmall.btn-large{background-position:right 20px center;padding-right:37px}.icon-right-xsmall.head-1,.icon-right-xsmall.head-2,.icon-right-xsmall.head-3,.icon-right-xsmall.text-1,.icon-right-xsmall.text-2,.icon-right-xsmall.text-3,.icon-right-xsmall.text-4{background-position:100%;display:inline-block;padding-right:17px}.icon-right-small{background-size:16px 16px}.icon-right-small.btn-small{background-position:right 10px center;padding-right:31px}.icon-right-small.btn-medium{background-position:right 15px center;padding-right:36px}.icon-right-small.btn-large{background-position:right 20px center;padding-right:41px}.icon-right-small.head-1,.icon-right-small.head-2,.icon-right-small.head-3,.icon-right-small.text-1,.icon-right-small.text-2,.icon-right-small.text-3,.icon-right-small.text-4{background-position:100%;display:inline-block;padding-right:21px}.icon-right-medium{background-size:20px 20px}.icon-right-medium.btn-small{background-position:right 10px center;padding-right:35px}.icon-right-medium.btn-medium{background-position:right 15px center;padding-right:40px}.icon-right-medium.btn-large{background-position:right 20px center;padding-right:45px}.icon-right-medium.head-1,.icon-right-medium.head-2,.icon-right-medium.head-3,.icon-right-medium.text-1,.icon-right-medium.text-2,.icon-right-medium.text-3,.icon-right-medium.text-4{background-position:100%;display:inline-block;padding-right:25px}.icon-left-xxsmall{background-size:8px 8px}.icon-left-xxsmall.btn-small{background-position:left 10px center;padding-left:23px}.icon-left-xxsmall.btn-medium{background-position:left 15px center;padding-left:28px}.icon-left-xxsmall.btn-large{background-position:left 20px center;padding-left:33px}.icon-left-xxsmall.head-1,.icon-left-xxsmall.head-2,.icon-left-xxsmall.head-3,.icon-left-xxsmall.text-1,.icon-left-xxsmall.text-2,.icon-left-xxsmall.text-3,.icon-left-xxsmall.text-4{background-position:0;display:inline-block;padding-left:13px}.icon-left-xsmall{background-size:12px 12px}.icon-left-xsmall.btn-small{background-position:left 10px center;padding-left:27px}.icon-left-xsmall.btn-medium{background-position:left 15px center;padding-left:32px}.icon-left-xsmall.btn-large{background-position:left 20px center;padding-left:37px}.icon-left-xsmall.head-1,.icon-left-xsmall.head-2,.icon-left-xsmall.head-3,.icon-left-xsmall.text-1,.icon-left-xsmall.text-2,.icon-left-xsmall.text-3,.icon-left-xsmall.text-4{background-position:0;display:inline-block;padding-left:17px}.icon-left-small{background-size:16px 16px}.icon-left-small.btn-small{background-position:left 10px center;padding-left:31px}.icon-left-small.btn-medium{background-position:left 15px center;padding-left:36px}.icon-left-small.btn-large{background-position:left 20px center;padding-left:41px}.icon-left-small.head-1,.icon-left-small.head-2,.icon-left-small.head-3,.icon-left-small.text-1,.icon-left-small.text-2,.icon-left-small.text-3,.icon-left-small.text-4{background-position:0;display:inline-block;padding-left:21px}.icon-left-medium{background-size:20px 20px}.icon-left-medium.btn-small{background-position:left 10px center;padding-left:35px}.icon-left-medium.btn-medium{background-position:left 15px center;padding-left:40px}.icon-left-medium.btn-large{background-position:left 20px center;padding-left:45px}.icon-left-medium.head-1,.icon-left-medium.head-2,.icon-left-medium.head-3,.icon-left-medium.text-1,.icon-left-medium.text-2,.icon-left-medium.text-3,.icon-left-medium.text-4{background-position:0;display:inline-block;padding-left:25px}.icon-xxsmall{background-position:50%;background-size:8px 8px!important;display:inline-block;height:8px!important;line-height:8px;white-space:nowrap;width:8px}.icon-xxsmall.icon-circle{border-radius:8px;padding:2.66667px}.icon-xsmall{background-position:50%;background-size:12px 12px!important;display:inline-block;height:12px!important;line-height:12px;white-space:nowrap;width:12px}.icon-xsmall.icon-circle{border-radius:12px;padding:4px}.icon-small{background-position:50%;background-size:16px 16px!important;display:inline-block;height:16px!important;line-height:16px;white-space:nowrap;width:16px}.icon-small.icon-circle{border-radius:16px;padding:5.33333px}.icon-medium{background-position:50%;background-size:20px 20px!important;display:inline-block;height:20px!important;line-height:20px;white-space:nowrap;width:20px}.icon-medium.icon-circle{border-radius:20px;padding:6.66667px}.icon-large{background-position:50%;background-size:25px 25px!important;display:inline-block;height:25px!important;line-height:25px;white-space:nowrap;width:25px}.icon-large.icon-circle{border-radius:25px;padding:8.33333px}.icon-xlarge{background-position:50%;background-size:35px 35px!important;display:inline-block;height:35px!important;line-height:35px;white-space:nowrap;width:35px}.icon-xlarge.icon-circle{border-radius:35px;padding:11.66667px}body{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:16px;font-weight:400;line-height:140%}.color-white,.hover-color-white:focus,.hover-color-white:hover{color:#fff!important}.color-charcoal,.hover-color-charcoal:focus,.hover-color-charcoal:hover{color:#0a2540!important}.color-yellow,.hover-color-yellow:focus,.hover-color-yellow:hover{color:#ffca65!important}.color-blue,.hover-color-blue:focus,.hover-color-blue:hover{color:#244dcb!important}.color-red,.hover-color-red:focus,.hover-color-red:hover{color:#ff6a6a!important}.color-green,.hover-color-green:focus,.hover-color-green:hover{color:#5bd8a0!important}.color-peach,.hover-color-peach:focus,.hover-color-peach:hover{color:#ff8e6c!important}.text-1{font-size:18px;font-weight:400;line-height:140%}.text-1 .weight-semi,.text-1.weight-semi{font-weight:600}.text-1 .weight-bold,.text-1.weight-bold{font-weight:700}.text-1 .line-tight,.text-1.line-tight{line-height:125%}.text-1 .line-wide,.text-1.line-wide{line-height:160%}.text-2{font-size:16px;font-weight:400;line-height:140%}.text-2 .weight-semi,.text-2.weight-semi{font-weight:600}.text-2 .weight-bold,.text-2.weight-bold{font-weight:700}.text-2 .line-tight,.text-2.line-tight{line-height:125%}.text-2 .line-wide,.text-2.line-wide{line-height:160%}.text-3{font-size:14px;font-weight:400;line-height:140%}.text-3 .weight-semi,.text-3.weight-semi{font-weight:600}.text-3 .weight-bold,.text-3.weight-bold{font-weight:700}.text-3 .line-tight,.text-3.line-tight{line-height:115%}.text-3 .line-wide,.text-3.line-wide{line-height:160%}.text-4{font-size:12px;font-weight:400;line-height:140%}.text-4 .weight-semi,.text-4.weight-semi{font-weight:600}.text-4 .weight-bold,.text-4.weight-bold{font-weight:700}.text-4 .line-tight,.text-4.line-tight{line-height:115%}.text-4 .line-wide,.text-4.line-wide{line-height:160%}.head-1{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:40px;font-weight:700;line-height:103%}.head-1 .weight-light,.head-1.weight-light{font-weight:400}.head-1 .weight-semi,.head-1.weight-semi{font-weight:600}.head-1 .weight-bold,.head-1.weight-bold{font-weight:700}.head-1 .line-wide,.head-1.line-wide{line-height:115%}.head-2{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:28px;font-weight:700;line-height:105%}.head-2 .weight-light,.head-2.weight-light{font-weight:400}.head-2 .weight-semi,.head-2.weight-semi{font-weight:600}.head-2 .weight-bold,.head-2.weight-bold{font-weight:700}.head-2 .line-wide,.head-2.line-wide{line-height:115%}.head-3{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:21px;font-weight:700;line-height:105%}.head-3 .weight-light,.head-3.weight-light{font-weight:400}.head-3 .weight-semi,.head-3.weight-semi{font-weight:600}.head-3 .weight-bold,.head-3.weight-bold{font-weight:700}.head-3 .line-wide,.head-3.line-wide{line-height:115%}a:link,a:visited{color:#244dcb;text-decoration:none}a:active,a:hover{color:#0d2470;text-decoration:underline}a.link-gray-underline{text-decoration:underline;text-underline-offset:2px}a.link-gray-underline:link,a.link-gray-underline:visited{color:#0a2540;-webkit-text-decoration-color:#dbdbe1;text-decoration-color:#dbdbe1}a.link-gray-underline:active,a.link-gray-underline:hover{background-color:#eff9ff;color:#0a2540;-webkit-text-decoration-color:#6f7074;text-decoration-color:#6f7074}a.color-white:active,a.color-white:hover,a.color-white:link,a.color-white:visited{color:#fff}a.color-charcoal:active,a.color-charcoal:hover,a.color-charcoal:link,a.color-charcoal:visited{color:#0a2540}a.color-gray:active,a.color-gray:hover,a.color-gray:link,a.color-gray:visited{color:#989898}a.color-blue:active,a.color-blue:hover,a.color-blue:link,a.color-blue:visited{color:#244dcb}a.color-red:active,a.color-red:hover,a.color-red:link,a.color-red:visited{color:#ff6a6a}a.color-green:active,a.color-green:hover,a.color-green:link,a.color-green:visited{color:#5bd8a0}a.color-peach:active,a.color-peach:hover,a.color-peach:link,a.color-peach:visited{color:#ff8e6c}.upper{text-transform:uppercase!important}.lower{text-transform:lowercase!important}.hover-underline:hover,.underline{text-decoration:underline!important}.hover-no-underline:hover,.no-underline{text-decoration:none!important}.italic{font-style:italic!important}.word-break{word-break:break-word}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wysiwyg{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:21px;font-weight:400;line-height:160%}@media (max-width:640px){.wysiwyg.medium-down-text-1{font-size:18px}.wysiwyg.medium-down-text-1.line-normal{line-height:142.5%!important}}.wysiwyg.text-1{font-size:18px}.wysiwyg.text-1.line-normal{line-height:142.5%!important}.wysiwyg.text-2{font-size:16px}.wysiwyg.text-3{font-size:14px}.wysiwyg p{margin-bottom:1em}.wysiwyg i{background:none!important;display:initial!important;height:auto!important;line-height:inherit!important;white-space:normal!important;width:auto!important}.wysiwyg em,.wysiwyg i{font-style:italic}.wysiwyg strong{font-weight:700!important}.wysiwyg h1,.wysiwyg h2,.wysiwyg h3,.wysiwyg h4{color:#0a2540;font-family:Source Sans Pro,sans-serif}.wysiwyg h1,.wysiwyg h2{font-size:21px;font-weight:700;line-height:105%;margin:2em 0 .5em}.wysiwyg h1:first-child,.wysiwyg h2:first-child,.wysiwyg h3:first-child,.wysiwyg h4:first-child{margin:.5em 0}.wysiwyg h3{font-weight:700;line-height:105%}.wysiwyg h3,.wysiwyg h4{font-size:21px;margin:2em 0 .4em}.wysiwyg h4{font-weight:600;line-height:140%}.wysiwyg h3:first-child,.wysiwyg h4:first-child{margin:.5em 0 .4em}.wysiwyg hr{border:none;border-bottom:1px solid #e2e2e2;margin:2em 0}.wysiwyg ol,.wysiwyg ul{margin:1em 0 1em 1.1em}.wysiwyg ol,.wysiwyg ol li,.wysiwyg ul,.wysiwyg ul li{padding-left:0!important}.wysiwyg ol li:before,.wysiwyg ul li:before{content:none!important}.wysiwyg ul li{list-style:circle!important}.wysiwyg ol li{list-style-type:decimal!important}.wysiwyg a,.wysiwyg u{background-image:url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="1" y2="1" stroke="rgb(10, 37, 64)" /></svg>');background-position:0 calc(1em + 1px);background-repeat:repeat-x;background-size:1px 1px;position:relative;text-decoration:none}.wysiwyg a:link,.wysiwyg a:visited{color:#0a2540!important;text-decoration:none}.wysiwyg a:active,.wysiwyg a:hover{background-image:url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="1" y2="1" stroke="rgb(36, 77, 203)" /></svg>');color:#244dcb!important;text-decoration:none}.wysiwyg img{box-shadow:0 0 10px rgba(0,0,0,.05);display:block;height:auto;margin:1em 0 2em;width:100%}.wysiwyg p:last-child,img:last-child{margin-bottom:0}.wysiwyg br:last-child{display:none}@media (max-width:640px){.wysiwyg iframe{box-shadow:0 0 10px rgba(0,0,0,.05);display:block;height:auto;margin:1em 0 2em;width:100%}}.wysiwyg figure{margin:1em 0 2em;max-width:100%!important}.wysiwyg figure img{margin:0!important}.wysiwyg figure figcaption{color:#989898;font-size:14px;text-align:left}.wysiwyg table{border-collapse:collapse;border-top:1px solid #e2e2e2;margin:2em 0;width:100%}.wysiwyg table td{border-bottom:1px solid #e2e2e2;padding:10px}.bg-gradient-bluegreen{background:#d5dfff;background:-webkit-gradient(left top,right bottom,color-stop(0,#d5dfff),color-stop(100%,#effcff));background:linear-gradient(135deg,#d5dfff,#effcff)}.symbol-classcentral-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='27.71'%3E%3Cpath d='M30.49 0H3.05A3.08 3.08 0 0 0 0 3.12V25a3.09 3.09 0 0 0 3.05 3.12h27.44A3.08 3.08 0 0 0 33.54 25V3.12A3.08 3.08 0 0 0 30.49 0Zm0 25h-5.3v-1.6c0-.51-.31-.91-.69-.91h-6.16c-.38 0-.68.4-.68.91V25H3.06V3.12h27.43Z' fill='%23fff'/%3E%3Cpath d='M12.72 18.39a5.07 5.07 0 0 0 3.66-1.29l-1.6-1.94a2.19 2.19 0 0 1-1.8.76 2.39 2.39 0 0 1-2.2-2.6 2.39 2.39 0 0 1 2.28-2.6 2.51 2.51 0 0 1 1.85.84l1.52-2a5.39 5.39 0 0 0-3.63-1.32 4.87 4.87 0 0 0-5 5.07 4.78 4.78 0 0 0 4.92 5.08ZM22 18.39a5.05 5.05 0 0 0 3.66-1.29l-1.6-1.94a2.16 2.16 0 0 1-1.8.76 2.39 2.39 0 0 1-2.2-2.6 2.4 2.4 0 0 1 2.28-2.6 2.49 2.49 0 0 1 1.85.84l1.53-2a5.42 5.42 0 0 0-3.65-1.32 4.86 4.86 0 0 0-5 5.07A4.77 4.77 0 0 0 22 18.39ZM53.35 21.15a8.3 8.3 0 0 1-6 2.11c-4.75 0-8-3.42-8-8.31a8 8 0 0 1 8.16-8.32 8.88 8.88 0 0 1 6 2.17L51 12a4.09 4.09 0 0 0-3-1.37c-2.26 0-3.74 2-3.74 4.28s1.54 4.27 3.62 4.27A3.58 3.58 0 0 0 50.74 18Z' fill='%23fff'/%3E%3Cpath d='M59.5 22.9h-4.81V.63h4.81ZM71.2 22.9l-.44-1.24a5.21 5.21 0 0 1-4.19 1.6c-3 0-5.76-1.9-5.76-5.14 0-3.86 3.65-5.08 6.89-5.08a12.58 12.58 0 0 1 2.73.33v-.12c0-1.84-.71-3-2.91-3a10.44 10.44 0 0 0-4.72 1.37l-1.25-3.3a16.07 16.07 0 0 1 7-1.69c4.36 0 6.65 2.58 6.65 6.74v9.53Zm-.77-6.83a9.35 9.35 0 0 0-1.9-.26c-1.46 0-3 .62-3 2.31a2 2 0 0 0 2.17 1.93 3.8 3.8 0 0 0 2.76-1.16ZM86.64 11.71a4.61 4.61 0 0 0-3.12-1.37c-.6 0-1.28.3-1.28.86 0 .92 1.07 1.43 2.35 2 2 .84 4.63 1.81 4.63 4.93 0 3.51-3.09 5.17-6.24 5.17a9.58 9.58 0 0 1-6.74-2.82l2.62-2.85c1.24 1.19 2.22 2 3.86 2 .62 0 1.72-.3 1.72-1 0-1-1.43-1.52-3-2.23-1.84-.83-3.83-2-3.83-4.72 0-3.27 2.88-4.93 5.88-4.93a8 8 0 0 1 5.7 2.23ZM100.06 11.71a4.59 4.59 0 0 0-3.12-1.37c-.6 0-1.28.3-1.28.86 0 .92 1.07 1.43 2.35 2 2 .84 4.63 1.81 4.63 4.93 0 3.51-3.09 5.17-6.23 5.17a9.58 9.58 0 0 1-6.74-2.82l2.61-2.85c1.24 1.19 2.22 2 3.86 2 .62 0 1.72-.3 1.72-1 0-1-1.43-1.52-3-2.23-1.84-.83-3.83-2-3.83-4.72 0-3.27 2.88-4.93 5.88-4.93a8 8 0 0 1 5.7 2.23ZM122.62 21.15a8.3 8.3 0 0 1-6 2.11c-4.75 0-8.05-3.42-8.05-8.31a8 8 0 0 1 8.17-8.32 8.88 8.88 0 0 1 6 2.17l-2.52 3.2a4.09 4.09 0 0 0-3-1.37c-2.26 0-3.74 2-3.74 4.28s1.54 4.27 3.62 4.27A3.58 3.58 0 0 0 120 18Z' fill='%2307213c'/%3E%3Cpath d='M130.83 23.26a7.73 7.73 0 0 1-8.11-8.08 8.2 8.2 0 0 1 8.14-8.55c4.48 0 7.8 3.09 7.8 7.34a14.22 14.22 0 0 1-.2 2.16H127.6a3.56 3.56 0 0 0 3.56 3.33c2.05 0 2.91-.86 4-2.29l3.09 2.11c-1.99 2.72-3.95 3.98-7.42 3.98Zm3-10.27a2.62 2.62 0 0 0-2.8-2.68 3.15 3.15 0 0 0-3.27 2.69ZM144.31 7l.41 2a6 6 0 0 1 4.87-2.4 5.42 5.42 0 0 1 4.1 2.11c1.31 1.66 1.42 3.68 1.42 5.9v8.26h-4.81v-8.04a8.48 8.48 0 0 0-.35-3.06 1.93 1.93 0 0 0-1.9-1.1 3.58 3.58 0 0 0-3 1.66V22.9h-4.8V7ZM162.63 10.91v5.82a6.78 6.78 0 0 0 .09 1.42c.11.65.41 1.07 1.09 1.07a3.48 3.48 0 0 0 1.73-.44l1.51 3.5a8.82 8.82 0 0 1-4.1 1 4.75 4.75 0 0 1-4.95-3.73 12 12 0 0 1-.2-2.47v-6.17H156V7h1.81l.89-3.42h3.92V7h3.92v3.92ZM173.08 8.89a4.3 4.3 0 0 1 3.6-2.26 5.63 5.63 0 0 1 2.14.42l-1.19 4a3.21 3.21 0 0 0-1.52-.36 3.3 3.3 0 0 0-2.71 1.45V22.9h-4.8V7h4.07ZM189.31 22.9l-.45-1.24a5.18 5.18 0 0 1-4.18 1.6c-3 0-5.76-1.9-5.76-5.14 0-3.86 3.65-5.08 6.89-5.08a12.58 12.58 0 0 1 2.73.33v-.12c0-1.84-.71-3-2.91-3a10.44 10.44 0 0 0-4.72 1.37l-1.25-3.3a16.07 16.07 0 0 1 7-1.69c4.36 0 6.65 2.58 6.65 6.74v9.53Zm-.77-6.83a9.35 9.35 0 0 0-1.9-.26c-1.46 0-3 .62-3 2.31a2 2 0 0 0 2.17 1.93 3.8 3.8 0 0 0 2.76-1.16ZM200 22.9h-4.8V.63h4.8Z' fill='%2307213c'/%3E%3C/svg%3E")}.symbol-classcentral-navy,.symbol-classcentral-white{background-repeat:no-repeat;background-size:contain;text-indent:-99999px;width:210px}.symbol-classcentral-navy{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='27.71'%3E%3Cpath d='M30.49 0H3.05A3.08 3.08 0 0 0 0 3.12V25a3.09 3.09 0 0 0 3.05 3.12h27.44A3.08 3.08 0 0 0 33.54 25V3.12A3.08 3.08 0 0 0 30.49 0Zm0 25h-5.3v-1.6c0-.51-.31-.91-.69-.91h-6.16c-.38 0-.68.4-.68.91V25H3.06V3.12h27.43Z' fill='%2307213c'/%3E%3Cpath d='M12.72 18.39a5.07 5.07 0 0 0 3.66-1.29l-1.6-1.94a2.19 2.19 0 0 1-1.8.76 2.39 2.39 0 0 1-2.2-2.6 2.39 2.39 0 0 1 2.28-2.6 2.51 2.51 0 0 1 1.85.84l1.52-2a5.39 5.39 0 0 0-3.63-1.32 4.87 4.87 0 0 0-5 5.07 4.78 4.78 0 0 0 4.92 5.08ZM22 18.39a5.05 5.05 0 0 0 3.66-1.29l-1.6-1.94a2.16 2.16 0 0 1-1.8.76 2.39 2.39 0 0 1-2.2-2.6 2.4 2.4 0 0 1 2.28-2.6 2.49 2.49 0 0 1 1.85.84l1.53-2a5.42 5.42 0 0 0-3.65-1.32 4.86 4.86 0 0 0-5 5.07A4.77 4.77 0 0 0 22 18.39ZM53.35 21.15a8.3 8.3 0 0 1-6 2.11c-4.75 0-8-3.42-8-8.31a8 8 0 0 1 8.16-8.32 8.88 8.88 0 0 1 6 2.17L51 12a4.09 4.09 0 0 0-3-1.37c-2.26 0-3.74 2-3.74 4.28s1.54 4.27 3.62 4.27A3.58 3.58 0 0 0 50.74 18ZM59.5 22.9h-4.81V.63h4.81ZM71.2 22.9l-.44-1.24a5.21 5.21 0 0 1-4.19 1.6c-3 0-5.76-1.9-5.76-5.14 0-3.86 3.65-5.08 6.89-5.08a12.58 12.58 0 0 1 2.73.33v-.12c0-1.84-.71-3-2.91-3a10.44 10.44 0 0 0-4.72 1.37l-1.25-3.3a16.07 16.07 0 0 1 7-1.69c4.36 0 6.65 2.58 6.65 6.74v9.53Zm-.77-6.83a9.35 9.35 0 0 0-1.9-.26c-1.46 0-3 .62-3 2.31a2 2 0 0 0 2.17 1.93 3.8 3.8 0 0 0 2.76-1.16ZM86.64 11.71a4.61 4.61 0 0 0-3.12-1.37c-.6 0-1.28.3-1.28.86 0 .92 1.07 1.43 2.35 2 2 .84 4.63 1.81 4.63 4.93 0 3.51-3.09 5.17-6.24 5.17a9.58 9.58 0 0 1-6.74-2.82l2.62-2.85c1.24 1.19 2.22 2 3.86 2 .62 0 1.72-.3 1.72-1 0-1-1.43-1.52-3-2.23-1.84-.83-3.83-2-3.83-4.72 0-3.27 2.88-4.93 5.88-4.93a8 8 0 0 1 5.7 2.23ZM100.06 11.71a4.59 4.59 0 0 0-3.12-1.37c-.6 0-1.28.3-1.28.86 0 .92 1.07 1.43 2.35 2 2 .84 4.63 1.81 4.63 4.93 0 3.51-3.09 5.17-6.23 5.17a9.58 9.58 0 0 1-6.74-2.82l2.61-2.85c1.24 1.19 2.22 2 3.86 2 .62 0 1.72-.3 1.72-1 0-1-1.43-1.52-3-2.23-1.84-.83-3.83-2-3.83-4.72 0-3.27 2.88-4.93 5.88-4.93a8 8 0 0 1 5.7 2.23ZM122.62 21.15a8.3 8.3 0 0 1-6 2.11c-4.75 0-8.05-3.42-8.05-8.31a8 8 0 0 1 8.17-8.32 8.88 8.88 0 0 1 6 2.17l-2.52 3.2a4.09 4.09 0 0 0-3-1.37c-2.26 0-3.74 2-3.74 4.28s1.54 4.27 3.62 4.27A3.58 3.58 0 0 0 120 18Z' fill='%2307213c'/%3E%3Cpath d='M130.83 23.26a7.73 7.73 0 0 1-8.11-8.08 8.2 8.2 0 0 1 8.14-8.55c4.48 0 7.8 3.09 7.8 7.34a14.22 14.22 0 0 1-.2 2.16H127.6a3.56 3.56 0 0 0 3.56 3.33c2.05 0 2.91-.86 4-2.29l3.09 2.11c-1.99 2.72-3.95 3.98-7.42 3.98Zm3-10.27a2.62 2.62 0 0 0-2.8-2.68 3.15 3.15 0 0 0-3.27 2.69ZM144.31 7l.41 2a6 6 0 0 1 4.87-2.4 5.42 5.42 0 0 1 4.1 2.11c1.31 1.66 1.42 3.68 1.42 5.9v8.26h-4.81v-8.04a8.48 8.48 0 0 0-.35-3.06 1.93 1.93 0 0 0-1.9-1.1 3.58 3.58 0 0 0-3 1.66V22.9h-4.8V7ZM162.63 10.91v5.82a6.78 6.78 0 0 0 .09 1.42c.11.65.41 1.07 1.09 1.07a3.48 3.48 0 0 0 1.73-.44l1.51 3.5a8.82 8.82 0 0 1-4.1 1 4.75 4.75 0 0 1-4.95-3.73 12 12 0 0 1-.2-2.47v-6.17H156V7h1.81l.89-3.42h3.92V7h3.92v3.92ZM173.08 8.89a4.3 4.3 0 0 1 3.6-2.26 5.63 5.63 0 0 1 2.14.42l-1.19 4a3.21 3.21 0 0 0-1.52-.36 3.3 3.3 0 0 0-2.71 1.45V22.9h-4.8V7h4.07ZM189.31 22.9l-.45-1.24a5.18 5.18 0 0 1-4.18 1.6c-3 0-5.76-1.9-5.76-5.14 0-3.86 3.65-5.08 6.89-5.08a12.58 12.58 0 0 1 2.73.33v-.12c0-1.84-.71-3-2.91-3a10.44 10.44 0 0 0-4.72 1.37l-1.25-3.3a16.07 16.07 0 0 1 7-1.69c4.36 0 6.65 2.58 6.65 6.74v9.53Zm-.77-6.83a9.35 9.35 0 0 0-1.9-.26c-1.46 0-3 .62-3 2.31a2 2 0 0 0 2.17 1.93 3.8 3.8 0 0 0 2.76-1.16ZM200 22.9h-4.8V.63h4.8Z' fill='%2307213c'/%3E%3C/svg%3E")}.symbol-classcentral-gray.symbol-small,.symbol-classcentral-navy.symbol-small,.symbol-classcentral-white.symbol-small{width:150px}.symbol-report{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='46'%3E%3Cpath d='M22.57 7c-.27 2.07-.36 3.42-.36 3.42H21c0-.49.13-2.47-1-3.46s-2.38-1-4.41-1h-1.3l-3.24 21.6a23.73 23.73 0 0 0-.36 3.15c0 1.93 1.17 2.56 3.28 2.74l-.13 1.09c-.9-.05-3.65-.19-6.44-.19-2.38 0-5.35.09-6.39.19l.14-1.09a4.53 4.53 0 0 0 3.1-1.3c1-1 1.13-2.52 1.67-6L9 5.94H7.67c-2.16 0-3.6 0-4.9 1.08A5.45 5.45 0 0 0 1 10.39H-.29l.58-2.92C.65 5.53.79 4 .79 4h22.27s-.27 1.35-.49 3ZM37.42 34.78c-2.84 0-3.24-1.71-3.24-3a33.78 33.78 0 0 1 .76-5.17l.86-4.37a40.7 40.7 0 0 0 .81-5.44c0-1.13-.23-2.25-2.25-2.25-2.57 0-4.95 2.92-5.45 3.55L26.3 34.42H21c1.35-7.65 4.91-28.21 4.91-30.1 0-1.4-.45-1.85-2.66-2l.18-1.17c.5 0 3.29 0 5.09-.27a11.08 11.08 0 0 0 3.23-.66l.31.23c-.76 3.6-1.48 7.69-2.25 12.28l-.58 3.47c1.8-2.61 4.05-5 7.83-5 4.77 0 5 3.15 5 4.41a40.08 40.08 0 0 1-.9 6.17l-.76 3.87a36.23 36.23 0 0 0-.77 4.59c0 .67.27 1 .86 1 1 0 1.84-1.58 2-1.85l1 .72c-1.21 2.02-3.1 4.67-6.07 4.67ZM50.07 23.49a10.86 10.86 0 0 0-.09 1.8c0 3.73 1.26 6.43 4.9 6.43a8.77 8.77 0 0 0 5.54-2.25l.76.81a11.2 11.2 0 0 1-8.91 4.55c-4.5 0-7.79-2.52-7.79-8.82 0-8.1 4.37-14.81 12.16-14.81 4.9 0 6.7 2.34 6.7 4.95 0 5.94-6.57 7.34-13.27 7.34Zm5.53-10.35a3.27 3.27 0 0 0-2.07.63c-1.35.9-2.79 3.19-3.33 8a15.51 15.51 0 0 0 3.33-.36c2.21-.45 4.5-1.71 4.5-5.26-.03-1.21-.22-3.01-2.43-3.01ZM99.43 34.42a26.06 26.06 0 0 1-4.05.23c-3.55 0-4.45-1.31-6.12-4-1.35-2.16-5-9.36-5.4-10.22h-1.53l-1.08 7a31.21 31.21 0 0 0-.4 3.6c0 1.67.81 2.12 2.43 2.34l-.14 1.09s-2.74-.19-5.62-.19c-3.24 0-5.63.19-5.63.19l.11-1.03a4.18 4.18 0 0 0 2.38-.94c.9-.86 1.13-2 1.76-6.21l2.29-15.35a29 29 0 0 0 .41-3.6c0-1.66-.77-2.11-2.39-2.34l.14-1.08s1.84.14 4.59.14c2 0 3.1-.09 5.89-.09 5.27 0 9.68 2.25 9.68 6.93 0 7.56-7.16 8.64-7.92 8.73 0 0 3.51 5.85 5.67 9.27 1.62 2.56 2.79 4.36 5 4.45Zm-13-28.53c-1.13 0-1.94.09-1.94.09l-1.84 12.51a18.62 18.62 0 0 0 2.11.09 6.54 6.54 0 0 0 3-.45c2-.94 3.37-3.69 3.37-7 .02-4.02-1.96-5.24-4.7-5.24ZM104.61 23.49a13.57 13.57 0 0 0-.09 1.8c0 3.73 1.26 6.43 4.91 6.43a8.71 8.71 0 0 0 5.57-2.25l.77.81a11.22 11.22 0 0 1-8.91 4.55c-4.5 0-7.79-2.52-7.79-8.82 0-8.1 4.37-14.81 12.15-14.81 4.91 0 6.71 2.34 6.71 4.95-.04 5.94-6.61 7.34-13.32 7.34Zm5.54-10.35a3.26 3.26 0 0 0-2.07.63c-1.35.9-2.79 3.19-3.33 8a15.58 15.58 0 0 0 3.33-.36c2.2-.45 4.5-1.71 4.5-5.26 0-1.17-.23-3-2.43-3ZM138.9 29.74a10.48 10.48 0 0 1-8.77 5 8.34 8.34 0 0 1-4.59-1.16l-.68 4.45a35.7 35.7 0 0 0-.45 3.56c0 1.48.81 2.29 3.33 2.47l-.18 1.13s-2.88-.18-6.39-.18c-3.28 0-6.12.18-6.12.18l.14-1.08a4.81 4.81 0 0 0 2.56-.95c1.17-1 1.35-2.34 2.07-6.57l2.07-12.24a85 85 0 0 0 1.22-8.55c0-.72-.27-1-.9-1-1 0-1.8 1.53-2 1.8l-1-.67c1.17-2 3.19-4.73 6.16-4.73 2.25 0 3.06 1.22 3.06 2.84a11.51 11.51 0 0 1-.36 2.47c1.26-1.89 3.87-5.31 7.79-5.31 1.93 0 5.8.54 5.8 7.79a21.45 21.45 0 0 1-2.76 10.75Zm-5.58-15.16c-1.75 0-3.73 1.71-5.22 3.51L125.81 32a5.72 5.72 0 0 0 2.61.54 6.07 6.07 0 0 0 5.62-3.6 22.88 22.88 0 0 0 2.07-9.72c0-1.99-.22-4.64-2.79-4.64ZM152.72 34.83c-7.16 0-9-4.68-9-9.32 0-8.28 4.46-14.31 11.8-14.31 7.15 0 8.95 4.68 8.95 9.32.04 8.28-4.41 14.31-11.75 14.31Zm2.79-21.69a4 4 0 0 0-3.15 1.53c-2.43 2.92-3.11 9-3.11 11.07 0 4.77.73 7.15 3.52 7.15a4 4 0 0 0 3.15-1.53c2.43-2.92 3.1-8.95 3.1-11.07-.02-4.77-.72-7.15-3.51-7.15ZM180.8 17.05a2.46 2.46 0 0 1-1.84-.76c-.45-.54-.63-.72-1.22-.72-1.26 0-2.88 2.16-3.6 3.06l-2.47 15.79h-5.4c1.3-6.66 3-16.69 3-18.63 0-.67-.27-1-.9-1-1 0-1.8 1.53-2 1.8l-1-.67c1.17-2 3.19-4.73 6.16-4.73 2.25 0 3.06 1.22 3.06 2.84a12.8 12.8 0 0 1-.45 2.88c1.44-2.16 3.74-5.72 6.71-5.72a2.45 2.45 0 0 1 2.74 2.57c0 2.12-1.26 3.29-2.79 3.29ZM199.39 13.81h-6.3l-1.94 12c-.17 1.12-.29 2.24-.36 3.37 0 1.31.45 2.21 2.12 2.21s3.24-1.53 3.82-2.12l.72.77c-2.83 4-5.31 4.77-7.47 4.77-3.24 0-4.54-1.71-4.54-4.59a34.71 34.71 0 0 1 .58-4.77l2-11.66h-3.1l.18-1.26a5.68 5.68 0 0 0 3.53-1.53 9 9 0 0 0 2-4.18l.23-.77 3.69-.36c-.18.9-1.08 5.94-1.08 5.94h6.26Z' fill='%2307213c'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;text-indent:-99999px;width:100px}.breadcrumbs li:after{color:#6f7074;content:" / ";display:inline-block;padding:0 7px}.breadcrumbs li:last-child:after{display:none}.width-page{box-sizing:border-box;margin-left:auto;margin-right:auto;width:100%}@media (min-width:641px){.width-page{max-width:1300px;padding-left:20px;padding-right:20px}}@media (min-width:1025px){.width-page{padding-left:50px;padding-right:50px}}.animate-fade-hidden{left:-9999px;opacity:0;pointer-events:none;position:absolute;transition:opacity .5s ease;visibility:hidden}.animate-fade-entered{opacity:1;transition:opacity .5s ease;visibility:visible}.max-850{max-width:850px}.max-450{max-width:450px}.loader-bars{-webkit-animation:loader 765ms ease 272ms infinite;animation:loader 765ms ease 272ms infinite;background:#e2e2e2;color:transparent;display:inline-block;position:relative;text-indent:-99999px;transform:translateZ(0)}.loader-bars:after,.loader-bars:before{background:#e2e2e2;content:"";position:absolute}.loader-bars:before{-webkit-animation:loader 765ms ease infinite;animation:loader 765ms ease infinite}.loader-bars:after{-webkit-animation:loader 765ms ease 544ms infinite;animation:loader 765ms ease 544ms infinite}.loader-bars.loader-small{height:15px;width:5px}.loader-bars.loader-small:after,.loader-bars.loader-small:before{height:10px;top:3px;width:5px}.loader-bars.loader-small:before{left:-7px}.loader-bars.loader-small:after{left:7px}.loader-bars,.loader-bars.loader-medium{height:25px;width:7px}.loader-bars.loader-medium:after,.loader-bars.loader-medium:before,.loader-bars:after,.loader-bars:before{height:15px;top:5px;width:7px}.loader-bars.loader-medium:before,.loader-bars:before{left:-11px}.loader-bars.loader-medium:after,.loader-bars:after{left:11px}.loader-bars.loader-blue,.loader-bars.loader-blue:after,.loader-bars.loader-blue:before{background:#0d4df1}@-webkit-keyframes loader{0%{opacity:0}50%{opacity:1}to{opacity:0}}@keyframes loader{0%{opacity:0}50%{opacity:1}to{opacity:0}}@media (max-width:768px){.show-on-hover,.show-on-hover:hover{display:none!important}td.hide-on-hover,td.hide-on-hover:hover{display:block!important}td.hide-on-hover.small-only-hidden,td.hide-on-hover:hover.small-only-hidden{display:none!important}}.color-gray,.color-gray:active,.color-gray:focus,.color-gray:hover .color-gray:focus,.color-gray:hover .hover-color-gray:focus,.color-gray:link,.color-gray:visited,.hover-color-gray,.hover-color-gray:active,.hover-color-gray:focus,.hover-color-gray:hover .color-gray:focus,.hover-color-gray:hover .hover-color-gray:focus,.hover-color-gray:link,.hover-color-gray:visited{color:#6f7074!important}@media (max-width:480px){.xsmall-only-block{display:block!important}.xsmall-only-hidden{display:none!important}.xsmall-only-width-centered{float:none;margin-left:auto;margin-right:auto}.xsmall-only-width-100{max-width:100%;min-width:100%}.xsmall-only-margin-bottom-medium{margin-bottom:20px!important}}@media (max-width:350px){.xxsmall-only-hidden{display:none!important}}@media (max-width:640px){.small-down-hidden{display:none!important}.small-down-width-100{max-width:100%;min-width:100%}.row .small-down-horz-align-right{margin-left:auto}.small-down-absolute{position:absolute!important}.small-down-left{left:0!important}.small-down-text-2{font-size:16px;font-weight:400;line-height:140%}.small-down-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.small-down-margin-vert-small{margin-bottom:15px!important;margin-top:15px!important}.small-down-padding-medium{padding:20px!important}.small-down-padding-horz-small{padding-left:15px!important;padding-right:15px!important}.small-down-text-2 .weight-semi,.small-down-text-2.weight-semi{font-weight:600}.small-down-text-2 .weight-bold,.small-down-text-2.weight-bold{font-weight:700}.small-down-text-2 .line-tight,.small-down-text-2.line-tight{line-height:125%}.small-down-text-2 .line-wide,.small-down-text-2.line-wide{line-height:160%}.small-down-margin-top-small{margin-top:15px!important}.small-down-margin-bottom-medium{margin-bottom:20px!important}.small-down-margin-bottom-xsmall{margin-bottom:10px!important}.small-down-border-bottom{border-bottom:1px;border-style:solid}.small-down-margin-horz-small{margin-left:15px!important;margin-right:15px!important}}@media (min-width:481px){.small-up-block{display:block!important}.small-up-width-2-3{max-width:66.66667%;min-height:1px;min-width:66.66667%}.small-up-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.small-up-text-2{font-size:16px;font-weight:400;line-height:140%}.small-up-text-2 .weight-semi,.small-up-text-2.weight-semi{font-weight:600}.small-up-text-2 .weight-bold,.small-up-text-2.weight-bold{font-weight:700}.small-up-text-2 .line-tight,.small-up-text-2.line-tight{line-height:125%}.small-up-text-2 .line-wide,.small-up-text-2.line-wide{line-height:160%}.small-up-head-3{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:21px;font-weight:700;line-height:105%}.small-up-head-3 .weight-light,.small-up-head-3.weight-light{font-weight:400}.small-up-head-3 .weight-semi,.small-up-head-3.weight-semi{font-weight:600}.small-up-head-3 .weight-bold,.small-up-head-3.weight-bold{font-weight:700}.small-up-head-3 .line-wide,.small-up-head-3.line-wide{line-height:115%}.small-up-inline-block{display:inline-block!important}.small-up-hidden{display:none!important}.row .small-up-horz-align-right{margin-left:auto}}@media (max-width:640px){.small-only-hidden{display:none!important}.small-only-width-centered{float:none;margin-left:auto;margin-right:auto}.small-only-width-100{max-width:100%;min-width:100%}.small-only-margin-bottom-medium{margin-bottom:20px!important}}@media (max-width:768px){.medium-down-hidden{display:none!important}.medium-down-width-100{max-width:100%;min-width:100%}.medium-down-margin-top-small{margin-top:15px!important}.medium-down-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.medium-down-padding-horz-large{padding-left:30px!important;padding-right:30px!important}.medium-down-margin-top-xsmall{margin-top:10px!important}.wysiwyg.medium-down-text-1{font-size:18px}.wysiwyg.medium-down-text-1.line-normal{line-height:142.5%!important}}@media (min-width:641px){.medium-up-block{display:block!important}.medium-up-inline-block{display:inline-block!important}.medium-up-hidden{display:none!important}.medium-up-nowrap{flex-wrap:nowrap}.medium-up-head-2{font-size:28px;font-weight:700;line-height:105%}.row .medium-up-horz-align-right{margin-left:auto}.medium-up-width-100{max-width:100%;min-width:100%}.medium-up-width-1-2{max-width:50%;min-height:1px;min-width:50%}.medium-up-width-1-3{max-width:33.33333%;min-height:1px;min-width:33.33333%}.medium-up-width-3-4{max-width:75%;min-height:1px;min-width:75%}.medium-up-width-2-3{max-width:66.66667%;min-height:1px;min-width:66.66667%}.medium-up-margin-top-xxsmall{margin-top:5px!important}.medium-up-margin-bottom-xxsmall{margin-bottom:5px!important}.medium-up-margin-right-xsmall{margin-right:10px!important}.medium-up-margin-right-medium{margin-right:20px!important}.medium-up-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.medium-up-margin-right-large{margin-right:30px!important}.medium-up-padding-large{padding:30px!important}.medium-up-padding-xxlarge{padding:50px!important}.medium-up-padding-left-medium{padding-left:20px!important}.medium-up-padding-right-medium{padding-right:20px!important}.medium-up-text-1{font-size:18px;font-weight:400;line-height:140%}.medium-up-text-1 .weight-semi,.medium-up-text-1.weight-semi{font-weight:600}.medium-up-text-1 .weight-bold,.medium-up-text-1.weight-bold{font-weight:700}.medium-up-text-1 .line-tight,.medium-up-text-1.line-tight{line-height:125%}.medium-up-text-1 .line-wide,.medium-up-text-1.line-wide{line-height:160%}.medium-up-text-2{font-size:16px;font-weight:400;line-height:140%}.medium-up-text-2 .weight-semi,.medium-up-text-2.weight-semi{font-weight:600}.medium-up-text-2 .weight-bold,.medium-up-text-2.weight-bold{font-weight:700}.medium-up-text-2 .line-tight,.medium-up-text-2.line-tight{line-height:125%}.medium-up-text-2 .line-wide,.medium-up-text-2.line-wide{line-height:160%}.medium-up-head-1{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:40px;font-weight:700;line-height:103%}.medium-up-head-1 .weight-light,.medium-up-head-1.weight-light{font-weight:400}.medium-up-head-1 .weight-semi,.medium-up-head-1.weight-semi{font-weight:600}.medium-up-head-1 .weight-bold,.medium-up-head-1.weight-bold{font-weight:700}.medium-up-head-1 .line-wide,.medium-up-head-1.line-wide{line-height:115%}.medium-up-margin-top-xxlarge{margin-top:50px!important}.medium-up-width-3-5{max-width:60%;min-height:1px;min-width:60%}.medium-up-width-4-5{max-width:80%;min-height:1px;min-width:80%}.medium-up-margin-bottom-small{margin-bottom:15px!important}.medium-up-margin-bottom-medium{margin-bottom:20px!important}.medium-up-radius-small{border-radius:5px}.medium-up-border-all{border-style:solid;border-width:1px}.medium-up-head-3{color:#0a2540;font-family:Source Sans Pro,sans-serif;font-size:21px;font-weight:700;line-height:105%}.medium-up-margin-top-xsmall{margin-top:10px!important}.medium-up-shadow-light{box-shadow:0 0 10px rgba(0,0,0,.05)}.medium-up-margin-right-small{margin-right:15px!important}.medium-up-width-9-16{max-width:56.25%;min-height:1px;min-width:56.25%}}@media (max-width:768px){.medium-only-hidden{display:none!important}.medium-only-width-centered{float:none;margin-left:auto;margin-right:auto}}@media (max-width:1024px){.large-down-hidden{display:none!important}.row .large-down-horz-align-right{margin-left:auto}.large-down-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.large-down-margin-bottom-xxsmall{margin-bottom:5px!important}.large-down-margin-bottom-small{margin-bottom:15px!important}}@media (min-width:769px){.large-up-block{display:block!important}.large-up-inline-block{display:inline-block!important}.large-up-text-center{text-align:center!important}.large-up-text-right{text-align:right!important}.large-up-text-left{text-align:left!important}.large-up-nowrap{flex-wrap:nowrap}.large-up-width-1-4{max-width:25%;min-height:1px;min-width:25%}.large-up-width-3-4{max-width:75%;min-height:1px;min-width:75%}.large-up-width-2-5{max-width:40%;min-height:1px;min-width:40%}.large-up-width-3-5{max-width:60%;min-height:1px;min-width:60%}.large-up-width-8-16{max-width:50%;min-height:1px;min-width:50%}.large-up-width-3-16{max-width:18.75%;min-height:1px;min-width:18.75%}.large-up-width-2-16{max-width:12.5%;min-height:1px;min-width:12.5%}.large-up-width-13-16{max-width:81.25%;min-height:1px;min-width:81.25%}.large-up-width-14-16{max-width:87.5%;min-height:1px;min-width:87.5%}.large-up-margin-left-xxsmall{margin-left:5px!important}.large-up-margin-left-xsmall{margin-left:10px!important}.large-up-padding-right-small{padding-right:15px!important}.large-up-margin-right-small{margin-right:15px!important}.large-up-padding-horz-medium{padding-left:20px!important;padding-right:20px!important}.large-up-margin-vert-xxsmall{margin-bottom:5px!important;margin-top:5px!important}.large-up-padding-horz-large{padding-left:30px!important;padding-right:30px!important}.large-up-padding-top-large{padding-top:30px!important}.large-up-padding-right-large{padding-right:30px!important}.large-up-padding-xlarge{padding:40px!important}.large-up-padding-right-xlarge{padding-right:40px!important}.large-up-padding-left-large{padding-left:30px!important}.large-up-padding-vert-xxlarge{padding-bottom:50px!important;padding-top:50px!important}.large-up-padding-left-xxlarge{padding-left:50px!important}.large-up-width-6-16{max-width:37.5%;min-height:1px;min-width:37.5%}.large-up-width-1-2{max-width:50%;min-height:1px;min-width:50%}.large-up-width-1-3{max-width:33.33333333%;min-height:1px;min-width:33.33333333%}.large-up-width-11-16{max-width:68.75%;min-height:1px;min-width:68.75%}.large-up-head-2{font-size:28px;font-weight:700}.large-up-text-2{font-size:16px}.large-up-hidden{display:none!important}.large-up-horz-align-right{margin-left:auto}.large-up-row{display:flex;flex-direction:row;flex-wrap:wrap}.large-up-padding-horz-small{padding-left:15px!important;padding-right:15px!important}.large-up-head-1{font-size:40px;font-weight:700;line-height:103%}}@media (max-width:1024px){.large-only-hidden{display:none!important}}@media (min-width:1025px){.xlarge-up-block{display:block!important}.xlarge-up-hidden{display:none!important}.xlarge-up-inline-block{display:inline-block!important}.row .xlarge-up-horz-align-right{margin-left:auto}.xlarge-up-width-2-3{max-width:66.66667%;min-height:1px;min-width:66.66667%}.xlarge-up-width-1-3{max-width:33.3333%;min-height:1px;min-width:33.3333%}.xlarge-up-width-8-16{max-width:50%;min-height:1px;min-width:50%}.xlarge-up-width-1-5{max-width:20%;min-height:1px;min-width:20%}.xlarge-up-width-2-5{max-width:40%;min-height:1px;min-width:40%}.xlarge-up-width-3-16{max-width:18.75%;min-height:1px;min-width:18.75%}.xlarge-up-width-3-5{max-width:60%;min-height:1px;min-width:60%}.xlarge-up-width-13-16{max-width:81.25%;min-height:1px;min-width:81.25%}.xlarge-up-margin-top-xxsmall{margin-top:5px!important}.xlarge-up-padding-vert-medium{padding-bottom:20px!important;padding-top:20px!important}.xlarge-up-padding-left-medium{padding-left:20px!important}.xlarge-up-padding-right-xxlarge{padding-right:50px!important}.xlarge-up-width-1-2{max-width:50%;min-height:1px;min-width:50%}.xlarge-up-nowrap{flex-wrap:nowrap}.xlarge-up-flex{display:flex!important}}@media (min-width:1201px){.xxlarge-up-inline-block{display:inline-block!important}.xxlarge-up-width-9-16{max-width:56.25%;min-height:1px;min-width:56.25%}.xxlarge-up-width-7-16{max-width:43.75%;min-height:1px;min-width:43.75%}.xxlarge-up-padding-horz-large{padding-left:30px!important;padding-right:30px!important}}.btn-medium.icon-progress-done,.btn-medium.icon-progress-mark{background-position:left 13px center;background-size:20px 20px}@media (hover){.scale-on-hover{transform:scale(1);transition:transform .7s cubic-bezier(.19,1,.22,1);will-change:transform}.scale-on-hover:hover{transform:scale(1.07)}}.scrollable-y{overflow-y:auto!important}.scrollable-x{overflow-x:auto!important}.truncatable-area.is-truncated{max-height:var(--truncate-to);overflow:hidden;position:relative}.truncatable-area.is-truncated:after{background:linear-gradient(0deg,hsla(0,0%,100%,.65),hsla(0,0%,100%,0));bottom:0;content:"";height:80px;left:0;pointer-events:none;position:absolute;right:0}.touch-block{display:none}.on-hover .hide-on-hover,.touch .touch-block{display:block}.on-hover .show-on-hover,.on-hover .show-on-hover-inline,.on-hover:hover .hide-on-hover{display:none}.on-hover:hover .show-on-hover{display:block}.on-hover:hover .show-on-hover-inline{display:inline-block}.on-hover .on-hover .show-on-hover,.on-hover .on-hover .show-on-hover-inline{display:none}.on-hover .on-hover:hover .show-on-hover{display:block}.on-hover .on-hover:hover .show-on-hover-inline{display:inline-block}a:hover .hover-underline{text-decoration:underline!important}.max-750{max-width:750px}.max-950{max-width:950px}img:not([src]){visibility:hidden}.icon-lettermark-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.17in' height='4.17in' viewBox='0 0 300 300'%3E%3Cpath d='M267 30.35H33A26.31 26.31 0 0 0 7 56.93V243a26.33 26.33 0 0 0 26 26.61h234A26.33 26.33 0 0 0 293 243V56.93a26.31 26.31 0 0 0-26-26.58ZM267 243h-45.24v-13.6c0-4.28-2.57-7.71-5.84-7.71h-52.53c-3.21 0-5.83 3.41-5.83 7.71V243H33.08V56.93H267Z' fill='%2307213c'/%3E%3Cpath d='M115.44 187.13c12.52 0 22.39-2.93 31.22-11L133 159.62a18.63 18.63 0 0 1-15.34 6.44c-10.81 0-18.76-9.88-18.76-22.17 0-12 7.72-22.17 19.48-22.17 6.43 0 11.11 2.58 15.76 7.1l13-16.84a46.13 46.13 0 0 0-31-11.43c-25.73 0-42.62 19.15-42.62 43.25 0 25.56 17.2 43.33 41.92 43.33ZM194.76 187.13c12.52 0 22.4-2.93 31.22-11l-13.65-16.54a18.61 18.61 0 0 1-15.33 6.47c-10.8 0-18.75-9.88-18.75-22.17 0-12 7.72-22.17 19.46-22.17 6.5 0 11.13 2.58 15.77 7.1l13-16.84a46.3 46.3 0 0 0-31-11.29c-25.58 0-42.46 19.17-42.46 43.26-.13 25.41 16.98 43.18 41.74 43.18Z' fill='%2307213c'/%3E%3C/svg%3E");background-repeat:no-repeat}.frc-captcha .frc-container{align-items:center;border:1px solid #f2f2f2;display:flex;height:35px;padding:0 7px}.frc-captcha .frc-icon{fill:#0a2540;stroke:#0a2540;margin-right:5px;width:20px}.frc-captcha .frc-content{font-size:12px;line-height:100%;position:relative;top:2px;width:65%}.frc-captcha .frc-progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#eee;border:none;color:#0d4df1;height:4px;margin:3px 0;transition:all .5s linear;width:100%}.frc-captcha .frc-progress::-webkit-progress-bar{background:#ededed}.frc-captcha .frc-progress::-webkit-progress-value{background:#0d4df1}.frc-captcha .frc-progress::-moz-progress-bar{background:#0d4df1}.frc-captcha .frc-banner{bottom:10px;font-size:10px;position:absolute;right:7px}.frc-captcha .frc-banner a{display:block;height:20px;overflow:hidden;width:72px}@media (max-width:640px){.btn-medium.small-down-icon-center{background-position:50%!important;background-size:20px 20px;color:transparent;padding-left:0!important;text-indent:-9999px;width:40px}.small-down-bg-white{background-color:#fff!important}}.symbol-classcentral-navy.symbol-medium{height:29px}.icon-dollar-solid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cpath d='M14 28A14 14 0 1 0 0 14a14 14 0 0 0 14 14Zm1.479-4h-2.535v-2.482A7.393 7.393 0 0 1 9 19.767l1.69-2.482a5.466 5.466 0 0 0 3.1 1.313c1.126 0 1.549-.438 1.549-1.313 0-.77-.948-1.275-2.076-1.876-1.656-.882-3.7-1.971-3.7-4.4a4.274 4.274 0 0 1 3.522-4.525V4h2.535v2.482A5.013 5.013 0 0 1 19 8.38l-1.972 2.335a3.7 3.7 0 0 0-2.394-1.168c-.986 0-1.409.292-1.409 1.168 0 .686.885 1.126 1.962 1.661C16.861 13.208 19 14.27 19 16.847a4.4 4.4 0 0 1-3.521 4.671Z' fill='%2339d1a6' fill-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-pencil-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M13.608 2.488 11.505.382a1.33 1.33 0 0 0-1.866 0L.9 9.126a.6.6 0 0 0-.162.31l-.727 3.852a.6.6 0 0 0 .16.534.611.611 0 0 0 .421.178.637.637 0 0 0 .108 0l3.878-.715a.6.6 0 0 0 .312-.163l8.73-8.758a1.3 1.3 0 0 0 .38-.942 1.335 1.335 0 0 0-.392-.934Zm-8.863 9.076L2.437 9.252l6.3-6.3 2.306 2.309Zm-2.958-1.287 1.929 1.935-2.38.438Zm10.992-6.756-.9.9-2.304-2.315.89-.894a.14.14 0 0 1 .151-.031.147.147 0 0 1 .044.031l2.1 2.106a.157.157 0 0 1 .045.1.159.159 0 0 1-.026.103Z' fill='%2306213D'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-pencil-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M13.608 2.488 11.505.382a1.33 1.33 0 0 0-1.866 0L.9 9.126a.6.6 0 0 0-.162.31l-.727 3.852a.6.6 0 0 0 .16.534.611.611 0 0 0 .421.178.637.637 0 0 0 .108 0l3.878-.715a.6.6 0 0 0 .312-.163l8.73-8.758a1.3 1.3 0 0 0 .38-.942 1.335 1.335 0 0 0-.392-.934Zm-8.863 9.076L2.437 9.252l6.3-6.3 2.306 2.309Zm-2.958-1.287 1.929 1.935-2.38.438Zm10.992-6.756-.9.9-2.304-2.315.89-.894a.14.14 0 0 1 .151-.031.147.147 0 0 1 .044.031l2.1 2.106a.157.157 0 0 1 .045.1.159.159 0 0 1-.026.103Z' fill='%23fff'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-pencil-blue{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M13.608 2.488 11.505.382a1.33 1.33 0 0 0-1.866 0L.9 9.126a.6.6 0 0 0-.162.31l-.727 3.852a.6.6 0 0 0 .16.534.611.611 0 0 0 .421.178.637.637 0 0 0 .108 0l3.878-.715a.6.6 0 0 0 .312-.163l8.73-8.758a1.3 1.3 0 0 0 .38-.942 1.335 1.335 0 0 0-.392-.934Zm-8.863 9.076L2.437 9.252l6.3-6.3 2.306 2.309Zm-2.958-1.287 1.929 1.935-2.38.438Zm10.992-6.756-.9.9-2.304-2.315.89-.894a.14.14 0 0 1 .151-.031.147.147 0 0 1 .044.031l2.1 2.106a.157.157 0 0 1 .045.1.159.159 0 0 1-.026.103Z' fill='%230d4df1'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-circle-plus-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M15 29A14 14 0 1 0 1 15a14 14 0 0 0 14 14Zm-1-7v-5H9v-3h5V9h3v5h5v3h-5v5Z' fill='%2306213D' fill-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-circle-plus-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M15 29A14 14 0 1 0 1 15a14 14 0 0 0 14 14Zm-1-7v-5H9v-3h5V9h3v5h5v3h-5v5Z' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-youtube-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M25.939 5.585a3.506 3.506 0 0 1 2.475 2.476A36.631 36.631 0 0 1 29 14.8a36.408 36.408 0 0 1-.586 6.739 3.506 3.506 0 0 1-2.475 2.475c-2.183.586-10.939.586-10.939.586s-8.756 0-10.94-.586a3.506 3.506 0 0 1-2.475-2.475A36.412 36.412 0 0 1 1 14.8a36.412 36.412 0 0 1 .585-6.74 3.506 3.506 0 0 1 2.476-2.475C6.244 5 15 5 15 5s8.756 0 10.939.585Zm-6.467 9.216L12.197 19v-8.4Z' fill='%230a2540' fill-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat}.icon-schedule-charcoal{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M29.57 9.142H.43V.429h29.14Zm-27.14-2h25.14V2.429H2.43ZM29.57 19.356H5.727v-8.712H29.57Zm-21.844-2H27.57v-4.712H7.726ZM29.57 29.57H8.904v-8.712h20.668Zm-18.667-2h16.668v-4.712H10.903Z' fill='%2310223d'/%3E%3C/svg%3E");background-repeat:no-repeat}.bg-gray-xxlight{background-color:#f7f7f7}.border-gray-light{border-color:#ededed!important}.icon-left-small.btn-xsmall{background-position:left 6px center;padding-left:23px}.btn-gradient{background:linear-gradient(90deg,var(--gradient-one) 1.45%,var(--gradient-two) 57.48%,var(--gradient-three) 88.28%);color:#0a2540;display:inline-block;padding:10px 30px}.animate-collapse{animation:collapse .3s cubic-bezier(.45,0,.55,1);max-height:0}.animate-collapse,.animate-expand{backface-visibility:hidden;overflow:hidden;will-change:max-height margin}.animate-expand{animation:expand .3s cubic-bezier(.45,0,.55,1);max-height:500px}.border-collapse{margin:-1px 0}.cover{object-fit:cover}@keyframes collapse{0%{max-height:500px}to{max-height:0}}@keyframes expand{0%{max-height:0}to{max-height:500px}}@media only screen and (max-width:640px){.small-margin-bottom-small{margin-bottom:15px!important}}@media only screen and (min-width:641px){.medium-up-padding-horz-large{padding-left:30px!important;padding-right:30px!important}.medium-up-padding-vert-medium{padding-bottom:20px!important;padding-top:20px!important}.medium-up-padding-bottom-xlarge{padding-bottom:40px!important}.medium-up-margin-bottom-none{margin-bottom:0!important}.medium-up-margin-top-medium{margin-top:20px!important}}.ar-2-1{aspect-ratio:auto 2/1}.btn-gradient-navy-flip{background:linear-gradient(90deg,rgba(13,36,112,.3) 1.45%,rgba(13,36,112,.3) 57.48%,#0d2470 88.28%)}.btn-gradient-navy,.btn-gradient-navy-flip{color:#0a2540;display:inline-block;padding:10px 30px}.btn-gradient-navy{background:linear-gradient(90deg,#0d2470 1.45%,rgba(13,36,112,.3) 57.48%,rgba(13,36,112,0) 88.28%)}.btn-gradient-navy.btn-small{padding:5px 20px}.btn-gradient-blue{background:linear-gradient(90deg,#7395ff 1.45%,rgba(115,149,255,.3) 57.48%,rgba(198,212,255,0) 88.28%)}.btn-gradient-blue,.btn-gradient-purple{color:#0a2540;display:inline-block;padding:10px 30px}.btn-gradient-purple{background:linear-gradient(90deg,#b3b1ff 1.45%,rgba(179,177,255,.3) 57.48%,rgba(179,177,255,0) 88.28%)}.btn-gradient-orange{background:linear-gradient(90deg,#ffa67e 1.45%,rgba(255,166,126,.3) 57.48%,rgba(255,166,126,0) 88.28%);color:#0a2540;display:inline-block;padding:10px 30px}#home-study-groups{background:linear-gradient(136.79deg,#d8ebff 2.06%,#ecf5ff 97.86%);overflow:hidden}@media (min-width:769px){#home-study-groups.decor-grid-line:before{border-color:#bfdfff;height:300%;right:80%;top:0;transform:rotate(-55deg);transform-origin:top}}#home-study-groups .cmpt-sg-icon-col{width:30px}#home-courses{background:linear-gradient(136.79deg,#fff4ea 2.06%,#fff7ee 97.86%)}#home-courses .scale-on-hover:hover{z-index:10}#home-stats{background:linear-gradient(.324turn,#2b56d8 1.02%,#10329d 93.25%);overflow:hidden}#home-stats strong.head-1{font-size:90px}@media (min-width:769px) and (max-width:1024px){#home-stats .width-page{padding-left:30px!important;padding-right:30px!important}}@media (min-width:1025px){#home-stats strong.head-1{font-size:120px}#home-stats .xlarge-up-head-2{font-size:28px;font-weight:700;line-height:105%}}@media (min-width:769px){#home-stats .large-up-nowrap.width-page.width-centered:after{border-left:2px dashed rgba(208,236,253,.2);content:" ";display:block;height:100%;height:140%;left:30px;position:absolute;top:-20%;width:2px}#home-stats aside:before{background:linear-gradient(303.36deg,#2e5ceb -33.75%,#012aa9 75.19%);height:180%;left:0;top:-40%;width:300%;z-index:0}#home-stats aside:after,#home-stats aside:before{content:" ";display:block;position:absolute;transform:rotate(10deg)}#home-stats aside:after{border-left:2px dashed rgba(208,236,253,.2);height:100%;height:140%;left:40px;top:-20%;width:2px}#home-stats aside li .target-yellow:after{top:-12px;transform:rotate(10deg)}#home-stats aside li:first-child{border-bottom:2px dashed rgba(208,236,253,.2);margin-left:62px}#home-stats aside li:first-child .target-yellow:after{left:-12px}#home-stats aside li:nth-child(2){border-bottom:2px dashed rgba(208,236,253,.2);margin-left:28px}#home-stats aside li:nth-child(2) .target-yellow:after{left:-16px}#home-stats aside li:nth-child(3) .target-yellow:after{left:-28px}}#home-stats .target-yellow:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='46' height='51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 51V0h2v51H0ZM29.5 40C37.508 40 44 33.508 44 25.5S37.508 11 29.5 11 15 17.492 15 25.5 21.492 40 29.5 40Zm0 2C38.613 42 46 34.613 46 25.5S38.613 9 29.5 9 13 16.387 13 25.5 20.387 42 29.5 42Z' fill='%23FFB72F'/%3E%3Ccircle cx='29.5' cy='25.5' r='6.5' fill='%23FFB72F'/%3E%3C/svg%3E");background-repeat:no-repeat;content:" ";display:block;height:50px;left:-20px;position:absolute;top:-10px;width:50px}.hover-bg-purple-light:focus,.hover-bg-purple-light:hover{background-color:rgba(180,186,255,.5)}.decor-grid-line:before{border-left:2px dashed rgba(208,236,253,.2);content:" ";display:block;position:absolute;width:2px}#home-collections{background:linear-gradient(136.79deg,#f3fffb 2.06%,#f1ffff 97.86%);overflow:hidden}@media (min-width:769px){#home-collections.decor-grid-line:before{border-color:#beeef0;height:300%;left:80%;top:0;transform:rotate(55deg);transform-origin:top}}#home-discover{background:linear-gradient(136.79deg,#f6f2ff 2.06%,#eef8ff 97.86%)}@media (min-width:769px){#home-discover .decor-grid-line:before{border-color:#e1d7ff;height:104%;left:0;top:-2%}#home-report-recent{margin:0 -20px}}@media (max-width:640px){.small-down-padding-vert-xxsmall{padding-bottom:5px!important;padding-top:5px!important}.small-down-text-1{font-size:18px;font-weight:400;line-height:140%}}@media (min-width:481px){.small-up-margin-right-xsmall{margin-right:10px!important}.small-up-padding-horz-large{padding-left:30px!important;padding-right:30px!important}}@media (max-width:768px){.medium-only-hidden{display:none!important}.large-down-width-2-3{max-width:66.66667%;min-height:1px;min-width:66.66667%}}@media (min-width:641px){.medium-up-text-left{text-align:left!important}.medium-up-padding-left-large{padding-left:30px!important}.medium-up-margin-horz-large{margin-left:30px!important;margin-right:30px!important}.medium-up-margin-top-xlarge{margin-top:40px!important}.medium-up-margin-vert-xxsmall{margin-bottom:5px!important;margin-top:5px!important}}@media (min-width:769px){.large-up-width-100{max-width:100%;min-height:1px;min-width:100%}.large-up-width-2-3{max-width:66.66666667%;min-height:1px;min-width:66.66666667%}.large-up-width-5-16{max-width:31.25%;min-height:1px;min-width:31.25%}.large-up-width-6-16{max-width:37.5%;min-height:1px;min-width:37.5%}.large-up-width-3-7{max-width:42.9%;min-height:1px;min-width:42.9%}.large-up-width-2-7{max-width:28.6%;min-height:1px;min-width:28.6%}.large-up-margin-bottom-xxlarge{margin-bottom:50px!important}.large-up-margin-bottom-large{margin-bottom:30px!important}.large-up-padding-right-medium{padding-right:20px!important}.large-up-width-1-5{max-width:20%;min-height:1px;min-width:20%}.large-up-padding-left-medium{padding-left:20px!important}.large-up-padding-horz-small{padding-left:15px!important;padding-right:15px!important}.large-up-padding-horz-xxlarge{padding-left:50px!important;padding-right:50px!important}.large-up-padding-right-xxlarge{padding-right:50px!important}}@media (min-width:1025px){.xlarge-up-width-1-4{max-width:25%;min-height:1px;min-width:25%}}.radius-large{border-radius:15px}.classroom-courses-grid{grid-column-gap:10px;box-sizing:border-box;display:grid;grid-template-columns:260px;max-width:1300px;overflow-x:auto;overflow-y:hidden;padding:0 20px}.classroom-courses-grid.items-2{grid-template-columns:repeat(2,260px)}.classroom-courses-grid.items-3{grid-template-columns:repeat(3,260px)}.classroom-course-poster{background-position:50%;background-size:cover;box-shadow:0 2px 4px rgba(7,33,60,.3)}.classroom-course-progress{-webkit-appearance:none;background-color:hsla(0,0%,100%,.2);border:0;border-radius:3px;bottom:6px;display:block;height:6px;left:6px;right:6px;width:calc(100% - 12px)}.classroom-course-progress::-webkit-progress-bar{background-color:hsla(0,0%,100%,.2)}.classroom-course-progress::-webkit-progress-value{background:#f45b5a;border-radius:3px}.classroom-course-progress::-moz-progress-bar{background:#f45b5a;border-radius:3px}.classroom-course-sequence{background-color:rgba(237,238,241,.95);box-shadow:0 2px 4px rgba(7,33,60,.35);right:10px;top:10px}.classroom-course-play{background-color:#4c46ec;border-radius:60px;box-shadow:0 2px 4px rgba(7,33,60,.5);height:60px;left:50%;top:50%;transform:translate(-50%,-50%);width:60px}@media only screen and (min-width:360px){.classroom-courses-grid{grid-column-gap:20px;grid-template-columns:280px}.classroom-courses-grid.items-2{grid-template-columns:repeat(2,280px)}.classroom-courses-grid.items-3{grid-template-columns:repeat(3,280px)}}@media only screen and (min-width:540px){.classroom-courses-grid{grid-template-columns:320px}.classroom-courses-grid.items-2{grid-template-columns:repeat(2,320px)}.classroom-courses-grid.items-3{grid-template-columns:repeat(3,320px)}}@media only screen and (min-width:625px){.classroom-courses-grid{grid-template-columns:340px}.classroom-courses-grid.items-2{grid-template-columns:repeat(2,340px)}.classroom-courses-grid.items-3{grid-template-columns:repeat(3,340px)}}@media only screen and (min-width:720px){.classroom-courses-grid{grid-template-columns:370px}.classroom-courses-grid.items-2{grid-template-columns:repeat(2,370px)}.classroom-courses-grid.items-3{grid-template-columns:repeat(3,370px)}}@media only screen and (min-width:1025px){.classroom-courses-grid{padding:0 50px}}@media only screen and (min-width:1110px){.classroom-courses-grid,.classroom-courses-grid.items-2,.classroom-courses-grid.items-3{grid-column-gap:30px;grid-template-columns:repeat(3,1fr);margin:0 auto}}</style>
<script>
user_logged_in = 0;
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C254RZPQ1X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
const additionalConfig = {};
gtag('config', 'G-C254RZPQ1X', additionalConfig);
</script>
<!-- Including google analytics. The parameter ganalytics_id must be set in parameters.ini -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-27280844-1', 'auto');
ga('create', 'UA-27280844-1', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
function recordOutboundLink(link, initiative, coursename, stream) {
try {
ga('send','event', 'Outbound Clicks - Course from Initiative' , initiative, coursename );
ga('send','event', 'Outbound Clicks - Course from Stream' , stream, coursename );
window.open(link);
}catch(err){}
}
function recordOutboundLinkWithoutRedirect( initiative, coursename, stream) {
try {
ga('send','event', 'Outbound Clicks - Course from Initiative' , initiative, coursename );
ga('send','event', 'Outbound Clicks - Course from Stream' , stream, coursename );
}catch(err){}
}
function recordInboundLink(link, initiative, coursename, section) {
try {
ga('send','event', 'Inbound Clicks - Course from Initiative' , initiative, coursename );
ga('send','event', 'Inbound Clicks - Course from Section' , section, coursename );
}catch(err){}
}
function recordTaglineClicks(link, initiative) {
try {
ga('send','event', 'Tagline Clicks' , initiative );
window.open(link);
}catch(err){}
}
</script>
<script>
// init CC Analytics
window.CC = { Class: {} };
if (document && document.cookie) {
document.cookie = "sessionId=768de53f2a36dd02f7f9962241; path=/; samesite=lax";
}
</script>
<script type="text/javascript" async src="//static.getclicky.com/js"></script></head>
<body id="page-home" class>
<div class="contain-page ">
<header data-cc-header="nosearch" class="z-top relative">
<div class="relative bg-white cc-header border-bottom border-gray-light">
<nav class="cmpt-nav row nowrap vert-align-middle absolute width-100 padding-horz-medium border-box">
<a class="block medium-up-margin-right-large cmpt-nav-logo" data-track-click="nav_click" data-track-props="{ " type": "homepage", "title": "logo" }" data-track-ga="{" category": "nav_click", "action": "label":"top"}" href="/">
<i class="symbol-classcentral-navy symbol-medium hidden large-up-block"></i>
<i class="relative symbol-classcentral-navy symbol-small block large-up-hidden"></i>
<span class="off-page">Class Central</span>
</a>
<div data-name="MAIN_NAV_TRIGGER_CONTAINER" style="display: flex; align-items: center; height: 100%;" class="margin-right-small large-up-margin-right-medium">
<button aria-label="Site Menu" class="block large-up-hidden" data-name="MAIN_NAV_TRIGGER">
<i class="icon-medium icon-menu-charcoal"></i>
</button>
<button data-name="LARGE_UP_MAIN_NAV_TRIGGER" class="hidden weight-semi large-up-block text-1 color-charcoal padding-right-small" type="button">
पाठ्यक्रम
</button>
<nav class="main-nav-dropdown js-main-nav-dropdown">
<div class="main-nav-dropdown__index">
<div class="main-nav-dropdown__header large-up-hidden">
<h2 class="main-nav-dropdown__header-brand icon-lettermark-charcoal">Class Central</h2>
<button aria-label="Close Site Menu" data-name="MAIN_NAV_CLOSE" class="main-nav-dropdown__close-button">
<i class="icon-x-charcoal main-nav-dropdown__close-button-icon"></i>
</button>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/rankings" data-track-click="nav_click" data-track-props="{" type":"Notable","title":"Rankings"}" data-track-ga="{" category":"nav_click","action":"notable","label":"Rankings"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"rankings"}">
<span>Rankings</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/collections" data-track-click="nav_click" data-track-props="{" type":"Notable","title":"Collections"}" data-track-ga="{" category":"nav_click","action":"notable","label":"Collections"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"collections"}">
<span>Collections</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
</ul>
</section>
<section class="main-nav-dropdown__section--with-header">
<div class="main-nav-dropdown__section-header">
<h3 class="main-nav-dropdown__section-heading">Subjects</h3>
<a class="main-nav-dropdown__section-button large-up-hidden" href="/subjects" data-track-ga="{" category":"nav_click","action":"subject","label":"view all"}">View all</a>
</div>
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/cs" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Computer Science"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Computer data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-cs"}">
<span>Computer Science</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/health" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Health & Medicine"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Health data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-health"}">
<span>Health & Medicine</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/maths" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Mathematics"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Mathematics"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-maths"}">
<span>Mathematics</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/business" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Business"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Business"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-business"}">
<span>Business</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/humanities" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Humanities"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Humanities"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-humanities"}">
<span>Humanities</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/engineering" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Engineering"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Engineering"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-engineering"}">
<span>Engineering</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/science" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Science"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Science"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-science"}">
<span>Science</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/education" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Education & Teaching"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Education data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-education"}">
<span>Education & Teaching</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/social-sciences" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Social Sciences"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Social data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-social-sciences"}">
<span>Social Sciences</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/art-and-design" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Art & Design"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Art data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-art-and-design"}">
<span>Art & Design</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/data-science" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Data Science"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Data data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-data-science"}">
<span>Data Science</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/programming-and-software-development" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Programming"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Programming"}" data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-programming-and-software-development"}">
<span>Programming</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/personal-development" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Personal Development"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Personal data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-personal-development"}">
<span>Personal Development</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/infosec" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Information Security (InfoSec)"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Information data-name="NAV_SUBSECTION_PARENT" data-detail="{" childListId":"subject-infosec"}">
<span>Information Security (InfoSec)</span>
<span class="main-nav-dropdown__item-icon icon-chevron-right-charcoal icon-small"></span>
</a>
</li>
</ul>
<a data-track-click="nav_click" data-track-props="{" type":"Subject","title":"View all Subjects"}" data-track-ga="{" category":"nav_click","action":"subject","label":"view subjects"}" href="/subjects" class="text-2 hover-no-underline weight-semi margin-vert-xsmall padding-left-medium padding-right-medium hidden large-up-block">View all Subjects</a>
</section>
<section class="main-nav-dropdown__section large-up-hidden">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/universities" data-track-click="nav_click" data-track-props="{" type":"University","title":"Universities"}" data-track-ga="{" category":"nav_click","action":"university","label":"Universities"}">
<span class="weight-semi">Universities</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/report/" data-track-ga="{" category":"nav_click","action":"news","label":"mobile"}">
<span class="block symbol-report" style="height: 18px;">प्रतिवेदन</span>
</a>
</li>
</ul>
</section>
<p class="small-down-hidden text-2 padding-left-medium padding-right-medium padding-vert-xxsmall">
Courses from <a data-track-ga="{" category":"nav_click","action":"university","label":"1000+ universities"}" data-track-click="nav_click" data-track-props="{" type": "University", "title": "1000+ href="/universities">1000+ universities</a>
</p>
</div>
<div class="main-nav-dropdown__subsections">
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="rankings" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Rankings</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="/collection/top-free-online-courses" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Best of All Time"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Best>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fbest-courses%2Fmini-banner-best-of-all-time.png?auto=format&h=420&ixlib=php-3.3.1&s=11c7448eb8908a8cc785e26ec27de650" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fbest-courses%2Fmini-banner-best-of-all-time.png?auto=format&h=420&ixlib=php-3.3.1&s=11c7448eb8908a8cc785e26ec27de650" alt="Best of All Time">
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="https://www.classcentral.com/report/most-popular-online-courses/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Most Popular of All Time"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Most>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fbest-courses%2Fmini-banner-most-popular-of-all-time.png?auto=format&h=420&ixlib=php-3.3.1&s=8ddc221d6528da20924c85c064e17572" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fbest-courses%2Fmini-banner-most-popular-of-all-time.png?auto=format&h=420&ixlib=php-3.3.1&s=8ddc221d6528da20924c85c064e17572" alt="Most Popular of All Time">
</a>
</li>
</ul>
</section>
<section class="main-nav-dropdown__section--with-header">
<div class="main-nav-dropdown__section-header">
<h3 class="main-nav-dropdown__section-heading">Best Courses</h3>
</div>
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/collection/top-free-online-courses" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Best of All Time"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Best>
<span>Best of All Time</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="https://www.classcentral.com/report/best-free-online-courses-2022/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Best of the Year 2022"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Best>
<span>Best of the Year 2022</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="https://www.classcentral.com/report/best-free-online-courses-2021/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Best of the Year 2021"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Best>
<span>Best of the Year 2021</span>
</a>
</li>
</ul>
</section>
<section class="main-nav-dropdown__section--with-header">
<div class="main-nav-dropdown__section-header">
<h3 class="main-nav-dropdown__section-heading">Most Popular Courses</h3>
</div>
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="https://www.classcentral.com/report/most-popular-online-courses/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Most Popular of All Time"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Most>
<span>Most Popular of All Time</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="https://www.classcentral.com/report/most-popular-courses-2022/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Most Popular of the Year 2022"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Most>
<span>Most Popular of the Year 2022</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="https://www.classcentral.com/report/100-most-popular-online-courses-2021/" data-track-click="nav_click" data-track-props="{" type":"rankings","title":"Most Popular of the Year 2021"}" data-track-ga="{" category":"nav_click","action":"rankings","label":"Most>
<span>Most Popular of the Year 2021</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="collections" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Collections</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="/collection/ivy-league-moocs" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Ivy League Courses"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Ivy>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-ivy-league-moocs-social.jpg?auto=format&h=420&ixlib=php-3.3.1&s=c49b305f32e1e971696b9852e3971c6b" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-ivy-league-moocs-social.jpg?auto=format&h=420&ixlib=php-3.3.1&s=c49b305f32e1e971696b9852e3971c6b" alt="Ivy League Courses">
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="https://www.classcentral.com/report/coursera-free-online-courses/" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Free Coursera Courses"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Free>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Flogos%2Fproviders%2Fcoursera-trn-sq.png?auto=format&cs=strip&fit=&h=50&ixlib=php-3.3.1&w=50&s=25870ffbba482c2c8dca6ab7233fa851" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Flogos%2Fproviders%2Fcoursera-trn-sq.png?auto=format&cs=strip&fit=&h=50&ixlib=php-3.3.1&w=50&s=25870ffbba482c2c8dca6ab7233fa851" alt="Free Coursera Courses">
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="https://www.classcentral.com/report/free-certificates/" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Free Certificates"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Free>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-free-certificates.png?auto=format&h=420&ixlib=php-3.3.1&s=bc50a602c38dbf30802649312c6a4474" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-free-certificates.png?auto=format&h=420&ixlib=php-3.3.1&s=bc50a602c38dbf30802649312c6a4474" alt="Free Certificates">
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--with-image" href="https://www.classcentral.com/report/free-google-certifications/" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Free Google Certifications"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Free>
<img class="width-100 radius-small" src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-google-certs.png?auto=format&h=420&ixlib=php-3.3.1&s=ac4c48d612e7961d7335e87451e52ac4" data-src="https://ccweb.imgix.net/https%3A%2F%2Fwww.classcentral.com%2Fimages%2Fcollections%2Fcollection-google-certs.png?auto=format&h=420&ixlib=php-3.3.1&s=ac4c48d612e7961d7335e87451e52ac4" alt="Free Google Certifications">
</a>
</li>
</ul>
</section>
<section class="main-nav-dropdown__section--with-header">
<div class="main-nav-dropdown__section-header">
<h3 class="main-nav-dropdown__section-heading">Monthly Course Reports</h3>
</div>
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/starting-this-month" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Starting this Month"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Starting>
<span>Starting this Month</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/new-online-courses" data-track-click="nav_click" data-track-props="{" type":"collections","title":"New Online Courses"}" data-track-ga="{" category":"nav_click","action":"collections","label":"New>
<span>New Online Courses</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/most-popular-courses" data-track-click="nav_click" data-track-props="{" type":"collections","title":"Most Popular"}" data-track-ga="{" category":"nav_click","action":"collections","label":"Most>
<span>Most Popular</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-cs" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Computer Science</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/ai" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Artificial Intelligence"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Artificial>
<span>Artificial Intelligence</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/algorithms-and-data-structures" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Algorithms and Data Structures"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Algorithms>
<span>Algorithms and Data Structures</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/internet-of-things" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Internet of Things"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Internet>
<span>Internet of Things</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/information-technology" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Information Technology"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Information>
<span>Information Technology</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/computer-networking" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Computer Networking"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Computer>
<span>Computer Networking</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/machine-learning" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Machine Learning"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Machine>
<span>Machine Learning</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/devops" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"DevOps"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"DevOps"}">
<span>DevOps</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/deep-learning" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Deep Learning"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Deep>
<span>Deep Learning</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/cryptography" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Cryptography"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Cryptography"}">
<span>Cryptography</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/quantum-computing" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Quantum Computing"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Quantum>
<span>Quantum Computing</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/hci" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Human-Computer Interaction (HCI)"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Human-Computer>
<span>Human-Computer Interaction (HCI)</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/distributed-systems" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Distributed Systems"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Distributed>
<span>Distributed Systems</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/blockchain" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Blockchain Development"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Blockchain>
<span>Blockchain Development</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/operating-systems" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Operating Systems"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Operating>
<span>Operating Systems</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/computer-graphics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Computer Graphics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Computer>
<span>Computer Graphics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--highlighted" href="/subject/cs" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Computer Science"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Computer>
<span>View all Computer Science</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-health" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Health & Medicine</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/nutrition-and-wellness" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Nutrition & Wellness"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Nutrition>
<span>Nutrition & Wellness</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/disease-and-disorders" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Disease & Disorders"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Disease>
<span>Disease & Disorders</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/public-health" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Public Health"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Public>
<span>Public Health</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/health-care" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Health Care"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Health>
<span>Health Care</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/nursing" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Nursing"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Nursing"}">
<span>Nursing</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/anatomy" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Anatomy"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Anatomy"}">
<span>Anatomy</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/veterinary-science" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Veterinary Science"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Veterinary>
<span>Veterinary Science</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/cme" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Continuing Medical Education (CME)"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Continuing>
<span>Continuing Medical Education (CME)</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--highlighted" href="/subject/health" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Health & Medicine"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Health>
<span>View all Health & Medicine</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-maths" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Mathematics</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/statistics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Statistics & Probability"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Statistics>
<span>Statistics & Probability</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/foundations-of-mathematics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Foundations of Mathematics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Foundations>
<span>Foundations of Mathematics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/calculus" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Calculus"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Calculus"}">
<span>Calculus</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/discrete-mathematics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Discrete Mathematics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Discrete>
<span>Discrete Mathematics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/trigonometry" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Trigonometry"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Trigonometry"}">
<span>Trigonometry</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/geometry" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Geometry"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Geometry"}">
<span>Geometry</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/algebra" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Algebra"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Algebra"}">
<span>Algebra</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/precalculus" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Precalculus"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Precalculus"}">
<span>Precalculus</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/number-theory" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Number Theory"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Number>
<span>Number Theory</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/combinatorics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Combinatorics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Combinatorics"}">
<span>Combinatorics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/mathematical-logic" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Mathematical logic"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Mathematical>
<span>Mathematical logic</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/linear-programming" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Linear Programming"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Linear>
<span>Linear Programming</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--highlighted" href="/subject/maths" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Mathematics"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Mathematics"}">
<span>View all Mathematics</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-business" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Business</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/management-and-leadership" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Management & Leadership"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Management>
<span>Management & Leadership</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/finance" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Finance"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Finance"}">
<span>Finance</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/entrepreneurship" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Entrepreneurship"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Entrepreneurship"}">
<span>Entrepreneurship</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/marketing" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Marketing"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Marketing"}">
<span>Marketing</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/strategic-management" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Strategic Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Strategic>
<span>Strategic Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/industry-specific" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Industry Specific"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Industry>
<span>Industry Specific</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/business-intelligence" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Business Intelligence"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Business>
<span>Business Intelligence</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/accounting" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Accounting"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Accounting"}">
<span>Accounting</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/human-resources" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Human Resources"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Human>
<span>Human Resources</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/project-management" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Project Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Project>
<span>Project Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/sales" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Sales"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Sales"}">
<span>Sales</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/design-thinking" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Design Thinking"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Design>
<span>Design Thinking</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/business-software" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Business Software"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Business>
<span>Business Software</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/risk-management" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Risk Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Risk>
<span>Risk Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/csr" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Corporate Social Responsibility"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Corporate>
<span>Corporate Social Responsibility</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/customer-service" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Customer Service"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Customer>
<span>Customer Service</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/nonprofit" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Nonprofit Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Nonprofit>
<span>Nonprofit Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/innovation" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Innovation"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Innovation"}">
<span>Innovation</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/operations-management" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Operations Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Operations>
<span>Operations Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--highlighted" href="/subject/business" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Business"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Business"}">
<span>View all Business</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-humanities" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Humanities</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/history" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"History"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"History"}">
<span>History</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/literature" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Literature"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Literature"}">
<span>Literature</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/language-learning" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Language Learning"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Language>
<span>Language Learning</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/grammar-writing" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Grammar & Writing"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Grammar>
<span>Grammar & Writing</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/philosophy" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Philosophy"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Philosophy"}">
<span>Philosophy</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/religion" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Religion"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Religion"}">
<span>Religion</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/esl" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"ESL"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"ESL"}">
<span>ESL</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/culture" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Culture"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Culture"}">
<span>Culture</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/sports" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Sports"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Sports"}">
<span>Sports</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/journalism" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Journalism"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Journalism"}">
<span>Journalism</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/ethics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Ethics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Ethics"}">
<span>Ethics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/linguistics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Linguistics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Linguistics"}">
<span>Linguistics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/food" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Food"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Food"}">
<span>Food</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/library-science" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Library Science"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Library>
<span>Library Science</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/reading" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Reading"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Reading"}">
<span>Reading</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/crisis-management" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Crisis Management"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Crisis>
<span>Crisis Management</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control--highlighted" href="/subject/humanities" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Humanities"}" data-track-ga="{" category":"nav_click","action":"subject","label":"Humanities"}">
<span>View all Humanities</span>
</a>
</li>
</ul>
</section>
</div>
<div class="main-nav-dropdown__subsection js-main-nav-subsection" data-list-id="subject-engineering" hidden>
<div class="main-nav-dropdown__subsection-header large-up-hidden">
<button aria-label="Back to main menu" data-name="MAIN_NAV_SUBSECTION_BACK" class="main-nav-dropdown__subsection-back-button">
<i class="icon-chevron-left-charcoal icon-small"></i>
</button>
<h3 class="main-nav-dropdown__subsection-title">Engineering</h3>
</div>
<section class="main-nav-dropdown__section">
<ul class="list-no-style">
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/electrical-engineering" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Electrical Engineering"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Electrical>
<span>Electrical Engineering</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/mechanical-engineering" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Mechanical Engineering"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Mechanical>
<span>Mechanical Engineering</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/civil-engineering" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Civil Engineering"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Civil>
<span>Civil Engineering</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/robotics" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Robotics"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Robotics"}">
<span>Robotics</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/nanotechnology" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Nanotechnology"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Nanotechnology"}">
<span>Nanotechnology</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/gis" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"GIS"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"GIS"}">
<span>GIS</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/textiles" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Textiles"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Textiles"}">
<span>Textiles</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/manufacturing" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"Manufacturing"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"Manufacturing"}">
<span>Manufacturing</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/bim" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"BIM"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"BIM"}">
<span>BIM</span>
</a>
</li>
<li class="main-nav-dropdown__item">
<a class="main-nav-dropdown__item-control color-charcoal" href="/subject/cad" data-track-click="nav_click" data-track-props="{" type":"Subject","title":"CAD"}" data-track-ga="{" category":"nav_click","action":"subject-child","label":"CAD"}">
<span>CAD</span>