-
Notifications
You must be signed in to change notification settings - Fork 0
/
bellevuecollegehome.html
1539 lines (1297 loc) · 115 KB
/
bellevuecollegehome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta property="og:title" content="Bellevue College, Washington" />
<meta name="description" content="Bellevue College is a leading public institution of higher education in the Pacific Northwest, located in Bellevue, Washington, just outside of Seattle." />
<meta property="og:description" content="Bellevue College is a leading public institution of higher education in the Pacific Northwest, located in Bellevue, Washington, just outside of Seattle." />
<meta name="keywords" content="BC, Bellevue College, bellevue college, community, college, bellevue, classes, colleges, careers, career, degrees, certificates, professional, technical, transfer, distance, education, online, baccalaureate, bachelor's, associate, non-credit, continuing, transfer, undergraduate, technology, business, science, liberal arts, adult, literacy, esl, ell, international, work, jobs, training, institutes, technologies, northwest, puget sound, business, faculty, staff, services, Washington, two-year, school" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="https://www.bellevuecollege.edu/wp-content/themes/mayflower-g4/img/bellevue.ico" />
<meta class="funnelback" name="fb_site_name" content="Bellevue College" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<!--- Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:updated_time" content="2021-02-03T08:26:22-08:00" />
<meta property="og:image" content="https://www.bellevuecollege.edu/bc-og-default.jpg" />
<meta property="og:url" content="https://www.bellevuecollege.edu/" />
<meta property="og:site_name" content="Bellevue College" />
<title>Bellevue College, Washington</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//www.youvisit.com' />
<link rel="alternate" type="application/rss+xml" title="Bellevue College » Feed" href="https://www.bellevuecollege.edu/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.bellevuecollege.edu\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.1.1"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.bellevuecollege.edu/wp-includes/css/dist/block-library/style.min.css?ver=6.1.1' type='text/css' media='all' />
<style id='mayflower-blocks-child-pages-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-course-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-alert-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-button-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-panel-style-inline-css' type='text/css'>
div.wp-block-mayflower-blocks-collapse div.wp-block-mayflower-blocks-panel{margin-bottom:1em}.wp-block-mayflower-blocks-panel .card-body>:last-child{margin-bottom:0}
</style>
<style id='mayflower-blocks-jumbotron-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-lead-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-well-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-row-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-column-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-collapse-style-inline-css' type='text/css'>
</style>
<style id='mayflower-blocks-collapsibles-style-inline-css' type='text/css'>
.wp-block-mayflower-blocks-collapsibles>.accordion-item,.wp-block-mayflower-blocks-collapsibles>.card{margin-bottom:0}.wp-block-mayflower-blocks-collapsibles>.accordion-item>.card-header,.wp-block-mayflower-blocks-collapsibles>.card>.card-header{padding-left:.5em;padding-right:.5em}.wp-block-mayflower-blocks-collapsibles>.accordion-item>.card-header .btn,.wp-block-mayflower-blocks-collapsibles>.card>.card-header .btn{padding-left:.5em;text-align:left;width:100%}.wp-block-mayflower-blocks-collapsibles>.accordion-item>.card-header .btn:after,.wp-block-mayflower-blocks-collapsibles>.card>.card-header .btn:after{-webkit-font-smoothing:antialiased;content:"";float:right;font-family:Font Awesome\ 6 Free;font-style:normal;font-variant:normal;font-weight:light;text-rendering:auto}.wp-block-mayflower-blocks-collapsibles>.accordion-item>.card-header .btn.collapsed:after,.wp-block-mayflower-blocks-collapsibles>.card>.card-header .btn.collapsed:after{content:""}.wp-block-mayflower-blocks-collapsibles .card-body>:last-child{margin-bottom:0}
</style>
<link rel='stylesheet' id='classic-theme-styles-css' href='https://www.bellevuecollege.edu/wp-includes/css/classic-themes.min.css?ver=1' type='text/css' media='all' />
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #fff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--bc-blue: #003D79;--wp--preset--color--bc-silver: #A7A9AC;--wp--preset--color--bc-red: #C4122F;--wp--preset--color--bc-green: #AAB720;--wp--preset--color--bc-dark-blue: #162F57;--wp--preset--color--bc-orange: #E36F1E;--wp--preset--color--bc-gold: #F2C01E;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--regular: 16px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='globals-css' href='https://www.bellevuecollege.edu/g/4/c/g.css?ver=4.3.0' type='text/css' media='screen' />
<link rel='stylesheet' id='parent-style-css' href='https://www.bellevuecollege.edu/wp-content/themes/mayflower-g4/style.css?ver=6.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='mayflower-css' href='https://www.bellevuecollege.edu/wp-content/themes/mayflower-homepage/style.css?ver=3.2-%5BBuild:%2020220203.2%5D' type='text/css' media='all' />
<link rel='stylesheet' id='globals-print-css' href='https://www.bellevuecollege.edu/g/4/c/p.css?ver=4.3.0' type='text/css' media='print' />
<script type='text/javascript' src='https://www.bellevuecollege.edu/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js'></script>
<script type='text/javascript' src='https://www.bellevuecollege.edu/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' id='mhcarousel-script-js-before'>
var carousel_posts = ['Spring Classes Start April 4', 'Access Tutoring Through ASC', 'Access Academic Advising', 'Canvas Workshops', 'Bachelor Degrees at Bellevue College', 'You Are Welcome Here!', 'Stop Asian Hate', 'Sign Up for BC Alerts!', 'Study Abroad', ];
</script>
<script type='text/javascript' src='https://www.bellevuecollege.edu/wp-content/themes/mayflower-homepage/js/mhcarousel.js?ver=3.0.1' id='mhcarousel-script-js'></script>
<link rel="https://api.w.org/" href="https://www.bellevuecollege.edu/wp-json/" /><link rel="alternate" type="application/json" href="https://www.bellevuecollege.edu/wp-json/wp/v2/pages/13070" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.bellevuecollege.edu/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.bellevuecollege.edu/wp-includes/wlwmanifest.xml" />
<link rel="canonical" href="https://www.bellevuecollege.edu/" />
<link rel='shortlink' href='https://www.bellevuecollege.edu/' />
<link rel="alternate" type="application/json+oembed" href="https://www.bellevuecollege.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bellevuecollege.edu%2Fblog%2Fmhcarousel%2Fstudy-abroad%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.bellevuecollege.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bellevuecollege.edu%2Fblog%2Fmhcarousel%2Fstudy-abroad%2F&format=xml" />
<style type="text/css">
#wpadminbar #adminbarsearch {
display: none;
}
</style>
<!-- Analytics are provided through Google Tag Manager -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-N665V3');</script>
<!-- End Google Tag Manager -->
<style type="text/css" id="wp-custom-css">
.page-id-13070 #mfhomepage-content .wp-block-image figure {
margin:0;
width: 100%;
}
.page-id-13070 #mfhomepage-content .wp-block-image {
margin: -1em -1em;
padding:0;
}
.page-id-13070 #mfhomepage-content .wp-block-image img {
margin: 0;
width: 100%;
} </style>
<title>Bellevue College @ Bellevue College</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//www.youvisit.com' />
<link rel="alternate" type="application/rss+xml" title="Bellevue College » Feed" href="https://www.bellevuecollege.edu/feed/" />
<link rel="https://api.w.org/" href="https://www.bellevuecollege.edu/wp-json/" /><link rel="alternate" type="application/json" href="https://www.bellevuecollege.edu/wp-json/wp/v2/pages/13070" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.bellevuecollege.edu/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.bellevuecollege.edu/wp-includes/wlwmanifest.xml" />
<link rel="canonical" href="https://www.bellevuecollege.edu/" />
<link rel='shortlink' href='https://www.bellevuecollege.edu/' />
<link rel="alternate" type="application/json+oembed" href="https://www.bellevuecollege.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bellevuecollege.edu%2Fblog%2Fmhcarousel%2Fstudy-abroad%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.bellevuecollege.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bellevuecollege.edu%2Fblog%2Fmhcarousel%2Fstudy-abroad%2F&format=xml" />
<style type="text/css">
#wpadminbar #adminbarsearch {
display: none;
}
</style>
<style type="text/css" id="wp-custom-css">
.page-id-13070 #mfhomepage-content .wp-block-image figure {
margin:0;
width: 100%;
}
.page-id-13070 #mfhomepage-content .wp-block-image {
margin: -1em -1em;
padding:0;
}
.page-id-13070 #mfhomepage-content .wp-block-image img {
margin: 0;
width: 100%;
} </style>
<!-- parentid= 0--></head>
<body class="home page-template-default page page-id-13070 wp-embed-responsive">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0.49803921568627" /><feFuncG type="table" tableValues="0 0.49803921568627" /><feFuncB type="table" tableValues="0 0.49803921568627" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-red"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 0.27843137254902" /><feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-midnight"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0" /><feFuncG type="table" tableValues="0 0.64705882352941" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-magenta-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.78039215686275 1" /><feFuncG type="table" tableValues="0 0.94901960784314" /><feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-green"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.44705882352941 0.4" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-orange"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.098039215686275 1" /><feFuncG type="table" tableValues="0 0.66274509803922" /><feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N665V3"
height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<ul id="skiplinks" class="container">
<li><a class="text-light" href="#main">Skip to Content</a></li>
</ul>
<header id="top-wrap" class="branded" role="banner">
<div class="container logobar" id="top">
<div class="row align-items-center">
<div class="col-md-7 col-lg-8 col-xl-9 d-none d-md-block">
<a href="https://www.bellevuecollege.edu/" title="Bellevue College Homepage" id="bc-logo"><img src="/g/4/i/bellevuecollege-horiz-wide.svg" class="img-responsive" alt="Bellevue College (with link to home page)" /></a>
</div><!-- .col-md-8 -->
<div id="vertical-logo" class="d-block d-md-none">
<a href="https://www.bellevuecollege.edu/" title="Bellevue College Homepage" id="bc-logo-square"><img src="/g/4/i/placeholder-200.png" class="img-responsive" alt="Bellevue College (with link to home page)" /></a>
</div><!-- .show-sm-->
<div class="col-1 p-0" id="tools-close-icon">
<a tabindex="-1" href="#top-actions">
<i class="fas fa-chevron-left" aria-hidden="true"></i>
<span class="sr-only">Close Tools</span>
</a>
</div>
<div id="college-actions-column" class="col col-md-5 col-lg-4 col-xl-3">
<ul id="college-top-actions" class="nav nav-fill flex-fill d-md-flex">
<li class="nav-item">
<a id="branded-top-actions-register" class="nav-link px-0" href="https://www.bellevuecollege.edu/registration/" class="top-actions">Register</a>
</li>
<li class="nav-item">
<a id="branded-top-actions-services" class="nav-link px-0" href="https://www.bellevuecollege.edu/services/" class="top-actions">Online Services</a>
</li>
<li class="nav-item">
<a id="branded-top-actions-canvas" class="nav-link px-0" href="https://www.bellevuecollege.edu/canvas/" class="top-actions">Canvas</a>
</li>
</ul>
<ul id="college-more-actions" class="nav nav-fill flex-fill d-md-none">
<li class="more-actions nav-item">
<a href="https://www.bellevuecollege.edu/students/" class="top-actions nav-link px-0 btn">Student Tools <i class="fas fa-angle-right" aria-hidden="true"></i></a>
</li>
<li class="more-actions nav-item">
<a href="https://www.bellevuecollege.edu/employees/" class="top-actions nav-link px-0 btn">Employee Tools <i class="fas fa-angle-right" aria-hidden="true"></i></a>
</li>
</ul>
<div id = "bc-searchform">
<form action="https://www.bellevuecollege.edu/search/" method="get" class="form-search">
<div class="input-group mb-2 mb-md-3" role="search">
<input id="college-search-field" type="text" class="form-control" name="txtQuery" autocomplete="off" aria-label="Search" aria-describedby="college-search-submit">
<span style="display: none" id="autocomplete-loading"><i class="fas fa-spinner fa-pulse" aria-hidden="true"></i></span>
<div class="input-group-append">
<button type="submit" class="btn btn-light" id="college-search-submit">Search</button>
</div>
</div>
</form>
</div>
<div class="mob-nav d-md-none">
<ul id="mobile-nav-actions" class="nav nav-pills nav-fill">
<li id="tools-link" class="nav-item">
<a href="#college-tools" class="nav-link btn btn-light mr-1">
<i class="fas fa-wrench" aria-hidden="true"></i> Tools
</a>
</li>
<li id="main-nav-link" class="nav-item">
<a href="#college-navbar" class="nav-link btn btn-light ml-1" aria-expanded="false" aria-controls="main-nav-wrap">
<i class="fas menu-icon" aria-hidden="true"></i> Menu
</a>
</li>
</ul>
</div>
</div>
</div>
<nav id="college-navbar" class="row navbar navbar-dark bg-primary navbar-expand-md" role="navigation">
<ul id="main-menu" class="nav navbar-nav nav-fill flex-fill">
<li class="nav-item" id="nav-top"><a class="nav-link" href="#top">Top ^</a></li>
<li class="nav-item" id="nav-home"><a class="nav-link" href="https://www.bellevuecollege.edu/">Home</a></li>
<li class="nav-item" id="nav-classes"><a class="nav-link" href="https://www.bellevuecollege.edu/classes/">Classes</a></li>
<li class="nav-item" id="nav-programs"><a class="nav-link" href="https://www.bellevuecollege.edu/programs/">Programs of Study</a></li>
<li class="nav-item" id="nav-enrollment"><a class="nav-link" href="https://www.bellevuecollege.edu/studentcentral/">Enrollment</a></li>
<li class="nav-item" id="nav-services"><a class="nav-link" href="https://www.bellevuecollege.edu/resources/">Services</a></li>
<li class="nav-item" id="nav-campuslife"><a class="nav-link" href="https://www.bellevuecollege.edu/campuslife">Campus Life</a></li>
<li class="nav-item" id="nav-about"><a class="nav-link" href="https://www.bellevuecollege.edu/about/">About Us</a></li>
</ul><!-- #main-menu -->
</nav><!-- #main-nav .navbar -->
</div><!-- .container .logobar -->
</header><!-- #top-wrap .branded -->
<h1 class="sr-only" id="main">Welcome to Bellevue College</h1>
<section id="mfhomepage-top-menus" class="container px-lg-0 my-3 my-lg-2 d-flex flex-row">
<div id="mfhomepage-menus-for" class="d-flex flex-fill flex-column flex-lg-row align-items-lg-center">
<h2 class="h6 top-menu-title my-lg-0 text-nowrap pr-2">Menus For</h2>
<div id="menu-menus-for-2" class="mfhomepage-menus-for align-self-center d-flex flex-column flex-lg-row btn-group mfhomepage-menu" role="group"><div class="btn-group " role="group"><a href="#" class="btn btn-outline-dark dropdown-toggle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-parent" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Students <span class="caret"></span></a><div class="dropdown-menu dropdown-menu-right"><a class='dropdown-item' href='https://www.bellevuecollege.edu/welcome/future/'>Prospective Students</a><a class='dropdown-item' href='https://www.bellevuecollege.edu/students/'>Current Students</a><a class='dropdown-item' href='https://www.bellevuecollege.edu/international/'>International Students</a></div></div><a class='btn btn-outline-dark menu-item menu-item-type-custom menu-item-object-custom' href='https://www.bellevuecollege.edu/employees/'>Faculty & Staff</a><a class='btn btn-outline-dark menu-item menu-item-type-custom menu-item-object-custom' href='https://www.bellevuecollege.edu/visitors/'>Visitors & Community</a></div> </div>
<div class="d-flex flex-fill flex-column flex-lg-row">
<div id="mfhomepage-resources" class="d-flex flex-fill flex-column flex-lg-row align-items-lg-center">
<h2 class=" h6 top-menu-title my-lg-0 text-nowrap pr-2">Resources</h2>
<div id="menu-resources" class="mfhomepage-resources align-self-center d-flex flex-column flex-lg-row btn-group mfhomepage-menu" role="group"><div class="btn-group " role="group"><a href="#" class="btn btn-outline-dark dropdown-toggle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-parent" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img src="https://www.bellevuecollege.edu/ctclinklogo.svg" alt="" style="height:1em; margin-right: .25em">ctcLink <span class="caret"></span></a><div class="dropdown-menu dropdown-menu-right"><a class='dropdown-item' href='https://wa080.ctclink.us'>Student Login</a><a class='dropdown-item' href='https://myaccount.ctclink.us/'>Employee Login</a><a class='dropdown-item' href='https://www.bellevuecollege.edu/ctclink/'>Help & Resources</a></div></div><a class='btn btn-outline-dark menu-item menu-item-type-custom menu-item-object-custom' href='https://outlook.com/owa/bellevuecollege.edu'>Email</a></div> </div>
<div id="mfhomepage-contact" class="d-flex flex-column flex-lg-row align-items-lg-center">
<h2 class="top-menu-title sr-only">Our Campus</h2>
<div id="menu-our-campus" class="mfhomepage-contact btn-group w-100 mfhomepage-menu" role="group"><a class='btn btn-outline-dark menu-item menu-item-type-custom menu-item-object-custom' href='https://www.bellevuecollege.edu/contacts/'><i class="fas fa-phone-alt" aria-hidden="true" title="Contact Us"></i><span class="sr-only">Contact Us</span></a><div class="btn-group " role="group"><a href="#" class="btn btn-outline-dark dropdown-toggle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-parent" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fas fa-map-marker-alt" aria-hidden="true" title="Maps and Directions"></i><span class="sr-only">Maps and Directions</span> <span class="caret"></span></a><div class="dropdown-menu dropdown-menu-right"><a class='dropdown-item' href='https://www.bellevuecollege.edu/location/directions/'>Directions</a><a class='dropdown-item' href='https://www.bellevuecollege.edu/location/maps/'>Campus Map</a></div></div></div> </div>
</div>
</section>
<section id="homeslider" class="container-fluid px-0">
<div id="home-carousel-featured-full" class="carousel slide full" data-interval="false" tabindex="-1">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="responsive-bg-img carousel-item active" data-slide-number="0">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2023/02/Spring-registration-2023-Home-page-slider-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2023/02/Spring-registration-2023-Home-page-slider-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2023/02/Spring-registration-2023-Home-page-slider-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2023/02/Spring-registration-2023-Home-page-slider-1680x350.jpg" alt="Spring registration slider image">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/registration/">Spring Classes Start April 4</a></h2>
</div>
<div class="carousel-excerpt">
<p>Register now!</p>
<p class="sr-only">Background Image: Spring registration slider image</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/registration/" class="btn btn-outline-light">More<span class="sr-only"> about Spring Classes Start April 4</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="1">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2021/04/ASC_Tutoring_W22_1680x350_home_slider-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/04/ASC_Tutoring_W22_1680x350_home_slider-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/04/ASC_Tutoring_W22_1680x350_home_slider-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2021/04/ASC_Tutoring_W22_1680x350_home_slider-1680x350.jpg" alt="ASC slider image of student studying">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://bit.ly/30Mk9CQ">Access Tutoring Through ASC</a></h2>
</div>
<div class="carousel-excerpt">
<p>The Academic Success Center offers free tutoring, workshops and specialized help in a number of subjects.</p>
<p class="sr-only">Background Image: ASC slider image of student studying</p>
</div>
<div class="carousel-more">
<a href="https://bit.ly/30Mk9CQ" class="btn btn-outline-light">More<span class="sr-only"> about Access Tutoring Through ASC</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="2">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/Tutor_Student_Alt1_1680x350-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/Tutor_Student_Alt1_1680x350-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/Tutor_Student_Alt1_1680x350-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/Tutor_Student_Alt1_1680x350-1680x350.jpg" alt="Advisors are available.">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/advising/">Access Academic Advising</a></h2>
</div>
<div class="carousel-excerpt">
<p>Achieve your academic goals with help from an academic advisor. Learn more today!</p>
<p class="sr-only">Background Image: Advisors are available.</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/advising/" class="btn btn-outline-light">More<span class="sr-only"> about Access Academic Advising</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="3">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/05/eLearning_workshops_1680x350-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/05/eLearning_workshops_1680x350-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/05/eLearning_workshops_1680x350-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/05/eLearning_workshops_1680x350-1680x350.jpg" alt="eLearning department logo">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/elearning/current/online-student-canvas-workshop/%20">Canvas Workshops</a></h2>
</div>
<div class="carousel-excerpt">
<p>There are online and in-person workshops available for students new to Canvas.</p>
<p class="sr-only">Background Image: eLearning department logo</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/elearning/current/online-student-canvas-workshop/%20" class="btn btn-outline-light">More<span class="sr-only"> about Canvas Workshops</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="4">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2022/11/BMT-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2022/11/BMT-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2022/11/BMT-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2022/11/BMT-1680x350.jpg" alt="slider image showing diplomas">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/business-management/">Bachelor Degrees at Bellevue College</a></h2>
</div>
<div class="carousel-excerpt">
<p>BC offers 14 bachelor degrees that lead to high-demand careers. Business Management & Technology (BMT) is the latest offering!</p>
<p class="sr-only">Background Image: slider image showing diplomas</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/business-management/" class="btn btn-outline-light">More<span class="sr-only"> about Bachelor Degrees at Bellevue College</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="5">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/YouAreWelcomeHere_1680x350-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/YouAreWelcomeHere_1680x350-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/YouAreWelcomeHere_1680x350-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/YouAreWelcomeHere_1680x350-1680x350.jpg" alt="logo showing headline text">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/equal/nondiscrimination/">You Are Welcome Here!</a></h2>
</div>
<div class="carousel-excerpt">
<p>BC welcomes applicants from all backgrounds, including non-English speakers, for our wide variety of academic and community programs.</p>
<p class="sr-only">Background Image: logo showing headline text</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/equal/nondiscrimination/" class="btn btn-outline-light">More<span class="sr-only"> about You Are Welcome Here!</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="6">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2021/04/Stop-Asian-Hate-4-21-FINAL-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/04/Stop-Asian-Hate-4-21-FINAL-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/04/Stop-Asian-Hate-4-21-FINAL-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2021/04/Stop-Asian-Hate-4-21-FINAL-1680x350.jpg" alt="AAPI slider">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/president/2021/03/17/bcs-commitment-to-the-asian-pacific-islander-community/">Stop Asian Hate</a></h2>
</div>
<div class="carousel-excerpt">
<p>BC supports our Asian American Pacific Islander community.</p>
<p class="sr-only">Background Image: AAPI slider</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/president/2021/03/17/bcs-commitment-to-the-asian-pacific-islander-community/" class="btn btn-outline-light">More<span class="sr-only"> about Stop Asian Hate</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="7">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/09/RAVE-1680x350-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/09/RAVE-1680x350-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/09/RAVE-1680x350-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/09/RAVE-1680x350-1680x350.jpg" alt="BC Alerts">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/alerts">Sign Up for BC Alerts!</a></h2>
</div>
<div class="carousel-excerpt">
<p>Get immediate text alerts when classes are canceled, campus is closed, or if there is an emergency.</p>
<p class="sr-only">Background Image: BC Alerts</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/alerts" class="btn btn-outline-light">More<span class="sr-only"> about Sign Up for BC Alerts!</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
<div class="responsive-bg-img carousel-item" data-slide-number="8">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/06/rome_1680x350-475x350.jpg 475w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/06/rome_1680x350-992x350.jpg 992w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/06/rome_1680x350-1680x350.jpg 1680w,"
sizes="(max-width: 475px) 475px,
(max-width: 992px) 992px,
1680px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/06/rome_1680x350-1680x350.jpg" alt="Rome">
<div class="container caption-container p-0">
<div class="carousel-caption">
<div class="carousel-header">
<h2><a href="https://www.bellevuecollege.edu/studyabroad/">Study Abroad</a></h2>
</div>
<div class="carousel-excerpt">
<p>Applications are currently being accepted for upcoming programs in the UK, Japan, Costa Rica, Chile and Australia/New Zealand.</p>
<p class="sr-only">Background Image: Rome</p>
</div>
<div class="carousel-more">
<a href="https://www.bellevuecollege.edu/studyabroad/" class="btn btn-outline-light">More<span class="sr-only"> about Study Abroad</span></a>
</div>
</div><!-- carousel-caption -->
</div>
</div><!-- item -->
</div><!-- carousel-inner -->
<div class="carousel-controls d-flex justify-md-content-start flex-md-row-reverse align-items-start container px-0"> <!-- Carousel list and button -->
<div class="btn-group" role="group">
<button class="btn btn-lg btn-outline-light btn-carousel dropdown-toggle" id="open-slide-list-btn" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <!-- list group icon -->
<i id="list-group-glyph" class="fas fa-list" aria-hidden="true" title="Other featured stories"></i>
<span class="sr-only">Other featured stories</span>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="open-slide-list-btn"> <!-- title list group -->
<a href="#home-carousel-featured-full" class="dropdown-item active" data-slide-to="0">Spring Classes Start April 4</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="1">Access Tutoring Through ASC</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="2">Access Academic Advising</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="3">Canvas Workshops</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="4">Bachelor Degrees at Bellevue College</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="5">You Are Welcome Here!</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="6">Stop Asian Hate</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="7">Sign Up for BC Alerts!</a>
<a href="#home-carousel-featured-full" class="dropdown-item" data-slide-to="8">Study Abroad</a>
</div> <!-- end list-group-col list-group collapse -->
</div> <!-- end list-group list-group-tree list-indicators -->
<!-- Carousel button -->
<a id="mhcarousel-next" class="btn btn-lg btn-outline-light btn-carousel flex-grow-1 flex-md-grow-0" href="#home-carousel-featured-full" role="button" aria-live="polite" aria-controls="home-carousel-featured-full" data-slide="next">
Next: <span id="slide-title"></span> <i class="fas fa-chevron-right" aria-hidden="true"></i>
</a>
</div> <!-- end carousel-controls -->
</div><!-- end home-carousel-featured-full -->
</section><!--#homeslider-->
<section class="container px-0">
<div id="mfhomepage-modules">
<div class="mfhomepage-content-module mfhomepage-content-module-1 ">
<h2>Popular Areas</h2>
<div class="content-module-text">
<a class="wp-block-mayflower-blocks-button btn btn-secondary btn-block btn-sm" href="https://www.tomboloinstitute.com/">Tombolo Institute at Bellevue College</a>
<a class="wp-block-mayflower-blocks-button btn btn-secondary btn-block btn-sm" href="https://www.bellevuecollege.edu/lmc/">Library</a>
<a class="wp-block-mayflower-blocks-button btn btn-secondary btn-block btn-sm" href="https://www.bellevuecollege.edu/we/">Workforce Education</a>
</div>
</div>
<div class="mfhomepage-content-module mfhomepage-content-module-1 mfhomepage-content-module-embed">
<a class="virtualtour_embed" href="https://www.youvisit.com" data-platform="v" data-link-type="immersive" data-ims-start-rotation="0" data-ims-title="Virtual Tour" data-inst="60548" data-image-width="100%" data-image-height="180">Virtual Tour</a>
</div>
<a href="https://www.bellevuecollege.edu/admissions/" class="responsive-bg-img mfhomepage-content-module mfhomepage-content-module-1 mfhomepage-content-module-btn">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/SPRING-768x180-1-19-380x180.jpg 380w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/SPRING-768x180-1-19-768x180.jpg 768w,
https://www.bellevuecollege.edu/wp-content/uploads/2019/03/SPRING-768x180-1-19-380x180.jpg 380w"
sizes="(max-width: 380x) 380px,
(max-width: 768px) 768px,
380px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2019/03/SPRING-768x180-1-19-768x180.jpg" alt="apply for admission.">
<div><p><strong>Apply for Admission</strong></p>
</div>
</a>
<div class="mfhomepage-content-module mfhomepage-content-module-3 mfhomepage-content-module-embed">
<figure class="wp-block-image size-full"><a href="https://www.bellevuecollege.edu/president/2020/06/19/black-lives-matter/"><img decoding="async" loading="lazy" width="1140" height="180" src="https://www.bellevuecollege.edu/wp-content/uploads/2021/01/BLM_1140x180_72.jpg" alt="Black Lives Matter (Links to campus statement)" class="wp-image-14048 img-fluid " srcset="https://www.bellevuecollege.edu/wp-content/uploads/2021/01/BLM_1140x180_72.jpg 1140w, https://www.bellevuecollege.edu/wp-content/uploads/2021/01/BLM_1140x180_72-300x47.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/2021/01/BLM_1140x180_72-1024x162.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/2021/01/BLM_1140x180_72-768x121.jpg 768w" sizes="(max-width: 1140px) 100vw, 1140px" /></a></figure>
</div>
<a href="https://www.bellevuecollege.edu/ctclink/students/" class="responsive-bg-img mfhomepage-content-module mfhomepage-content-module-1 mfhomepage-content-module-btn">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2021/10/ctcLink-Student-Activate-768x180-Home-Page-Graphic-10-21-Brutus-380x180.jpg 380w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/10/ctcLink-Student-Activate-768x180-Home-Page-Graphic-10-21-Brutus-768x180.jpg 768w,
https://www.bellevuecollege.edu/wp-content/uploads/2021/10/ctcLink-Student-Activate-768x180-Home-Page-Graphic-10-21-Brutus-380x180.jpg 380w"
sizes="(max-width: 380x) 380px,
(max-width: 768px) 768px,
380px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2021/10/ctcLink-Student-Activate-768x180-Home-Page-Graphic-10-21-Brutus-768x180.jpg" alt="ctcLink graphic">
<div>
<p>ctcLink for Students</p>
</div>
</a>
<div class="mfhomepage-content-module mfhomepage-content-module-1 ">
<h2>COVID-19 Information</h2>
<div class="content-module-text">
<p>Masks are no longer required indoors with a few exceptions, but are strongly recommended. <a href="https://www.bellevuecollege.edu/covid19/">See our website</a> to learn more.</p>
</div>
</div>
<a href="https://www.bellevuecollege.edu/covid19/technology-resources/" class="responsive-bg-img mfhomepage-content-module mfhomepage-content-module-1 mfhomepage-content-module-btn">
<img srcset="https://www.bellevuecollege.edu/wp-content/uploads/2020/09/Remote_Learning_tips_380x180-2-380x180.jpg 380w,
https://www.bellevuecollege.edu/wp-content/uploads/2020/09/Remote_Learning_tips_380x180-2-768x180.jpg 768w,
https://www.bellevuecollege.edu/wp-content/uploads/2020/09/Remote_Learning_tips_380x180-2-380x180.jpg 380w"
sizes="(max-width: 380x) 380px,
(max-width: 768px) 768px,
380px"
src="https://www.bellevuecollege.edu/wp-content/uploads/2020/09/Remote_Learning_tips_380x180-2-768x180.jpg" alt="remote learning tips">
<div>
<p> Technology Resources for Students</p>
</div>
</a>
</div>
</section>
<div class="container px-0 mt-3 bg-primary p-3">
<div id="pathways-module">
<div id="pathways-module-about" class="card">
<h2 class="card-header h5">About BC Pathways</h2>
<div class="card-body">
<p>Starting college is exciting, but it can also be confusing. What do I want to do with my life? What courses should I take to get there? BC Pathways can help take the guesswork out of planning your education, saving you time and money!</p>
<p>In each pathway, areas of study that lead to similar careers are grouped together. We’ll help you figure out which pathway to choose and how to complete your career and academic goals. </p> </div>
<div class="card-footer">
<a class="btn btn-primary float-right" href="https://www.bellevuecollege.edu/pathways/">Learn About BC Pathways</a>
</div>
</div>
<div id="pathways-card-zone">
<div class="pathways-card-grid">
<div id="pathway-card-0" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=33">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Business" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=33">Business</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-0" aria-expanded="false" aria-controls="card-collapse-body-0"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Business pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-0">
<p>Business is a multifaceted area of study, as it continues to quickly change and evolve to meet the demands of our fast-paced world. Regardless of what industry or career path you might choose,whether non-profit or for-profit, understanding the management of people and resources is a skill set that can be applied to aid in the betterment of our world. </p>
<a href="https://www.bellevuecollege.edu/pathways/?p=33" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-1" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=23">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Health Sciences" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=23">Health Sciences</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-1" aria-expanded="false" aria-controls="card-collapse-body-1"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Health Sciences pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-1">
<p>The Health Sciences pathway programs are designed to help you grow your career as a working professional to meet your career goals. With your unique interests and strengths, acquire the skills that medical centers are looking for and begin your career vocation. </p>
<a href="https://www.bellevuecollege.edu/pathways/?p=23" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-2" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=37">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Humanities and Communication" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=37">Humanities & Communication</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-2" aria-expanded="false" aria-controls="card-collapse-body-2"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Humanities & Communication pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-2">
<p>This pathway will prepare and empower students to be critical and creative thinkers, analyze and solve problems from a multicultural lens, and cultivate new ways of thinking and learning to effectively communicate and engage in an ever-changing diverse and global society. </p>
<a href="https://www.bellevuecollege.edu/pathways/?p=37" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-3" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=25">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Social Science, Public Service & Community Engagement" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=25">Social Science, Public Service & Community Engagement</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-3" aria-expanded="false" aria-controls="card-collapse-body-3"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Social Science, Public Service & Community Engagement pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-3">
<p>This pathway is perfect for someone interested in understanding patterns of individual and group behavior, ways in which we develop and learn, and how we impact and are impacted by society, culture, institutions and the environment.</p>
<a href="https://www.bellevuecollege.edu/pathways/?p=25" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-4" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=27">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Science, Engineering, and Math" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=27">STEM</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-4" aria-expanded="false" aria-controls="card-collapse-body-4"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the STEM pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-4">
<p>Classes in the Science, Technology, Engineering & Math (STEM) pathway build skills in design, research, problem-solving and creativity. This pathway can lead to a wide array of rewarding, well-paid, in-demand careers.</p>
<a href="https://www.bellevuecollege.edu/pathways/?p=27" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-5" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=29">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Technology and Data" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=29">Technology and Data</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-5" aria-expanded="false" aria-controls="card-collapse-body-5"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Technology and Data pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-5">
<p>Technology and data are at the heart of some of the most dynamic institutions and breakthroughs of our time. Positions are available in almost all industries and provide endless opportunities to work anywhere in the world, including from your own house.</p>
<a href="https://www.bellevuecollege.edu/pathways/?p=29" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-6" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=31">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Transitional Studies" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=31">Transitional Studies</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-6" aria-expanded="false" aria-controls="card-collapse-body-6"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Transitional Studies pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-6">
<p>This pathway provides foundational skills that can open doors. We help you achieve your goals with support services designed with you in mind. We can help you improve your English language skills for personal, professional or academic goals. We provide various ways to earn your High School diploma or obtain your GED. We can also help build foundational skills such as English and Math as a gateway to other pathways.</p>
<a href="https://www.bellevuecollege.edu/pathways/?p=31" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
<div id="pathway-card-7" class="card mb-3 pathways-card">
<a href="https://www.bellevuecollege.edu/pathways/?p=35">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-400x132.jpg" class="card-img-top wp-post-image img-fluid " alt="Visual and Performing Arts" decoding="async" loading="lazy" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> </a>
<div class="card-header">
<h3 class="h4"><a href="https://www.bellevuecollege.edu/pathways/?p=35">Visual & Performing Arts</a></h3>
<button class="btn btn-info btn-sm float-right my-0 ml-0" type="button" data-toggle="collapse" data-target="#card-collapse-body-7" aria-expanded="false" aria-controls="card-collapse-body-7"><i class="fas fa-chevron-down"></i><span class="sr-only">More about the Visual & Performing Arts pathway</span></button>
</div>
<div class="card-body collapse" id="card-collapse-body-7">
<p>The value of arts in all of our lives cannot be underestimated. Pursuing the Visual & Performing Arts Pathway opens many opportunities for you in life – both as a vocation and avocation. If your passion is to create, perform, engage, experiment, and/or teach in any visual and performing arts this Pathway may be for you! </p>
<a href="https://www.bellevuecollege.edu/pathways/?p=35" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
</div>
<div id="pathways-desktop-module" class="d-none">
<button id="pathways-grid-view" class="btn btn-primary"><i class="fas fa-grip-vertical" aria-hidden="true"></i><span class="sr-only">Return to Grid View</span></button>
<button id="pathways-scroll-back" class="btn btn-primary"><i class="fas fa-chevron-left" aria-hidden="true"></i><span class="sr-only">Move to Previous Tab</span></button>
<div id="pathways-tab-scroll-zone">
<div id="pathways-scrolling-grid" class="nav nav-tabs" role="tablist">
<a id="pathway-tab-0"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-0"
aria-selected="false"
href="#pathway-content-0">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Business" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/Business400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Business</p>
</div>
</a>
<a id="pathway-tab-1"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-1"
aria-selected="false"
href="#pathway-content-1">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Health Sciences" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HealthSciences400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Health Sciences</p>
</div>
</a>
<a id="pathway-tab-2"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-2"
aria-selected="false"
href="#pathway-content-2">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Humanities and Communication" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/HumComm400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Humanities & Communication</p>
</div>
</a>
<a id="pathway-tab-3"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-3"
aria-selected="false"
href="#pathway-content-3">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Social Science, Public Service & Community Engagement" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SSPSCE400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Social Science, Public Service & Community Engagement</p>
</div>
</a>
<a id="pathway-tab-4"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-4"
aria-selected="false"
href="#pathway-content-4">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Science, Engineering, and Math" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/SEM400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>STEM</p>
</div>
</a>
<a id="pathway-tab-5"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-5"
aria-selected="false"
href="#pathway-content-5">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Technology and Data" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TechData400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Technology and Data</p>
</div>
</a>
<a id="pathway-tab-6"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-6"
aria-selected="false"
href="#pathway-content-6">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Transitional Studies" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/TransitionalStudies400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Transitional Studies</p>
</div>
</a>
<a id="pathway-tab-7"
class="mb-0 pathways-card-desktop pathways-card-tab"
data-toggle="tab"
role="tab"
aria-controls="pathway-content-7"
aria-selected="false"
href="#pathway-content-7">
<img width="400" height="132" src="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-400x132.jpg" class="attachment-bcgpt-card-small size-bcgpt-card-small wp-post-image img-fluid " alt="Visual and Performing Arts" decoding="async" loading="lazy" aria-hidden="true" srcset="https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-400x132.jpg 400w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-300x100.jpg 300w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1024x341.jpg 1024w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-768x256.jpg 768w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1536x512.jpg 1536w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400-1200x400.jpg 1200w, https://www.bellevuecollege.edu/wp-content/uploads/sites/416/2021/06/VisualPerformingArts400.jpg 1600w" sizes="(max-width: 400px) 100vw, 400px" /> <div>
<p>Visual & Performing Arts</p>
</div>
</a>
</div>
</div>
<button id="pathways-scroll-forward" class="btn btn-primary"><i class="fas fa-chevron-right" aria-hidden="true"></i><span class="sr-only">Move to Next Tab</span></button>
<div id="pathways-tab-detail" class="tab-content bg-light p-3">
<div id="pathway-content-0" class="tab-pane" aria-labelledby="pathway-tab-0" role="tabpanel">
<h3>
Business </h3>
<div class="row">
<div class="col-md-12">
<p>Business is a multifaceted area of study, as it continues to quickly change and evolve to meet the demands of our fast-paced world. Regardless of what industry or career path you might choose,whether non-profit or for-profit, understanding the management of people and resources is a skill set that can be applied to aid in the betterment of our world. </p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4">
<a href="https://www.bellevuecollege.edu/pathways/?p=33" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
</div>
<div class="col-md-4">
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
</div>
<div id="pathway-content-1" class="tab-pane" aria-labelledby="pathway-tab-1" role="tabpanel">
<h3>
Health Sciences </h3>
<div class="row">
<div class="col-md-12">
<p>The Health Sciences pathway programs are designed to help you grow your career as a working professional to meet your career goals. With your unique interests and strengths, acquire the skills that medical centers are looking for and begin your career vocation. </p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4">
<a href="https://www.bellevuecollege.edu/pathways/?p=23" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
</div>
<div class="col-md-4">
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
</div>
<div id="pathway-content-2" class="tab-pane" aria-labelledby="pathway-tab-2" role="tabpanel">
<h3>
Humanities & Communication </h3>
<div class="row">
<div class="col-md-12">
<p>This pathway will prepare and empower students to be critical and creative thinkers, analyze and solve problems from a multicultural lens, and cultivate new ways of thinking and learning to effectively communicate and engage in an ever-changing diverse and global society. </p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4">
<a href="https://www.bellevuecollege.edu/pathways/?p=37" class="btn btn-block btn-info">Learn More<br><small>About This Pathway</small></a>
</div>
<div class="col-md-4">
<a class="btn btn-block btn-primary" href="https://www.bellevuecollege.edu/advising/pathways-workshops/">Sign Up Now<br><small>BC Pathways Workshop</small></a>
</div>
</div>
</div>
<div id="pathway-content-3" class="tab-pane" aria-labelledby="pathway-tab-3" role="tabpanel">
<h3>
Social Science, Public Service & Community Engagement </h3>
<div class="row">
<div class="col-md-12">