-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1162 lines (1011 loc) · 72.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Monroe Mann Law, Life, Career, & Finance</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicons -->
<link rel="shortcut icon" type="image/jpg" href="images/favicon.ico"/>
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,700" rel="stylesheet">
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/f4719b702b44feedeb9427eec/c4b83ede2b17d9afe7b64fa45.js");</script>
</head>
<body data-spy="scroll" data-target="#pb-navbar" data-offset="200">
<nav class="navbar navbar-expand-lg site-navbar navbar-light bg-light" id="pb-navbar">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample09" aria-controls="navbarsExample09" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand title-mobile" href="index.html">Monroe Mann Law</a>
<div class="collapse navbar-collapse justify-content-md-center" id="navbarsExample09">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#section-home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#section-about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#section-praise">Praise</a></li>
<li class="nav-item"><a class="nav-link" href="#section-services">Services/Rates</a></li>
<li class="nav-item"><a class="nav-link" href="#section-portfolio">Pride</a></li>
<li class="nav-item"><a class="nav-link" href="#section-resume">Resume</a></li>
<li class="nav-item"><a class="nav-link" href="#section-blog">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="#section-contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section class="site-hero" style="background-image: url(images/kalen-emsley-Bkci_8qcdvQ-unsplash.jpg);" id="section-home" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row intro-text align-items-center justify-content-center">
<div class="col-md-10 text-center">
<h1 class="site-heading site-animate">Welcome to<br><strong>Monroe Mann Law</strong><br>Life, Career, & Finance</strong></h1>
<ul class="lead">
<li style="list-style-type: none">NY Entertainment & Contract Law</li>
<li style="list-style-type: none">Life, Career, & Productivity Coaching</li>
<li style="list-style-type: none">Personal & Business Financial Planning</li>
</ul>
<br>
<p><a href="#section-about" class="smoothscroll btn btn-primary px-4 py-3">More On Me</a></p>
</div>
</div>
</div>
</section> <!-- section -->
<section class="site-section" id="section-about">
<div class="container">
<div class="row mb-5 align-items-center">
<div class="col-lg-7 pr-lg-5 mb-5 mb-lg-0">
<img src="images/8xPatrice-Kelly-104.jpg" alt="Image placeholder" class="img-fluid">
</div>
<div class="col-lg-5 pl-lg-5">
<div class="section-heading">
<h2>About <strong>Me</strong></h2>
</div>
<p class="lead">Hello, I'm Monroe. My official name is Dr. Monroe Mann, PhD, Attorney, MBA, LLM, ME. Among other things, I'm an attorney (licensed in New York), entertainer, author, filmmaker, actor, musician, comedian, entrepreneur, and youtuber. I'm also proud to be a bronze-star nominated Iraq war veterean. You can read more about me at <a href="https://www.monroemann.com" target="_blank">monroemann.com</a></p>
<p class="mb-5 ">I look forward to helping you navigate through whatever it is that ails you with law, finance, career, and life! From helping you raise money and negotiating/drafting an agreement to assisting you plan your career, life, and finances, I am a versatile, accomplished, and motivating asset to add to your team. Shall we get started?</p>
<p>
<a href="#section-contact" class="smoothscroll btn btn-primary px-4 py-2 btn-sm smoothscroll">Hire Me</a>
<a href="#section-resume" class="smoothscroll btn btn-secondary px-4 py-2 btn-sm">See My Resume / CV</a>
</p>
</div>
</div>
<div style="border: 2px solid #EBE8D5; border-radius:10px; padding: 0px 7px 0px 7px;"><h3 style=""><a href="https://www.goodreads.com/user/show/89669225-monroe-mann" style="text-decoration: none;color:#aaa;font-family:georgia,serif;font-style:italic;" rel="nofollow">Random Wisdom From Monroe</a></h3><br/><div id="gr_quote_body">"No Rules. No Excuses. No Regrets. - The Break Diver's Creed"— <a title="Monroe Mann quotes" href="https://www.goodreads.com/author/quotes/317407.Monroe_Mann">Monroe Mann</a><br/><br/></div><script src="https://www.goodreads.com/quotes/widget/89669225-monroe-mann?v=2" type="text/javascript"></script><div style="text-align: right;">Refresh Page For A New Quotation.<a href="index.html">Refresh Now</a></div></div>
<div class="row pt-5">
<div class="col-md-3 mb-3">
<div class="section-heading">
<h2>My <strong>Skills</strong></h2>
</div>
</div>
<div class="col-md-9">
<div class="skill">
<h3>Life & Career Coaching & Strategy</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Entertainment Law & Business Contracts Expertise</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Business Coaching & Strategy</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Not-for-Profit Creation, Launch, and Management</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Marketing, Advertising, & Publicity Coaching</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Experience as a Successful Filmmaker, Producer, Fundraiser, & Entrepreneur</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Business Law & Management Expertise</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Public Speaking Coaching</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Time Management Coaching</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span>98%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Financial Planning & Strategy</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 93%" aria-valuenow="93" aria-valuemin="0" aria-valuemax="100">
<span>93%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Web Development, Coding, & Coaching</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 85%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span>85%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Experience as a Successful Actor, Musician, & Comedian</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 85%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span>85%</span>
</div>
</div>
</div>
<div class="skill">
<h3>French, Chinese, & Italian Skills (Collectively)</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
<span>75%</span>
</div>
</div>
</div>
<div class="skill">
<h3>Web Design</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 70%" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
<span>70%</span>
</div>
</div>
</div>
<!-- END SKILL ITEMS -->
</div>
</div>
</div>
</section>
<section class="site-section bg-light" id="section-praise">
<div class="container">
<div class="row mb-5">
<div class="col-md-12">
<div class="section-heading text-center">
<h2>Client <strong>Testimonials</strong> & Praise <strong>From Peers</strong></h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“This man will change your life AND your career! He WILL inspire and guide you.”</p>
<cite class="block-47-quote-author">— Charlotte Patton, Actress and Singer www.CharlottePatton.com</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_1.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“"Monroe inspires me, and his books will inspire you too!"”</p>
<cite class="block-47-quote-author">— Cynthia Kersey, Author of the bestselling book "Unstoppable"</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_2.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“To make it big, you need the Real Deal. Mr. Mann is the Real Deal. / Monroe -- you are a rocket ship and you're heading upwards at faster than the speed of light! I'll never be surprised to learn that word of mouth about you travels just as fast.”</p>
<cite class="block-47-quote-author">— Jay Conrad Levinson, author of "Guerrilla Marketing", a book with over 14 million copies sold worldwide</a></cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_3.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“I have been using Monroe's legal services for all of my entertainment contract needs for years. He's helped me with screenplay contracts, producing agreements, and more. His fees are reasonable, he is attentive, gets back to me promptly (even while he was living in China), and does thorough work. He is my go-to attorney for all of my contract needs and I recommend him without hesitation.”</p>
<cite class="block-47-quote-author">— Michael Doane, Screenwriter, Producer, 2017</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe, the book you wrote for actors is the most informative, motivating book that I have EVER read. I've read dozens of books that are meant to help the actor, but NONE come even close to the clear-cut book you so brilliantly wrote. I now see my career in a whole new light, and can actually see the my being a success is within my power. Your class was nothing short of amazing. I walked away with the tools to get started on planning my own future and being my own boss. I can ONLY become a success now that I have the right plan, tools, and attitude to succeed in this world. In fact, I think every small business person should take your classes. They are a real "shot in the arm" for anyone who needs fresh ideas. Thanks.”</p>
<cite class="block-47-quote-author">— Ginger Chapin, Actor, Radio Show Host, 2002 www.GingerLeilaniChapin.com</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe really "listened" to our needs first & then got all of our legal reviews, documents & questions handled in a very efficient manner to our satisfaction.”</p>
<cite class="block-47-quote-author">— Scott duPont, Film Producer, 2018</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Thank you for all your help with my high profile legal matter. You not only helped my career, but also helped ensure my safety.”</p>
<cite class="block-47-quote-author">— Leandra Ramm, Actress, International Opera Singer www.LeandraRamm.com</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“You are amazing, your class is amazing, and I wish it weren’t over! I learned so much, became so inspired, it’s the class that keeps on giving even after the sessions are over! My brain clicked into this place where ideas flow more freely… It’s a lot of ‘bang for your buck’. I learned so much about business and about myself… and it’s something theatre people know mostly nothing about”</p>
<cite class="block-47-quote-author">— Amber Smith, Former Radio City Rockette</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“The Theatrical Juggernaut is truly one-of-a-kind! It is filled with extremely valuable information for actors looking to take the business of acting seriously. Mr. Mann has also developed a business school for actors entitled, Unstoppable Actors. This as well is an extremely valuable class. As a graduate of the class, I can personally attest to its validity! Mr. Mann teaches valuable information such as marketing and public relations that are otherwise overlooked in traditional acting school.”</p>
<cite class="block-47-quote-author">— Linnet Cochrane, Actor, 2002</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe Mann has helped make the impossible seem practical by converting the stop-and-go, to-be-or-not conundrums of the usual actors psyche into an objective, doable business career path--the psyche of the star. Instead of only beautifully reciting sonnets to the moon (ah! acting school!), I also now have the necessary calculus to launch my career moon shot with a strong probability of success. In every class, I could feel the confidence and enthusiasm of the students grow through Monroe's empowering business teaching abilities and cutting edge curriculum. I most highly recommend Monroe Mann and his programs to every actor wanting to achieve serious goals in this business.”</p>
<cite class="block-47-quote-author">— Curt Nielsen, Actor, 2002</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Honest & to the point. I contacted Monroe months ago to review a situation I had to see if it was worth making a case for. He set a fair, low price for the review. He got back to me in the time frame(FAST) he set up. The words were not what I wanted to hear(don't do it, or do it and most likely lose), but they were the honest answers.”</p>
<cite class="block-47-quote-author">— Brian Wixson, Producer & Actor, 2018</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe helped me create iron clad contracts for me to use in every situation I do business in. Film, commercials, TV, music and corporate. I had been ripped off a few times and Monroe helped me stop the financial bleeding.”</p>
<cite class="block-47-quote-author">— Matt LoGuercio, 2018</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Reading The Theatrical Juggernaut and joining Unstoppable Actors, awakened within me something that I already knew, but forgot. The only thing standing between myself and greatness is... myself. I now have the vision, the tools, and the drive. "Using the techniques I learned from Monroe, I finally took my career into my own hands. I quit my so-called ‘survival job’, and I am now a full-time working actor and producer. I have been interviewed on Carson Daly, in New York Magazine, at Broadway.com, and others... All within months after meeting Monroe Mann. Thanks Monroe ! See you at the Top!”</p>
<cite class="block-47-quote-author">— Douglas C. Williams, Actor, Producer, Businessman
https://www.imdb.com/name/nm1980670/</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“A friend of mine said “Jeff, you have to check out this web site…unstoppableactors.com; it’s right up your alley.” So I checked it out, liked what I saw, and made plans in my head to call Monroe & take his class. In the meantime I purchased his book “The Theatrical Juggernaut” and started reading it. Wow! Talk about motivation, I felt totally empowered after just the first chapter. In the meantime, I had auditioned for a legit agent who was very interested in me but explained that they had two other actors, who were “my type”, who always booked for them. But he kept my headshots and said, “you never know what might change.” After reading “The Theatrical Juggernaut”, I felt so “unstoppable” that I wrote a letter to this agent, included movie tickets and told him to go to the movies and spot roles that he could have cast me in. A couple of days later he called informing me that he was going to sign me. If I hadn’t read Monroe’s book I would not have an agent right now. My actions in getting this agent were directly due to “The Theatrical Juggernaut”. Thanks Monroe!! I have signed up for Monroe’s class and I can wait to conquer the business.”</p>
<cite class="block-47-quote-author">— Jeff Goldstein, Screenwriter, Actor, & Producer www.JeffGoldstein.com</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“You deserve high praise. I've never seen anyone as focused as you. You're like the Tony Robbins of the acting world. You are so well polished and really have your act together. I’m glad to have someone like you, a guru, on my side… My wife likes my new attitude and air, and frankly so do I. Nothing will get in my way!!”</p>
<cite class="block-47-quote-author">— Chris Lucas, My Very FIRST Coaching Client, Author, Actor (All GTA Video Games), 2001 https://en.wikipedia.org/wiki/Christopher_Lucas</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Your class is wonderful. I am totally impressed with your outlook on life and your drive to reach your goals! I plan to be right along side of you! THANK YOU, THANK YOU, THANK YOU! After talking with you, I realized that I have allowed MYSELF to stumble and have not worked as hard as I could work to make my dreams come true. NO LONGER BABY! There are no more excuses for Daphne! I'M GONNA TAKE THIS ITTY BITTY WORLD BY STORM, AND I'M JUST GETTING WARM!”</p>
<cite class="block-47-quote-author">— Daphne Bazemore, Actor, Producer, 2002</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“I am a producer with over twenty-five years’ experience in the motion picture industry. Some of the films I have produced are “Gremlins”, “Innerspace”, “The ‘burbs”, “Deceived”, “Matinee”, and “Small Soldiers”. I met Monroe Mann recently through a friend who works for CNN who interviewed him for a segment about army reservists and their outside lives, Monroe being a reservist who is also an actor. I was immediately struck by his intelligence and determination to succeed. Unlike many equally ambitious young people who want to get into show business, I feel Monroe has the seriousness of purpose and work ethic to pull it off. In the few short months I have known him, he has co-written a screenplay, enlisted a professional sports organization to cooperate with the production, attached a known actor, and put the movie on the road to actually being produced. This is an amazing accomplishment for someone with no inside connections in the industry whatsoever, who has had to rely on nothing more than his own commitment and drive to get things done. I have no doubts that Monroe Mann will succeed in this endeavor and any others he sets his mind to.”</p>
<cite class="block-47-quote-author">— Mike Finnell, Legendary Hollywood Producer, 2003 (NOTE: I ended up producing You Can't Kill Stephen King first!)</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“I graduated from Monroe's course in the spring of 2003. When I arrived at the school, I was a steadily working commercial actor (Novartis, Sony, Xerox, Ovaltine, Breck Shampoo, etc) with an average of a booking each week. Using the techniques I learned at Monroe's school Unstoppable Artists, I’m now taking it all to the next level. Now armed with stronger business & marketing tools from the Unstoppable Artists, I am now approaching the market more specifically and creating an entertainment TV dog show which I will host with my dog. I also started my own company, Leashes & Lovers, which has afforded me interviews in many publications, including Glamour. ”</p>
<cite class="block-47-quote-author">— Sheryl Mathys, Actress, Spokeswoman, Business Owner www.LightsCameraTalent.com</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Let me tell you why you should hire Monroe to be your life, business, or career coach. I joined Monroe’s email list and upon receiving his first newsfeed, I was blown away by his enthusiasm, accomplishments, and drive to help others achieve. Unlike many other coaches, Monroe’s approach is unique in that he not only truly cares, but he takes all aspects of your life into consideration in order to formulate a path that’s right just for you. He is inspiring and provides simple, but effective solutions to help you get to where you want to be. Best investment I've made in years.”</p>
<cite class="block-47-quote-author">— Alicia Borys, Coaching & Legal Client, December 2015</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe's book should be the handbook for all actors who actually want to make a living at acting! I expected Monroe's class to be informative and to give me a jumpstart on getting excited about my career again. Not only did the class exceed my expectations, it blew me away! By teaching the importance of both business sense and consistent positive attitude, Monroe has challenged the myth that "good acting" is the most important success tool.”</p>
<cite class="block-47-quote-author">— Julie Zelman, Actor, 2002</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“I read Monroe Mann's first book "Theatrical Juggernaut," while on sabbatical in California. I was blown away! It was such a wake up call, and a revelation!! One of my favorite lines in this highly inspirational as well as educational book is "The best time to give it your all is when you’ve got nothing left to give." Well, I was exactly at that point. So, I took the leap of faith upon returning to New York, and enrolled in Unstoppable Artists. An intensely thought provoking and truly business enhancing class. Mr. Mann sets forth the importance of running your business as an entrepreneur. Developing an understanding and the use of PMA and how to incorporate it. Expounds on the importance of visibility, and attitude. Gaining and keeping clarity in your business, your business strategy and personal style. Not only is Mr. Mann an incredibly positive and unstoppable force in person, but he is also a wonderful teacher and coach. In fact I would take the course again, to brush up and reinforce all of the invaluable techniques and business sense he imparted. My business and personal style are forever changed. Though I am still implementing, and learning how to incorporate everything we have absorbed over the last five week intensive workshop, I know that I am on my way, and walking away from a course, that has and will change the course of my life. I recommend Monroe Mann to anyone who wants to enhance their business "know how," and who is serious about success. Put a kick in your pants to get your dreams up and off the ground, become a CEO & CSO and enroll in any of Monroe's courses! Thank you Monroe Mann! Lastly, in graduating from the Monroe's program, I am proud to have added to my personal network an alumni of incredibly talented individuals.”</p>
<cite class="block-47-quote-author">— Emilie Bonsant, Actress</cite>
</blockquote>
</div>
</div>
<div class="col-md-12">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“Monroe Mann's book, The Theatrical Juggernaut, is so worth buying! Its enthusiasm and emphasis on positive thinking and self-belief is a must-read, and not just for actors. Monroe's book gives us all hope, whether we're actors or not, to develop and live our dreams and make what we individually envision part of our physical collective reality. His class is dynamic and chock full of information about the actor as a business person and ONLY as a business person--a new way of thinking about one's acting career to jolt us all out of our complacency. In fact, the class NEEDS to be expanded, as there are so many questions from his students that the time allotted is far too short! Unstoppable Actors [ed. note. my former company name] needs to expand for these reasons and many others I haven't even mentioned. Monroe provides a valuable service to both the acting community and the community at large.”</p>
<cite class="block-47-quote-author">— Sunny Jared West, Actor, 2002</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“This book may be just the antidote for an actor who has completely lost faith or given up control over his destiny.”</p>
<cite class="block-47-quote-author">— Backstage West, on Monroe's book, "The Theatrical Juggernaut"</cite>
</blockquote>
</div>
</div>
<div class="col-md-6">
<div class="block-47 d-flex mb-5">
<!-- <div class="block-47-image">
<img src="images/person_4.jpg" alt="Image placeholder" class="img-fluid">
</div> -->
<blockquote class="block-47-quote">
<p>“And if you want to read even more reviews, please visit Amazon.com and BN.com and read all the reviews on there about my books, my music, and my filmmaking. You can also read many many more reviews about my coaching services at <a href="https://www.wyzant.com/tutors/unstoppable" target="_blank">Wyzant Coaching & Tutoring</a>”</p>
<cite class="block-47-quote-author">— Monroe Mann, CEO, The Romann Empire</cite>
</blockquote>
</div>
</div>
</div>
</div>
</section>
<section class="site-section border-top pb-0" id="section-services">
<div class="container">
<div class="row mb-4">
<div class="col-md-12">
<div class="section-heading text-center">
<h2>My <strong>Services & Rates</strong></h2>
</div>
<div>
<h3 class="section-heading text-center">Rates</h3>
</div>
</div>
<div class="col-md-6">
<p>
<ul><strong>General Consultation / Coaching Rates:</strong>
<li><a href="https://www.paypal.me/monroemann/375" target="_blank">$375/hour</a> (US Dollars), paid in advance</li>
<li>3-hour retainer: $20 off each hour <a href="https://www.paypal.me/monroemann/1065" target="_blank">($1065 paid in advance)</a></li>
<li>6-hour retainer: $40 off each hour <a href="https://www.paypal.me/monroemann/2010" target="_blank">($2010 paid in advance)</a></li>
<li>12-hour retainer: $60 off each hour <a href="https://www.paypal.me/monroemann/3780" target="_blank">($3780 paid in advance)</a></li>
</ul>
</p>
</div>
<div class="col-md-6">
<p>
<ul><strong>General Contract Rates:</strong>
<li>Drafting: <a href="https://www.paypal.me/monroemann/750" target="_blank">$750</a> for first three pages, $100/page thereafter, size 12 font.</li>
<li>Review: $375/hour, size 12-font. Rate adjusted if font-size differs.</li>
<li>Negotiation: $375/hour</li>
<li>Rate adjusted if font-size differs. Estimate provided up front.</li>
</ul>
</p>
</div>
</div>
<div>
<h3 class="section-heading text-center">Services</h3>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-phone3"></span>
</span>
<h3 class="mb-4">Legal</h3>
<p style="text-align: justify; text-justify: inter-word">Get your legal support from someone who is also on the front lines. I put the same legal principals and techniques I use for my clients into practice every day at my own ventures with writing, tech, filmmaking, youtubing, making music, and running numerous businesses. I'm not your average run-of-the-mill attorney, and it shows.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-wallet2"></span>
</span>
<h3 class="mb-4">Coaching</h3>
<p style="text-align: justify; text-justify: inter-word">Had enough of the struggling? I can assist you as a <strong>life coach, business coach, book publishing coach, success coach, financial coach, time management coach, career coach, entrepreneurial coach, and showbiz (entertainment) coach</strong>. Sounds like I'm a jack of all trades, but in fact, I'm a master of many. I can help in so many domains because I'm an extraordinary person. I trust you are too.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-lightbulb"></span>
</span>
<h3 class="mb-4">Strategy</h3>
<p style="text-align: justify; text-justify: inter-word">Sometimes the hardest part of any venture is thinking far enough of head to recognize what you need to do now to get to where you want to be in 5 to 10 years. Let me be your strategic coach and partner as I ask you the tough questions no one else has asked (including yourself). Put together a clear plan for you or your business's future.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-phone3"></span>
</span>
<h3 class="mb-4">Time Management</h3>
<p style="text-align: justify; text-justify: inter-word">Behind every success story is someone who learned how to properly manage time. It's not magic; it's an art and a science. It's an art and science you need to learn. I am really good at teaching people how to squeeze twice (or even thrice) as much out of each day. I look forward to assisting you become infinitely more productive in all aspects of your life.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-wallet2"></span>
</span>
<h3 class="mb-4">Financial Planning</h3>
<p style="text-align: justify; text-justify: inter-word">I'm a unique financial planner. I prefer to use my PhD in psychology rather than my financial calculator. Knowing how to calculate a 5-year return does not a financial planner make. Good financial success is 95% psychology and 5% calculations. I can teach you how to set yourself up for financial success with techniques that (if implemented) will improve your life forever.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-lightbulb"></span>
</span>
<h3 class="mb-4">Public Speaking</h3>
<p style="text-align: justify; text-justify: inter-word">Most people don't realize it, but they are terrible public speakers, speaking without confidence, filler words everywhere, and moving no one to their position. Don't be that person. If you are ready to improve every dynamic of your life (for you speak every day), I can turn you into the next great speaker, or at least ensure you make the most of every opportunity through improved public speaking, i.e. psychological persuasion.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-phone3"></span>
</span>
<h3 class="mb-4">Language Training</h3>
<p style="text-align: justify; text-justify: inter-word">你要学习中文吗?Français? Italiano? English? If you are interested in learning Chinese, French, Italian, or English, I offer one-on-one language instruction at a rate signifantly lower than my normal rate. If you're eager to study a foreign language, using a proven technique that has allowed me to learn many languages, let me know!</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-wallet2"></span>
</span>
<h3 class="mb-4">Web Dev & Coding Instruction</h3>
<p style="text-align: justify; text-justify: inter-word">Learning how to code ensures that you become future proof: if you can code, you can always have a job. Truly, I think anyone who doesn't know how to code these days is slowly becoming obsolete. I can turn you into a coder in just 6 weeks, learning the basics of Ruby, Rails, HTML, CSS, Javascript, and more. I can also (if you prefer) create an awesome website like this for you! Get in touch if interested!</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
<div class="col-md-6 col-lg-4 text-center mb-5">
<div class="site-service-item site-animate" data-animate-effect="fadeIn">
<span class="icon">
<span class="icon-lightbulb"></span>
</span>
<h3 class="mb-4">Other Services</h3>
<p style="text-align: justify; text-justify: inter-word">On the side, I also help many people prepare for the ASVAB exam to get into the US military; do language translation services; teach psychology, motivation, and other subjects; and a myriad of other 'odd jobs'. If there's something you think I'd be great for that is not listed here, let me know. I'm always happy to discuss.</p>
<p><a href="#section-contact" class="site-link">Learn More <i class="icon-chevron-right"></i></a></p>
</div>
</div>
</div>
</div>
</section>
<section class="site-section" id="section-features">
<div class="container">
<div class="row site-section">
<div class="col-md-8">
<p><img src="images/laptop_1.jpg" alt="" class="img-fluid"></p>
</div>
<div class="col-md-4">
<h3 class="mb-3">You, Inc.</h3>
<p>This is your life. This is your business. It has a myriad of moving parts. You need to find all the puzzles pieces, and then keep them all together as you continue your life pursuits. I can help you:</p>
<ul class="site-list">
<li class="site-check">Gain control of your life, finances, and legalities.</li>
<li class="site-check">Create clear plans fueled by dynamic strategies.</li>
<li class="site-check">Get where you know you are going.</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-8 order-md-2">
<p><img src="images/laptop_1.jpg" alt="" class="img-fluid"></p>
</div>
<div class="col-md-4 order-md-1">
<h3 class="mb-3">Master of Many Trades</h3>
<p>It is unwise to operate in a bubble. You need someone on your team who can teach you to not only understand the big picture, but also understand the nitty gritty. I will be the unique member of your team who has both the birds-eye 10-year view and who also understands the precise details of your daily push towards greatness that make the difference between success and failure. And I'll teach you all I know.</p>
<ul class="site-list">
<li class="site-check">I will help you organize your life, career, and business</li>
<li class="site-check">I will teach you techniques to become more productive and accomplished</li>
<li class="site-check">I guarantee you will get more done than you ever thought possible.</li>
</ul>
</div>
</div>
</div>
</section>
<section class="site-section" id="section-portfolio">
<div class="container">
<div class="row">
<div class="section-heading text-center col-md-12">
<h2>Some Things <strong>I'm Proud Of</strong></h2>
</div>
</div>
<!-- <div class="filters">
<ul>
<li class="active" data-filter="*">All</li>
<li data-filter=".packaging">Packaging</li>
<li data-filter=".mockup">Mockup</li>
<li data-filter=".typography">Typography</li>
<li data-filter=".photography">Photography</li>
</ul>
</div> -->
<!-- BDHOMEPAGE DETAIL -->
<div class="filters-content">
<div class="row grid">
<div class="single-portfolio col-sm-4 all mockup">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/bdhomepage.jpg" alt="">
</div>
<a href="images/bdhomepage.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://www.breakdiving.io" target="_blank">BreakDiving.io</a></h4>
<div class="cat">My Not-For-Profit Tech Startup. Come join us today! And learn to live by our creed: No Rules. No Excuses. No Regrets.!</div>
</div>
</div>
<!-- YCKSK DETAIL -->
<div class="single-portfolio col-sm-4 all mockup">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/YCKSK.jpg" alt="">
</div>
<a href="images/YCKSK.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://smile.amazon.com/You-Cant-Kill-Stephen-King/dp/B07F5MXY83/ref=sr_1_1?crid=NG8QODW2XB2I&dchild=1&keywords=you+can%27t+kill+stephen+king&qid=1591805593&sprefix=you+can%27t+kill+ste%2Caps%2C154&sr=8-1" target="_blank">You Can't Kill Stephen King</a></h4>
<div class="cat">My Successful Feature Film. Sold in 15 Countries! Find it on Amazon Prime, YouTube Movies, etc.</div>
</div>
</div>
<!-- MM YOUTUBE DETAIL -->
<div class="single-portfolio col-sm-4 all packaging">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/mmyoutube.jpg" alt="">
</div>
<a href="images/mmyoutube.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://www.youtube.com/monroemann" target="_blank">YouTube.com/MonroeMann</a></h4>
<div class="cat">My Awesome YouTube Channel! Please Subscribe & Help Me Reach 1000 Subscribers!</div>
</div>
</div>
<!-- SNY DETAIL -->
<div class="single-portfolio col-sm-4 all packaging">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/sny2020.jpg" alt="">
</div>
<a href="images/sny2020.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://smile.amazon.com/Successful-New-Year-2020-Inspirational/dp/1708660895/ref=sxts_sxwds-bia-wc-p13n2_0?cv_ct_cx=Successful+New+Year%21&dchild=1&keywords=Successful+New+Year%21&pd_rd_i=1708660895&pd_rd_r=2b933f38-7ce5-4530-8ec1-697823892edc&pd_rd_w=ZrcWZ&pd_rd_wg=PVMIP&pf_rd_p=1da5beeb-8f71-435c-b5c5-3279a6171294&pf_rd_r=4WXDZQEQ6B198PVSSFP9&psc=1&qid=1591805514&sr=1-2-70f7c15d-07d8-466a-b325-4be35d7258cc" target="_blank">Successful New Year 2020</a></h4>
<div class="cat">One Of My Ten Inspiring Best-Selling Books. Love Them or 100% Money-Back Guarantee.</div>
</div>
</div>
<!-- EPOCH TIMES DETAIL -->
<div class="single-portfolio col-sm-4 all typography">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/epochtimes.jpg" alt="">
</div>
<a href="images/epochtimes.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://www.theepochtimes.com/author-monroe-mann" target="_blank">The Epoch Times</a></h4>
<div class="cat">My Newspaper Columns As A Psychology and Travel Writer. Please Become A Reader!</div>
</div>
</div>
<!-- GOYA ALBUM DETAIL -->
<div class="single-portfolio col-sm-4 all photography">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="images/goya.jpg" alt="">
</div>
<a href="images/goya.jpg" class="img-pop-up">
<div class="middle">
<div class="text align-self-center d-flex"><img src="images/preview.png" alt=""></div>
</div>
</a>
</div>
<div class="p-inner">
<h4><a href="https://www.amazon.com/Get-Off-Your-Monroe-Mann/dp/B004J94XW4" target="_blank">Get Off Your Ass!</a></h4>
<div class="cat">My Catchy Motivational Speaking / Music Album. Get Inspired & Rock Out At the Same Time!</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- .section -->
<section class="site-section bg-light " id="section-resume">
<div class="container">
<div class="row">
<div class="col-md-12 mb-5">
<div class="section-heading text-center">
<h2>My <strong>Resume</strong></h2>
</div>
</div>
<div class="col-md-6">
<h2 class="mb-5">Some of My Education</h2>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> 2016 (Graduation Date)</span>
<h3>PhD in Psychology</h3>
<p>Final dissertation on the decision-making processes of successful entertainers. Post graduation, partnered with Dr. Jonathan Rich, PhD to augment the qualitative grounded theory study into a quantitative test study. Results are currently pending acceptance at a peer reviewed journal.</p>
<span class="school">Capella University. MN</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> 2011 (Graduation Date)</span>
<h3>JD/MBA/LLM</h3>
<p>Earned a law degree, MBA in finance, and a masters of laws (JD required as prerequisite) in commercial real estate transactions. Am now a licensed NY attorney </p>
<span class="school">Pace University, NY</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> 2008 (Graduation Date)</span>
<h3>Certified in Financial Planning</h3>
<p>Graduated of 6-course Certified Financial Planner certificate program. Note: Though I meet the education and required financial planner experience requirements to sit for the CFP exam, I am not a certified CFP.</p>
<span class="school">Boston Institute of Finance, Boston University, MA</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> 2008 (Graduation Date)</span>
<h3>Masters in Entrepreneurship</h3>
<p>Completed a 2-year masters program in entrepreneurship.</p>
<span class="school">Western Carolina University, NC</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> 1999 (Graduation Date)</span>
<h3>Bachelors in International Economics, Minor in French</h3>
<p>Spent my final two years of undergrad in Lugano, Switzerland, during which I participated in 4 academic travel programs: Rome & Southern Italy, London & Cornwall, South Africa & Swaziland, as well as Russia & the Baltics. Co-founded and co-edited "The Enlightenment" in 1998, the school newspaper that is still in publication over 20 years later.</p>
<span class="school">Franklin University, Switzerland</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> Enrolled (Expected Graduation Date: March 2023)</span>
<h3>Bachelors in Computer Science</h3>
<p>More than halfway done with a second bachelors, this time in computer science.</p>
<span class="school">University of the People, CA</span>
</div>
</div>
<div class="col-md-6">
<h2 class="mb-5">Some of My Experience</h2>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> March 2013 - Present</span>
<h3>Founder, Executive Director, and Coding Projects Manager</h3>
<p>Currently lead an incredible volunteer team of 9 coders, marketers, and financiers at what is becoming known as 'the world's most inspiring online community'. Check us out at breakdiving.io</p>
<span class="school">Break Diving, Inc.</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> March 2013 - Present</span>
<h3>Entertainment Attorney & Life/Business Coach</h3>
<p>Have helped thousands of people with their legal, life, and business dreams and challenges.</p>
<span class="school">Monroe Mann Law</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> March 2013 - Present</span>
<h3>Bronze-Star Nominated Iraq War Veteran</h3>
<p>Served 9 years in the NY Army National Guard as an intelligence officer, including active duty service in the weeks following 9/11 in Manhattan, as well as a one-year deployment to Iraq, serving as trainer to the 4th Iraqi Army on matters of military intelligence and as a combat patrol leader for the 14-man team I was a part of.</p>
<span class="school">U.S. Army / NY Army National Guard</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> March 2014 - March 2015; Also in 2019</span>
<h3>Foreign Teacher</h3>
<p>Lived and worked in Shanghai, China for a total of 15 months as an English teacher, training over 3,000 students of all levels, in various centers all across the city, drawing some of the largest crowds of any of the hundreds of teachers. Also gave speeches to other organizations, such as at the Shanghai-Singapore Chamber of Commerce. Now speak, understand, read, and write advanced-intermediate Mandarin Chinese.</p>
<span class="school">Wall Street English, Shanghai, China</span>
</div>
<div class="resume-item mb-4">
<span class="date"><span class="icon-calendar"></span> March 2014 - March 2015; Alsoin 2019</span>
<h3>Producer, Screenwriter, Director, Editor, & Filmmaker</h3>
<p>One of the three main writers of You Can't Kill Stephen King, a comedy feature film that was sold at Cannes Film Market in over 15 international markets, and eventually purchased by Amazon Prime in the USA. Also was the lead producer, one of the stars of the film, and one of the three co-directors. Currently represented by Big Screen Entertainment in Los Angeles. Am a member of SAG/AFTRA, as well as Actors Equity. Have many other films up on IMDb, and also started and ran a short film school for two years.</p>
<span class="school">Wall Street English, Shanghai, China</span>
</div>
</div>
</div>
</div>
</section> <!-- .section -->
<section class="site-section" id="section-blog">
<div class="container">
<div class="row">
<div class="col-md-12 mb-5">
<div class="section-heading text-center">
<h2><strong>The F.A.M.E. Blog</strong></h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 mb-4">
<div class="blog-entry">
<a href="#"><img src="images/post_1.jpg" alt="Image placeholder" class="img-fluid"></a>
<div class="blog-entry-text">
<h3><a href="https://www.youtube.com/monroemann" target="_blank">The F.A.M.E. Blog</a></h3>
<p class="mb-4">It's coming back here very soon! Don't you fret! In the meantime, you can watch the F.A.M.E. Show on my YouTube channel.</p>
<div class="meta">
<!-- <a href="#"><span class="icon-calendar"></span> Aug 7, 2018</a>
<a href="#"><span class="icon-bubble"></span> 5 Comments</a> -->
</div>
</div>
</div>