forked from iamedisonu/BFH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1618 lines (983 loc) · 53.1 KB
/
about.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">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="utf-8">
<title>About Bright Futures Hub: Our Story | Bright Futures Hub</title>
<link rel="shortcut icon" href="hs-fs/hubfs/Logo 01.png">
<meta name="description" content="About Bright Futures Hub: Our Story">
<link type="text/css" rel="stylesheet" href="../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="hs/hsstatic/jquery-libs/static-1.4/jquery/jquery-1.11.2.js"></script>
<script src="hs/hsstatic/jquery-libs/static-1.4/jquery-migrate/jquery-migrate-1.2.1.js"></script>
<script>hsjQuery = window['jQuery'];</script>
<meta property="og:description" content="About Bright Futures Hub: Our Story">
<meta property="og:title" content="About Bright Futures Hub: Our Story | Bright Futures Hub">
<meta name="twitter:description" content="About Bright Futures Hub: Our Story">
<meta name="twitter:title" content="About Bright Futures Hub: Our Story | Bright Futures Hub">
<style>
a.cta_button{-moz-box-sizing:content-box !important;-webkit-box-sizing:content-box !important;box-sizing:content-box !important;vertical-align:middle}.hs-breadcrumb-menu{list-style-type:none;margin:0px 0px 0px 0px;padding:0px 0px 0px 0px}.hs-breadcrumb-menu-item{float:left;padding:10px 0px 10px 10px}.hs-breadcrumb-menu-divider:before{content:'›';padding-left:10px}.hs-featured-image-link{border:0}.hs-featured-image{float:right;margin:0 0 20px 20px;max-width:50%}@media (max-width: 568px){.hs-featured-image{float:none;margin:0;width:100%;max-width:100%}}.hs-screen-reader-text{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute !important;width:1px}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/template_assets/83960242063/1687434594422/Collegewise_September_2022/css/main.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/template_assets/83960207409/1687434343541/Collegewise_September_2022/css/theme-overrides.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/125720331167/1690469756099/module_125720331167_Site_Header.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83961697375/1692957668575/module_83961697375_Banner.min.css">
<style>
@media only screen and (max-width: 767px) {
a#hs-link-header_logo_hs_logo_widget img {
width: 70px !important;
}
}
@media only screen and (max-width: 1024px) {
a#hs-link-header_logo_hs_logo_widget img {
width: 70px !important;
}
}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83979670607/1667544279215/module_83979670607_Advanced_Content.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83963607940/1667545541498/module_83963607940_Statistics.min.css">
<style>
#widget_1662448287709 .st_num,
#widget_1662448287709 .st_txt{
color:rgba(255, 255, 255,1.0);
}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83980283203/1667545569136/module_83980283203_Team.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83967024169/1667545231183/module_83967024169_Bottom_Pane.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83967535425/1667545378270/module_83967535425_Logo_Gallery.min.css">
<style>
.btn_cta {
background-color:#2B9348;
padding: 1.5rem 2rem;
border-radius: .4rem;
font-weight: 600;
color: white;
font-size: 15px;
}
@font-face {
font-family: "Lato";
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("_hcms/googlefonts/Lato/regular.woff2") format("woff2"), url("_hcms/googlefonts/Lato/regular.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("_hcms/googlefonts/Merriweather/regular.woff2") format("woff2"), url("_hcms/googlefonts/Merriweather/regular.woff") format("woff");
}
</style>
<!-- Editor Styles -->
<style id="hs_editor_style" type="text/css">
.aboutrow1-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow2-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow3-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow4-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow4-row-1-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow5-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.aboutrow6-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
</style>
<script>
var _hsp = window._hsp = window._hsp || [];
_hsp.push(['addPrivacyConsentListener', function(consent) { if (consent.allowed || (consent.categories && consent.categories.analytics)) {
(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-27125928-1','auto');
ga('send','pageview');
}}]);
</script>
<script>
var _hsp = window._hsp = window._hsp || [];
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
var useGoogleConsentModeV2 = false;
if (!window._hsGoogleConsentRunOnce) {
window._hsGoogleConsentRunOnce = true;
gtag('consent', 'default', {
'ad_storage': 'denied',
'analytics_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied'
});
if (useGoogleConsentModeV2) {
_hsp.push(['useGoogleConsentModeV2'])
} else {
_hsp.push(['addPrivacyConsentListener', function(consent){
var hasAnalyticsConsent = consent && (consent.allowed || (consent.categories && consent.categories.analytics));
var hasAdsConsent = consent && (consent.allowed || (consent.categories && consent.categories.advertisement));
gtag('consent', 'update', {
'ad_storage': hasAdsConsent ? 'granted' : 'denied',
'analytics_storage': hasAnalyticsConsent ? 'granted' : 'denied',
'ad_user_data': hasAdsConsent ? 'granted' : 'denied',
'ad_personalization': hasAdsConsent ? 'granted' : 'denied'
});
}]);
}
}
gtag('js', new Date());
gtag('set', 'developer_id.dZTQ1Zm', true);
gtag('config', 'G-KFYVY0RPEF');
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KFYVY0RPEF"></script>
<script>
var _hsp = window._hsp = window._hsp || [];
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
var useGoogleConsentModeV2 = false;
var hsLoadGtm = function loadGtm() {
if(window._hsGtmLoadOnce) {
return;
}
if (useGoogleConsentModeV2) {
gtag('set','developer_id.dZTQ1Zm',true);
// set up default denied consent
gtag('consent', 'default', {
'ad_storage': 'denied',
'analytics_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied'
});
// instruct cookie banner to send consent updates to GCM
_hsp.push(['useGoogleConsentModeV2'])
}
(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=
'../www.googletagmanager.com/gtm5445.html?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MGJD6NS');
window._hsGtmLoadOnce = true;
};
_hsp.push(['addPrivacyConsentListener', function(consent){
if(consent.allowed || (consent.categories && consent.categories.analytics)){
hsLoadGtm();
}
}]);
</script>
<link rel="canonical" href="about.html">
<meta property="og:url" content="/about">
<meta name="twitter:card" content="summary">
<meta http-equiv="content-language" content="en">
<meta name="generator" content="HubSpot"></head>
<body>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MGJD6NS" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div class="body-wrapper hs-content-id-84049375802 hs-site-page page ">
<div data-global-resource-path="Collegewise_September_2022/templates/partials/header-v2.html"><div id="hs_cos_wrapper_site_header" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"><header class="header-nav-wrap">
<div class="row-fluid header-nav" id="header-nav">
<div class="nav-container nav-flex">
<div class="nav-logo">
<div class="logo">
<span id="hs_cos_wrapper_site_header_" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_logo" style="" data-hs-cos-general-type="widget" data-hs-cos-type="logo"><a href="index.html" id="hs-link-site_header_" style="border-width:0px;border:0px;"><img src="hs-fs/hubfs/Logo 01.png" class="hs-image-widget " height="139" style="height: auto;width:150px;border-width:0px;border:0px;" width="150" alt="logo-2" title="logo-2" loading="" sizes="(max-width: 150px) 100vw, 150px"></a></span>
</div>
</div>
<nav class="main-menu custom-menu-primary">
<span id="hs_cos_wrapper_site_header_" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_menu" style="" data-hs-cos-general-type="widget" data-hs-cos-type="menu"><div id="hs_menu_wrapper_site_header_" class="hs-menu-wrapper active-branch flyouts hs-menu-flow-horizontal" role="navigation" data-sitemap-name="default" data-menu-id="125724579096" aria-label="Navigation Menu">
<ul role="menu" class="active-branch">
<li class="hs-menu-item hs-menu-depth-1 hs-item-has-children" role="none"><a href="javascript:;" aria-haspopup="true" aria-expanded="false" role="menuitem">Our Services</a>
<ul role="menu" class="hs-menu-children-wrapper">
<li class="hs-menu-item hs-menu-depth-2" role="none"><a href="services-page.html" role="menuitem">1:1 Counseling</a></li>
</ul></li>
<li class="hs-menu-item hs-menu-depth-1 hs-item-has-children active-branch" role="none"><a href="javascript:;" aria-haspopup="true" aria-expanded="false" role="menuitem">About us</a>
<ul role="menu" class="hs-menu-children-wrapper active-branch">
<li class="hs-menu-item hs-menu-depth-2 active active-branch" role="none"><a href="about.html" role="menuitem">About Us</a></li>
<li class="hs-menu-item hs-menu-depth-2" role="none"><a href="contact.html" role="menuitem">Contact Us</a></li>
</ul></li>
<li><a href="https://www.paypal.com/pools/c/92q5qVDk5o" style="color:yellowgreen">Donate</a></li>
</ul>
</div></span>
</nav>
<div class="nav-cta">
<a href="contact.html">TALK TO AN ADVISOR</a>
</div>
</div>
</div>
</header></div></div>
<main class="body-container-wrapper about_page">
<div class="container-fluid aboutrow1">
<div class="row-fluid-wrapper">
<div class="row-fluid">
<div class="span12 widget-span widget-type-cell " style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-1 aboutrow1-row-0-force-full-width-section dnd-section">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-cell dnd-column" style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-2 dnd-row">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-custom_widget dnd-module" style="" data-widget-type="custom_widget" data-x="0" data-w="12">
<div id="hs_cos_wrapper_widget_1662447825773" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module">
<div class="banner bnr hidden-phone">
<div class="bnr_inr">
<div class="span4 bnr_left">
<div class="bnr_pad">
<div class="bnr_flx">
<a href="index.html" class="bnr_logo">
<img src="hubfs/logo-2.png" alt="Bright Futures Hub" loading="lazy">
</a>
<div class="bnr_contnt">
<div class="bnr_cont_pad ">
<h1 class="small-tag-dd "> </h1>
<p><strong>Our mission</strong> is to empower students by providing comprehensive college application support, connecting them with meaningful educational opportunities and competitions, and inspiring them to create brighter futures for themselves and their communities. We believe in nurturing a cycle of giving back, where empowered students become the leaders and mentors who uplift their communities.</p>
<p><!-- --></p>
<p><strong>Our</strong> <strong>vision</strong> Our vision is envisioning a world where every student, regardless of background, has access to educational opportunities; we aim to be a catalyst for transformative change. We aspire to build an empowered, educated, and spiritually enriched community where individuals are inspired to realise their potential and make meaningful contributions to society.</p>
<div class="bnr_btns"></div>
</div>
</div>
</div>
</div>
</div>
<div class="span8 bnr_right">
<div class="bnr_img" style="background-image: url(hubfs/Collegewise_September_2022/Images/156A0073.jpg);" loading="lazy"><div class="banner-overlay"></div></div>
</div>
</div>
</div>
<div class="banner bnr visible-phone">
<div class="bnr_inr" style="background-image:linear-gradient(0deg, rgba(41, 59, 105, 0.7), rgba(41, 59, 105, 0.7)),url(hubfs/Collegewise_September_2022/Images/156A0073.jpg);">
<div class="bnr_mobcontnt">
<h2 class="banner-mobile-dd"> </h2>
<p><strong>Our mission</strong> is to empowers students with college application support, connects them to educational opportunities and competitions aiming to create brighter futures for individuals.</p>
<p><!-- --></p>
<p><strong>Our</strong> <strong>vision</strong> is envisioning a world where every student, regardless of background, has access to educational opportunities, we aims to be a catalyst for transformative change. We aspire to build an empowered, educated, and spiritually enriched community, where individuals are inspired to realise their potential and make meaningful contributions to society</p>
<div class="bnr_btns"></div>
</div>
</div>
</div></div>
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div>
</div>
</div>
<div class="container-fluid aboutrow2">
<div class="row-fluid-wrapper">
<div class="row-fluid">
<div class="span12 widget-span widget-type-cell " style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-1 aboutrow2-row-0-force-full-width-section dnd-section">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-cell dnd-column" style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-2 dnd-row">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-custom_widget dnd-module" style="" data-widget-type="custom_widget" data-x="0" data-w="12">
<div id="hs_cos_wrapper_widget_1662448178609" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"><div class="cwtop_wrap dnd-section" style="background-color:rgba(246, 246, 246,1.0);">
<div class="cwtop_inr">
<div class="cwt_flx">
<div class="cwtop_itm span4" style="background-color:rgba(255, 255, 255,1.0);">
<h5>How We Get Ready Our Scholars In 5+ Months</h5>
<ul>
<li>
<p><b>Comprehensive Academic and Test Preparation:</b> Implement a rigorous academic curriculum covering core subjects, supplemented with intensive standardised test (SAT/ACT and DET) preparation, to strengthen foundational knowledge and test-taking skills.</p>
</li>
<li>
<p><b>College Readiness and Application Support:</b> Provide workshops focusing on college life, study skills, and time management, along with personalised guidance on college selection, application processes, essay writing, and securing financial aid.
</p>
</li>
<li><p><b>Holistic Development and Support Systems:</b> Offer mentorship, career guidance, and extracurricular activities for well-rounded development, engage scholars through informational workshops, and ensure continuous evaluation with feedback for student progress.
</p></li>
</ul>
<p><!-- --></p>
</div>
<div class="cwtop_itm span4" style="background-color:rgba(255, 255, 255,1.0);">
<h5> Our uniqueness</h5>
<ul>
<li>
<p>Admissions go beyond mere test scores and grades. Educational institutions adopt a comprehensive perspective in assessing applications, giving weight to activities, interests, and other non-numerical aspects. Similarly, Bright Futures Hub embraces this all-encompassing method in guiding students. Our approach at Bright Futures Hub enables students to discover and leverage their unique strengths and passions. We offer a cohesive blend of counseling, tutoring, and research services, providing students with the most extensive support possible. </p>
</li>
<li>
<p>Our program emphasizes discipline for achieving goals, spiritual growth for deeper understanding, sincerity in engagement, and competitiveness in all endeavors.</p>
</li>
</ul>
<p><!-- --></p>
</div>
<div class="cwtop_itm span4" style="background-color:rgba(255, 255, 255,1.0);">
<h5>In Our Communities</h5>
<ul>
<li>
<p>We organises events to strengthen community bonds, offering a platform for networking and cultural exchange among our scholars and community members.
</p>
</li>
<li>
<p> We encourage our scholars to participate in community service projects, enabling them to make a tangible impact on local issues and develop as responsible, compassionate citizens.
</p>
</li>
<li>
<p>We emphasise the personal and social development of our scholars. This involves encouraging scholars to take on leadership roles, engage in volunteerism, and participate in initiatives that address community needs. By doing so, the organisation nurtures a generation of individuals who are not only educated but also socially conscious and committed to making positive changes in their communities.
</li>
</ul>
<p><!-- --></p>
</div>
</div>
</div>
</div></div>
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div>
</div>
</div>
<div class="container-fluid aboutrow3">
<div class="row-fluid-wrapper">
<div class="row-fluid">
<div class="span12 widget-span widget-type-cell " style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-1 aboutrow3-row-0-force-full-width-section dnd-section">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-cell dnd-column" style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-2 dnd-row">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-custom_widget dnd-module" style="" data-widget-type="custom_widget" data-x="0" data-w="12">
<div id="hs_cos_wrapper_widget_1662448287709" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"><div id="widget_1662448287709" class="stats type1" style="background-color:rgb(40, 54, 24,255);">
<div class="st_inr clearfix">
<!-- <div class="span4 st_itm">
<div class="st_num">28,000+</div>
<div class="st_txt">students<br>admitted</div>
</div>
<div class="span4 st_itm">
<div class="st_num">92%</div>
<div class="st_txt">of students accepted<br>to their top 3 schools</div>
</div>
<div class="span4 st_itm">
<div class="st_num">24+</div>
<div class="st_txt">years of admissions<br>experience</div>
</div>
<div class="span4 st_itm">
<div class="st_num">9 of 10</div>
<div class="st_txt">families recommend<br>us to their friends</div>
</div> -->
</div>
</div>
</div>
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
</div><!--end widget-span -->
</div>
</div>
</div>
<div class="container-fluid aboutrow4">
<div class="row-fluid-wrapper">
<div class="row-fluid">
<div class="span12 widget-span widget-type-cell " style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-1 aboutrow4-row-0-force-full-width-section dnd-section">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-cell dnd-column" style="" data-widget-type="cell" data-x="0" data-w="12">
<div class="row-fluid-wrapper row-depth-1 row-number-2 dnd-row">
<div class="row-fluid ">
<div class="span12 widget-span widget-type-custom_widget dnd-module" style="" data-widget-type="custom_widget" data-x="0" data-w="12">
<div id="hs_cos_wrapper_widget_1662448376515" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"><div class="team dnd-section" style="background-color:rgba(229, 229, 229,1.0);">
<div class="team_flx">
<div class="ttop">
<div class="ttile">
<h2>Our Team</h2>
</div>
<div class="ttflx">
<div class="ttitm span4">
<div class="ttitm_inr">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/T1WJARXCG-U02V8917J4A-90264a94dd7e-512.png" alt="Edison" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Edison Uwamungu</p>
<p class="tt_designation">College Counselor: USA & Asia</p>
<div class="tt_desc">
<p>Edison Uwamungu is one of our committed counselors and <i>founder</i> of Bright Futures Hub, equipped with guiding skills and able to help students apply across universities in the USA and Asia. With experience in how admissions are conducted and other opportunities available as funding from schools, he instills great confidence into students' successful applications. Further, Edison's passion for education makes him a wonderful mentor ready to aid in student success.</p>
</div>
</div>
</div>
</div>
<div class="ttitm span4">
<div class="ttitm_inr">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/Kevin.jpg" alt="Wilson" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Wilson Gashumba</p>
<p class="tt_designation">College Counselor: Canada, Africa & Poland</p>
<div class="tt_desc">
<p>At Bright Futures Hub, Wilson Gashumba is a dedicated professional who helps students apply for educational opportunities in Canada, Africa, and Poland. He is known for guiding students through a complicated application process and providing the support and direction to help them choose the right school. Wilson's job is to make sure students make informed decisions about their future so they can achieve their academic and career goals. Wilson’s key is to ensure every application is tailor-made for each student.</p>
</div>
</div>
</div>
</div>
<div class="ttitm span4">
<div class="ttitm_inr">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/allison_lopour_md_4672.png" alt="Elvira" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Elvira Gikundiro</p>
<p class="tt_designation">College Counselor: Italy & Europe </p>
<div class="tt_desc">
<p>Elvira Gikundiro is one of Bright Future Hub's college counselors, with a dedication to guiding students through what is likely to be confusion when one is going to try and access college in Italy and throughout Europe. With a clear understanding of what the European schooling system has to offer, Elvira provides personalized advice for college students willing to navigate their path throughout study and career development. She assists in the sourcing of scholarships, as well as making an application. Her work is premised on the fact that every student is worth having access to higher education opportunities.</p>
</div>
</div>
</div>
</div>
<div class="ttitm span4">
<div class="ttitm_inr">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/ashley_nieblas-1.jpg" alt="Gad" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Gad Nkurunziza</p>
<p class="tt_designation">Grants Manager</p>
<div class="tt_desc">
<p>Gad Nkurunziza serves as a Grant Manager at Bright Futures Hub, where his primary responsibilities involve identifying and securing financial resources to support the organization's operations. His role is pivotal in ensuring the continuity and success of the organization's programs and initiatives. In addition to fund acquisition, Gad is committed to fostering and maintaining positive relationships with donors. He regularly updates them on the organization's progress and impact, ensuring transparency and building trust. This dual focus not only secures the necessary funding for Bright Futures Hub but also strengthens the organization's connections with its benefactors.
</p>
</div>
</div>
</div>
</div>
<!-- <div class="ttitm span4">
<div class="ttitm_inr">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/ashley_nieblas-1.jpg" alt="Ashley Nieblas" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">XYZ</p>
<p class="tt_designation">Xyz</p>
<div class="tt_desc">
<p>Gad Nkurunziza serves as a Grant Manager at Bright Futures Hub, where his primary responsibilities involve identifying and securing financial resources to support the organization's operations. His role is pivotal in ensuring the continuity and success of the organization's programs and initiatives. In addition to fund acquisition, Gad is committed to fostering and maintaining positive relationships with donors. He regularly updates them on the organization's progress and impact, ensuring transparency and building trust. This dual focus not only secures the necessary funding for Bright Futures Hub but also strengthens the organization's connections with its benefactors.
</p>
</div>
</div>
</div>
</div> -->
</div>
</div>
<!-- <div class="tbtm">
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/mamie_consentino.jpg" alt="Mamie Cosentino" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Mamie Cosentino</p>
<p class="tt_designation">Dean of Affiliates & Managing Editor</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/stefanie_toye.jpg" alt="Stefanie Toye" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Stefanie Toye</p>
<p class="tt_designation">Dean of Tutoring</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/katie_sprague.jpg" alt="Katie Sprague" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Katie Sprague</p>
<p class="tt_designation">Director of Learning & Development</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/T1WJARXCG-U031ACZ4N85-4f9e773478a3-512.jpg" alt="Na'ama Landau" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Na'ama Landau</p>
<p class="tt_designation">Head of Sales and Marketing</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Screen%20Shot%202022-11-16%20at%202-17-11%20PM-1.png" alt="Belinda Southgate" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Belinda Southgate</p>
<p class="tt_designation">Director of Partnerships Marketing</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/jordan_kanarek_1000x1000.jpg" alt="Jordan Kanarek" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Jordan Kanarek</p>
<p class="tt_designation">Director of Counseling</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/T1WJARXCG-U05U8GLB61E-23aa92b365ec-512.jpg" alt="Audrey Ooi" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Audrey Ooi</p>
<p class="tt_designation">Senior Director of Marketing</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/joe_k.jpg" alt="Joe Korfmacher" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Joe Korfmacher</p>
<p class="tt_designation">Partnerships Director</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/Grant_Cushman_v2.jpg" alt="Grant Cushman" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Grant Cushman</p>
<p class="tt_designation">Operations Director</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/image-1-2.jpg" alt="Ashley Meyer" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Ashley Meyer</p>
<p class="tt_designation">Counseling Team Lead</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Staff%20Images/patti_miller-1.jpg" alt="Patti Miller" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Patti Miller</p>
<p class="tt_designation">Counseling Team Lead</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Staff%20Images/christina_mangano%20(1).jpg" alt="Christina Mangano" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Christina Mangano</p>
<p class="tt_designation">Counseling Team Lead</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Staff%20Images/thumbnail_Nichelle.jpg" alt="Nichelle Passanisi" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Nichelle Passanisi</p>
<p class="tt_designation">Counseling Team Lead</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/image-Apr-14-2023-07-08-51-6906-PM.png" alt="Christopher Logan" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Christopher Logan</p>
<p class="tt_designation">Diversity, Equity, and Inclusion Director</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Staff%20Images/Samantha_Joustra-1.jpg" alt="Samantha Joustra" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Samantha Joustra</p>
<p class="tt_designation">Diversity, Equity, and Inclusion Director</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/olivia_vail.jpg" alt="Olivia Vail" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Olivia Vail</p>
<p class="tt_designation">Financial Operations Manager</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/T1WJARXCG-U0646RDF6DT-e2dfc7e1a58e-512.png" alt="Nick Wilson" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Nick Wilson</p>
<p class="tt_designation">Global Controller</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/T1WJARXCG-U03JN3GSZH7-fd8e2db04a4f-512.png" alt="Ana Boskovic" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Ana Boskovic</p>
<p class="tt_designation">Marketing Manager</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/DP.jpg" alt="Daniel Dcosta" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Daniel Dcosta</p>
<p class="tt_designation">Marketing Manager</p>
</div>
</div>
<div class="ttitm span3">
<div class="ttimg">
<img src="hubfs/Collegewise_September_2022/Images/michae_goldstein.jpg" alt="Michal Goldstein" loading="lazy">
</div>
<div class="ttcontn">
<p class="ttname">Michal Goldstein</p>
<p class="tt_designation">Director of Tutoring</p>
</div>