-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworking.php
908 lines (735 loc) · 29.4 KB
/
working.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Project Opus - A film & video production company in Lancaster PA</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="/lib/css/bootstrap.css" rel="stylesheet">
<link href="/lib/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="/lib/js/html5shiv.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/lib/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/lib/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/lib/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="/lib/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="/lib/ico/favicon.png">
<!--typekit-->
<script type="text/javascript" src="//use.typekit.net/jbb4bbq.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body data-spy="scroll" data-target=".bs-docs-sidebar">
<section id="intro">
<div class="container">
<h1><img src="/lib/img/logo-large.png" alt=""/></h1>
<p>Project Opus is a small team of filmmakers with large ideas—we love to work with great teams to create ideas that change the way people think.</p>
</div>
<a class="menu-toggle" href="">
<span></span>
<span></span>
<span></span>
</a>
<div id="intro-nav" class="">
<nav>
<!--<a class="selected" href="#intro">Home</a>-->
<a href="#whatwedo">What we do</a>
<a href="#ourworld"><span class="non-essential">Our</span> world</a>
<a href="#ourwork"><span class="non-essential">Our</span> work</a>
<a href="#contact">Contact</a>
</nav>
</div>
</section>
<section id="reel">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/64176095?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
</section><!--reel-->
<div class="trigger-shim"></div>
<section id="whatwedo">
<header>
<div class="container">
<div class="row-fluid">
<div class="span4">
<h2>What we do</h2>
</div>
<div class="span8">
<nav>
<!--<a href="#intro">Home</a>-->
<a class="selected" href="#whatwedo">What we do</a>
<a href="#ourworld"><span class="non-essential">Our</span> world</a>
<a href="#ourwork"><span class="non-essential">Our</span> work</a>
<a href="#contact">Contact</a>
</nav>
</div>
</div><!--row-->
</div>
</header>
<div id="process" class="subsection">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3>Our Process</h3>
</div>
</div>
</div>
<div id="process-gauge" class="">
<strong class="start">Start</strong>
<strong class="finish">Finish</strong>
<div class="container">
<div class="col one">
<span></span>
</div>
<div class="col two">
<span></span>
</div>
<div class="col three">
<span></span>
</div>
</div>
</div>
<div class="container">
<div class="row-fluid spacer">
<div class="span4">
<h4>Pre-production</h4>
<p>Start with a plan. This is where we map out the project, write the script, cast actors, etc. ProjectOpus’s producers and directors will help you map out a plan.</p>
<p>Pre-production is a vital role to the process. Our team will use this time to develop a strategy that will keep your project on-time and affordable.</p>
<p>Storyboarding, Scripting, Casting, Scheduling, location scouting, set design, logistics.</p>
<p>Let’s make something.</p>
</div>
<div class="span4">
<h4>Production</h4>
<p>We make something every day. We know our equipment inside and out. At this point we might be setting up tripods on the beaches of Greece or filming the Archery world-cup in Tokyo, Japan. Or even shooting on a custom set built by master carpenters at our studio in Lancaster, PA. </p>
<p>We’ve done the planning during the pre-production process. Now is when we execute it. </p>
</div>
<div class="span4">
<h4>Production</h4>
<p>So, we’ve made it this far. Now we hand off the project to our post-production team who will edit, animate, add motion graphics, compositing, color corrections, record voice-overs, and color the final product.</p>
<p>You tell us how you want it delivered: FTP? Snail Mail? Or we’ll upload it to the services of your choosing.</p>
</div>
</div>
<div id="timeline" class="row-fluid spacer">
<div class="span4">
<p class="large-text">Now that you know what the 3-stages of video production are,
let’s take a look at what the typical process might look like.</p>
<p>There are a lot of steps to this process, but we’re here to
help. We’re experienced with large projects with big moving parts.
ProjectOpus looks forward to serving you.</p>
</div>
<div class="span8">
<div class="infographic">
<ol>
<li class="step1 below"><span>Client vision meeting</span></li>
<li class="step2 above"><span>Develop ideas</span></li>
<li class="step3 below"><span>Storyboard</span></li>
<li class="step4 above"><span>Script</span></li>
<li class="step5 below"><span>Concept approval</span></li>
<li class="step6 above"><span>Book talent</span></li>
<li class="step7 below"><span>Book locations & build set</span></li>
<li class="step8 above"><span>Schedule shoot</span></li>
<li class="step9 below"><span>Film</span></li>
<li class="step10 above"><span>Assistant editor makes a rough cut</span></li>
<li class="step11 below"><span>Senior editor makes revisions</span></li>
<li class="step12 above"><span>Motion graphics or compositing</span></li>
<li class="step13 below"><span>First client review</span></li>
<li class="step14 above"><span>Music</span></li>
<li class="step15 below"><span>Audio mixing</span></li>
<li class="step16 above"><span>Color correction</span></li>
<li class="step17 below"><span>Second client review</span></li>
<li class="step18 above"><span>Revisions & refinements</span></li>
<li class="step19 below"><span>Client approval</span></li>
<li class="step20 above"><span>Delivery</span></li>
</ol>
</div>
</div>
</div><!--timeline-->
</div>
</div><!--#process-->
<div id="values" class="subsection">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3 class="lead">Our Core Values</h3>
</div>
</div>
<div class="row-fluid">
<div class="span5">
<p class="large-text bright">We’re blessed to do what we love every day with a team that respects each other and loves the work they produce. Our work, and our process reflects our culture and core values. That’s why we always:</p>
<ol>
<li>Under-promise and over-deliver</li>
<li>Communicate thoroughly and effectively</li>
<li>Give & expect respect</li>
<li>Hold each other accountable</li>
<li>Make the process as pain-free for the client as possible</li>
</ol>
</div><!--span5-->
<!--<div class="span7 infographic">
<div class="one">
<img src="http://placehold.it/10" />
<span>Excellence</span>
</div>
<div class="two">
<img src="http://placehold.it/10" />
<span>Respect</span>
</div>
<div class="three">
<img src="http://placehold.it/10" />
<span>Trust</span>
</div>
</div>-->
<div class="span7">
<img src="/lib/img/values-chart.png" alt="" />
</div>
</div><!--row-->
</div>
</div><!--values-->
<div id="services" class="subsection">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3 class="lead">Our Services</h3>
<p class="large-text">ProjectOpus is your one stop shop for all of your video needs: HD Video Production, Motion Graphics, Animation and 3D Modeling.
</p>
</div>
</div>
<div class="row-fluid spacer">
<div class="span3">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/540/360/city/1" alt="" />
</div>
</div>
<div class="info">
<h4>Video Production</h4>
<p>We use top of the line cameras, lighting, support, and audio equipment to produce the finest quality videos for our clients. </p>
</div>
</div>
<div class="span3">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/540/360/city/2" alt="" />
</div>
</div>
<div class="info">
<h4>Motion Graphics</h4>
<p>Graphics that use video and/or animation to move or rotate images. Moving text? Words or images moving around a video? Motion graphics can be used stand-alone in an informative video or simply to add dynamics in a cost effective way to a talking head interview.</p>
</div>
</div>
<div class="span3">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/540/360/city/3" alt="" />
</div>
</div>
<div class="info">
<h4>Animation & 3D Modeling</h4>
<p>Want a custom virtual stage? Have a product you want to showcase in pieces? We can custom build elements to suit your needs. We have the tools to do incredible 2D or 3D imaging.</p>
</div>
</div>
<div class="span3">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/540/360/city/4" alt="" />
</div>
</div>
<div class="info">
<h4>Compositing</h4>
<p>Combining visual elements from multiple sources into a single video. This can simply be adding motion graphic elements to a live-action video or by using a green screen to put talent on a virtual stage. </p>
</div>
</div>
</div><!--row-->
</div><!--container-->
</div><!--services-->
</section><!--whatwedo-->
<div class="trigger-shim"></div>
<section id="ourworld">
<header>
<div class="container">
<div class="row-fluid">
<div class="span5">
<h2>Our world</h2>
</div>
<div class="span7">
<nav>
<!--<a href="#intro">Home</a>-->
<a href="#whatwedo">What we do</a>
<a class="selected" href="#ourworld"><span class="non-essential">Our</span> world</a>
<a href="#ourwork"><span class="non-essential">Our</span> work</a>
<a href="#contact">Contact</a>
</nav>
</div>
</div>
</div><!--container-->
</header>
<div class="subsection spacer" id="team">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3 class="lead">Our Team</h3>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="team-member">
<div class="frame-container">
<div class="frame">
<a href="#"><img src="http://d.pr/MChl+" alt="" /></a>
</div>
</div>
<div class="info">
<h4>Travis Detweiler</h4>
<p>Creative Director</p>
</div>
<div class="extended">
<div class="holder">
<div class="info">
<h4>Travis Detweiler</h4>
<p>Creative Director</p>
</div>
<p>Travis has worked with various names such as Zac Brown, Fuzzy Zoeller, Kirk Cameron, Brady Ellison and companies like Veritas Press, Lancaster Archery, and Kimray, inc.</p>
<p>Travis is responsible for the big picture. He works with all the departments to make the projects come together seamlessly. On set he’ll be directing actors or helping nervous clients loosen up in front of the camera.</p>
<p>Occasionally Travis breaks out his pilots license to fly the team to a location. Travis is here to help you with your vision.</p>
<ul class="social-list">
<li><a class="i-twitter" href=""><em>Twitter</em></a></li>
<li><a class="i-facebook" href=""><em>Facebook</em></a></li>
<li><a class="i-instagram" href=""><em>Instagram</em></a></li>
<li><a class="i-email" href="mailto:[email protected]"><em>Email</em></a></li>
</ul>
</div>
</div>
</div><!--team-member-->
</div><!--span-->
<div class="span4">
<div class="team-member">
<div class="frame-container">
<div class="frame">
<img src="http://d.pr/5TQK+" alt="" />
</div>
</div>
<div class="info">
<h4>Alejandro Zapata</h4>
<p>Production/Post-production supervisor</p>
</div>
<div class="extended">
<div class="holder">
<div class="info">
<h4>Alejandro Zapata</h4>
<p>Production/Post-production supervisor</p>
</div>
<p>Alejandro is one of the hardest working individuals in the profession. He’ll do whatever it takes to get the job done.</p>
<p>You'll see him behind the camera as our Director of Photography, planning out the technical requirements of shoots, or managing our post-production team.</p>
<p>Jandy is an avid comic book collector and not afraid to geek out over Pokémon, but don’t let his interest in Japanese animation throw you off. Jandy’s the coolest guy in the office showing up on his skateboard every morning.</p>
<p>He’s also addicted to <a href="http://instagram.com/jandyzapata">instagram</a></p>
<ul class="social-list">
<li><a class="i-twitter" href=""><em>Twitter</em></a></li>
<li><a class="i-facebook" href=""><em>Facebook</em></a></li>
<li><a class="i-instagram" href=""><em>Instagram</em></a></li>
<li><a class="i-email" href="mailto:[email protected]"><em>Email</em></a></li>
</ul>
</div>
</div>
</div><!--team-member-->
</div><!--span-->
<div class="span4">
<div class="team-member placeholder">
<div class="frame-container">
<div class="frame">
<img src="http://upload.wikimedia.org/wikipedia/commons/5/52/Spacer.gif" alt="" />
</div>
</div>
<div class="info">
<h4>This could be you.</h4>
<p>Project Opus is always looking for new talent. If you think you’d fit our company we’d love to hear from you.</p>
<a class="btn btn-primary" href="mailto:[email protected]">Contact us</a>
</div>
</div><!--team-member-->
</div><!--span-->
</div><!--row-->
</div><!--container-->
</div><!--team-->
<div id="whatwereupto">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3 class="lead">What We're Up To</h3>
<h4 class="follow">Follow us on Instagram:
<a class="btn btn-primary" href="">@Travd23</a>
<a class="btn btn-primary" href="">@jandyzapata</a>
</h4>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="frame-container">
<div class="frame">
<a href=""><img src="http://lorempixel.com/300/300/city/4" alt="" /></a>
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
<div class="span2">
<div class="frame-container">
<div class="frame">
<img src="http://lorempixel.com/300/300/city/4" alt="" />
</div>
</div>
</div>
</div><!--row-->
</div>
</div><!--what we up to-->
</section>
<div class="trigger-shim"></div>
<section id="ourwork">
<header>
<div class="container">
<div class="row-fluid">
<div class="span4">
<h2>Our work</h2>
</div>
<div class="span8">
<nav>
<!--<a href="#intro">Home</a>-->
<a href="#whatwedo">What we do</a>
<a href="#ourworld"><span class="non-essential">Our</span> world</a>
<a class="selected" href="#ourwork"><span class="non-essential">Our</span> work</a>
<a href="#contact">Contact</a>
</nav>
</div>
</div>
</div><!--container-->
</header>
<div class="subsection spacer" id="work">
<div class="container">
<div class="row-fluid">
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<p>Veritas Press came to us looking to make a promotional video explaining Classical
Christian Education. Through our discussion, we decided to make a short form documentary
about the history of Classical Christian Education. This video is a great example of
Content Marketing. It was used as a free handout in order to acquire customers.</p>
</div>
</div>
</div>
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Omnibus Self-Paced</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Omnibus Self-Paced</h4>
<p>Documentary</p>
</div>
<p>After the great success of the VP self-paced elementary courses, Veritas Press decided to expand the self-paced courses to 7-12th grades. Instead of making your standard lecture course, we decided to spice it up by interviewing experts in the fields, traveling to historical sites, utilizing cultural street interviews around the world, along with engaging activities and quizzes. We not only created an alternative method to learn, but have created a superior option.</p>
</div>
</div>
</div>
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<p>Veritas Press came to us looking to make a promotional video explaining Classical
Christian Education. Through our discussion, we decided to make a short form documentary
about the history of Classical Christian Education. This video is a great example of
Content Marketing. It was used as a free handout in order to acquire customers.</p>
</div>
</div>
</div>
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<p>Veritas Press came to us looking to make a promotional video explaining Classical
Christian Education. Through our discussion, we decided to make a short form documentary
about the history of Classical Christian Education. This video is a great example of
Content Marketing. It was used as a free handout in order to acquire customers.</p>
</div>
</div>
</div>
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<p>Veritas Press came to us looking to make a promotional video explaining Classical
Christian Education. Through our discussion, we decided to make a short form documentary
about the history of Classical Christian Education. This video is a great example of
Content Marketing. It was used as a free handout in order to acquire customers.</p>
</div>
</div>
</div>
<div class="span4 project">
<div class="frame-container">
<div class="frame">
<img src="http://dummyimage.com/540x3:2" alt="" />
</div>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<div class="extended">
<div class="holder">
<div class="videoWrapper">
<iframe src="http://player.vimeo.com/video/65600860?title=0&byline=0&portrait=0" width="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<div class="info">
<h4>Veritas Press Documentary</h4>
<p>Documentary</p>
</div>
<p>Veritas Press came to us looking to make a promotional video explaining Classical
Christian Education. Through our discussion, we decided to make a short form documentary
about the history of Classical Christian Education. This video is a great example of
Content Marketing. It was used as a free handout in order to acquire customers.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="trigger-shim"></div>
<section id="contact">
<header>
<div class="container">
<div class="row-fluid">
<div class="span4">
<h2>Contact</h2>
</div>
<div class="span8">
<nav>
<!--<a href="#intro">Home</a>-->
<a href="#whatwedo">What we do</a>
<a href="#ourworld"><span class="non-essential">Our</span> world</a>
<a href="#ourwork"><span class="non-essential">Our</span> work</a>
<a class="selected" href="#contact">Contact</a>
</nav>
</div>
</div>
</div><!--container-->
</header>
<div class="subsection spacer">
<div class="container">
<div class="row-fluid">
<div class="span4">
<h4>Address</h4>
<p>123 address st.<br />
Unit 2<br />
Lancaster, PA 17601<br />
USA</p>
<h4>Contact info </h4>
<p>Phone: 717-123-1234<br />
Email: <a href="mailto:[email protected]">[email protected]</a><br />
Twitter: <a href="">@projectopusfilms</a></p>
</div>
<div class="span8">
<iframe width="100%" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=lancaster+pa&aq=&sll=41.062786,-68.653564&sspn=9.845606,9.645996&ie=UTF8&hq=&hnear=Lancaster,+Pennsylvania&ll=40.037876,-76.305514&spn=0.002441,0.002355&t=m&z=14&output=embed"></iframe><br />
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script src="/lib/js/jquery.js"></script>
<script src="/lib/js/bootstrap-transition.js"></script>
<script src="/lib/js/bootstrap-alert.js"></script>
<script src="/lib/js/bootstrap-modal.js"></script>
<script src="/lib/js/bootstrap-dropdown.js"></script>
<script src="/lib/js/bootstrap-scrollspy.js"></script>
<script src="/lib/js/bootstrap-tab.js"></script>
<script src="/lib/js/bootstrap-tooltip.js"></script>
<script src="/lib/js/bootstrap-popover.js"></script>
<script src="/lib/js/bootstrap-button.js"></script>
<script src="/lib/js/bootstrap-collapse.js"></script>
<script src="/lib/js/bootstrap-carousel.js"></script>
<script src="/lib/js/bootstrap-typeahead.js"></script>
<script src="/lib/js/bootstrap-affix.js"></script>
<script src="/lib/js/waypoints.min.js"></script>
<script src="/lib/js/min/scripts-min.js"></script>
</body>
</html>