-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
870 lines (732 loc) · 39.1 KB
/
Copy pathindex.html
File metadata and controls
870 lines (732 loc) · 39.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Adventure Park Franchisee Association - Welcome</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/trampline.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/vendor/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: BizPage - v4.0.2
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top header-transparent">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-xl-11 d-flex align-items-center">
<h1 class="logo mr-auto"><a href="index.html">APFAusa.com </a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#about">Who We Are</a></li>
<!-- <li><a href="#portfolio">Locations</a></li> -->
<li><a href="#team">Legal Team</a></li>
<li class="drop-down"><a href="">Members</a>
<ul>
<li><a href="#call-to-action">Membership Fee</a></li>
<li><a href="#">News Feed</a></li>
<li><a href="#services">FAQs</a></li>
<li><a href="#">Members Portal</a></li>
</ul>
</li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</div>
</div>
</header><!-- End Header -->
<!-- ======= Intro Section ======= -->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active" style="background-image: url(assets/img/intro-carousel/2.jpg)">
<div class="carousel-container">
<div class="container">
<h2 class="animate__animated animate__fadeInDown"><img src="assets/img/APFA_LOGO_400w.png" id="logoHeadline1"></img></h2>
<!-- <p class="animate__animated animate__fadeInUp">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> -->
<a href="#featured-services" class="btn-get-started scrollto animate__animated animate__fadeInUp">Who We Are</a>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url(assets/img/flabeach_1920x1281.jpg)">
<div class="carousel-container">
<div class="container">
<h2 class="animate__animated animate__fadeInDown">2nd Annual<br> AFPA Convention</h2>
<p class="animate__animated animate__fadeInUp">Jan 14-15, 2021 🌴 South Beach Miami, FL. Join us at the Adventure Park Franchisee Association members convention meeting at the Nobu Hotel in Miami Beach.</p>
<a href="#featured-services" class="btn-get-started scrollto animate__animated animate__fadeInUp">See Details</a>
</div>
</div>
</div>
<!-- <div class="carousel-item" style="background-image: url(assets/img/intro-carousel/3.jpg)">
<div class="carousel-container">
<div class="container">
<h2 class="animate__animated animate__fadeInDown">Headline 3</h2>
<p class="animate__animated animate__fadeInUp">Beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt omnis iste natus error sit voluptatem accusantium.</p>
<a href="#featured-services" class="btn-get-started scrollto animate__animated animate__fadeInUp">Get Started</a>
</div>
</div>
</div> -->
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- End Intro Section -->
<main id="main">
<!-- ======= Featured Services Section Section ======= -->
<section id="featured-services">
<div class="container">
<div class="row">
<div class="col-lg-4 box">
<i class="ion-ios-bookmarks-outline"></i>
<h4 class="title"><a href="">Recent News</a></h4>
<p class="description">This is a link to where ever you would like it to be on the internet. It can even be changed to another feature if you like.</p>
</div>
<div class="col-lg-4 box box-bg">
<i class="ion-ios-stopwatch-outline"></i>
<h4 class="title"><a href="">Upcoming Events</a></h4>
<p class="description">With this link you can link to another site or use it for something else. The Icons can also be changed.</p>
</div>
<div class="col-lg-4 box">
<i class="ion-ios-heart-outline"></i>
<h4 class="title"><a href="">Become A Member</a></h4>
<p class="description">Another link to go anywhere in the world wide web, except the dark web.</p>
</div>
</div>
</div>
</section><!-- End Featured Services Section -->
<!-- ======= About Us Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3>Who We Are</h3>
<p>
Established October 2018 with 12 original members. APFA members are made up 100% of existing Urban Air Franchisees. All members have backgrounds that range from legal, medical, finance, banking, entrepreneurship, restaurateurs and education professionals.
</p>
<p>
The purpose of the Association is to encourage franchisor-franchisee communications and relations, increase franchisee awareness through publications and seminars, improve franchised business conditions, and promote and foster the interests of franchisees of the APFA, INC., a Delaware corporation (together with any successor, assign or affiliate thereof which sells Urban Air Adventure Park franchises. The APFA, Inc. is dedicated to preserving and enhancing the business interests of all Urban Air Adventure Park franchisees. From supporting the growth of the Urban Air Adventure Park brand to providing support to franchisees about issues affecting their businesses the APFA strives to provide opportunities to interact and learn from fellow franchisees and collaborate with the franchisor to improve brand equity for all stakeholders.
</p>
<h3>Our Mission</h3>
<p>
The mission of the APFA is to protect and advance the needs and interests of the Urban Air Franchisee in order to increase profitability. To establish a working relationship with the Franchisor in order to facilitate these goals. (Well said)
</p>
<p>
To assist in collective bargaining activities on behalf of all franchisees represented by the Association; to promote the general financial health of the members of the Association; to be a strong, forceful advocate for the adventure park owners and to be the ultimate guardian and defender against the usurping of the reasonable span of control and profits of our member’s parks.
</p>
<p>
To maximize the profitability and the value of all urban air franchisees by focusing on maximizing revenue and minimizing all expenses and cost.
</p>
<!-- <p>
We are a group of Urban Air franchisees that feel it's important to have a unified voice while being legally represented to help execute franchisee goals and objectives with the franchisor. Contrary to the franchisor established FAC this group requires attention to all details in real time and not pushed off down the road for a later date.
</p> -->
<!-- <h3>Mission Statement:</h3>
<ol>
<li>
</li>
<li>
</li>
<li>
</li>
<li>
</li>
<li>
</li>
</ol> -->
</header>
<!-- <div class="row about-cols">
<div class="col-md-4" data-aos="fade-up" data-aos-delay="100">
<div class="about-col">
<div class="img">
<img src="assets/img/about-mission.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Mission</a></h2>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="200">
<div class="about-col">
<div class="img">
<img src="assets/img/about-plan.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-list-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Plan</a></h2>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="300">
<div class="about-col">
<div class="img">
<img src="assets/img/about-vision.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-eye-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Vision</a></h2>
<!-- <p>
This is a forum to exchange ideas about best practices, develop options for more efficient operations and to address issues with the home office with a collective voice.
</p> -->
<!-- </div>
</div>
</div> -->
</div>
</section><!-- End About Us Section -->
<!-- ======= Services Section ======= -->
<!-- <section id="services">
<div class="container" data-aos="fade-up">
<header class="section-header wow fadeInUp">
<h3>FAQs</h3>
<p>Frequently asked questions with links.</p>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="ion-ios-analytics-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 1</a></h4>
<p class="description">If you think you are too small to make a difference, try sleeping with a mosquito.</p>
</div>
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="ion-ios-bookmarks-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 2</a></h4>
<p class="description">If you want others to be happy, practice compassion. If you want to be happy, practice compassion.</p>
</div>
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="ion-ios-paper-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 3</a></h4>
<p class="description">Be kind whenever possible. It is always possible.</p>
</div>
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 4</a></h4>
<p class="description">The world doesn’t belong to leaders. The world belongs to all humanity.</p>
</div>
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="ion-ios-barcode-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 5</a></h4>
<p class="description">Just one small positive thought in the morning can change your whole day.</p>
</div>
<div class="col-lg-4 col-md-6 box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="ion-ios-people-outline"></i></div>
<h4 class="title"><a href="https://www.google.com/" target="_blank">Topic 6</a></h4>
<p class="description">The goal is not to be better than the other man, but your previous self.</p>
</div>
</div>
</div>
</section>End Services Section -->
<!-- ======= Call To Action Section ======= -->
<section id="call-to-action">
<div class="container text-center" data-aos="zoom-in">
<h3>Membership Fee</h3>
<p> Membership pricing $1500 annual membership (+$1000 additional store)
What you get when you sign up your store with the apfa. Direct line of communication with APFA legal representatives for any questions you may have either individually at your location, your FDD or as a group to discuss legal issues within the daily operations.
</p>
<a class="cta-btn" href="https://www.paypal.com/us/signin" target="_blank">Pay Dues</a>
</div>
</section><!-- End Call To Action Section -->
<!-- ======= Skills Section ======= -->
<!-- <section id="skills">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3>Legal Advice</h3>
<p>Be kind to others and stay out of trouble! Happiness is not something ready made. It comes from your own actions.</p>
</header>
<div class="skills-content">
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
<span class="skill">Franchise Law <i class="val">100%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
<span class="skill">Personal Law <i class="val">90%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
<span class="skill">Business Law <i class="val">85%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100">
<span class="skill">Pro Bono <i class="val">75%</i></span>
</div>
</div>
</div>
</div>
</section>End Skills Section -->
<!-- ======= Facts Section ======= -->
<section id="facts">
<div class="container" data-aos="fade-up">
<header class="section-header faqs">
<h3>FAQ's</h3>
<h4>Will I be anonymous as a member?</h4>
<p>Answer here</p>
<h4>What does the association budget cover? </h4>
<p>Answer here</p>
<h4>TBD</h4>
<p>Answer here</p>
<h4>TBD</h4>
<p>Answer here</p>
</header>
<!-- <div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">12</span>
<p>Legal Team</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">26</span>
<p>Franchise Locations</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">18</span>
<p>Members</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">3</span>
<p>Attorneys</p>
</div>
</div> -->
<!-- <div class="facts-img">
<img src="assets/img/facts-img.png" alt="" class="img-fluid">
</div> -->
</div>
</section><!-- End Facts Section -->
<!-- ======= Portfolio Section ======= -->
<!-- <section id="portfolio" class="section-bg">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3 class="section-title">Legal Team 0</h3>
</header>
<div class="row" data-aos="fade-up" data-aos-delay="100"> -->
<!-- <div class=" col-lg-12">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<!-- <li data-filter=".filter-app">State</li>
<li data-filter=".filter-card">Region</li>
<li data-filter=".filter-web">Links</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- </div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/app1.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/app1.jpg" data-lightbox="portfolio" data-title="App 1" class="link-preview"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Profile 1</a></h4>
<p>Attorney</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/web3.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/web3.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Web 3"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Profile 2</a></h4>
<p>attorney</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/app2.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/app2.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="App 2"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Profile 3</a></h4>
<p>attorney</p>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/card2.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/card2.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Card 2"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Card 2</a></h4>
<p>Card</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/web2.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/web2.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Web 2"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Web 2</a></h4>
<p>Web</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/app3.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/app3.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="App 3"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">App 3</a></h4>
<p>App</p>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/card1.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/card1.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Card 1"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Card 1</a></h4>
<p>Card</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/card3.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/card3.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Card 3"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Card 3</a></h4>
<p>Card</p>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<figure>
<img src="assets/img/portfolio/web1.jpg" class="img-fluid" alt="">
<a href="assets/img/portfolio/web1.jpg" class="link-preview venobox" data-gall="portfolioGallery" title="Web 1"><i class="ion ion-eye"></i></a>
<a href="portfolio-details.html" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="portfolio-details.html">Web 1</a></h4>
<p>Web</p>
</div>
</div>
</div> -->
<!-- </div>
</div>
</section>End Portfolio Section -->
<!-- ======= Our Clients Section ======= -->
<!-- <section id="clients">
<div class="container" data-aos="zoom-in">
<header class="section-header">
<h3>Franchise Cities</h3>
</header>
<div class="owl-carousel clients-carousel">
<img src="assets/img/clients/client-1.png" alt="">
<img src="assets/img/clients/client-2.png" alt="">
<img src="assets/img/clients/client-3.png" alt="">
<img src="assets/img/clients/client-4.png" alt="">
<img src="assets/img/clients/client-5.png" alt="">
<img src="assets/img/clients/client-6.png" alt="">
<img src="assets/img/clients/client-7.png" alt="">
<img src="assets/img/clients/client-8.png" alt="">
</div>
</div>
</section>End Our Clients Section -->
<!-- ======= Testimonials Section ======= -->
<!-- <section id="testimonials" class="section-bg">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3>Legal Team 1</h3>
</header>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="assets/img/testimonial-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Attorney</h4>
<p>
<img src="assets/img/quote-sign-left.png" class="quote-sign-left" alt="">
I will help you with any questions or concerns you may have regarding legal issues.
<img src="assets/img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonial-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Attorney</h4>
<p>
<img src="assets/img/quote-sign-left.png" class="quote-sign-left" alt="">
I will help you with any questions or concerns you may have regarding legal issues.
<img src="assets/img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonial-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Attorney</h4>
<p>
<img src="assets/img/quote-sign-left.png" class="quote-sign-left" alt="">
I will help you with any questions or concerns you may have regarding legal issues.
<img src="assets/img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonial-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Attorney</h4>
<p>
<img src="assets/img/quote-sign-left.png" class="quote-sign-left" alt="">
I will help you with any questions or concerns you may have regarding legal issues.
<img src="assets/img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonial-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Attorney &</h4>
<p>
<img src="assets/img/quote-sign-left.png" class="quote-sign-left" alt="">
I will help you with any questions or concerns you may have regarding legal issues.
<img src="assets/img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
</div>
</div>
</section>End Testimonials Section -->
<!-- ======= Team Section ======= -->
<section id="team">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h3>Legal Team</h3>
<h5 id="llp">Marks & Klein, LLP.</h5><p>A specialist in franchise law and a strong partner in the association’s team helping support good business practices for our members.</p>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/Justin.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<a href="https://marksklein.com/attorneys/justin-m-klein/" target="_blank"><h4 id="legalLink">Justin M. Klein</h4></a>
<span>Attorney</span>
<div class="social">
<a href="https://www.linkedin.com/in/justin-m-klein-9a175b8/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="member" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/AndrewBleiman.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<a href="https://marksklein.com/attorneys/andrew-p-bleiman/" target="_blank"><h4 id="legalLink">Andrew P. Bleiman</h4></a>
<span>Attorney</span>
<div class="social">
<!-- <a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/andrew-p-bleiman-6104885/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-3 col-md-6">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/team-3.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>William Anderson</h4>
<span>Attorney</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
-->
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h3>Contact Us</h3>
<p>Send us a message and we will try our best to answer it in a timely manner.</p>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>1363 Shermer Road <br> Suite 318 <br> Northbrook, IL 60062</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+13122065162">312-206-5162</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:info@example.com">info@apfausa.com</a></p>
</div>
</div>
</div>
<!-- <div class="form">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="form-group col-md-6">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validate"></div>
</div>
<div class="form-group col-md-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validate"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div> -->
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 footer-info">
<h3>APFA</h3>
<h4>Adventure Park <br>Franchisee Association</h4>
<p>We are a group of Urban Air franchisees that feel it's important to have a unified voice while being legally represented to help execute franchisee goals and objectives with the franchisor. Contrary to the franchisor established FAC this group requires attention to all details in real time and not pushed off down the road for a later date.</p>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Home</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Who We Are</a></li>
<!-- <li><i class="ion-ios-arrow-right"></i> <a href="#">Discussions</a></li> -->
<li><i class="ion-ios-arrow-right"></i> <a href="#">Legal Team</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="privacy-policy.html" target="_blank">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
1363 Shermer Road <br>
Suite 318<br>
Northbrook, IL 60062 <br>
<strong>Phone:</strong> 312-206-5162<br>
<strong>Email:</strong> info@apfausa.com<br>
</p>
<div class="col-lg-4 col-md-6 social-links">
<img src="assets/img/APFA_LOGO_400w.png" id="logoBottom"></img>
</div>
</div>
<!-- <div class="col-lg-3 col-md-6 footer-newsletter">
<h4>Our Newsletter</h4>
<p>Stay tuned for more exciting news updats from the community</p>
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div> -->
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>BizPage</strong>. All Rights Reserved
</div>
<div class="credits">
<!--
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=BizPage
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- End 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> -->
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>