<!DOCTYPE html>
<html  ng-app="vpModule" ng-controller="VPController">
<head>
   <meta charset="utf-8"/>
   <meta name="viewport" content="width=1200">
   <meta name="msvalidate.01" content="AF86D6C94D0294C6DCFF4C02777B9787" />
   
   <link rel="stylesheet" href="/st/css/main.css">
   <link rel="stylesheet" href="/st/css/common.css">
   
   <link rel="stylesheet" href="https://vjs.zencdn.net/4.5/video-js.css">
   
   <script  src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   <script  src="/st/js/o/easing.js"></script>
   
   <link rel="apple-touch-icon" sizes="57x57" href="/st/fav/apple-touch-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="114x114" href="/st/fav/apple-touch-icon-114x114.png">
   <link rel="apple-touch-icon" sizes="72x72" href="/st/fav/apple-touch-icon-72x72.png">
   <link rel="apple-touch-icon" sizes="144x144" href="/st/fav/apple-touch-icon-144x144.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/st/fav/apple-touch-icon-60x60.png">
   <link rel="apple-touch-icon" sizes="120x120" href="/st/fav/apple-touch-icon-120x120.png">
   <link rel="apple-touch-icon" sizes="76x76" href="/st/fav/apple-touch-icon-76x76.png">
   <link rel="apple-touch-icon" sizes="152x152" href="/st/fav/apple-touch-icon-152x152.png">
   <meta name="apple-mobile-web-app-title" content="Videopixie">
   <link rel="icon" type="image/png" href="/st/fav/favicon-196x196.png" sizes="196x196">
   <link rel="icon" type="image/png" href="/st/fav/favicon-160x160.png" sizes="160x160">
   <link rel="icon" type="image/png" href="/st/fav/favicon-96x96.png" sizes="96x96">
   <link rel="icon" type="image/png" href="/st/fav/favicon-16x16.png" sizes="16x16">
   <link rel="icon" type="image/png" href="/st/fav/favicon-32x32.png" sizes="32x32">
   <meta name="msapplication-TileColor" content="#ffffff">
   <meta name="msapplication-TileImage" content="/st/fav/mstile-144x144.png">
   <meta name="application-name" content="Videopixie">
   
   
   
   <title>Best San Francisco Kickstarter Video Production Companies | Videopixie</title>
   <meta name="description" content="Our 2016 ranking of the best kickstarter video production companies, studios, and freelancers in San Francisco and nearby.">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Best Kickstarter Video Production Companies in San Francisco</h1>
      <h2>Videopixie helps you hire the best SF Kickstarter video production companies</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
      <a class="related" href="/los-angeles-kickstarter-video-production-companies">Los Angeles Kickstarter Video Production</a>
      
      <a class="related" href="/seattle-kickstarter-video-production-companies">Seattle Kickstarter Video Production</a>
      
      <a class="related" href="/new-york-kickstarter-video-production">New York Kickstarter Video Production</a>
      
      <a class="related" href="/boston-kickstarter-video-production-companies">Boston Kickstarter Video Production</a>
      
   </div>

   <div id="creatorsList" class="content" ng-controller="CreatorListController">
      
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/GlassMarker__zUZ5UKc7RkCHXVMZwjj8yw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GlassMarker">   
                  <h3>
                     Glass & Marker
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">Oakland, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Glass &amp; Marker specializes in storytelling by creating strategic visual content that is tailored to meet the exact needs of our clients. Our goal is to help brands - large and small - reach people emotionally, through beautiful cinematography, polished visual effects, and slick animation.  It doesn’t matter if it&#39;s a crowdfunding video, an internal corporate animation, or an IPO roadshow video, G&amp;M can do it all, and do it all well.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143780710" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541456027_1280.jpg)"></div>
                     <img class="play" alt="Just a few examples of some animations we&#39;ve done." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143780710')"
                        ng-class="{full: showFullComments['143780710']}">
                        Just a few examples of some animations we&#39;ve done.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117945977" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/530544757_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117945977')"
                        ng-class="{full: showFullComments['117945977']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/SutroStudios__-oypg0CnTAm9ETMzqpYEJQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SutroStudios">   
                  <h3>
                     Sutro Studios
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional filmmakers, DPs, and editors, color grading artists with close to twenty years of film industry experience, and multiple credits in Academy-Award winning films. Please check out http://sutrostudios.com for more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="5jW0V3lL-pE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/5jW0V3lL-pE/maxresdefault.jpg)"></div>
                     <img class="play" alt="Sutro Studios reel for 2016, showcasing some of our favorite work over the last three years in documentary, crowdfunding projects, startup videos, online marketing campaigns, and more." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '5jW0V3lL-pE')"
                        ng-class="{full: showFullComments['5jW0V3lL-pE']}">
                        Sutro Studios reel for 2016, showcasing some of our favorite work over the last three years in documentary, crowdfunding projects, startup videos, online marketing campaigns, and more.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="56601540" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/391917454_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '56601540')"
                        ng-class="{full: showFullComments['56601540']}">
                        Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="br35qLSzG7g" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/br35qLSzG7g/maxresdefault.jpg)"></div>
                     <img class="play" alt="Keyboardio Crowdfunding campaign. Official staff pick on Kickstarter, reaching it&#39;s goal in less than 48 hours. Raised more than half a million dollars." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'br35qLSzG7g')"
                        ng-class="{full: showFullComments['br35qLSzG7g']}">
                        Keyboardio Crowdfunding campaign. Official staff pick on Kickstarter, reaching it&#39;s goal in less than 48 hours. Raised more than half a million dollars.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/ChristineBeggs__beZXPWjQTdWwHKiic-POrw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ChristineBeggs">   
                  <h3>
                     Christine Beggs
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Ripples Edge Media is a San Francisco video production company having raised over $1,000,000 to date for startup and social impact clients through our crowdfunding videos. Creativity is the air we breathe and making ideas happen, our every day work. EMAIL C.BEGGS@RIPPLESEDGEMEDIA.COM.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136816810" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/534811131_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136816810')"
                        ng-class="{full: showFullComments['136816810']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="82169508" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504314735_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '82169508')"
                        ng-class="{full: showFullComments['82169508']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149257220" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548487561_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149257220')"
                        ng-class="{full: showFullComments['149257220']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from SF Kickstarter video production companiess</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/RomyRandev__vxeTXXKgTXOhdlqoQAfnBw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RomyRandev">   
                  <h3>
                     Romy Randev
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">A video director and editor with over 10 years of experience in the video production industry. I&#39;ve directed, shot and edited short films, music, Kickstarter, product videos and much more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="140701224" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542044306_640.jpg)"></div>
                     <img class="play" alt="I shot and edited this crowdfunding video for Snickerdoodle, a single-board computer. This video helped raise over $110K." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '140701224')"
                        ng-class="{full: showFullComments['140701224']}">
                        I shot and edited this crowdfunding video for Snickerdoodle, a single-board computer. This video helped raise over $110K.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129064532" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528267359_640.jpg)"></div>
                     <img class="play" alt="I shot and edited this Kickstarter video for State Apparel. The campaign raised raised almost $3K over its intended goal." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129064532')"
                        ng-class="{full: showFullComments['129064532']}">
                        I shot and edited this Kickstarter video for State Apparel. The campaign raised raised almost $3K over its intended goal.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119195397" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/506372224_640.jpg)"></div>
                     <img class="play" alt="This is the Kickstarter video I shot and edited for Noon Blinds, a successful Kickstarter campaign that raised more than the target goal." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119195397')"
                        ng-class="{full: showFullComments['119195397']}">
                        This is the Kickstarter video I shot and edited for Noon Blinds, a successful Kickstarter campaign that raised more than the target goal.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/0019-kit-larson.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kitlarson">   
                  <h3>
                     Kit Larson
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Given the title of &quot;MacGyver,&quot;, Kit has been one of Videopixie&#39;s earliest and most reliable curators. A film student with a focus in communications, Kit is very good at gaining a clear understanding from his clients, and is very efficient in meeting deadlines to a T. 

At only age 22, Kit has extensive training and experience with editing software Final Cut Pro 7 and Adobe After Effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6KL0GYQ2IUw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/6KL0GYQ2IUw/0.jpg)"></div>
                     <img class="play" alt="The video made is intended for Aware Car&#39;s Kickstarter Homepage, in which was made to convey Dani and Drew&#39;s ideas and goals for their project in a fun way that captures their personality." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6KL0GYQ2IUw')"
                        ng-class="{full: showFullComments['6KL0GYQ2IUw']}">
                        The video made is intended for Aware Car&#39;s Kickstarter Homepage, in which was made to convey Dani and Drew&#39;s ideas and goals for their project in a fun way that captures their personality.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/JoselitoSering__WiODu4AdR7qjjtPegCyQ0Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JoselitoSering">   
                  <h3>
                     Joselito Sering
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a digital storyteller and social engineer.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="137281899" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/532318211_640.jpg)"></div>
                     <img class="play" alt="Writer, Producer, Creative Director, and Editor for this Kickstarter Staff Pick crowdfunding video for Frozen Kuhsterd allowing them to achieve their $30,000 goal." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '137281899')"
                        ng-class="{full: showFullComments['137281899']}">
                        Writer, Producer, Creative Director, and Editor for this Kickstarter Staff Pick crowdfunding video for Frozen Kuhsterd allowing them to achieve their $30,000 goal.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented SF Kickstarter video production companiess by tomorrow</span>
               <a href="/start"><div class="button">Post a project - free!</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/ChrisLayheCLAi__QbAZTqMJR7m64PzOZCW9tQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ChrisLayheCLAi">   
                  <h3>
                     Chris Layhe & CLAi
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hi, I&#39;m Chris Layhe, I&#39;m in the San Francisco Bay area and I have a passion for making outstanding films and videos that excite people to create change. 

I&#39;ve been a Cinematographer, Editor and Colorist for over 25 years, working on everything from Feature Films to National Commercials, Fortune 500 Corporate Videos to Music and Performance videos, and Broadcast Documentaries to Crowdfunding pieces.  

I started out at the BBC in London as a Director and Editor (I&#39;m English but have lived here for over 20 years), and then moved to the ad agency Saatchi &amp; Saatchi as a Director, Editor and Cinematographer before starting my own London production company, CLAi, to let me also take on film projects (I&#39;ve always been the CL and the friends and associates that like to work with me provide the Ai). 

It was a great background for any film and broadcast professional, and established my approach, which is very much a combination of delicate multi-layered storytelling and perfectly composed imagery at the highest quality possible.  Throw in a deep appreciation of sound developed from years as a musician, and a wickedly crazy sense of humor and you have the essence of what I do - in pretty much any role.

Today, I work as a solo independent contractor on most projects, in order to be able to provide a very high level of creative excellence while still being affordable enough for most productions.  That may be as an Editor and/or Colorist, or as a DP and/or Cinematographer, or some other combination of my skill sets and experience.  Whatever will best meet the needs of each individual client and of their film or video.  

For larger projects, or those which have very short timelines, I call on the support of my little CLAi gang to put together a complete production team, as well as comprehensive facilities for post-production and every part of the shoot - except for a live action studio, which we always rent.  Almost all of my work is shot and color graded in 4k or RED 6k UltraHD for the ultimate in quality, and edited and finished for the internet, BluRay, theater projection or broadcast TV.

Last but not least - I love to chat with people about film and video projects and find out how I can help to turn their ideas into reality... even if that means doing a little research and  pointing them in the direction of a more appropriate solution than I can provide.   

Maybe that sounds crazy, but for me, and CLAi, it has always been about creating the most successful film or video that can be made - and achieving that is as exciting to me now as it was when I first picked up a camera back in Manchester when I was 18, and believe me - that was an eye opening experience!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="155031940" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/555839993_1280.jpg)"></div>
                     <img class="play" alt="This is the Kickstarter video created for the highly innovative ThoughtFull Toys to drive their crowdfunding campaign for the &quot;Modarri&quot; line of toy cars. The miniature vehicles are a totally new approach to the toy car, which are steered and propelled in much the same way as the finger skateboards of the 1980&#39;s, and are built with real nuts and bolts to enable a user to reformat them with spare parts and use other cars to build new concepts... very cool stuff from some very clever guys!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '155031940')"
                        ng-class="{full: showFullComments['155031940']}">
                        This is the Kickstarter video created for the highly innovative ThoughtFull Toys to drive their crowdfunding campaign for the &quot;Modarri&quot; line of toy cars. The miniature vehicles are a totally new approach to the toy car, which are steered and propelled in much the same way as the finger skateboards of the 1980&#39;s, and are built with real nuts and bolts to enable a user to reformat them with spare parts and use other cars to build new concepts... very cool stuff from some very clever guys!
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ChristinaChoate">   
                  <h3>
                     Christina Choate
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">Berkeley, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My passion is documentary filmmaking, specifically science and nature. But I also work as a freelance videographer creating videos for fundraising events, kickstarter campaigns, software tutorials, outreach and commercial projects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150871244" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/550478441_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150871244')"
                        ng-class="{full: showFullComments['150871244']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/ISDesignsStudio__5LKuaud7SrSOPlUt4dOuow.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ISDesignsStudio">   
                  <h3>
                     ISDesigns Studio
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">Berkeley, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">ISDesigns produces professional marketing and promotional video content for corporations, small businesses and startups.
Having been in business for 10 years, we know what drives powerful media that engages your audience.
Create brand awareness across all your social media platforms with updated, fresh materials for a young and evolved market.
 
  • Advertisement
  • Business Profiles
  • Product Promotions
  • Educational Programs
  • Special Event Coverage
  • Crowdfunding Media
  • Entertainment
  • Anything in-between!
 
ISDesigns has the ideal media solution for any purpose.
 
ISDesigns Studio
From Script to Screen</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="SKqd2f_Q7QU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/SKqd2f_Q7QU/maxresdefault.jpg)"></div>
                     <img class="play" alt="Crowdfunding Video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'SKqd2f_Q7QU')"
                        ng-class="{full: showFullComments['SKqd2f_Q7QU']}">
                        Crowdfunding Video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best SF Kickstarter video production companies for your project</span>
               <a href="/start"><div class="button">Connect with SF Kickstarter video production companiess</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/56Films__X_XCP3kKRmulE4yDQQCpfA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/56Films">   
                  <h3>
                     Réka Pigniczky (56Films)
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Unfortunately, too often I say yes...</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="121000326" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509027666_640.jpg)"></div>
                     <img class="play" alt="Crowdfunding video for STEMP, the Smart Temperature Patch, for Kikstarter in March of 2015. Credits include: directing, editing." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '121000326')"
                        ng-class="{full: showFullComments['121000326']}">
                        Crowdfunding video for STEMP, the Smart Temperature Patch, for Kikstarter in March of 2015. Credits include: directing, editing.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/TheOSFP__X9UHm0u5TDOXOaD3dKlRZg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/theosfp">   
                  <h3>
                     TheOSFP
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Full Service Creative Agency/Film&amp;Video Production company.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="54980546" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/380345690_640.jpg)"></div>
                     <img class="play" alt="Interviews for a Kickstarter Video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '54980546')"
                        ng-class="{full: showFullComments['54980546']}">
                        Interviews for a Kickstarter Video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/TyroneHardnett__sGXTdNe5ST6sS7J4DZYgSQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TyroneHardnett">   
                  <h3>
                     Tyrone Hardnett
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Filmmaker/film editor with 7 years of experience. Studied film at The Art Institute of California San Francisco and have been working in the industry editing Documentary Films, Music Videos, Corporate campaign funding videos, Interviews, Online promotional videos, reality tv segments etc..</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="53051376" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/366224302_640.jpg)"></div>
                     <img class="play" alt="Shot edited and I directed this kickstarter campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '53051376')"
                        ng-class="{full: showFullComments['53051376']}">
                        Shot edited and I directed this kickstarter campaign
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from SF Kickstarter video production companiess</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/RedcubeProduction__6k_FhpwlQWqSDDQ6crDlsw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RedcubeProduction">   
                  <h3>
                     Redcube Production
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">South San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Red Cube Production is a cross-border one-stop shop that provides social video marketing and public relations services to early-stage companies. At Red Cube, we specialize in Video Production, Public Relation, Design ( logo / web / UIUX ) and Crowdfunding. We are looking forward to work with you in the near future. Our professionals will assist you through the process and help grow your business.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="qkYoBiJck4o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/qkYoBiJck4o/maxresdefault.jpg)"></div>
                     <img class="play" alt="Founders Interview of Indiegogo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'qkYoBiJck4o')"
                        ng-class="{full: showFullComments['qkYoBiJck4o']}">
                        Founders Interview of Indiegogo
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/FeelGoodVideo__jxCnV_iOSxKIg4bd_S5n1Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/FeelGoodVideo">   
                  <h3>
                     Feel Good Video
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">Пало-Альто, Калифорния, США</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Feel Good Video is a full service Bay Area video production company.  We not only design the idea for you, film it and produce a high impact video, but also ensure the video will make you a hit. Why? Because when you grow, we grow. So be sure – we are into building a relationship to last.

We work with startups, small &amp; large businesses and individuals, so we can find a good fit for any budget. Our creative team of award-winning professionals does product and kickstarter videos, promo videos and commercials, corporate, explainer &amp; animated videos, and aerial video, and event videography. On average we produce a video in 20 days, sometimes – in one day, but the quality always stays superb.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="125219547" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/515241946_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '125219547')"
                        ng-class="{full: showFullComments['125219547']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kVhEXTd9EWU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/kVhEXTd9EWU/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kVhEXTd9EWU')"
                        ng-class="{full: showFullComments['kVhEXTd9EWU']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="153052600" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/555189832_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '153052600')"
                        ng-class="{full: showFullComments['153052600']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/TheHardWay__VxaCAOsaR1qqMyuIX1MeSw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheHardWay">   
                  <h3>
                     The Hard Way
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">San Jose, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">At The Hard Way, we create artful, cinematic video content. Your brand is much more than a logo, and for that reason, we feel it is our duty to create videos with more than just a sales pitch. Our purpose is to combine our clients’ sincere human message, with stunning cinematography, thoughtful editing, and solid design - resulting in compelling content. We don&#39;t aim to just to place your message in the mind of the viewers, but to tie that message to their hearts. The goal of video content is to make people think. The goal of The Hard Way is to make people feel as well. 

We take pride in our ability to keep our crews small and efficient, in turn tipping the balance between quality and cost in our clients&#39; favor. While we are pleased to be able to leverage new technology and methods to keep cost down, we spare no effort in our projects - when it&#39;s a matter of quality, we do things The Hard Way.

The Hard Way is led by producer, Logan Parks, and supported by a network of select freelancers that are brought in when appropriate. Logan started as a camera operator/editor in Southern California, and moved to San Jose - where he has been producing cinematic video content for businesses since 2009. His obsession with the quality of his work is arguably unhealthy. He sometimes writes about himself in the third person.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="171987515" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577579848_1280.jpg)"></div>
                     <img class="play" alt="This video was created for a Kickstarter campaign, which raised over $92000! I can&#39;t take all of the credit for the campaign, of course, but I can take credit for filming, editing, color grading and graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '171987515')"
                        ng-class="{full: showFullComments['171987515']}">
                        This video was created for a Kickstarter campaign, which raised over $92000! I can&#39;t take all of the credit for the campaign, of course, but I can take credit for filming, editing, color grading and graphics.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented SF Kickstarter video production companiess by tomorrow</span>
               <a href="/start"><div class="button">Post a project - free!</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/EvanCantrellNewKingdomProductions__ZWWbwS2yQy-_3lf7l-J7nw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EvanCantrell">   
                  <h3>
                     Evan Cantrell | New Kingdom Productions
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">California, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">www.NewKingdomProductions.com
Email: Evan@newkingdomproductions.com
Phone: 323-963-4939

Since 2009 we have been producing everything from Television Commercials, Infomercials, Resort Commercials, Corporate Videos, Fitness Videos, Music Videos, and more. Our production company has become a one-stop-shop for all of our clients needs. Working in all aspects of production from conceptualizing, principle photography, and finally post production. 

I&#39;ve been a video producer &amp; director for 7+ years. My company New Kingdom Productions produces commercials, infomercials, business videos, product videos, and more. 

I guarantee an amazing product, quality services, and will always stay on time &amp; under budget.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136805286" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/550159064_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding Video for Cloud Keyz" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136805286')"
                        ng-class="{full: showFullComments['136805286']}">
                        Crowdfunding Video for Cloud Keyz
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="133809104" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/527040932_1280.jpg)"></div>
                     <img class="play" alt="Cloud Keyz Corporate Video - Crowdfunding Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '133809104')"
                        ng-class="{full: showFullComments['133809104']}">
                        Cloud Keyz Corporate Video - Crowdfunding Video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/SeanLee__rl01GamNRHSJQ2unKNLQlg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SeanLee">   
                  <h3>
                     Sean Lee
                     <span>SF Kickstarter video production companies in </span>
                     <span class="location">California, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Creator of hundreds of videos including, but not limited to, wedding videos, crowdfunding project videos, and music videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="171537767" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577023633_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '171537767')"
                        ng-class="{full: showFullComments['171537767']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150237012" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549663177_1280.jpg)"></div>
                     <img class="play" alt="This video was created to be played at the company&#39;s booth at CES 2016 in Las Vegas, NV" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150237012')"
                        ng-class="{full: showFullComments['150237012']}">
                        This video was created to be played at the company&#39;s booth at CES 2016 in Las Vegas, NV
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="159461445" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/561222758_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '159461445')"
                        ng-class="{full: showFullComments['159461445']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
      
   </div>
         
   

   
   <div id="footer">
      
      <div class="content">
         <img id="footer-logo" src="/st/images/logo_text_and_pixie.png" alt="videopixie logo">
         
         <div id="footer-left">
            <a href="/im_a_pro">Sign-up as a Professional</a>
            <a href="/video-production">Browse Video Producers</a>
            <a href="/learn-more">Learn More</a>
            <a href="/pricing">Pricing</a>
         </div>
         
         <div id="footer-left">
            <a href="/video-school">Video School</a>
            <a href="/about">Our Team</a>
            <a href="/jobs">Jobs</a>
            <a href="/faq">FAQ</a>
         </div>
      
         <div id="social-links">
            <a target="vp_facebook" href="//www.facebook.com/videopixie" class="facebook social-box">f</a>
            <a target="vp_twitter" href="//www.twitter.com/videopixie" class="twitter social-box">t</a>
            <a target="vp_google" href="//www.google.com/+videopixie" class="google social-box">g+</a>
            <a target="vp_linkedin" href="//www.linkedin.com/company/videopixie" class="linkedin social-box">in</a>
         </div>
         
         <div id="footer-bottom">
            <span>Copyright 2015 TT Labs Inc.</span>
            <a href="/st/privacy.html">Privacy Policy</a>
            <a href="/st/dmca.html">DMCA</a>
         </div>
      
      </div>
      
      
      
   </div>
  
   
   
   <div id="media-modal" class="modal modal-wrapper video-modal dn" vp-size="size" vp-fade="[[MediaModal]]" vp-closeable="MediaModal"  ng-controller="MediaModalController">
<!--vp-fade-but-leave-in-display="MediaModal" -->

   <div id="media-background" vp-width-by-aspect="[[aspectRatio]]"></div>
   <div id="image-wrapper"
      ng-class="{ontop: imageViewerMode, small_hide: !imageViewerMode}"
      vp-img-child="src: '[[imageSrc]]', valid: true">
      <!--img is inserted by vp-img-child -->
   </div>
   <div id="player-wrapper" ng-class="{small_hide: imageViewerMode}">
      <video id="video-element" class="video-js vjs-default-skin" controls ng-controller = "VideoPlayerController"></video>
      <div id="video-overlay" ng-bind-html="overlayHtml">
         
      </div>
   </div>
   
   <div id="sidebar-wrapper">
      
      <div ng-show="mode.design_mode" ng-controller="DesignSideBarController" class="side-bar designSideBar"><!-- Design Mode -->
         
         <div class="font-14-999 fr">[[currentQuestion.name]]</div>
         <div class="currentOptionWrapper clearfix">
         
            <div class="option clearfix"
               ng-click="onCurrentOptionClick()"
               ng-class="{selected:currentOption.selected}"
               vp-hover-exclusion="not-hot">
               <div class="mainRow fl">
                  <div class="thumbnailWrapper fl" 
                     vp-img-child="src: '[[AWS + mediaData.bucket + currentOption.video.provider_id]]' + '_120h.jpg', valid: [[!!currentOption.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                  </div>
                  <div class="font-16-666-b optionName fl">[[currentOption.name]]</div>
                  <div class="ok"></div>
               </div>
               <div class="font3 details fl">[[currentOption.details]]</div>
            </div>
            
         </div>
         
         <div class = "otherOptionsWrapper">
            
            <div class="bar"></div>
            <div class="font4 subtitle">Other [[currentQuestion.name]] options:</div>
            <div class="vp-scroll-bar vp-scroll-shadows scroll-wrapper">
               <div class="option clearfix" 
                  ng-repeat="(optionIdx,option) in currentQuestion.options" 
                  ng-hide='optionIdx == currentOptionIdx || option.hidden || option.renderer == "lengthInput"'
                  ng-class="{clickable:option.video.provider_id}"
                  ng-click="onOtherOptionClick(optionIdx)">
                  
                  <div class="thumbnailWrapper fl"
                     vp-img-child="src: '[[AWS + mediaData.bucket + option.video.provider_id]]' + '_120h.jpg', valid: [[!!option.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                     <div class="no-example" ng-hide="option.video.provider_id">No example</div>
                  </div>
                  <div class="font3 optionName">[[option.name]]</div>               
               </div>
            </div>
         </div>
         
      </div>
      
      <div ng-show="mode.html_mode" class="html-side-bar side-bar">
      
         <div ng-bind-html="htmlSidebarContent"></div>
      
      </div>
         
      
   </div>
   <div class="x close"></div>
</div>

   
   <div class="dimmer dn" vp-fade="[[Dimmer]]" vp-match-document-height></div>
   
   <div id="fb-root"></div>
      
   
   <!-- begin olark code -->
   <script data-cfasync="false" type='text/javascript'>
   /*<![CDATA[*/
   if(!SES.is_dev_enviro){
      window.olark||(function(c){var f=window,d=document,l=f.location.protocol=="https:"?"https:":"http:",z=c.name,r="load";var nt=function(){
      f[z]=function(){
      (a.s=a.s||[]).push(arguments)};var a=f[z]._={
      },q=c.methods.length;while(q--){(function(n){f[z][n]=function(){
      f[z]("call",n,arguments)}})(c.methods[q])}a.l=c.loader;a.i=nt;a.p={
      0:+new Date};a.P=function(u){
      a.p[u]=new Date-a.p[0]};function s(){
      a.P(r);f[z](r)}f.addEventListener?f.addEventListener(r,s,false):f.attachEvent("on"+r,s);var ld=function(){function p(hd){
      hd="head";return["<",hd,"></",hd,"><",i,' onl' + 'oad="var d=',g,";d.getElementsByTagName('head')[0].",j,"(d.",h,"('script')).",k,"='",l,"//",a.l,"'",'"',"></",i,">"].join("")}var i="body",m=d[i];if(!m){
      return setTimeout(ld,100)}a.P(1);var j="appendChild",h="createElement",k="src",n=d[h]("div"),v=n[j](d[h](z)),b=d[h]("iframe"),g="document",e="domain",o;n.style.display="none";m.insertBefore(n,m.firstChild).id=z;b.frameBorder="0";b.id=z+"-loader";if(/MSIE[ ]+6/.test(navigator.userAgent)){
      b.src="javascript:false"}b.allowTransparency="true";v[j](b);try{
      b.contentWindow[g].open()}catch(w){
      c[e]=d[e];o="javascript:var d="+g+".open();d.domain='"+d.domain+"';";b[k]=o+"void(0);"}try{
      var t=b.contentWindow[g];t.write(p());t.close()}catch(x){
      b[k]=o+'d.write("'+p().replace(/"/g,String.fromCharCode(92)+'"')+'");d.close();'}a.P(2)};ld()};nt()})({
      loader: "static.olark.com/jsclient/loader0.js",name:"olark",methods:["configure","extend","declare","identify"]});
      /* custom configuration goes here (www.olark.com/documentation) */
      olark.identify('3567-618-10-4944');
   }/*]]>*/
   </script>
   <noscript><a href="https://www.olark.com/site/3567-618-10-4944/contact" title="Contact us" target="_blank">Questions? Feedback?</a> powered by <a href="http://www.olark.com?welcome" title="Olark live chat software">Olark live chat software</a></noscript>
   <!-- end olark code -->
   
  
   
   <!-- Google Code for Remarketing Tag -->
   <!--------------------------------------------------
   Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
   --------------------------------------------------->
   <script type="text/javascript">
   /* <![CDATA[ */
   var google_conversion_id = 993449120;
   var google_custom_params = window.google_tag_params;
   var google_remarketing_only = true;
   /* ]]> */
   </script>
   <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
   </script>
   <noscript>
      <div style="display:inline;">
         <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/993449120/?value=0&amp;guid=ON&amp;script=0"/>
      </div>
   </noscript>

   
   <script type="text/javascript">
      (function() {
         window._pa = window._pa || {};
         // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
         // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
         // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
         var pa = document.createElement('script'); pa.type = 'text/javascript'; pa.async = true;
         pa.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//tag.perfectaudience.com/serve/53dac13adc92cfda2d000130.js";
         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pa, s);
      })();
   </script>
   
</body>
</html>
