-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patholdindex.html
More file actions
973 lines (912 loc) · 36.5 KB
/
oldindex.html
File metadata and controls
973 lines (912 loc) · 36.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<!-- FONT AWESEOM CDN -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous"> -->
<!-- BOOTSTRAP -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&family=Raleway&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-81WH1RLJRG"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-81WH1RLJRG");
</script>
<title>Home</title>
<link
rel="shortcut icon"
href="assets/img/flowwww.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/maicons.css" />
<link rel="stylesheet" href="assets/vendor/animate/animate.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"
/>
<link rel="stylesheet" href="assets/css/bootstrap.css" />
<link rel="stylesheet" href="assets/css/mobster.css" />
<link rel="stylesheet" href="assets/css/team.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark navbar-floating">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/img/flwwwwww.png" alt="" width="80" />
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarToggler"
aria-controls="navbarToggler"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav ml-auto mt-3 mt-lg-0">
<li class="nav-item dropdown active">
<a
class="nav-link"
href="#"
id="navbarDropdown"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>Home</a
>
<!-- <div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="index.html">Homepage 1</a>
<a class="dropdown-item active" href="index.html">Homepage 2</a>
</div> -->
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<!-- <a class="nav-link" href="blog.html">Blog</a> -->
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<div class="ml-auto my-2 my-lg-0">
<!-- <a href="https://omaratwa.typeform.com/to/DTJBzopt" target=”_blank” class="btn btn-primary rounded-pill" role="button">Apply Now</a> -->
</div>
</div>
</div>
</nav>
<div
class="page-hero-section bg-image hero-home-2"
style="background-image: url(assets/img/bg_hero_2.svg)"
>
<div class="hero-caption">
<div class="container fg-white h-100">
<div class="row align-items-center h-100">
<div class="col-lg-6 wow fadeInUp">
<h1 style="font-size: 60px" class="mb-4 fw-normal">
Accelerating The Ideas of Tomorrow
</h1>
<p style="font-size: 20px" class="mb-4">
Waterloo's very own start-up <br />
incubator for high school students.
</p>
<div class="ml-auto my-10 my-lg-10">
<!-- <button class="btn btn-primary rounded-pill" >Apply Now</button> -->
<a
href="https://omaratwa.typeform.com/to/TnxAj1cB"
target="”_blank”"
class="btn btn-primary rounded-pill"
role="button"
>Apply now!</a
>
</div>
<!-- <a href="https://omaratwa.typeform.com/to/DTJBzopt" target=”_blank” class="btn btn-dark " style="color:black;" >Apply Now</a> -->
<!-- <a href="" target=”_blank” class="btn btn-primary rounded-pill" role="button">Apply Now</a> -->
</div>
<div class="col-lg-6 d-none d-lg-block wow zoomIn">
<div class="img-place mobile-preview floating-animate">
<img src="assets/img/flows.v2.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-section no-scroll">
<div class="container">
<h2
class="text-center wow fadeIn"
style="font-size: 50px"
style="color: #e45442"
>
What Flowboat Provides
</h2>
<div class="row justify-content-center mt-5">
<div class="col-lg-10">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 py-3 wow fadeInLeft">
<div
class="card card-body border-0 text-center pt-5 push-ups"
style="padding-top: 0px"
>
<div class="svg-icon mx-auto mb-4">
<img src="assets/img/big brain.png" alt="" height="281" />
</div>
<h5 style="color: #e45442; font-size: 28px" class="">
<b>Lessons in Entrepreneurship</b>
</h5>
<p class="fs-biggie">
At weekly meetings, practical lessons in entrepreneurship
are given to students, who then apply what they have learned
to their companies. We also have guest speakers who cover
topics such as programming, 3D printing, and financing.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4 py-3 wow fadeInUp">
<div
class="card card-body border-0 text-center pt-5"
style="padding-top: 0px"
>
<div class="svg-icon mx-auto mb-4">
<img src="assets/img/Help.png" alt="" />
</div>
<h5 style="color: #e45442; font-size: 28px" class="">
<b>Industry Mentors and Lecturers</b>
</h5>
<p class="fs-biggie">
Each Flowboat team is provided with an industry mentor who
is a field expert. Past mentors include the former director
of velocity, startup CEOs, software engineers, Professors,
and even farmers! Mentors provide valuable input for
Flowboat members.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4 py-3 wow fadeInRight">
<div
class="card card-body border-0 text-center pt-5"
style="padding-top: 0px"
>
<div class="svg-icon mx-auto mb-4">
<img src="assets/img/talk.png" alt="" />
</div>
<h5 style="color: #e45442; font-size: 28px" class="">
<b>Pitch Training and Development</b>
</h5>
<p class="fs-biggie">
Flowboat teams participate in a variety of pitching
competitions throughout the year including: MIT LaunchX Demo
Day, Diamond Challenge, and the Paradigm Contest. Past
Flowboat teams have received top honours at these
competitions.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-section">
<div class="container">
<div class="row">
<div class="col-lg-4 py-3">
<div class="iconic-list">
<div class="iconic-item wow fadeInUp">
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">170+</h5>
<p style="color: #e45442; font-size: 44px" class="">Alumni</p>
</div>
<div
class="iconic-md iconic-text bg-warning fg-white rounded-circle"
>
<span class=""><i class="fas fa-graduation-cap"></i></span>
</div>
</div>
<div class="iconic-item wow fadeInUp">
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">$10,000</h5>
<p style="color: #e45442; font-size: 44px" class="">
In Capital
</p>
</div>
<div
class="iconic-md iconic-text bg-info fg-white rounded-circle"
>
<span class=""><i class="fas fa-hand-holding-usd"></i></span>
</div>
</div>
<div class="iconic-item wow fadeInUp">
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">30+</h5>
<p style="color: #e45442; font-size: 44px" class="">
Startups
</p>
</div>
<div
class="iconic-md iconic-text bg-indigo fg-white rounded-circle"
>
<span class=""><i class="fas fa-rocket"></i></span>
</div>
</div>
</div>
</div>
<div class="col-lg-4 py-3 wow zoomIn">
<div class="img-place mobile-preview">
<img src="assets/img/flowwww.png" alt="" />
</div>
</div>
<div class="col-lg-4 py-3">
<div class="iconic-list">
<div class="iconic-item wow fadeInUp">
<div
class="iconic-md iconic-text bg-warning fg-white rounded-circle"
>
<span class=""><i class="fas fa-rocket"></i></span>
</div>
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">30+</h5>
<p style="color: #e45442; font-size: 44px" class="">
Startups
</p>
</div>
</div>
<div class="iconic-item wow fadeInUp">
<div
class="iconic-md iconic-text bg-success fg-white rounded-circle"
>
<span class=""><i class="fas fa-hand-holding-usd"></i></span>
</div>
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">$10,000</h5>
<p style="color: #e45442; font-size: 44px" class="">
In Capital
</p>
</div>
</div>
<div class="iconic-item wow fadeInUp">
<div
class="iconic-md iconic-text bg-indigo fg-white rounded-circle"
>
<span class=""><i class="fas fa-graduation-cap"></i></span>
</div>
<div class="iconic-content">
<h5 style="color: #e45442; font-size: 64px">170+</h5>
<p style="color: #e45442; font-size: 44px" class="">Alumni</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr />
<style>
.owl-carousel {
margin: 0 auto;
padding: 30px 0;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
z-index: 1;
width: 40px;
height: 75px;
background-color: #ccc;
position: absolute;
top: 50%;
transform: translatey(-40%);
}
.owl-nav button span {
font-size: 40px;
height: 100%;
display: block;
width: 100%;
}
.owl-carousel .owl-nav button.owl-prev {
left: 0;
}
.owl-carousel .owl-nav button.owl-next {
right: 0;
}
.owl-carousel .owl-nav {
margin: 0;
}
.btn-wrap {
text-align: center;
width: 100%;
}
button {
background-color: #ddd;
border: none;
padding: 10px 20px;
border-radius: 5px;
margin: 10px;
font-size: 18px;
font-weight: 600;
transition: all 0.5s;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.owl-theme .owl-nav .disabled,
button.disabled {
opacity: 0.6;
}
</style>
<script>
$(document).ready(function ($) {
$(".owl-carousel").owlCarousel({
loop: false,
margin: 10,
dots: false,
nav: true,
items: 3
});
var owl = $(".owl-carousel");
owl.owlCarousel();
$(".next-btn").click(function () {
owl.trigger("next.owl.carousel");
});
$(".prev-btn").click(function () {
owl.trigger("prev.owl.carousel");
});
$(".prev-btn").addClass("disabled");
$(owl).on("translated.owl.carousel", function (event) {
if ($(".owl-prev").hasClass("disabled")) {
$(".prev-btn").addClass("disabled");
} else {
$(".prev-btn").removeClass("disabled");
}
if ($(".owl-next").hasClass("disabled")) {
$(".next-btn").addClass("disabled");
} else {
$(".next-btn").removeClass("disabled");
}
});
});
</script>
<!-- Testimonials -->
<div class="mobile">
<div class="page-section resize">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6 wow fadeIn">
<h2>What our members say</h2>
</div>
</div>
</div>
<div class="container-fluid">
<div class="owl-carousel stack-carousel owl-theme mt-5 wow fadeInUp">
<div class="item">
<!-- <div class="ratings fs-small py-3">
<span class="icon mai-star"></span>
<span class="icon mai-star"></span>
<span class="icon mai-star"></span>
<span class="icon mai-star"></span>
<span class="icon mai-star-half"></span>
</div> -->
<div class="caption">
Before Flowboat, I would have never believed I would be able to
stand afront a panel of angel investors, pitching a meaningful
start-up, just after a few months of grit, resilience, and
class-A mentorship. What started out as an idea to bring
together some of the region's brightest youth has evolved into a
unique environment for young adults to learn and practice real,
efficient, and industry standard entrepreneurship. Now, setting
foot into the working world, I'm confident that I can bring to
any team a distinguishable set of skills that can turn great
ideas into even greater realities.<br /><br />
</div>
<div class="avatar mt-3">
<div class="avatar-img">
<img src="assets/img/adeeb.jpg" alt="" />
</div>
<div class="avatar-caption">
<p class="mb-0 fw-medium fg-primary">Adeeb Mahmud</p>
<div class="fs-vsmall fw-medium">Co-Founder of Unicity</div>
</div>
</div>
</div>
<div class="item">
<div class="caption">
Without Flowboat, Re-Fill would have just been another company
we hoped someone in the future would come up with. Flowboat
allowed us to find ourselves in an entrepreneurial sense, and
gave us a project to hold onto develop into a real-world
application for once. With the help of real entrepreneurs
guiding us, and lessons/activities that engage students more
than school, Flowboat is the premier space for young innovators
looking to early make their mark on the world of business. Now
that we are in post-secondary, we plan to pursue Re-Fill
further. Flowboat's guidance and energy will never be matched
and will always be in our hearts.
</div>
<div class="avatar mt-3">
<div class="avatar-img">
<img src="assets/img/Farzad-testimonialsec.jpg" alt="" />
</div>
<div class="avatar-caption">
<p class="mb-0 fw-medium fg-primary">Farzad Rahman</p>
<div class="fs-vsmall fw-medium">Co-Founder of ReFill</div>
</div>
</div>
</div>
<div class="item">
<div class="caption">
The Flowboat Entrepreneurship Club does a profound job bringing
together the theory and applicability of business concepts. From
participating in pitching competitions to receiving funding, the
program is designed to educate through the best method: real
experience. While the world of entrepreneurship can be
demanding, the Flowboat program guides and perfects your
entrepreneurial endeavours. For those hardworking and innovative
individuals, Flowboat is the club for you!<br /><br /><br />
</div>
<div class="avatar mt-3">
<div class="avatar-img">
<img src="assets/img/Adam-testimonialsec.jpg" alt="" />
</div>
<div class="avatar-caption">
<p class="mb-0 fw-medium fg-primary">Adam Radek Martinez</p>
<div class="fs-vsmall fw-medium">Co-Founder of Flowi</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- Clients -->
<div class="page-section" style="padding-bottom: 0px">
<div class="container">
<div class="text-center wow fadeIn">
<h2 class="mb-4">Our Startups</h2>
</div>
<div
class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-6 justify-content-center align-items-center mt-5"
>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-Hush">
<img src="assets/img/logos/Hush.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img">
<img src="assets/img/logos/ReFillIcon.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-stride">
<img
src="assets/img/logos/Stride.png"
alt=""
style="border-radius: 50%"
/>
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img--rework">
<img src="assets/img/logos/rework.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/logos/MealGuru.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/FeedbackBionics.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/logo_1.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/Ardito_Logo.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/nocturn.svg" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/Untitled-3.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/realing.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-guru">
<img src="assets/img/CompanyLogos/Untitled_design_1.png" alt="" />
</div>
</div>
</div>
</div>
<hr />
<div class="container">
<div class="text-center wow fadeIn">
<h2 class="mb-4">Our Sponsors and Partners</h2>
<p>
Interested in
<a
href="https://drive.google.com/file/d/17xEFlPr75oo0YtV_cTdsEGScPapEFl_5/view?usp=sharing"
target="”_blank”"
>sponsoring us?</a
>
</p>
</div>
<div
class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-5 justify-content-center align-items-center mt-5"
>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/logos/23423423423423.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/waterloo.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/logos/logo.d72f96b5.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/rh.png" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/logos/uwlogo2.gif" alt="" />
</div>
</div>
<div class="p-3 wow zoomIn">
<div class="img-place client-img-2-tk">
<img src="assets/img/logos/AC_logo.png" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="page-section bg-light">
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-lg-5 py-3 wow fadeInUp">
<h2 class="mb-4">
Frequently <br />
asked questions
</h2>
<!-- <p>hi</p> -->
<p class="fg-primary fw-medium">Need more help?</p>
<a
href="contact.html"
class="btn btn-gradient btn-split-icon rounded-pill"
>
<span class="icon mai-call-outline"></span> Contact Us
</a>
</div>
<div class="col-lg-7 py-3 no-scroll-x">
<div class="accordion accordion-gap" id="accordionFAQ">
<!--start of FAQ dropdowns-->
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingFour">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse1"
aria-expanded="false"
aria-controls="collapse1"
>
Is there a fee to join Flowboat?
</button>
</div>
<div
id="collapse1"
class="collapse"
aria-labelledby="headingFour"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
Flowboat members are required to pay a single $70
membership fee at the beginning of the season. This allows
us to provide members with awesome resources including
financial grants, mentors, weekly lectures, and pitching
events. It’s an investment with huge returns!
</p>
</div>
</div>
</div>
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingFive">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse7"
aria-expanded="false"
aria-controls="collapse7"
>
What does the Flowboat season look like?
</button>
</div>
<div
id="collapse7"
class="collapse"
aria-labelledby="headingFive"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
The 2023-24 Flowboat season kicks off on October 7th,
2023, and ends in the month of May. There are twenty
weekly lectures that take place on Saturday evenings at
the Accelerator Centre in the University of Waterloo.<br /><br />As
well, Flowboat spends time preparing members for two
pitching competitions: the Diamond Challenge competition,
held in the winter, and the Flowboat Pitching Competition,
hosted by Flowboat itself at the end of the season.
</p>
</div>
</div>
</div>
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingSix">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse3"
aria-expanded="false"
aria-controls="collapse3"
>
Where are Flowboat meetings held?
</button>
</div>
<div
id="collapse3"
class="collapse"
aria-labelledby="headingSix"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
For the 2023-24 season, Flowboat’s weekly lectures will be
hosted at the incredible Accelerator Centre venue at the
University of Waterloo. Please feel free to visit the
“Contact” page for the specific address.
</p>
</div>
</div>
</div>
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingSeven">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse4"
aria-expanded="false"
aria-controls="collapse4"
>
Can participation in Flowboat enhance my résumé?
</button>
</div>
<div
id="collapse4"
class="collapse"
aria-labelledby="headingSeven"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
As a Flowboat member, you will be working with your fellow
peers to locate a problem and develop your own, unique
solution to it. You’ll also gain plenty of experience in
the vast world of business and will develop vital skills
which are essential to being a successful entrepreneur.
This will all look great on a résumé!<br /><br />Additionally,
eligible Flowboat members will receive a certificate of
completion at the end of this season. This certificate
makes you eligible to use Flowboat as a reference for your
post-secondary applications!
</p>
</div>
</div>
</div>
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingEight">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse5"
aria-expanded="false"
aria-controls="collapse5"
>
What will I do as a Flowboat member?
</button>
</div>
<div
id="collapse5"
class="collapse"
aria-labelledby="headingEight"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
Members come together on Saturday evenings for weekly
lectures, where they can also meet students from across
the region. After being given time to brainstorm potential
problems they may want to address, members will then find
others who show interest in their ideas, with whom they
can form groups to work with for the rest of the season.
Weekly “Deliverables” are also assigned at the end of each
lecture, which groups will work together to complete and
submit before the next lecture.
</p>
</div>
</div>
</div>
<div class="accordion-item wow fadeInRight">
<div class="accordion-trigger" id="headingNine">
<button
class="btn collapsed"
type="button"
data-toggle="collapse"
data-target="#collapse6"
aria-expanded="false"
aria-controls="collapse6"
>
How can I join Flowboat next year?
</button>
</div>
<div
id="collapse6"
class="collapse"
aria-labelledby="headingNine"
data-parent="#accordionFAQ"
>
<div class="accordion-content">
<p>
For the 2023-24 season, early applications open on June 19
and run until July 1st. Main applications occur from July
10th to August 14th, and the final window to apply to
Flowboat is from the beginning of September to the
sixteenth. However, the sooner you apply, the better!<br /><br />Please
note that there is a limited number of spots available in
the Flowboat program each year; be sure to put lots of
care and effort into your application to better your
chances of acceptance.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-footer-section bg-dark fg-white">
<div class="container">
<div class="row mb-5 py-3">
<div class="col-sm-6 col-lg-2 py-3">
<h5 class="mb-3">Pages</h5>
<ul class="menu-link">
<li><a href="index.html" class="">Home</a></li>
<li><a href="about.html" class="">About</a></li>
<!-- <li><a href="blog.html" class="">Blog</a></li> -->
<li><a href="team.html" class="">Our Team</a></li>
</ul>
</div>
<div class="col-sm-6 col-lg-2 py-3">
<h5 class="mb-3">Club</h5>
<ul class="menu-link">
<li><a href="about.html" class="">About</a></li>
<li><a href="team.html" class="">Team</a></li>
</ul>
</div>
<div class="col-md-6 col-lg-4 py-3">
<h5 class="mb-3">Contact</h5>
<ul class="menu-link">
<li><a class="">Waterloo, Ontario, Canada</a></li>
<li><a class="">flowboatca@gmail.com</a></li>
<li><a class="">519 580 0963</a></li>
</ul>
</div>
<div class="col-md-6 col-lg-4 py-3">
<!-- Social Media Button -->
<div class="mt-4">
<a
href="https://www.youtube.com/channel/UCneHSaFXIBLJ_bhcNLhI_PA"
target="_blank"
class="btn btn-fab btn-primary fg-white"
><span class=""><i class="fab fa-youtube"></i></span
></a>
<a
href="https://twitter.com/Flowboat1"
target="_blank"
class="btn btn-fab btn-primary fg-white"
><span class="mai-logo-twitter"></span
></a>
<a
href="https://www.instagram.com/flowboatsocial/"
target="_blank"
class="btn btn-fab btn-primary fg-white"
><span class="mai-logo-instagram"></span
></a>
<!-- <a href="#" class="btn btn-fab btn-primary fg-white"><span class="mai-logo-google"></span></a> -->
</div>
</div>
</div>
</div>
<hr />
<div class="container">
<div class="row">
<div class="col-12 col-md-6 py-2">
<img src="assets/img/flwwwwww.png" alt="" width="70" />
<!-- Please don't remove or modify the credits below -->
<p class="d-inline-block ml-2">
© 2023 Flowboat, All Rights Reserved
</p>
</div>
<div class="col-12 col-md-6 py-2">
<ul class="nav justify-content-end"></ul>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery-3.5.1.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/owl-carousel/js/owl.carousel.min.js"></script>
<script src="assets/vendor/wow/wow.min.js"></script>
<script src="assets/js/mobster.js"></script>
</body>
</html>