-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1736 lines (1225 loc) · 66.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html><html lang="en">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="utf-8">
<title>Home | College Admissions & Application Counseling | Bright Futures Hub</title>
<link rel="shortcut icon" href="hs-fs/hubfs/Logo 01.png">
<meta name="description" content="College Admissions & Application Counseling | Bright Futures Hub
">
<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="College Admissions & Application Counseling | Bright Futures Hub
">
<meta property="og:title" content="Home | College Admissions & Application Counseling | Bright Futures Hub">
<meta name="twitter:description" content="College Admissions & Application Counseling | Bright Futures Hub
">
<meta name="twitter:title" content="Home | College Admissions & Application Counseling | 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>
.btn_cta {
background-color:#2B9348;
padding: 1.5rem 2rem;
border-radius: .4rem;
font-weight: 600;
color: white;
font-size: 15px;
}
@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>
<style>
#hs-button_module_1681310670789 {
display: inline-block;
background-color: rgba(255, 255, 255,1.0);
color: #B7B7A4;
font-size: 18px;
;
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
#hs-button_module_1681310670789:hover {
background-color: rgba(41, 58, 104,1.0);
color: rgba(255, 255, 255,1.0);
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
</style>
<style>
#hs-button_module_16813106559172 {
display: inline-block;
background-color: rgba(255, 255, 255,1.0);
color: #B7B7A4;
font-size: 18px;
;
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
#hs-button_module_16813106559172:hover {
background-color: rgba(41, 58, 104,1.0);
color: rgba(255, 255, 255,1.0);
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83967535425/1667545378270/module_83967535425_Logo_Gallery.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83963598728/1684912387305/module_83963598728_Content_With_Image.min.css">
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83963607940/1667545541498/module_83963607940_Statistics.min.css">
<style>
#widget_1662438240969 .st_num,
#widget_1662438240969 .st_txt{
color:rgba(255, 255, 255,1.0);
}
</style>
<link rel="stylesheet" href="../cdn2.hubspot.net/hub/-1/hub_generated/module_assets/-35056501883/1708553926397/module_-35056501883_Video.min.css">
<style>
#oembed_container-module_16813090641826 .oembed_custom-thumbnail_icon svg {
fill: #ffffff;
}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83964395523/1667545644744/module_83964395523_Video_Testimonials.min.css">
<style>
#hs-button_module_168130953706018 {
display: inline-block;
background-color: rgba(255, 255, 255,1.0);
color: #B7B7A4;
font-size: 18px;
;
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
#hs-button_module_168130953706018:hover {
background-color: rgba(41, 58, 104,1.0);
color: rgba(255, 255, 255,1.0);
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
</style>
<style>
#hs-button_module_168130953706024 {
display: inline-block;
background-color: rgba(255, 255, 255,1.0);
color: #B7B7A4;
font-size: 18px;
;
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
#hs-button_module_168130953706024:hover {
background-color: rgba(41, 58, 104,1.0);
color: rgba(255, 255, 255,1.0);
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
</style>
<style>
#hs-button_module_168130953706030 {
display: inline-block;
background-color: rgba(255, 255, 255,1.0);
color: #B7B7A4;
font-size: 18px;
;
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
#hs-button_module_168130953706030:hover {
background-color: rgba(41, 58, 104,1.0);
color: rgba(255, 255, 255,1.0);
padding-top: px;
padding-bottom: px;
padding-left: px;
padding-right: px;
}
</style>
<link rel="stylesheet" href="hs-fs/hub/3298693/hub_generated/module_assets/83967024169/1667545231183/module_83967024169_Bottom_Pane.min.css">
<style>
@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">
#hs_cos_wrapper_module_1681309098797 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_1681309098797 p , #hs_cos_wrapper_module_1681309098797 li , #hs_cos_wrapper_module_1681309098797 span , #hs_cos_wrapper_module_1681309098797 label , #hs_cos_wrapper_module_1681309098797 h1 , #hs_cos_wrapper_module_1681309098797 h2 , #hs_cos_wrapper_module_1681309098797 h3 , #hs_cos_wrapper_module_1681309098797 h4 , #hs_cos_wrapper_module_1681309098797 h5 , #hs_cos_wrapper_module_1681309098797 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_16813088132196 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_16813088132196 p , #hs_cos_wrapper_module_16813088132196 li , #hs_cos_wrapper_module_16813088132196 span , #hs_cos_wrapper_module_16813088132196 label , #hs_cos_wrapper_module_16813088132196 h1 , #hs_cos_wrapper_module_16813088132196 h2 , #hs_cos_wrapper_module_16813088132196 h3 , #hs_cos_wrapper_module_16813088132196 h4 , #hs_cos_wrapper_module_16813088132196 h5 , #hs_cos_wrapper_module_16813088132196 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_1681309042013 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_1681309042013 p , #hs_cos_wrapper_module_1681309042013 li , #hs_cos_wrapper_module_1681309042013 span , #hs_cos_wrapper_module_1681309042013 label , #hs_cos_wrapper_module_1681309042013 h1 , #hs_cos_wrapper_module_1681309042013 h2 , #hs_cos_wrapper_module_1681309042013 h3 , #hs_cos_wrapper_module_1681309042013 h4 , #hs_cos_wrapper_module_1681309042013 h5 , #hs_cos_wrapper_module_1681309042013 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_16813094891898 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_16813094891898 p , #hs_cos_wrapper_module_16813094891898 li , #hs_cos_wrapper_module_16813094891898 span , #hs_cos_wrapper_module_16813094891898 label , #hs_cos_wrapper_module_16813094891898 h1 , #hs_cos_wrapper_module_16813094891898 h2 , #hs_cos_wrapper_module_16813094891898 h3 , #hs_cos_wrapper_module_16813094891898 h4 , #hs_cos_wrapper_module_16813094891898 h5 , #hs_cos_wrapper_module_16813094891898 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_1681309098797 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_1681309098797 p , #hs_cos_wrapper_module_1681309098797 li , #hs_cos_wrapper_module_1681309098797 span , #hs_cos_wrapper_module_1681309098797 label , #hs_cos_wrapper_module_1681309098797 h1 , #hs_cos_wrapper_module_1681309098797 h2 , #hs_cos_wrapper_module_1681309098797 h3 , #hs_cos_wrapper_module_1681309098797 h4 , #hs_cos_wrapper_module_1681309098797 h5 , #hs_cos_wrapper_module_1681309098797 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_16813088132196 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_16813088132196 p , #hs_cos_wrapper_module_16813088132196 li , #hs_cos_wrapper_module_16813088132196 span , #hs_cos_wrapper_module_16813088132196 label , #hs_cos_wrapper_module_16813088132196 h1 , #hs_cos_wrapper_module_16813088132196 h2 , #hs_cos_wrapper_module_16813088132196 h3 , #hs_cos_wrapper_module_16813088132196 h4 , #hs_cos_wrapper_module_16813088132196 h5 , #hs_cos_wrapper_module_16813088132196 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_1681309042013 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_1681309042013 p , #hs_cos_wrapper_module_1681309042013 li , #hs_cos_wrapper_module_1681309042013 span , #hs_cos_wrapper_module_1681309042013 label , #hs_cos_wrapper_module_1681309042013 h1 , #hs_cos_wrapper_module_1681309042013 h2 , #hs_cos_wrapper_module_1681309042013 h3 , #hs_cos_wrapper_module_1681309042013 h4 , #hs_cos_wrapper_module_1681309042013 h5 , #hs_cos_wrapper_module_1681309042013 h6 { font-size: 28px !important; font-weight: bold !important }
#hs_cos_wrapper_module_16813094891898 { display: block !important; font-size: 28px !important; font-weight: bold !important; text-align: center !important }
#hs_cos_wrapper_module_16813094891898 p , #hs_cos_wrapper_module_16813094891898 li , #hs_cos_wrapper_module_16813094891898 span , #hs_cos_wrapper_module_16813094891898 label , #hs_cos_wrapper_module_16813094891898 h1 , #hs_cos_wrapper_module_16813094891898 h2 , #hs_cos_wrapper_module_16813094891898 h3 , #hs_cos_wrapper_module_16813094891898 h4 , #hs_cos_wrapper_module_16813094891898 h5 , #hs_cos_wrapper_module_16813094891898 h6 { font-size: 28px !important; font-weight: bold !important }
.homerow1-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow1-row-1-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow2-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow2-row-1-max-width-section-centering > .row-fluid {
max-width: 1000px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.homerow3-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow3-row-1-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow3-row-2-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow3-row-3-force-full-width-section > .row-fluid {
max-width: none !important;
}
.module_16813106559165-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_16813106559165-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_16813106559172-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_16813106559172-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_1681310635659-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_1681310635659-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_1681310670789-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_1681310670789-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.homerow4-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-0-max-width-section-centering > .row-fluid {
max-width: 1000px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.homerow5-row-1-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-2-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-3-max-width-section-centering > .row-fluid {
max-width: 1100px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.homerow5-row-4-max-width-section-centering > .row-fluid {
max-width: 1100px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.homerow5-row-5-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-6-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-7-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow5-row-8-max-width-section-centering > .row-fluid {
max-width: 1100px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.widget_1683211667071-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: start !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
justify-content: flex-start;
}
.widget_1683211667071-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.homerow6-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.module_168130953706028-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706028-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_168130953706030-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706030-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_168130953706022-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706022-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_168130953706024-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706024-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_168130953706016-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706016-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.module_168130953706018-flexbox-positioning {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-align: center !important;
-ms-flex-pack: start;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: flex-start;
}
.module_168130953706018-flexbox-positioning > div {
max-width: 100%;
flex-shrink: 0 !important;
}
.homerow7-row-0-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow7-row-1-force-full-width-section > .row-fluid {
max-width: none !important;
}
.homerow7-row-2-force-full-width-section > .row-fluid {
max-width: none !important;
}
/* HubSpot Non-stacked Media Query Styles */
@media (min-width:768px) {
.homerow3-row-0-vertical-alignment > .row-fluid {
display: -ms-flexbox !important;
-ms-flex-direction: row;
display: flex !important;
flex-direction: row;
}
.cell_1681310655916-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_1681310655916-vertical-alignment > div {
flex-shrink: 0 !important;
}
.cell_168130911813714-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130911813714-vertical-alignment > div {
flex-shrink: 0 !important;
}
.cell_16813090641818-row-0-vertical-alignment > .row-fluid {
display: -ms-flexbox !important;
-ms-flex-direction: row;
display: flex !important;
flex-direction: row;
}
.cell_168130906418111-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130906418111-vertical-alignment > div {
flex-shrink: 0 !important;
}
.cell_168130906418110-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130906418110-vertical-alignment > div {
flex-shrink: 0 !important;
}
.homerow6-row-0-vertical-alignment > .row-fluid {
display: -ms-flexbox !important;
-ms-flex-direction: row;
display: flex !important;
flex-direction: row;
}
.cell_168130953706012-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130953706012-vertical-alignment > div {
flex-shrink: 0 !important;
}
.cell_168130953706011-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130953706011-vertical-alignment > div {
flex-shrink: 0 !important;
}
.cell_168130953706010-vertical-alignment {
display: -ms-flexbox !important;
-ms-flex-direction: column !important;
-ms-flex-pack: center !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}
.cell_168130953706010-vertical-alignment > div {
flex-shrink: 0 !important;
}
}
/* HubSpot Styles (default) */
.homerow1-row-1-padding {
padding-top: 21px !important;
}
.homerow2-row-1-padding {
padding-top: 21px !important;
}
.homerow3-row-1-padding {
padding-top: 21px !important;
}
.homerow5-row-3-padding {
padding-top: 0px !important;
padding-bottom: 35px !important;
}
.homerow5-row-4-padding {
padding-top: 0px !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="index.html">
<meta property="og:url" content="">
<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-113317857301 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">
<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" role="none"><a href="javascript:;" aria-haspopup="true" aria-expanded="false" role="menuitem">About us</a>
<ul role="menu" class="hs-menu-children-wrapper">
<li class="hs-menu-item hs-menu-depth-2" 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 homepage">
<div class="container-fluid homerow1">
<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 dnd-section homerow1-row-0-force-full-width-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_1662438297253" 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 style="color:#283618;" >Shaping Futures, Empowering Dreams</h1>
<p style="font-size: 18px; margin-bottom: 4rem;"><span>Empowering Students for Academic Success and Personal Growth Journey.</span></p>
<div class="bnr_btns">
<div class="bnr_btn cta_btn">
<span class="btn_cta">
<a href="/contact.html" style="text-decoration: none;color: white;">TALK TO AN ADVISOR</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span8 bnr_right">
<div class="bnr_img" style="background-image: url(hs-fs/hubfs/medium-shot-people-graduating.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(hs-fs/hubfs/medium-shot-people-graduating.jpg);">
<div class="bnr_mobcontnt">
<h2 class="banner-mobile-dd">A Different Kind of College Application Experience</h2>
<p style="font-size: 18px;"><span>Enjoy less stress and more success for you and your teen.</span></p>
<div class="bnr_btns">
<div class="bnr_btn cta_btn">
<span class="btn_cta">
<a href="/contact.html" style="text-decoration: none;color: white;">TALK TO N ADVISOR</a>
</span>
</div>
</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 class="row-fluid-wrapper row-depth-1 row-number-3 dnd-section homerow1-row-1-force-full-width-section homerow1-row-1-padding">
<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-4 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_module_16781157732394" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module widget-type-space" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module"><span class="hs-horizontal-spacer"></span></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 homerow2">
<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 dnd-section homerow2-row-0-force-full-width-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><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
<div class="row-fluid-wrapper row-depth-1 row-number-3 dnd-section homerow2-row-1-padding homerow2-row-1-max-width-section-centering">
<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-4 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_module_1681309098797" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module widget-type-header" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module">
<span id="hs_cos_wrapper_module_1681309098797_" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_header" style="" data-hs-cos-general-type="widget" data-hs-cos-type="header"><h2>Our Services</h2></span></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 homerow3">
<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 homerow3-row-0-force-full-width-section homerow3-row-0-vertical-alignment dnd-section">
<div class="row-fluid ">
<div class="span6 widget-span widget-type-cell cell_168130911813714-vertical-alignment dnd-column" style="" data-widget-type="cell" data-x="0" data-w="6">
<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 module_1681310635659-flexbox-positioning dnd-module" style="" data-widget-type="custom_widget" data-x="0" data-w="12">
<div id="hs_cos_wrapper_module_1681310635659" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module widget-type-linked_image" style="" data-hs-cos-general-type="widget" data-hs-cos-type="module">
<span id="hs_cos_wrapper_module_1681310635659_" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_linked_image" style="" data-hs-cos-general-type="widget" data-hs-cos-type="linked_image"><img src="hs-fs/hubfs/Landing%20Page%20Banner%20Images/medium-shot-people-travel-agency-office.jpg" class="hs-image-widget " width="800" height="533" style="max-width: 100%; height: auto;" alt="3" title="3" loading="lazy" sizes="(max-width: 800px) 100vw, 800px"></span></div>
</div><!--end widget-span -->
</div><!--end row-->
</div><!--end row-wrapper -->
<div class="row-fluid-wrapper row-depth-1 row-number-3 dnd-row">
<div class="row-fluid ">