-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1984 lines (1862 loc) · 90.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctpye html>
<html>
<head>
<title>Everwell Pasadena</title>
<link rel='shortcut icon' href='images/favicon.ico' type='image/x-icon'>
<!---------- jQuery Plugin ---------->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<!---------- Preloader -------------->
<script src="javascript/Preloader.js" type="text/javascript"></script>
<script type='text/javascript' src='http://demo.themeisle.com/zerif-pro/wp-content/themes/zerif-pro/js/scrollReveal.min.js?ver=20120206'></script>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/navbar.css">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="javascript/navbar.js"></script>
<!--General CSS - desktop-->
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<link rel="stylesheet" href="css/magnific-popup.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="javascript/parallax.js/parallax.js"></script>
<script src="javascript/jquery.magnific-popup.js"></script>
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="javascript/modernizr.custom.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=320, height=device-height, target-densitydpi=medium-dpi" />
<link rel="stylesheet" type="text/css" href="css/preload.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.2/TweenMax.min.js"></script>
<script type="text/javascript" src="javascript/preloadSVG/minified/plugins/DrawSVGPlugin.min.js"></script>
</head>
<!----------------- Preloader ------------------>
<div id="preloader">
<div class = "loader">
<div class = "content">
<svg width="300px" height="200px" viewBox="0 0 187.3 93.7" preserveAspectRatio="xMidYMid meet">
<path style="-webkit-filter:url(#f2)" stroke="#333333" id="outline" fill="none" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M93.9,46.4c9.3,9.5,13.8,17.9,23.5,17.9s17.5-7.8,17.5-17.5s-7.8-17.6-17.5-17.5c-9.7,0.1-13.3,7.2-22.1,17.1
c-8.9,8.8-15.7,17.9-25.4,17.9s-17.5-7.8-17.5-17.5s7.8-17.5,17.5-17.5S86.2,38.6,93.9,46.4z" />
<path id="outline-bg" opacity="0.5" fill="none" stroke="#888888" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M93.9,46.4c9.3,9.5,13.8,17.9,23.5,17.9s17.5-7.8,17.5-17.5s-7.8-17.6-17.5-17.5c-9.7,0.1-13.3,7.2-22.1,17.1
c-8.9,8.8-15.7,17.9-25.4,17.9s-17.5-7.8-17.5-17.5s7.8-17.5,17.5-17.5S86.2,38.6,93.9,46.4z" />
</svg>
</div></div>
<!-- /container -->
<script>
(function() {
var container = document.getElementById('container');
TweenMax.set(['svg'], {
position: 'absolute',
top: '50%',
left: '50%',
xPercent: -50,
yPercent: -50
})
TweenMax.set([container], {
position: 'absolute',
top: '50%',
left: '50%',
xPercent: -50,
yPercent: -50
})
var tl = new TimelineMax({
repeat: -1
});
tl.set('#outline', {
drawSVG: '0% 0%'
})
.to('#outline', 0.2, {
drawSVG: '11% 25%',
ease: Linear.easeNone
})
.to('#outline', 0.5, {
drawSVG: '35% 70%',
ease: Linear.easeNone
})
.to('#outline', 0.9, {
drawSVG: '99% 100%',
ease: Linear.easeNone
})
})();
</script>
</div>
<div class = "containerfull">
<header>
<div class = "navigation" align = "center">
<div id='cssmenu'>
<ul>
<li class='active'><a href='#everwell' class = "scroll">What is Everwell?</a></li>
<li><a href='#pasadena' class = "scroll">Why Pasadena?</a></li>
<li id="li_teams"><a href='#teams' class = "scroll"><div class = "navhide1">Meet The Teams</div></a></li>
<li><a href='#careers' class = "scroll">Careers</a></li>
<li><a href='http://blog.everwellpasadena.com'>Blog</a></li>
<li><a href='#contact-us'class = "scroll">Contact Us</a></li>
<li><a href='login.html'>Login</a></li>
</ul>
</div>
<script src="javascript/smooth.js"></script>
</div>
<div class = "Everwell_logo" >
<img src="images/logo.png">
<div class = "Everwell_text" align = "center">
<h1 align = "center">EVERWELL PASADENA</h1>
<div class = "Everwell_text2" align = "center">HELP SMALL BUSINESS IN YOUR COMMUNITY WITH EVERWELL</div>
<br>
<a href='#everwell' class="splashbtn medium inverse scroll">Find Out More</a>
</div>
</div>
<div class="splash">
<div class="wrapper bgded1 overlay"></div>
<div class="wrapper bgded2 overlay"></div>
<div class="wrapper bgded3 overlay"></div>
</div>
<script type="text/javascript" src ="javascript/SplashPage.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
</header>
<body>
<!---------------------------What is Everwell-------------------->
<div id = "everwell"></div>
<div class = "what_is_everwell" id="startchange">
<h2 align = "center"><strong>WHAT IS EVERWELL?</strong></h2>
<div class="slider" data-scrollreveal="enter right after 0.15s over 1s">
<div id="wrapper">
<a class="no-focus-border popup-vimeo" href="https://vimeo.com/152937392">
<img src="./images/WhatIsEverwellThumbPlay.png" class="what-image1" />
<img src="./images/WhatIsEverwellThumbPlay2.png" class="what-image2"/>
</a>
</div>
</div>
</div>
<br><br><br>
<div class = "partners_container">
<h3 align = "center"><strong>OUR PARTNERS</strong></h3>
<br>
<div class="partners" align = "center">
<a class="popup-with-zoom-anim" href="#partner1">
<img src="images/PartnerLogos/Aflac_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner2">
<img src="images/PartnerLogos/Covered_CA_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner3">
<img src="images/PartnerLogos/Delta_Dental_Final.png">
</a>
<!-- <a class="popup-with-zoom-anim" href="#partner4">
<img src="images/PartnerLogos/Heartland_Final.png">
</a>-->
<a class="popup-with-zoom-anim" href="#partner5">
<img src="images/PartnerLogos/Reliance_Standard_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner6">
<img src="images/PartnerLogos/Shield_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner7">
<img src="images/PartnerLogos/United_Healthcare_Final.PNG">
</a>
<a class="popup-with-zoom-anim" href="#partner8">
<img src="images/PartnerLogos/VSP_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner9">
<img src="images/PartnerLogos/XPRS_Final.PNG">
</a>
<a class="popup-with-zoom-anim" href="#partner10">
<img src="images/PartnerLogos/Back9_Final.png">
</a>
<a class="popup-with-zoom-anim" href="#partner11">
<img src="images/PartnerLogos/Brystra_Final.png">
</a>
</div>
</div>
<br><br>
<div id="partner1" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner11">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Aflac_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner2">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Aflac</font></h3>
<p><font face = "Century Gothic">With over 60 years of experience, Aflac is the leader in the supplemental
insurance industry. With Accident, Cancer, Hospital, and other supplemental insurance products Aflac has
something for everyone. Aflac continues to innovate and has introduced their One-Day-Pay program which puts
claims payouts into a policyholder's account within 24 hours. No benefits package is complete with out
Aflac.</font>
</p>
</div>
<div id="partner2" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner1">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Covered_CA_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner3">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Covered California</font></h3>
<p><font face = "Century Gothic"> Covered California is California's public Health Insurance exchange.
Everwell has partnered with Covered California to provide healthcare solutions to companies
of every size.</font>
</p>
</div>
<div id="partner3" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner2">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Delta_Dental_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner5">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Delta Dental</font></h3>
<p><font face = "Century Gothic"> Delta Dental is the #1 Dental Insurance provider in America. Delta is truly
the gold standard for Dental insurance with both individual policies and PPO plans that are accepted
nation-wide.</font>
</p>
</div>
<!--<div id="partner4" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner3">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Heartland_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner5">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Heartland</font></h3>
<p><font face = "Century Gothic"> Hartland is one of America's leading payroll services companies. Their Payroll
and Human Resources services come at a fraction of the price of the competition and help companies control the
cost of doing business.</font>
</p>
</div> -->
<!-- <div id="partner5" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner4">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/MX3_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner6">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">MX3 Insurance Agency</font></h3>
<p><font face = "Century Gothic">MX3 provides on-site consultation to evaluate a business' currant Property
and Casualty standing. They work with over 100 different P&C providers to help clients maximize their coverage
and reduce costs.</font>
</p>
</div> -->
<div id="partner5" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner3">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Reliance_Standard_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner6">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Reliance Standard Life Insurance</font></h3>
<p><font face = "Century Gothic"> Reliance is one of the leaders in the Life Insurance industry. Providing Term
and Whole life solutions, Reliance provides the strongest protection for it's policyholders.</font>
</p>
</div>
<div id="partner6" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner4">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Shield_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner7">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">EZ Shield Fraud Protection</font></h3>
<p><font face = "Century Gothic"> EZ Shield Fraud Protection helps individuals protect their personal
information from Identity Theft. EZ Shield let's it's customers control their identity from an easy online
interface and give peace of mind that their identify is truly safe.</font>
</p>
</div>
<div id="partner7" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner5">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/United_Healthcare_Final.PNG" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner8">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">United Healthcare</font></h3>
<p><font face = "Century Gothic"> United HealthCare is America's largest Health Insurance provider with network
providers across the country.</font>
</p>
</div>
<div id="partner8" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner9">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/VSP_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner9">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">VSP Vision Care</font></h3>
<p><font face = "Century Gothic"> VSP Vision is America's #1 Vision Insurance provider. VSP's insurance is
accepted at most eye-care providers and corrective vision providers across the country.</font>
</p>
</div>
<div id="partner9" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner7">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/XPRS_Final.PNG" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner10">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">XPRS Capital</font></h3>
<p><font face = "Century Gothic"> XPRS Capital is leading the industry in innovation and speed for Small Business
Lending. Applications can be completed in as little as 5 minutes and provide the much needed life line to ease a
companies financial standing.</font>
</p>
</div>
<div id="partner10" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner8">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Back9_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner11">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">BackNine Insurance</font></h3>
<p><font face = "Century Gothic"></font>
</p>
</div>
<div id="partner11" class="team-dialog zoom-anim-dialog mfp-hide">
<a class="popup-with-zoom-anim" href="#partner9">
<div class = "partnerarrow"><img src="images/left.png" width = "30" height = "30" align = "left"></div>
</a>
<img src="images/PartnerLogos/Brystra_Final.png" width = "180" height = "125" class = "partnerlogo">
<a class="popup-with-zoom-anim" href="#partner1">
<img src="images/right.png" width = "30" height = "30" align = "right" >
</a>
<h3><font face = "Century Gothic">Brystra Insurance</font></h3>
<p><font face = "Century Gothic"></font>
</p>
</div>
<script type="text/javascript" src ="javascript/Partners.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<!----------------------Business Need You ------------------>
<div class="highlight-image">
<div class="business-text"><h1 align = "center"><br><br><br><br><br>BUSINESSES NEED YOU</h1></div>
</div>
<script src="WhatIsEverwell.js"></script>
<script src="javascript/parallax.js/parallax.js"></script>
<!----------------------Why Pasadena ---------------->
<div id = "pasadena"></div>
<div class = "why-pasadena"><h2 align = "center"><strong>WHY PASADENA?</strong></h2></div>
<br>
<div class = "why-pasadena2">
<ul class="passvid">
<li>
<div id ="container1" data-scrollreveal="enter left after 0.15s over 1s">
<a class="popup-vimeo" href="https://vimeo.com/85152562">
<img id="image" src="./images/video2.jpg" class="about-videos" />
<div id="play"></div>
</a>
<div class="caption"><h2>OLD TOWN</h2></div>
</div>
</li>
<li>
<div id ="container1" data-scrollreveal="enter right after 0.15s over 1s">
<a class="popup-vimeo" href="https://vimeo.com/85152562">
<img id="image" src="./images/video1.jpg" class="about-videos" />
<div id="play"></div>
</a>
<div class="caption"><h2>OUR OFFICE</h2></div>
</div>
</li>
</ul>
</div>
<div class="tablet-display">
<ul class="evntgall">
<li>
<div class = "gallery-box"data-scrollreveal="enter left after 0.15s over 3s">
<div class="gallery-events-div ism-slider zoom-gallery " id="gallery-div"
data-play_type="loop" >
<ol>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide1.jpg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide1.jpg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link " id="gallery-div"href="ism/image/slides/slide2.jpg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide2.jpg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide3.jpg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide3.jpg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide4.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide4.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide5.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide5.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide6.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide6.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide7.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide7.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide8.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide8.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide9.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide9.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide10.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide10.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide11.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide11.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide12.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide12.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide13.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide13.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide14.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide14.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide15.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide15.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide16.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide16.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide17.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide17.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide18.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide18.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide19.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide19.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide20.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide20.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide21.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide21.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide22.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide22.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide23.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide23.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide24.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide24.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide25.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide25.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide26.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide26.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide27.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide27.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide28.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide28.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide29.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide29.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide30.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide30.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide31.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide31.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide32.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide32.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
<li>
<a class="example-image-link "id="gallery-div" href="ism/image/slides/slide33.jpeg"
data-lightbox="example-set" data-title="Click the right half of the image to move forward.">
<img class="example-image" src="ism/image/slides/slide33.jpeg" alt=""
width="100%" height="100%">
</a>
</li>
</ol>
</div>
<p style="width:500px;margin-top:0;text-align:center;"><a rel="nofollow" data-scrollreveal="enter left after 0.15s over 3s"> <div class = "gallery caption"><h2><strong>GALLERY</strong></h2></div></a><img width="1" height="1" border="0" style="padding: 0; background: #ffffff; border: none; box-shadow: none;" src="https://os.shutterfly.com/b/ss/sflyshareprod/1/H.15/111?pageName=sharekey&c1=pictures&c2=embed"/></p>
</div>
</li>
<li>
<ul class="events-list" data-scrollreveal="enter right after 0.15s over 3s">
<!--<li class="event">
<strong>Company Movie Night!</strong>
<p class="event-description">
<a href="https://habitat.org " target="_blank">Habitat for Humanity</a><br>
No project confirmation yet...<br>
<a href="https://sgvhabitat.volunteermatrix.com/" target="_blank">See schedule</a>
</p>
</li>-->
<li class="event">
<strong>Company Movie Night!</strong>
<p class="event-description">
When: Tuesday, August 2nd at the Everwell office<br>
Movie: Tommy Boy<br>
(Pizza and Drinks will be provided!)<br>
</p>
</li>
<li class="event">
<strong>Stock the Pantry: Sort Food with L.A. Regional Food Bank</strong>
<p class="event-description">
When: Saturday, August 13th<br>
</p>
</li>
<li class="event">
<strong>First ever Annual Everwell Picnic in association with the International Myeloma Foundation</strong>
<p class="event-description">
When: Sunday, August 21st<br>
</p>
</li>
</ul>
<div class = "gallery caption"><h2 data-scrollreveal="enter right after 0.15s over 3s">EVENTS</h2></div>
</li>
</ul>
</div>
<script src="javascript/WhyPasadena.js"></script>
<link rel="stylesheet" href="ism/css/my-slider.css"/>
<script src="ism/js/ism-2.0.1-min.js"></script>
<script src="js/zoomgalary.js"></script>
<link rel="stylesheet" href="dist/css/lightbox.css">
<script src="dist/js/lightbox.js"></script>
<!----------------------Meet the Teams ------------------>
<div id = "teams"></div>
<!--<div class="parallax-window teampara" data-parallax="scroll" data-image-src="./images/Metro 2.jpg">-->
<div class="team" id="meet-the-teams">
<div class="highlight-image2">
<div id="content">
<h2><strong><font face = "Tahoma">MEET THE TEAMS</font></strong></h2>
</div>
<br><br><br>
<table width = "100%" align = "center">
<tr align = "left">
<td class = "title1" width = "20%"></td>
<td width = "40%">
<div id = "team_titles"data-scrollreveal="enter right after 0.15s over 1s">DISTRICT COORDINATORS</div>
</td>
</td><td width = "20%"></td><td width = "20%"></td>
</tr>
</table>
<div class="teamslider" data-scrollreveal="enter right after 0.15s over 1s">
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description1">
<img id="image-1" src="images/headshots/Michelle.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Michelle Lee</p>
<p>Team Obsessed</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description7">
<img id="image-1" src="images/headshots/Steve.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Steve Goldstein</p>
<p>Team Mojo</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description8">
<img id="image-1" src="images/headshots/Malvin.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Malvin Black</p>
<p>The Wolf Pack</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description9">
<img id="image-1" src="images/headshots/Denny.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Denny Twigg</p>
<p>The Dark Horse</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description10">
<img id="image-1" src="images/headshots/Erica.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Erica Golden</p>
<p>The Elite Squad</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description11">
<img id="image-1" src="images/headshots/Kevin.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Kevin Nagle</p>
<p></p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
</div>
<br><br><br>
<table width = "100%" align = "center">
<tr align = "left">
<td class = "title2" width = "20%"></td>
<td width = "40%">
<div id = "team_titles" data-scrollreveal="enter left after 0.15s over 1s">SPECIAL PROJECTS TEAMS</div>
</td>
<td width = "20%"></td><td width = "20%"></td>
</tr>
</table>
<div class="teamslider" data-scrollreveal="enter left after 0.15s over 1s">
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#team-description2">
<img id="image-1" src="images/headshots/Russell.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Russell Stanberry</p>
<p>The Texas Rangers</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#special_projects1">
<img id="image-1" src="images/headshots/Ricky.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Ricky Shih</p>
<p>Special Project Coordinator</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#special_projects2">
<img id="image-1" src="images/headshots/Rose.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Rose Pena</p>
<p>Special Project Coordinator</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<!--<div id="mainwrapper">
<div id="box-1" class="box inline-popups">
<a data-effect="mfp-zoom-out" href="#special_projects3">
<img id="image-1" src="images/headshots/Kevin.jpg" width = "256" height = "306"/>
<span class="caption simple-caption">
<p>Kevin Nagle</p>
<p>Special Project Coordinator</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>-->
<!--<div id="mainwrapper">
<div id="box-1" class="box">
<a class="popup-with-zoom-anim" href="#special_projects4">
<img id="image-1" src="images/pic1.png"/>
<span class="caption simple-caption">
<p>Project Leader Name</p>
<p>Project Name</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box">
<a class="popup-with-zoom-anim" href="#special_projects5">
<img id="image-1" src="images/pic2.png"/>
<span class="caption simple-caption">
<p>Project Leader Name</p>
<p>Project Name</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>
<div id="mainwrapper">
<div id="box-1" class="box">
<a class="popup-with-zoom-anim" href="#special_projects6">
<img id="image-1" src="images/pic1.png"/>
<span class="caption simple-caption">
<p>Project Leader Name</p>
<p>Project Name</p>
<div id = "arrow"><img src = "images/arrow.png" width = "25%" height = "15%"></div>
</span>
</a>
</div>
</div>-->
</div>
<div id="team-description1" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "200" height = "200">
<h3><font face = "Century Gothic">Team Obsessed</font></h3>
<h3><font face = "Century Gothic">Michelle Lee</font></h3>
<p><font face = "Century Gothic">Hello and welcome to Team Obsessed! I am twenty-nine years old and have been working at Everwell for two years. I have previously worked as Associate and Coordinator in Training before becoming a District Sales Coordinator in July of 2014. My time working here has been the most challenging and yet, has provided me with the most exhilarating and rewarding career. With great guidance, I have been able to thrive in this environment. I plan on managing my team to the best of my ability by being completely transparent. I also believe in the importance of team structure and holding my team accountable to the expectations and goals that they set for themselves. I know that I am capable of guiding my team closer to their goals.</font>
</p>
</div>
<div id="team-description2" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">The Texas Rangers</font></h3>
<h3><font face = "Century Gothic">Russell Stanberry</font></h3>
<p><font face = "Century Gothic">Hello and welcome to The Texas Rangers! I’m originally from Texas, go Rangers! I am currently thirty-one years old and I have been working in the Pasadena office for eighteen months. I previously worked as a Coordinator in Training before becoming a District Sales Coordinator in July of 2015. During my time at Everwell, I have found more personal success than I have found in the previous ten years. Everwell has allowed me to have so much freedom in the workplace that I cannot imagine working anywhere else. However the real reason why I chose to work in the Pasadena office is the people. My co-workers are so supportive, challenging and fun. My philosophy for guiding my team is setting expectations and giving them the tools they need to meet those expectations. Moreover, I give them all the support and training possible to help them achieve their goals. My business motto is “Work smarter not harder.”</font>
</p>
</div>
<!-- <div id="team-description4" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/LaMaquina2.png" width = "200" height = "200">
<h3><font face = "Century Gothic">La Maquina</font></h3>
<h3><font face = "Century Gothic">Brenda Huerta</font></h3>
<p><font face = "Century Gothic"> 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</font>
</p>
</div> -->
<!-- <div id="team-description5" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/TheDistrict.png" width = "202" height = "200">
<h3><font face = "Century Gothic">The District</font></h3>
<h3><font face = "Century Gothic">Elizabeth Lenzo</font></h3>
<p><font face = "Century Gothic"> I’ve been working with Aflac for 10 years. <br>
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</font>
</p>
</div> -->
<!--<div id="team-description6" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">Team Pipeline</font></h3>
<h3><font face = "Century Gothic">Glen Schecter</font></h3>
<p><font face = "Century Gothic"> I’m 56 years old and I’ve been working here for three years. I originally started
working from the Sherman Oaks branch. I was previously a Coordinator in Training for a year before becoming a
District Sales Coordinator in September of 2013. My time has been great. In my first quarter I was in the new
groups chapter and I managed to finish in 2nd place. I plan on leading my team by teaching them how to find business,
attain business, and maintain business. My business motto is to “work harder today than you did yesterday.”</font>
</p>
</div>-->
<div id="team-description7" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">Team Mojo</font></h3>
<h3><font face = "Century Gothic">Steve Goldstein</font></h3>
<p><font face = "Century Gothic">Hello and welcome to Team Mojo! I am sixty-two years old and over the past five years, I have worked at both the Pasadena and Burbank locations. Before being promoted to a District Sales Coordinator, I was a Coordinator in Training. The most important lesson I have learned at Everwell is to build and tend to personal relationships with both coworkers and clients. As the leader of Team Mojo, I plan on working with each individual member so they can rise to their own potential. My personal business motto is “Just one more.”</font>
</p>
</div>
<div id="team-description8" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">The Wolf Pack</font></h3>
<h3><font face = "Century Gothic">Malvin Black</font></h3>
<p><font face = "Century Gothic">Hello and welcome to The Wolf Pack! I have been working here for almost two years, and I am currently thirty-two years old. I am originally from the Santa Monica branch, where I previously worked as an Associate before being promoted to a District Sales Coordinator. Working at Everwell has been the most challenging and gut-wrenching job I have ever had. However, all these components led it to become the most rewarding job personally and professionally. My philosophy for working at Everwell is to believe in yourself. I give my team all the tools they need, but it is up to them to use them toward their success. My personal business philosophy is, “The moment you get tired of saying ‘I can’t afford’ is the moment your life changes.”</font>
</p>
</div>
<div id="team-description9" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">The Dark Horse</font></h3>
<h3><font face = "Century Gothic">Denny Twigg</font></h3>
<p><font face = "Century Gothic">Hello and welcome to The Dark Horse! Although I have been working at Everwell Pasadena for seven years, I am originally from the Valencia location. I was a BSR and an Associate before being promoted to a District Sales Coordinator. Working at Everwell has given me the opportunity to spend time with my family, while still being able to maintain a level of success. My personal business motto is, “To keep moving forward.” With this mentality, I lead and motivate my team with the philosophy that “You have you enjoy what you do; if you are not having fun, do not do it.”</font>
</p>
</div>
<div id="team-description10" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">The Elite Squad</font></h3>
<h3><font face = "Century Gothic">Erica Golden</font></h3>
<p><font face = "Century Gothic"> Comment</font>
</p>
</div>
<div id="team-description11" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic"></font></h3>
<h3><font face = "Century Gothic">Kevin Nagle</font></h3>
<p><font face = "Century Gothic">I have been working at Everwell for eight and a half years. I am originally from the Burbank branch where I previously worked as an Associate before being promoted to a Coordinator in Training. Working at Everwell has been both challenging and rewarding. I am so happy that I found a job that I enjoy so much. I plan on leading my team by example while setting expectations and providing them with the necessary tools to succeed. My personal business motto is, “Have fun and people will be drawn to you.”</font>
</p>
</div>
<div id="special_projects1" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">Special Project Coordinator</font></h3>
<h3><font face = "Century Gothic">Ricky Shih</font></h3>
<p> <font face = "Century Gothic">Hello, my name is Ricky and I am thirty-two years old. I have been working at Everwell for five years and have previously held title of Associate, Special Projects Coordinator, and Coordinator in Training. Working here has enabled me to experience personal growth and self-knowledge. I plan to lead my team by tending to them with attention and patience. I believe that by providing these two elements, a team member has the highest chance of success. My business motto, “Work until it is done”, which is what I live by every day.</font>
</p>
</div>
<div id="special_projects2" class="team-dialog mfp-with-anim mfp-hide">
<img src = "images/logo.png" width = "202" height = "200">
<h3><font face = "Century Gothic">Special Project Coordinator</font></h3>
<h3><font face = "Century Gothic">Rose Pena</font></h3>
<p> <font face = "Century Gothic">I am twenty-five years old, and I have been working here since the beginning of 2016. As a newcomer, I am very excited to work in this office alongside my team. This is a great place to work because everyone is highly motivated and positive, which encourages me to work harder.</font>
</p>
</div>