-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
811 lines (714 loc) · 39.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MarinaHacks</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/turtle.png" rel="icon">
<link href="img/turtle.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,600,700,700i|Montserrat:300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<link href="animate" rel="stylesheet">
<!--====== Animate CSS ======-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--====== Line Icons CSS ======-->
<link rel="stylesheet" href="assets/css/LineIcons.css">
<!--====== Font Awesome CSS ======-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--====== Bootstrap CSS ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Default CSS ======-->
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style CSS ======-->
<link rel="stylesheet" href="assets/css/style.css">
<!-- =======================================================
Theme Name: MarinaHacks
Theme URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div id="topbar">
<div class="container">
<div class="social-links">
<a href="https://twitter.com/csulbwic" target="_blank" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/wic.csulb/" target="_blank" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/csulbwic/" target="_blank" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/marina_hacks/" target="_blank" class="instagram"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div id="navbar-content" class="container" style="display: none;">
<div id="logo" class="logo float-left ">
<a href="#" class="scrollto"><img src="img/whitelogo.png" width="150" alt=""></a>
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<!-- <li><a href="#schedule">Schedule</a></li> -->
<!-- <li><a href="#speakers">Speakers</a></li> -->
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#footer">Contact</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSfLktsjhdhQil4zA0cEiXslVB_OATcziWzM8d66v2YLpL1W8A/viewform" target="_blank" rel="noopener noreferrer"><span class="register1">Become a Hacker!</span></a></li>
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro" class="clearfix">
<div id="back-bubbles" class="particles"></div>
<div id="parallax">
<div id="parallax-origin" class="parallax-origin"></div>
<div id="parallax-light" class="parallax-light"></div>
<div id="parallax-background" class="parallax-background"></div>
<div id="parallax-middleground" class="parallax-middleground"></div>
<div id="parallax-foreground" class="parallax-foreground"></div>
</div>
<div id="landing-logo" class="container d-flex h-100">
<div class="row justify-content-center align-self-center intro-info order-md-first order-last">
<div class="col-md-8 align-self-center">
<!-- <br> -->
<!-- <img src="newlogoTransparent.png" alt="" class="img-fluid"> -->
<img src="img/whitelogo.png" display="flex" align-items="center" max-width="100%" height="intrinsic" object-fit="cover" alt="" class="img-fluid">
<div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfLktsjhdhQil4zA0cEiXslVB_OATcziWzM8d66v2YLpL1W8A/viewform" class="btn-get-started scrollto" target="_blank" aria-disabled="false">Apply to Hack</a> <!-- previously pricing -->
<!-- <a href="#team" class="btn-get-started scrollto" target="_blank" aria-disabled="false">Volunteer</a> -->
<a href="https://docs.google.com/forms/d/e/1FAIpQLSf0nTpt80nF6AcJYCSSpwemOtVZlxumAgxxGqzYO0TFIm9C1A/viewform" class="btn-get-started scrollto" target="_blank">Become a Volunteer</a>
</div>
</div>
<!-- <div class="read_more">
<a href="#about" class="scrollto" position="fixed" bottom="0">
<img src="img/arrow.png" alt="" class="img-fluid">
</a>
</div> -->
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6">
<img src="img/transpturt.png" alt="">
</div>
<div class="col-lg-7 col-md-6">
<div class="about-content">
<h2><img src="img/marinalogo.png" alt="" class="img-fluid"></h2>
<h3>CSULB's Women-Centric Hackathon</h3>
<p>
Women in Computing is hosting MarinaHacks: California State University, Long Beach's annual women-centric hackathon.
This free event is dedicated to bringing together women to hone their skills, develop confidence
and fill the gender gap within the competitive tech industry.
</p>
<ul>
<li><i class="ion-android-checkmark-circle"></i> Spring 2023 </li>
<li><i class="ion-android-checkmark-circle"></i> 7 AM - 10 PM PDT</li>
<li><i class="ion-android-checkmark-circle"></i> Free Hybrid Hackathon</li>
<li><i class="ion-android-checkmark-circle"></i> In-Person Venue at CSULB University Student Union Grand Ballroom</li>
</ul>
<p>Hosted by <a href="https://csulbwic.com/" target="_blank">Women in Computing</a></p>
</div>
</div>
</div>
</div>
</section><!-- #about -->
<!--==========================
Pillars Section
============================-->
<section id="pillars" class="services-area pt-120 ">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<header class="section-header">
<h3>Pillars</h3>
This year at MarinaHacks, develop an innovative project that targets one of our competition pillars.
</header>
</div>
</div> <!-- row -->
<div class="row justify-content-center">
<div class="col-lg-4 col-md-7 col-sm-8">
<div class="pillar-card single-services text-center mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.2s">
<div class="services-icon">
<img class="shape" src="assets/images/connecting.png" alt="">
</div>
<div class="services-content mt-30">
<h4 class="services-title font-weight-light" style="color: #fff !important">Connecting</h4>
<p class="text" style="color: #fff !important; font-weight: lighter;">
Social distancing & virtual learning doesn't mean we should be disconnected. Make technology that can bring us together.</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-7 col-sm-8">
<div class="pillar-card single-services text-center mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="services-icon">
<img class="shape" src="assets/images/wellbeing.png" alt="">
</div>
<div class="services-content mt-30">
<h4 class="services-title font-weight-light" style="color: #fff !important">Well-being</h4>
<p class="text" style="color: #fff !important; font-weight: lighter;">
COVID-19 has changed the lives of many in our communities. Create technology that can improve our own well-being, as well as the environment's.</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-7 col-sm-8">
<div class="pillar-card single-services text-center mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s">
<div class="services-icon">
<img class="shape" src="assets/images/entertainment.png" alt="">
</div>
<div class="services-content mt-30">
<h4 class="services-title font-weight-light" style="color: #fff !important">Entertainment</h4>
<p class="text" style="color: #fff !important; font-weight: lighter;">Throughout the pandemic, people have been finding different ways to channel their creativity. Develop technology that brings your creativity to life. </p>
</div>
</div> <!-- single services -->
</div>
</div> <!-- container -->
</section>
<!--==========================
Attend Section
============================-->
<section id="attend" class="wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Join the Event</h3>
Attendee registration for the 2023 event will open soon.
</header>
<div class="row justify-content-center" style="padding-bottom: 60px;">
<div class="video embed-responsive embed-responsive-16by9 col-lg-8 col-md-8 col-sm-8 col-xs-8">
<iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/a7wJW0wzEIw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row justify-content-center align-self-center">
<div class="col-xs-12 col-lg-4">
<div class="box">
<div class="title">
</div>
<div class="card-block">
<h4 class="title">
Join the Waitlist <br> MarinaHacks 3.0
<h5><a href="https://docs.google.com/forms/d/e/1FAIpQLSdyZLO5thVDh1Ai4S-JGqtjBA564SW9hqgLM3j_8EGqKODCgg/viewform?usp=sf_link" target="_blank" class="btn">Join Waitlist</a></h5>
<!-- <h5><div class="disabled-btn">Opening Soon For MarinaHacks 2023</div></h5> -->
</div>
</div>
</div>
<div class="col-xs-12 col-lg-4">
<div class="box">
<div class="title">
</div>
<div class="card-block">
<h4 class="title">
Volunteer at <br> MarinaHacks 3.0
<h5><a href="https://docs.google.com/forms/d/e/1FAIpQLSf0nTpt80nF6AcJYCSSpwemOtVZlxumAgxxGqzYO0TFIm9C1A/viewform?usp=pp_url" target="_blank" class="btn">Apply Now</a></h5>
<!-- <h5><div class="disabled-btn">Opening Soon For MarinaHacks 2023</div></h5> -->
</div>
</div>
</div>
<div class="col-xs-12 col-lg-4">
<div class="box">
<div class="title">
<!-- <h3><span class="currency">$</span>19<span class="period">/month</span></h3> -->
</div>
<div class="card-block">
<h4 class="title">
MarinaHacks <br /> Devpost
<!-- <h5 class="deadline">Deadline: March 25, 2021</h5> -->
<!-- <h5>REGISTRATION WILL OPEN SOON FOR 2022 </h5> -->
<h5><a href="https://marinahacks-2022.devpost.com/" target="_blank" class="btn">View 2022 Submissions</a></h5> <!-- Updated Button -->
<!-- <a href="https://forms.gle/HteTTTou7iUbAUU68" target="_blank" class="btn">SIGN UP</a> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Notable Speakers
============================-->
<section id="speakers">
<div class="container">
<header class="section-header">
<h3>2022 Keynote Speaker</h3>
</header>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="testimonial-item">
<img src="img/hosna-qasmei.png" class="testimonial-img" alt="">
<h3>Hosna Qasmei</h3>
<h4>Associate Embedded Systems Engineer @ Proterra Ag</h4>
<p>
Hosna has been working as an Embedded Systems Engineer for an agricultural technology startup, Proterra Ag since 2021. Before that, she worked as a Software Engineer at Teledyne Imaging Sensors and has interned at places such as Northrop Grumman and RITEC Rugged.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!--#testimonials -->
<!--==========================
Sponsorship Section
============================-->
<section id="sponsors" class="wow fadeInUp">
<!-- <section id="sponsors" class="wow fadeInUp section-bg"> -->
<div class="container"> <!-- Sponsor Container -->
<div class="section-header "> <!-- Header Section -->
<h3>2022 Sponsors</h3>
<br><br>
</div> <!-- End of Header Section -->
<div class="row justify-content-center"> <!-- Sponsor List Section -->
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box1">
<a href="https://cloud.google.com/" target="_blank">
<img src="img/2022spons/logo.png" alt="" style="height: 240px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box1">
<a href="https://apprisscommerce.com/" target="_blank">
<img src="img/2022spons/ApprissRetail.png" alt="" style="height: 240px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box1">
<a href="https://stemadvantage.org/" target="_blank">
<img src="img/2022spons/stemadvantage.png" alt="" style="height: 240px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box2">
<a href="https://www.cisco.com/" target="_blank">
<img src="img/2022spons/cisco.png" alt="" style="height: 140px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box2">
<a href="https://www.useascend.com/" target="_blank">
<img src="img/2022spons/ascend.png" alt="" style="height: 140px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box2">
<a href="https://guayaki.com/" target="_blank">
<img src="img/2022spons/yerba.png" alt="" style="height: 140px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box2">
<a href="https://www.interviewcake.com/" target="_blank">
<img src="img/2022spons/InterviewCake.png" alt="" style="height: 75px; object-fit: contain;" class="img-fluid">
</a>
</div>
</div>
</div>
</div> <!-- End of Sponsor Container -->
</section>
<!--==========================
Team Section
============================-->
<section id="team">
<div class="container">
<div class="section-header">
<h3>Our Team</h3>
<p>Meet the team who help put MarinaHacks together.</p>
</div>
<section id="services">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/githel.png" alt="" border-radius="50%">
</div>
<h4 class="title">Githel Suico</h4>
<p class="description">
<h4 class="tag organizer">Main Organizer</h4>
<h4 class="tag website">Website Committee Lead</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/han.jpeg" alt="" border-radius="50%">
</div>
<h4 class="title">Han Pham</h4>
<p class="description">
<h4 class="tag organizer">Main Organizer</h4>
<h4 class="tag website">Website Committee Lead</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/victoria.png" alt="" border-radius="50%">
</div>
<h4 class="title">Victoria Macali</h4>
<p class="description">
<h4 class="tag organizer">Main Organizer</h4>
<h4 class="tag sponsorship">Sponsorship Committee Lead</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/ellesia_truong.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Ellesia Truong</h4>
<p class="description">
<h4 class="tag sponsorship">Sponsorship Committee Lead</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/keira.jpeg" alt="" border-radius="50%">
</div>
<h4 class="title">Keira Wong</h4>
<p class="description">
<h4 class="tag design">Design Committee Lead</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/nicole.png" alt="" border-radius="50%">
</div>
<h4 class="title">Nicole Tendencia</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="img/shark.png" alt="" border-radius="50%">
</div>
<h4 class="title">Denise Martinez</h4>
<p class="description">
<h4 class="tag sponsorship">Sponsorship Committee </h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/glizelle.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Glizelle Mapa</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/bich-tram.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Bich-Tram Pham</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/gaurav.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Gaurav Paryani</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/bilan.jpeg" alt="" border-radius="50%">
</div>
<h4 class="title">Bilan</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/jasmine_san_juan.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Jasmine San Juan</h4>
<p class="description">
<h4 class="tag design">Design Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="img/shark.png" alt="" border-radius="50%">
</div>
<h4 class="title">Isabel Delgado</h4>
<p class="description">
<h4 class="tag sponsorship">Sponsorship Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/phiona_tumbaga.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Phiona Tumbaga</h4>
<p class="description">
<h4 class="tag sponsorship">Sponsorship Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/isela_cruz.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Isela Cruz</h4>
<p class="description">
<h4 class="tag sponsorship">Sponsorship Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/ninjin.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Ninjin Odkhuu</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
<h4 class="tag design">Design Committee</h4>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-2 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="front">
<div class="icon">
<img src="team/jolene_ngu.jpg" alt="" border-radius="50%">
</div>
<h4 class="title">Jolene Ngu</h4>
<p class="description">
<h4 class="tag website">Website Committee</h4>
<h4 class="tag sponsorship">Sponsorship Committee</h4>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!--#team -->
<!--==========================
Frequently Asked Questions Section
============================-->
<section id="faq" class="wow fadeInUp">
<!-- <section id="faq" class="wow fadeInUp section-bg"> -->
<div class="container">
<header class="section-header">
<h3>FAQ</h3>
</header>
<ul id="faq-list" class="wow fadeInUp">
<li>
<a data-toggle="collapse" style="color: #fff !important;" class="collapsed" href="#faq1">When is MarinaHacks?<i class="ion-android-remove"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
MarinaHacks will take place from 11:00 AM Saturday, April 22nd, 2023 to 4:00 PM Sunday, April 23rd, 2023.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" style="color: #fff !important;" href="#faq2" class="collapsed">What takes place at MarinaHacks?<i class="ion-android-remove"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
There will be several workshops hosted by our sponsors, interactive socials, and a change to compete for prizes!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" style="color: #fff !important;" href="#faq3" class="collapsed">Will the event be in-person? <i class="ion-android-remove"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
MarinaHacks 3.0 will be in-person with an exception for some workshops. Maximum capacity 40 people In-person registration is first come, first serve for those that apply to attend MarinaHacks.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" style="color: #fff !important;" href="#faq4" class="collapsed">What are the benefits of sponsoring/hosting a workshop at MarinaHacks?<i class="ion-android-remove"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
Those that sponsor either with monetary donations or non-monetary such as workshops will receive company outreach & exposure to students at CSULB, be able to highlight your
company's emerging products & technology, partake in mentorship opportunities, receive access to the member base's resumes, and most importantly, become an ally for a more inclusive & open
tech industry.
<br>
<br>Check out our contact section if you'd like to reach out to us for collaboration inquiries and receive our Sponsorship Package.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" style="color: #fff !important;" href="#faq5" class="collapsed">What are the prizes for the hackathon winners?<i class="ion-android-remove"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
Hackathon winners per each pillar will receive the specified prizes in the MarinaHacks Devpost.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" style="color: #fff !important;" href="#faq6" class="collapsed">What are the benefits in competing in the hackathon?<i class="ion-android-remove"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p style="color: #fff !important;">
Competitors will get their resume and contact information sent to our sponsors. Participating in the hackathon also allows you to partake in workshops and other events with our sponsors. Network with professionals as well as other students.
</p>
</div>
</li>
</ul>
</div>
</section>
</main>
<!--==========================
Contact Us
============================-->
<div id="contact" class="wow fadeInUp">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-6">
<img src="assets/images/squid.png" padding="10" alt="">
</div>
<div class="col-lg-7 col-md-6">
<header class="section-header">
<h3 style="text-align: left;">Contact</h3>
<p style="text-align: left;">Reach out to us for general questions or
sponsorship inquiries at <a style="color: #a0a0fd !important;" href="mailto:[email protected]?" rel="EMAIL" target="_blank"> [email protected]</a></p>
</header>
<div class="buttons-section">
<div class="icon-back">
<a href="mailto:[email protected]?" target="_blank" class="ion-email"></a>
</div>
<div class="icon-back">
<a href="https://www.instagram.com/marina_hacks/" target="_blank" class="instagram"><i class="fa fa-instagram"></i></a>
</div>
<div class="icon-back">
<a href="https://csulbwic.com/" target="_blank" class="instagram"><img style="width: 60%; margin-bottom: 20px;" src="img/wic-logo.png"/></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="copyright">
© Copyright MarinaHacks. All Rights Reserved
<br><br>
</div>
</footer>
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=Rapid
-->
<!-- Brought to you by <a href="https://csulbwic.com/">Women In Computing</a>
</div>
</div>
</footer>#footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Uncomment below i you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/mobile-nav/mobile-nav.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Particles -->
<!-- https://vincentgarreau.com/particles.js/ -->
<script src="js/particles.min.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>