-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1534 lines (833 loc) · 62 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>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en-US"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="Invincible Creative is a full service web design and digital marketing agency located in Pacific Beach, San Diego, CA. We offer a wide range of services including, but not limited to: Web design and development, social media management, digital advertising, WordPress development, SEO services, graphic design and logos, and much more. Founded by Vincent DePalma circa 2005.">
<!--
_____ ___ _______ ______________ __ ____
/ _/ |/ / | / / _/ |/ / ___/ _/ _ )/ / / __/
_/ // /| |/ // // / /___/ // _ / /__/ _/
/___/_/|_/ |___/___/_/|_/\___/___/____/____/___/
_ _ _ _ __ _
/ `/_//_`/_///| |/_`
/_,/ \/_,/ /// |//_,
www.invinciblecreative.com
-->
<!-- PAGE TITLE -->
<title>Invincible Creative</title>
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Mobile Specific Metas & Favicons
========================================================= -->
<link rel="shortcut icon" href="wp-content/uploads/2013/08/favicon.ico">
<!-- WordPress Stuff
========================================================= -->
<link rel="pingback" href="https://invinciblecreative.com/xmlrpc.php" />
<!-- Google Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800|&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek-ext,greek,vietnamese' rel='stylesheet' type='text/css'>
<!-- STRIPE Scripts -->
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
<script type="text/javascript">
// This identifies your website in the createToken call below
Stripe.setPublishableKey('pk_test_bBQqhJWBDLv61Ou8MyYUKSQE');
// ...
</script>
<!-- end STRIPE pk_live_kspemg6S7REq7L3OtnFplumh -->
<link rel="alternate" type="application/rss+xml" title="Invincible Creative » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Invincible Creative » Comments Feed" href="comments/feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Invincible Creative » Frontpage Comments Feed" href="frontpage/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"http:\/\/invinciblecreative.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.2.16"}};
!function(a,b,c){function d(a){var c=b.createElement("canvas"),d=c.getContext&&c.getContext("2d");return d&&d.fillText?(d.textBaseline="top",d.font="600 32px Arial","flag"===a?(d.fillText(String.fromCharCode(55356,56812,55356,56807),0,0),c.toDataURL().length>3e3):(d.fillText(String.fromCharCode(55357,56835),0,0),0!==d.getImageData(16,16,1,1).data[0])):!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g;c.supports={simple:d("simple"),flag:d("flag")},c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.simple&&c.supports.flag||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='mailchimp-for-wp-checkbox-css' href='wp-content/plugins/mailchimp-for-wp/assets/css/checkbox.min.css%3Fver=2.3.4.css' type='text/css' media='all' />
<link rel='stylesheet' id='mailchimp-for-wp-form-css' href='wp-content/plugins/mailchimp-for-wp/assets/css/form.min.css%3Fver=2.3.4.css' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='wp-content/plugins/jetpack/css/jetpack.css%3Fver=3.5.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrSkeleton-css' href='wp-content/themes/jarvis_wp/css/skeleton.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='style-css' href='wp-content/themes/jarvis_wp/style.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrSocial-css' href='wp-content/themes/jarvis_wp/css/social.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrFlexslider-css' href='wp-content/themes/jarvis_wp/css/flexslider.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrFontawesome-css' href='wp-content/themes/jarvis_wp/css/font-awesome.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrPrettyPhoto-css' href='wp-content/themes/jarvis_wp/css/prettyPhoto.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrYTPlayer-css' href='wp-content/themes/jarvis_wp/css/YTPlayer.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrShortcodes-css' href='wp-content/themes/jarvis_wp/css/shortcodes.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrTheme-css' href='wp-content/themes/jarvis_wp/css/theme.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='rnrMedia-css' href='wp-content/themes/jarvis_wp/css/media.css%3Fver=1.css' type='text/css' media='all' />
<script type='text/javascript' src='wp-includes/js/jquery/jquery.js%3Fver=1.11.2'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min.js%3Fver=1.2.1'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc.php%3Frsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.2.16" />
<link rel='canonical' href='index.html' />
<link rel='shortlink' href='https://wp.me/P2RI03-29' />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Invincible Creative" />
<meta property="og:description" content="San Diego Web Design, Graphic Design, and Digital Marketing" />
<meta property="og:url" content="https://invinciblecreative.com/" />
<meta property="og:site_name" content="Invincible Creative" />
<meta property="og:image" content="https://s0.wp.com/i/blank.jpg" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary" />
<style type="text/css">.mc4wp-form input[name="_mc4wp_required_but_not_really"] { display: none !important; }</style>
<!-- CUSTOM TYPOGRAPHY STYLES -->
<style type="text/css">
.home-parallax {
background: url('wp-content/uploads/2013/08/san-diego-harbor.jpg') center top;
}
#bg18 {
background: url('wp-content/uploads/2013/08/beach-view.jpg');
background-attachment: fixed;
background-size: cover;
}
#bg277 {
background: url('wp-content/uploads/2013/08/sunset-hair.jpg');
background-attachment: fixed;
background-size: cover;
}
#bg44 {
background: url('wp-content/uploads/2013/08/tower-23.jpg');
background-attachment: fixed;
background-size: cover;
}
#bg51 {
background: url('wp-content/uploads/2013/08/slider2.jpg');
background-attachment: fixed;
background-size: cover;
}
#bg58 {
background: url('wp-content/uploads/2013/08/tower-23.jpg');
background-attachment: fixed;
background-size: cover;
}
body{
font-family: , Arial, Helvetica, sans-serif;
font-size: ;
font-style: ;
color: ;
font-weight: normal;
}
h1{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 36px;
font-style: normal;
color: #000000;
font-weight: normal;
text-transform: none;
}
h2{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 25px;
font-style: normal;
color: #000000;
font-weight: normal;
text-transform: none;
}
h3{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 20px;
font-style: normal;
color: #000000;
font-weight: normal;
text-transform: none;
}
h4{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 16px;
font-style: normal;
font-weight: normal;
text-transform: none;
color: #000000;
}
h5{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 15px;
font-style: normal;
color: #000000;
font-weight: normal;
text-transform: none;
}
h6{
font-family: 0, Arial, Helvetica, sans-serif !important;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-transform: none;
color: #000000;
}
.navigation li a {
font-family: , Arial, Helvetica, sans-serif;
font-size: ;
font-style: ;
color: ;
font-weight: normal;
text-transform: none;
}
.navigation li a:hover, .navigation li.active a {
color: ;
}
.copyright {
background: !important;
font-family: , Arial, Helvetica, sans-serif;
font-size: ;
font-style: ;
color: ;
}
.copyright a, .copyright .social-icons .social-icon {
color: ;
}
.copyright a:hover {
color: ;
}
/*========== B A C K G R O U N D S K I N S =============*/
::-moz-selection {
background: #00b3ea;
}
::selection {
background:#00b3ea;
}
nav.colored, nav.light.colored,
.twitter-feed-icon i,
.testimonial-icon i,
.home-gradient,
.home-parallax,
#project-navigation ul li#prevProject a:hover,
#project-navigation ul li#nextProject a:hover,
#project-navigation ul li a:hover,
#closeProject a:hover,
.mc4wp-form input[type="submit"],
#respond input[type="submit"],
input[type="submit"],
.pagination a.previous:hover,
.pagination a.next:hover,
.rnr-icon-middle:hover,
.service-box:hover,
.button,
.skillbar .skill-percentage,
.flex-control-nav li a:hover,
.flex-control-nav li a.flex-active,
.testimonial-slider .flex-direction-nav li a,
.twitter-slider .flex-direction-nav li a,
.color-block,
.home1 .slabtextdone .slabtext.second-child,
.home4 .slabtextdone .slabtext.second-child,
.caption,
.copyright,
.title h1,
.service-features .img-container,
.service-features .img-container,
.view-profile,
.team-member:hover .team-desc,
.service-box .service-icon,
.modal .close,
#nav .sub-menu li.current-menu-item a,
#nav .sub-menu li.current-menu-item a:hover,
#nav .sub-menu li.current_page_item a,
#nav .sub-menu li.current_page_item a:hover,
#nav .sub-menu li .sub-menu li.current-menu-item a,
#nav .sub-menu li .sub-menu li.current-menu-item a:hover,
#nav .sub-menu li .sub-menu li.current_page_item a,
#nav .sub-menu li .sub-menu li.current_page_item a:hover,
#nav .sub-menu li a.active, #nav .sub-menu li a.active:hover {
background-color: #00b3ea;
}
/*========== B O X S H A D O W S K I N S =============*/
.title h1,
.service-box .service-icon {
box-shadow:0px 0px 0px 3px #00b3ea;
}
.tab a.selected {
box-shadow: 0px -3px 0px 0px #00b3ea;
}
/*========== C O L O R S K I N S =============*/
a,
.highlight,
nav.light .main-menu a:hover,
nav.dark .main-menu a:hover,
nav.light .main-menu li.active a,
nav.transparent .main-menu li.active a,
nav.dark .main-menu li.active a,
.parallax .quote i,
#filters ul li a:hover h3,
#filters ul li a.active h3,
.post-title a:hover,
.post-tags li a:hover,
.tags-list li a:hover,
.pages li a:hover,
.home3 .slabtextdone .slabtext.second-child,
.service-box:hover .service-icon {
color:#00b3ea;
}
/*========== B O R D E R S K I N S =============*/
.pages li a.current,
.pages li a.current,
.service-features .img-container:after,
.service-box:hover .service-icon,
.callout,
blockquote p,
.pullquote.align-right,
.pullquote.align-left {
border-color: #00b3ea;
}
</style>
</head>
<body class="home page page-id-133 page-template page-template-frontpage page-template-frontpage-php onepage" data-spy="scroll" data-target=".navigation">
<div id="load"></div>
<!-- START PAGE WRAP -->
<div class="page-wrap">
<!-- HEADER SECTION -->
<div id="home" class="page9 section fullscreen home-parallax "><!-- SECTION -->
<!--BEGIN HOME SECTION -->
<div class="home-text-wrapper">
<div class="home-logo">
<a href="index.html#about">
<img src="wp-content/uploads/2013/08/logo.png"
alt=""
/>
</a>
</div>
<div id="home-slider" class="flexslider">
<ul class="slides styled-list">
<li class="home-slide"><p class="home-slide-content">WE ARE <span class="highlight">INVINCIBLE</span> DESIGNERS</p></li>
<li class="home-slide"><p class="home-slide-content">WE ARE <span class="highlight">CREATIVE</span> GENIUSES</p></li>
<li class="home-slide"><p class="home-slide-content">OH YAH… AND WE <span class="highlight">LOVE</span> HOCKEY</p></li>
</ul>
</div>
</div><!-- END HOME TEXT WRAPPER -->
</div><!--END SECTION -->
<!-- START NAVIGATION -->
<nav class="page_scroll navigation colored sticky-nav">
<!-- START CONTAINER -->
<div class="container clearfix">
<div class="four columns">
<!-- START LOGO -->
<div class="logo large">
<a href="index.html">
<img src="wp-content/uploads/2013/08/white-small.png"
alt="Invincible Creative"
width=""
height=""
/>
</a>
</div>
<!-- END LOGO -->
</div><!-- END FOUR COLUMNS -->
<!-- BEGIN NAVIGATION SECTION -->
<div class="twelve columns">
<!-- START NAVIGATION MENU ITEMS -->
<ul id="nav" class="main-menu large nav sf-menu sf-js-enabled"><li id="menu-item-135" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="index.html#home"><span>Home</span></a></li>
<li id="menu-item-134" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="index.html#about"><span>About</span></a></li>
</li>
<li id="menu-item-137" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="index.html#team"><span>Team</span></a></li>
</li>
<li id="menu-item-139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children"><a href="index.html#services"><span>Services</span></a>
<ul class="sub-menu">
<li id="menu-item-273" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="web-design-san-diego/index.html"><span>Web Design</span></a></li>
<li id="menu-item-271" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="social-media-optimization/index.html"><span>Social Media</span></a></li>
<li id="menu-item-274" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="graphic-design/index.html"><span>Graphic Design</span></a></li>
<li id="menu-item-366" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="services/legal-technology-consulting/index.html"><span>Legal Tech</span></a></li>
<li id="menu-item-313" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="services/bitcoin-technical-consulting/index.html"><span>Bitcoin Tech</span></a></li>
</ul>
</li>
</li>
<li id="menu-item-141" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="index.html#portfolio"><span>Portfolio</span></a></li>
</li>
<li id="menu-item-144" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="blog/index.html"><span>Blog</span></a></li>
<li id="menu-item-143" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="index.html#contact"><span>Contact</span></a></li>
</li>
</ul>
<!-- END NAVIGATION MENU ITEMS -->
</div><!-- END TWELVE COLUMNS -->
</div><!-- END CONTAINER -->
</nav>
<!-- END NAVIGATION -->
<div id="about" class="page13 section about "><!-- SECTION -->
<div class="container">
<div class="row">
<div class="sixteen columns">
<!-- START TITLE -->
<div class="title">
<h1 class="header-text">Invincible</h1>
<div class="subtitle">
<p>We are <span class="highlight">Invincible Creative</span> located in San Diego, California. Experts in <span class="highlight">design, social media, marketing</span> and infinitely more!</p>
</div><!-- END SUBTITLE -->
</div><!-- END TITLE -->
</div><!-- END SIXTEEN COLUMNS -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
<div class="container">
<div class="sixteen columns">
<div class="full-width" style="color: #333333;background: #f6f6f6;">
<div class="fancy-header2"><h4>HOW YA DO THAT THERE?</h4><h2 class="highlight">EXPLOSIVE DESIGN THAT CAPTURES ATTENTION AND RETAINS CLIENTS</h2></div>
<div class="one_third">
<div class="service-features"><div class="img-container"><img src="https://demo.rocknrolladesigns.com/html/jarvis/images/icons/icons/paperplane.png" alt="Innovative"></div> <h3>Innovative</h3> <p>Our creative diligence almost guarantees innovative solutions to your specific goals. We will work around the clock to provide you with exceptional service, on time and on budget.</p></div>
</div>
<div class="one_third">
<div class="service-features"><div class="img-container"><img src="https://demo.rocknrolladesigns.com/html/jarvis/images/icons/icons/lab.png" alt="Experimental"></div> <h3>Experimental</h3> <p>We are constantly tinkering, pondering, and creating the next big thing. Whether its in the office, on the road, or in the shower everyone on our team is always experimenting with new ideas and projects.</p></div>
</div>
<div class="one_third last">
<div class="service-features"><div class="img-container"><img src="https://demo.rocknrolladesigns.com/html/jarvis/images/icons/icons/like.png" alt="Perfect"></div> <h3>Perfect</h3> <p>Well…almost perfect, our objective is to keep our clients happy and provide the highest quality product money can buy. If something doesn’t live up to your standards we promise to work tirelessly until it does.</p></div>
</div><div class="clear"></div>
</div>
<div class="space" style="height: 30px;"></div>
<div class="aligncenter">
<h2>Hearsay you say? Discover the facts:</h2>
<div class="one_fourth">
<div class="milestone-counter" data-perc="15"><span class="milestone-count highlight">15</span><h6 class="milestone-details">Years of Experience</h6></div>
</div>
<div class="one_fourth">
<div class="milestone-counter" data-perc="24"><span class="milestone-count highlight">24</span><h6 class="milestone-details">Hours to Help You Today</h6></div>
</div>
<div class="one_fourth">
<div class="milestone-counter" data-perc="99"><span class="milestone-count highlight">99</span><h6 class="milestone-details">Problems</h6></div>
</div>
<div class="one_fourth last">
<div class="milestone-counter" data-perc="1"><span class="milestone-count highlight">1</span><h6 class="milestone-details">Solution</h6></div>
</div><div class="clear"></div>
</div>
</div>
</div>
</div><!--END SECTION -->
<!-- START PARALLAX SECTION -->
<div id="parallax-quote" class="parallax">
<div id="bg18" class="parallax-bg"></div><!-- END PARALLAX BACKGROUND -->
<div class="overlay"></div><!-- END PATTERN OVERLAY -->
<div class="container clearfix">
<div class="parallax-content">
<p class="quote"><i class="icon-quote-left"></i>“Life is a journey, not a destination.<i class="icon-quote-right"></i></p><div class="quote-author">-- Ralph Waldo Emerson --</div>
</div><!-- END PARALLAX CONTENT -->
</div><!-- END CONTAINER -->
</div>
<!-- END PARALLAX SECTION -->
<div id="team" class="page22 section team "><!-- SECTION -->
<div class="container">
<div class="row">
<div class="sixteen columns">
<!-- START TITLE -->
<div class="title">
<h1 class="header-text">Our Team</h1>
<div class="subtitle">
<p>Professional & Outstanding <span class="highlight">ideas</span> from our <span class="highlight">passionate team</span> makes us unique in every sense.</p>
</div><!-- END SUBTITLE -->
</div><!-- END TITLE -->
</div><!-- END SIXTEEN COLUMNS -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
<div class="container">
<div class="sixteen columns">
<div class="full-width" style="color: #333333;background: #f6f6f6;">
<div class="fancy-header2"><h4>WHO’S WHO?</h4><h2 class="highlight">Meet the first line</h2></div>
<div class="team-member team-"><div class="team-thumb img-wrp"><img src="wp-content/uploads/2013/08/vince-depalma.jpg" class="team-image" alt="Vincent DePalma" /><div class="team-overlay"><div class="img-overlay"></div><div class="overlay-content"> <h4>Founder</h4><p><a data-toggle="modal" href="index.html#team-1390457028" class="modal-popup-link view-profile">View Profile</a></p></div></div></div><div class="team-desc"><h4>Vincent DePalma</h4></div><div id="team-1390457028" class="modal hide fade.in animated fadeIn"><div class="member-bio"><div class="container"><a href="index.html#" class="close" data-dismiss="modal">×</a><div class="member-role"><h1>Vincent DePalma</h1><h4 class="highlight">Founder</h4></div><div class="row"><div class="seven columns"><img src="wp-content/uploads/2013/08/vince-depalma.jpg" class="team-image" alt="Vincent DePalma" /> </div><div class="eight columns member-description">
Vince has over 15 years of experience in design and web development. He received his Bachelor of Arts in Graphic Design and Business Administration from California State University Northridge and holds a Juris Doctor from the University of San Diego School of Law. Founded by <a title="Vincent DePalma on Google+" href="https://plus.google.com/101455264912739529613?rel=author">Vincent DePalma</a> his uncontrollable passion for design and technology inspired him to start the web design business in 2005 and has since been offering award winning design, web development and marketing expertise. Vincent DePalma is also an avid hockey player, golfer, snowboarder and all around stand up guy.</p>
<h3>Vince’s Standard Skills</h3>
<div class="skillbar" data-perc="95"><div class="skill-title">Web Design</div><div class="skill-percentage"></div></div>
<div class="skillbar" data-perc="60"><div class="skill-title">UX Design</div><div class="skill-percentage"></div></div>
<div class="skillbar" data-perc="70"><div class="skill-title">Social Media</div><div class="skill-percentage"></div></div>
<div class="skillbar" data-perc="85"><div class="skill-title">WordPress</div><div class="skill-percentage"></div></div>
<h3>Connect With Vince</h3>
<div class="social-icon social-email"><a title="Email" target="_blank">Email</a></div>
<div class="social-icon social-facebook"><a href="https://www.facebook.com/vincedepalma" title="Facebook" target="_blank">Facebook</a></div>
<div class="social-icon social-twitter"><a href="https://www.twitter.com/vincedepalma" title="Twitter" target="_blank">Twitter</a></div>
<div class="social-icon social-linkedin"><a href="https://www.linkedin.com/in/vincentdepalma" title="Linkedin" target="_blank">Linkedin</a></div>
<div class="social-icon social-googleplus"><a href="https://plus.google.com/+VincentDePalma?rel=author" title="Googleplus" target="_blank">Googleplus</a></div>
</div> </div></div></div></div></div>
<p></div>
<div class="space" style="height: 30px;"></div>
<div class="aligncenter">
<h2>Some of our ubiquitous clients</h2>
</div>
<div class="client-logos"><a href="index.html#" title="Client" class="clients"><img src="wp-content/uploads/2013/08/fox-film.png" alt="Client"></a><a href="index.html#" title="Client" class="clients"><img src="wp-content/uploads/2013/08/the-hollywood-reporter.png" alt="Client"></a><a href="index.html#" title="Client" class="clients"><img src="wp-content/uploads/2013/08/mycorp.png" alt="Client"></a><a href="index.html#" title="Client" class="clients"><img src="wp-content/uploads/2013/08/university-of-san-diego.png" alt="Client"></a></div>
<p>Invincible Creative keeps its clients happy and coming back for more, just ask around!</p>
</div>
</div>
</div><!--END SECTION -->
<!-- START PARALLAX SECTION -->
<div id="parallax-twitter" class="parallax">
<div id="bg44" class="parallax-bg"></div><!-- END PARALLAX BACKGROUND -->
<div class="overlay"></div><!-- END PATTERN OVERLAY -->
<div class="container clearfix">
<div class="parallax-content">
<div><p class="twitter-feed-icon"><i class="icon-twitter"></i></p><p class="twitter-author"><a href="https://twitter.com/@invinciblecrtv" target="_blank">Follow us on Twitter</a></p></div><div class="twitter-slider"><div id="twitter-feed"><div class="flexslider"><ul class="slides"><li class="slide"><p class="jtwt_tweet_text"> <a href="https://twitter.com/invinciblecrtv" target="_blank">@invinciblecrtv</a> <a href="https://t.co/RNNqpvIrde" target="_blank">https://t.co/RNNqpvIrde</a> #ABATECHSHOW</p><a href="https://twitter.com/@invinciblecrtv/statuses/450002987692212224" class="jtwt_date">4 years ago </a></li><li class="slide"><p class="jtwt_tweet_text">Does your firm’s website include testimonials from clients #ABATECHSHOW? Testimonials can increase conversion rate <a href="https://t.co/3lGWxD4nac" target="_blank">https://t.co/3lGWxD4nac</a> </p><a href="https://twitter.com/@invinciblecrtv/statuses/450002823376166912" class="jtwt_date">4 years ago </a></li><li class="slide"><p class="jtwt_tweet_text">RT <a href="https://twitter.com/VinceDePalma" target="_blank">@VinceDePalma</a> : #TS60Sites <a href="https://t.co/Ybd0KnFJp9" target="_blank">https://t.co/Ybd0KnFJp9</a> Starting a new firm #ABATECHSHOW? Lay the proper foundation with professional branding …</p><a href="https://twitter.com/@invinciblecrtv/statuses/450002619793014784" class="jtwt_date">4 years ago </a></li><li class="slide"><p class="jtwt_tweet_text">Learn the secrets without paying a fortune hmm #ABATECHSHOW Teach you, I will, yes...… <a href="https://t.co/DsDQALjgQD" target="_blank">https://t.co/DsDQALjgQD</a> </p><a href="https://twitter.com/@invinciblecrtv/statuses/449651374154715137" class="jtwt_date">4 years ago </a></li><li class="slide"><p class="jtwt_tweet_text">Don’t let up-and-coming firms eat your lunch #ABATECHSHOW Get on top, and stay on top, of your online presence <a href="https://t.co/3lGWxD4nac" target="_blank">https://t.co/3lGWxD4nac</a> </p><a href="https://twitter.com/@invinciblecrtv/statuses/449635259911397376" class="jtwt_date">4 years ago </a></li></ul></div></div></div>
</div><!-- END PARALLAX CONTENT -->
</div><!-- END CONTAINER -->
</div>
<!-- END PARALLAX SECTION -->
<div id="services" class="page48 section services "><!-- SECTION -->
<div class="container">
<div class="row">
<div class="sixteen columns">
<!-- START TITLE -->
<div class="title">
<h1 class="header-text">Our Services</h1>
<div class="subtitle">
<p>Our services are delivered by our team with <span class="highlight">years of experience</span> are <span class="highlight">passionate</span> about developing business.</p>
</div><!-- END SUBTITLE -->
</div><!-- END TITLE -->
</div><!-- END SIXTEEN COLUMNS -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
<div class="container">
<div class="sixteen columns">
<div class="full-width" style="color: #333333;background: #f6f6f6;">
<div class="one_third">
<div class="service-box"><div><h3>Web, Digital & Print Design</h3><i class="service-icon icon-tablet"></i></div><div class="service-description"><p>The invincible web designers on staff will transform your website into something to write home about. We can build anything you can dream up be it an online store, corporate homepage, small business website, or a design portfolio. Our specialists have expertise in all of the above. With reasonable pricing and multiple packages to suit your needs..</p>
<h6>What we offer</h6>
<ul class="styled-list">
<li>Research</li>
<li>Strategy</li>
<li>Design</li>
<li>Experience</li>
</ul>
</p></div></div>
</div>
<div class="one_third">
<div class="service-box"><div><h3>Social Media Management</h3><i class="service-icon icon-gift"></i></div><div class="service-description"><p>Social media development and optimization is an essential part of your business. Having a strong, diversified presence across all social media platforms allows you to effectively reach out to potential customers and engage your audience. This instantaneous, ever-present connection to your clients ensures awareness of your latest products and promotions and builds a stronger and larger client base.</p>
<h6>What we offer</h6>
<ul class="styled-list">
<li>Optimized Facebook content updates</li>
<li>Twitter followers, content, interaction</li>
<li>Complete automation across all your networks</li>
<li>Increase your fans, following, and social gravitas</li>
</ul>
</p></div></div>
</div>
<div class="one_third last">
<div class="service-box"><div><h3>Invincible Web Hosting</h3><i class="service-icon icon-bolt"></i></div><div class="service-description"><p>Invincible Creative offers full service web hosting. We currently offer Personal Blog Hosting, Business Web Hosting, Virtual Dedicated Server, and Enterprise Web Cloud.</p>
<h6>What we offer</h6>
<ul class="styled-list">
<li>Personal Blog Hosting</li>
<li>Business Web Hosting</li>
<li>Virtual Dedicated Server</li>
<li><a title="Enterprise Web Cloud" href="enterprise-web-cloud/index.html">Enterprise Web Cloud</a></li>
</ul>
</p></div></div>
</div><div class="clear"></div>
</div>
<div class="space" style="height: 30px;"></div>
<div class="aligncenter">
<h3>Send out the carrier pigeons?</h3>
<a href="index.html#contact" class="button scroll-to">Get in Touch</a>
</div>
</div>
</div>
</div><!--END SECTION -->
<!-- START PARALLAX SECTION -->
<div id="parallax-testimonials" class="parallax">
<div id="bg51" class="parallax-bg"></div><!-- END PARALLAX BACKGROUND -->
<div class="overlay"></div><!-- END PATTERN OVERLAY -->
<div class="container clearfix">
<div class="parallax-content">
<p class="testimonial-icon"><i class="icon-quote-left"></i></p><h3 class="title"><span>What our Clients say</span></h3><div class="testimonial-slider"><div class="flexslider"><ul class="slides styled-list">
<li class="testimonial-slide"><p class="client-testimonial">Always great work and easy to delegate…super great price!</p><div class="client-info">Dana Robinson</div></li>
<li class="testimonial-slide"><p class="client-testimonial">Strives to achieve success for his clients.</p><div class="client-info">Trish Schuyler</div></li>
</ul></div></div>
</div><!-- END PARALLAX CONTENT -->
</div><!-- END CONTAINER -->
</div>
<!-- END PARALLAX SECTION -->
<div id="portfolio" class="page55 section portfolio "><!-- SECTION -->
<div class="container">
<div class="row">
<div class="sixteen columns">
<!-- START TITLE -->
<div class="title">
<h1 class="header-text">Portfolio</h1>
<div class="subtitle">
<p>Our Featured Works and Case Studies so far</p>
</div><!-- END SUBTITLE -->
</div><!-- END TITLE -->
</div><!-- END SIXTEEN COLUMNS -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
<div class="container">
<div class="sixteen columns">
</div>
</div>
<!-- START AJAX SECTION -->
<div id="ajax-section">
<div class="container">
<div class="row">
<!-- START PROJECT NAVIGATION -->
<div id="project-navigation">
<ul>
<li id="nextProject"><a href="index.html#"></a></li>
<li id="prevProject"><a href="index.html#"></a></li>
</ul>
</div>
<!-- END PROJECT NAVIGATION -->
<!-- START PROJECT CLOSE BUTTON -->
<div id="closeProject">
<a href="index.html#loader"><i class="icon-remove"></i></a>
</div>
<!-- START PROJECT CLOSE BUTTON -->
<!-- START PROJECT LOADER SECTION -->
<div id="loader"></div>
<!-- END PROJECT CLOSE BUTTON -->
<!-- START AJAX CONTENT -->
<div id="ajax-content-outer">
<div id="ajax-content-inner"></div>
</div>
<!-- END AJAX CONTENT -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
</div>
<!-- END AJAX SECTION -->
<div class="clear"></div>
<div class="container clearfix">
<!-- START PORTFOLIO FILTERING -->
<div id="filters" class="sixteen columns">
<ul class="clearfix">
<ul class="styled-list clearfix">
<li><a href="index.html#" data-filter="*" class="active"><h3>All</h3></a></li>
<li><a href="index.html#" data-filter=".term-graphic-designer-san-diego"><h3>Graphic Design</h3></a></li>
<li><a href="index.html#" data-filter=".term-web-design-and-web-development-san-diego"><h3>Web Design</h3></a></li>
<li><a href="index.html#" data-filter=".term-logo-design"><h3>Logo Design</h3></a></li>
</ul>
</div><!-- END PORTFOLIO FILTERING -->
</div><!-- END CONTAINER -->
<div id="portfolio-wrap">
<div class="term-web-design-and-web-development-san-diego portfolio-item one-third column">
<div class="portfolio">
<a href="index.html#!portfolio-item/law-offices-of-marc-adelman" title="Law Offices of Marc Adelman" class="portfolio-image"> <img width="370" height="241" src="wp-content/uploads/2013/12/marc-adelman-370x241.png" class="attachment-span4 wp-post-image" alt="marc-adelman" /><div class="portfolio-overlay"><div class="thumb-info"><h3>Law Offices of Marc Adelman</h3><p class="portfolio-tags">Web Design</p></div></div></a>
</div>
</div> <!-- END OF TERMS -->
<div class="term-web-design-and-web-development-san-diego portfolio-item one-third column">
<div class="portfolio">
<a href="index.html#!portfolio-item/ron-wilson-interiors" title="Ron Wilson Interiors" class="portfolio-image"> <img width="370" height="241" src="wp-content/uploads/2013/12/rwi-370x241.png" class="attachment-span4 wp-post-image" alt="rwi" /><div class="portfolio-overlay"><div class="thumb-info"><h3>Ron Wilson Interiors</h3><p class="portfolio-tags">Web Design</p></div></div></a>
</div>
</div> <!-- END OF TERMS -->
<div class="term-web-design-and-web-development-san-diego portfolio-item one-third column">
<div class="portfolio">
<a href="index.html#!portfolio-item/whats-up-ya-sieve" title="What’s Up Ya Sieve" class="portfolio-image"> <img width="370" height="241" src="wp-content/uploads/2013/12/wuys-370x241.png" class="attachment-span4 wp-post-image" alt="wuys" /><div class="portfolio-overlay"><div class="thumb-info"><h3>What’s Up Ya Sieve</h3><p class="portfolio-tags">Web Design</p></div></div></a>
</div>
</div> <!-- END OF TERMS -->
<div class="term-logo-design portfolio-item one-third column">
<div class="portfolio">
<a href="index.html#!portfolio-item/pita-pockets" title="Pita Pockets" class="portfolio-image"> <img width="370" height="241" src="wp-content/uploads/2013/12/pitapocket_1-370x241.jpg" class="attachment-span4 wp-post-image" alt="pitapocket_1" /><div class="portfolio-overlay"><div class="thumb-info"><h3>Pita Pockets</h3><p class="portfolio-tags">Logo Design</p></div></div></a>
</div>
</div> <!-- END OF TERMS -->
<div class="term-web-design-and-web-development-san-diego portfolio-item one-third column">
<div class="portfolio">
<a href="index.html#!portfolio-item/iphone-j-d" title="iPhone J.D." class="portfolio-image"> <img width="370" height="241" src="wp-content/uploads/2013/11/iPhoneJD-370x241.jpg" class="attachment-span4 wp-post-image" alt="iPhoneJD" /><div class="portfolio-overlay"><div class="thumb-info"><h3>iPhone J.D.</h3><p class="portfolio-tags">Web Design</p></div></div></a>
</div>
</div> <!-- END OF TERMS -->
<div class="term-graphic-designer-san-diego term-logo-design portfolio-item one-third column">