<!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>New York Kickstarter Video Production | Videopixie</title>
   <meta name="description" content="Looking for video professionals with Crowdfunding experience?  We selected the best video production companies in the New York area with successful Kickstarter and Crowdfunding track record">
   <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 New York Kickstarter Video Production Companies</h1>
      <h2>Videopixie helps you hire the best Kickstarter video production studios.</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="/boston-kickstarter-video-production-companies">Boston Kickstarter Video Production</a>
      
      <a class="related" href="/san-francisco-kickstarter-video-production-companies">San Francisco Kickstarter Video Production</a>
      
      <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>
      
   </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/LuminouStudios__rpN0G6hOSDuJCIYuSdO0KA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LuminouStudios">   
                  <h3>
                     LuminouStudios
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are LuminouStudios, a bicoastal kickstarter video production company (LA and NY) focused on creating exciting crowdfunding videos for start-ups, mostly in tech lifestyle and fashion. We began as indie filmmakers, so our approach is to bring together cinematic style storytelling and branded content to create a high-quality product.   

We are a one-stop-shop and can handle everything from development to delivery. Reach out for more info and watch our work at www.luminoustudios.com/portfolio.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="141085519" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/538763790_1280.jpg)"></div>
                     <img class="play" alt="TellyMount Kickstarter video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '141085519')"
                        ng-class="{full: showFullComments['141085519']}">
                        TellyMount Kickstarter video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="154077720" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/556189185_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter video for SANS - successful funded 150%+" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '154077720')"
                        ng-class="{full: showFullComments['154077720']}">
                        Kickstarter video for SANS - successful funded 150%+
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149047411" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548171401_640.jpg)"></div>
                     <img class="play" alt="Kickstarter video for a new play about rape culture." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149047411')"
                        ng-class="{full: showFullComments['149047411']}">
                        Kickstarter video for a new play about rape culture.
                     </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/LNCProductions__VCUWRC3ASPKEypJXjXEwuQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LNCProductions">   
                  <h3>
                     LNC Productions
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Fully In-House end to end Video Production Company with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We will help you produce a stunning, highly-personalized video that evokes​ emotion and revolves around your specific objective.

Let&#39;s chat about your idea!

&lt;url&gt;www.lncproductions.com&lt;/url&gt;</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="209461568" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/625012649_1280.jpg)"></div>
                     <img class="play" alt="Revive Light Therapy&#39;s Kickstarter Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '209461568')"
                        ng-class="{full: showFullComments['209461568']}">
                        Revive Light Therapy&#39;s 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/GonzointheWildProductions__o3Vlt97ZS7OkF7e0VICKJg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/gonzointhewildproductions">   
                  <h3>
                     Gonzo in the Wild Productions
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We take your ideas then transform them into engaging and effective crowdfunding  videos. For example our Paralo Kickstarter video follows a classic but proven format. Filmed on a small budget the video is both authentic and informative to meet the expectations of kickstarter and indiegogo audiences.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124435600" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/514156621_640.jpg)"></div>
                     <img class="play" alt="The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124435600')"
                        ng-class="{full: showFullComments['124435600']}">
                        The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="131701947" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/524059548_640.jpg)"></div>
                     <img class="play" alt="Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '131701947')"
                        ng-class="{full: showFullComments['131701947']}">
                        Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!
                     </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 Kickstarter video production studios</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/RolandoVega__LxcSJmMRSyix0HC2qTWb6Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RolandoVega">   
                  <h3>
                     Rolando Vega
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Princeton, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am an end-to-end kickstarter video producer. Clients love that I can deliver high production values at lower budgets, which is key for successful crowdfunding.  

I own Vega Productions, a boutique video production company that produces commercial, corporate, and non-profit videos as well as invests in independent films.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="98962079" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/479853306_1280.jpg)"></div>
                     <img class="play" alt="This  was a Kickstarter campaign video for a non-GMO, organic fast food restaurant.   All Produced by Vega Productions." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '98962079')"
                        ng-class="{full: showFullComments['98962079']}">
                        This  was a Kickstarter campaign video for a non-GMO, organic fast food restaurant.   All Produced by Vega Productions.
                     </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>Kickstarter video production studio in </span>
                     <span class="location">Manhattan, New York, NY, 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="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Matthew_Canada__Oa93MiX7TO2lXCSIIFs3tA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/matthewcanada">   
                  <h3>
                     Matthew Canada
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Matthew runs a full-service boutique production company and has delivered some very successful kickstarter videos finding creative ways to implement bold and original ideas while operating on limited budgets.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="107754063" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/495369361_640.jpg)"></div>
                     <img class="play" alt="Kickstarter video I produced for Thursday Boot Co. which raised $276,000." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '107754063')"
                        ng-class="{full: showFullComments['107754063']}">
                        Kickstarter video I produced for Thursday Boot Co. which raised $276,000.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Kickstarter video production studios 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/CsquaredMedia__YoP07P0ZTdy6dRvCjowC2A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CsquaredMedia">   
                  <h3>
                     Csquared Media
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New Jersey, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am an award winning video professional with more than 20 years experience in production and post production, a former broadcast journalist in a top five market and a filmmaker. As the owner of Csquared Media, I create content from script to screen with personalized service and affordability.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="179596419" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/587558779_1280.jpg)"></div>
                     <img class="play" alt="This is a Kickstarter video for a kitchen product." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '179596419')"
                        ng-class="{full: showFullComments['179596419']}">
                        This is a Kickstarter video for a kitchen product.
                     </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/PatrickMannion__xvwnalNnQAC6nt7a2BnrLg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PatrickMannion">   
                  <h3>
                     Patrick Mannion
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Patrick is an experienced crowdfunding video editor and kickstarter video producer.  His Gr8hed kickstarter video was produced on a tight budget, but it is authentic and informative.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143822812" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541507422_640.jpg)"></div>
                     <img class="play" alt="Gr8 Organics Kickstarter video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143822812')"
                        ng-class="{full: showFullComments['143822812']}">
                        Gr8 Organics 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/Nic_Justice__WDS7SHLdS1qpr94o7IQwYQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/nicjustice">   
                  <h3>
                     Nic Justice
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Philadelphia, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We create highly passionate crowdfunding videos for community-based, creatively-minded businesses, and individuals. Our mission is to amplify the brave, creative voices of business, art, and social justice through video.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112437177" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497414367_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter which successfully raised $15,000" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112437177')"
                        ng-class="{full: showFullComments['112437177']}">
                        Kickstarter which successfully raised $15,000
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Kickstarter video production studio for your project</span>
               <a href="/start"><div class="button">Connect with Kickstarter video production studios</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/RyanScottPhoto__q4QZRTWLRyKl0hOtCcCQFg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RyanScottVisuals">   
                  <h3>
                     Ryan Scott Films
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Philadelphia, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">If you are looking for a beautiful cinematography and storytelling for your crowdfunding video, check out Ryan Scott&#39;s work.  Based in Philadelphia with projects all over the greater NY area.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="151614842" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/551455167_1280.jpg)"></div>
                     <img class="play" alt="Biographical crowdfunding video shot for professional woodworking shop J&amp;K Lockerby in Philadelphia." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '151614842')"
                        ng-class="{full: showFullComments['151614842']}">
                        Biographical crowdfunding video shot for professional woodworking shop J&amp;K Lockerby in Philadelphia.
                     </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/OliviaDreyer__-ya5EQp5SFqzLnsedsiluQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/OliviaDreyer">   
                  <h3>
                     Olivia Dreyer
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a kickstarter director/producer/cinematographer. I graduated from the New York Conservatory for Dramatic Arts and since have been filming and editing a lot of short and independent films, crowdfunding videos, and events.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="163955935" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/567462020_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '163955935')"
                        ng-class="{full: showFullComments['163955935']}">
                        Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162995094" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/565866813_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162995094')"
                        ng-class="{full: showFullComments['162995094']}">
                        Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo.
                     </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/DustinLee__b5HIOze0SfqkFM4lZx5WYw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DustinLee">   
                  <h3>
                     Dustin Lee
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I specialize in fashion editorials, music videos, and business profiles. I work with a small crew and own all my equipment.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174964811" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/582102704_1280.jpg)"></div>
                     <img class="play" alt="A Kickstarter video for a Dutch marine accessory company" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174964811')"
                        ng-class="{full: showFullComments['174964811']}">
                        A Kickstarter video for a Dutch marine accessory company
                     </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 Kickstarter video production studios</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/BenSharif__pdFXmEswSkeXqtlqWOhrrQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BenSharif">   
                  <h3>
                     Ben Sharif
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a freelance kickstarter video editor with 7+ years of experience and a passion for visual storytelling. My biggest assets are the meticulous attention I pay to organization and all detials within any given video, and my efficiency in turning in professional videos in a timely fashion. I am extremely proficient with Premiere Pro, Final Cut Pro 7, Adobe Media Encoder, Excel, etc. and have a basic knowledge of Avid, Final Cut Pro X, After Effects, Photoshop.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="95321809" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/475342777_1280.jpg)"></div>
                     <img class="play" alt="A video I edited for the kickstarter campaign for my NYU thesis film" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '95321809')"
                        ng-class="{full: showFullComments['95321809']}">
                        A video I edited for the kickstarter campaign for my NYU thesis film
                     </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/LighthouseFilms">   
                  <h3>
                     Lighthouse Films
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">LightHouse has always strived to meet creative and production challenges. Our ingenuity, honesty, and work ethic has led us to be one of the most exciting production companies in the Northeast. We offer multiple services under one roof, including separate departments for pre-production, production, equipment rentals, and post services.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="198735993" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/611980724_1280.jpg)"></div>
                     <img class="play" alt="MARGOT Indiegogo Pitch Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '198735993')"
                        ng-class="{full: showFullComments['198735993']}">
                        MARGOT Indiegogo Pitch 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/EightDesignStudio__FSTIAb_UQcezlAiuLcW3Pg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/eightdesignstudio">   
                  <h3>
                     Eight Design Studio
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">At Eight Design Studio telling stories is our passion and working with clients to bring their crowdfunding campaigns to life with clear and striking pitch videos is our specialty. Based out of New York City, our creative agency focuses on all aspects of video production, bringing expertise in design, advertising, and music to produce unique content.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128436264" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519567416_640.jpg)"></div>
                     <img class="play" alt="Kickstarter video - Connect" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128436264')"
                        ng-class="{full: showFullComments['128436264']}">
                        Kickstarter video - Connect
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Kickstarter video production studios 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/PreloWhite__U_gn6U0-Rd2broeOrC3xDQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PreloWhite">   
                  <h3>
                     PreloWhite
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">With my skill-set, creativity, and technical understanding I execute visual conceptions based off of your imagination.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="iBZHON7WxeQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/iBZHON7WxeQ/sddefault.jpg)"></div>
                     <img class="play" alt="AMANDALUXE is a creative director for her brand LUXYHAUS which is a fashion house that caters to creative marketing and imaging for up and coming fashion companies.  In this Kickstarter video she wanted to gain the interest of her demographic, supporters, and contributors." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'iBZHON7WxeQ')"
                        ng-class="{full: showFullComments['iBZHON7WxeQ']}">
                        AMANDALUXE is a creative director for her brand LUXYHAUS which is a fashion house that caters to creative marketing and imaging for up and coming fashion companies.  In this Kickstarter video she wanted to gain the interest of her demographic, supporters, and contributors.
                     </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/JonStrauss__FEIEpjukT3iVVQI_CTybuA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JonStrauss">   
                  <h3>
                     Jon Strauss
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I specialize in storytelling for companies and people in search of an authentic voice. I shoot mainly handheld and prefer to keep my shoots simple and intimate.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Zk3clPYg2-A" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Zk3clPYg2-A/maxresdefault.jpg)"></div>
                     <img class="play" alt="I shot and edited this piece for Re-Volt Haiti&#39;s Indiegogo campaign on my own." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Zk3clPYg2-A')"
                        ng-class="{full: showFullComments['Zk3clPYg2-A']}">
                        I shot and edited this piece for Re-Volt Haiti&#39;s Indiegogo campaign on my own.
                     </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/TheNYFrequency__uNYviEcESQWnnYkYBS3TYg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheNYFrequency">   
                  <h3>
                     TheNYFrequency
                     <span>Kickstarter video production studio in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a roundhouse-style production company capable of handling all facets of production. We specialize in branded content, music videos, documentary work, and event coverage. All prices are negotiable and pending the costs of your specific project and needs. Please do not hesitate to request a quote.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="180307373" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/589363743_1280.jpg)"></div>
                     <img class="play" alt="In May of 2015 legendary rap group De La Soul succesfully completed one of the highest grossing music-based Kickstarter campaigns of all time. The goal was to create a transcendental album via a unqie process of sampling from a series of their own private jam sessions, essentially a commentary on their well-documented issues with sampling in the past. Monster stepped in and commisioned a documentary of the entire creative process of what is sure to be a groundbreaking album." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '180307373')"
                        ng-class="{full: showFullComments['180307373']}">
                        In May of 2015 legendary rap group De La Soul succesfully completed one of the highest grossing music-based Kickstarter campaigns of all time. The goal was to create a transcendental album via a unqie process of sampling from a series of their own private jam sessions, essentially a commentary on their well-documented issues with sampling in the past. Monster stepped in and commisioned a documentary of the entire creative process of what is sure to be a groundbreaking album.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Kickstarter video production studio for your project</span>
               <a href="/start"><div class="button">Connect with Kickstarter video production studios</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/SeanTracy__ildYbqTyT9WA-Em8SRzKXg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SeanTracy">   
                  <h3>
                     Sean Tracy
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Pawling, NY 12564, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Looking for affordable kickstarter video production options?  Sean Tracy and his team create branded marketing videos for small to medium businesses who want to leverage their products and services on the web.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="172413498" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/578290852_1280.jpg)"></div>
                     <img class="play" alt="This is a kickstarter we produced for a NY-based lighting company." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '172413498')"
                        ng-class="{full: showFullComments['172413498']}">
                        This is a kickstarter we produced for a NY-based lighting company.
                     </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/7WondersCinema__ZPiY1MtvRHKICk7oH2EHfA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/7WondersCinema">   
                  <h3>
                     7 Wonders Cinema
                     <span>Kickstarter video production studio in </span>
                     <span class="location">Philadelphia, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">7 Wonders Cinema, is an award-winning, young and talented company doing full-service video production in the Philadelphia area. We produce story-driven branded and original content, specializing in online distribution. 7 Wonders Cinema has worked with fortune 500 companies and accomplished professionals, including artists who have won Sundance Film Festival, MTV, Emmy, and Grammy Awards.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="n5Eb4eTvCX4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/n5Eb4eTvCX4/maxresdefault.jpg)"></div>
                     <img class="play" alt="With vibrant New York City as its backdrop, this light-hearted 60 second commercial introduces the world to loopit: Stylish, tangle free headphones. Proven through a near 90% completion rate and a spike in sales after it was posted, this video helped raise more than double the originally intended goal on loopit’s Kickstarter. It has since been featured on many sites, including Daily Mail UK, Good Morning Sacramento, and QVC." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'n5Eb4eTvCX4')"
                        ng-class="{full: showFullComments['n5Eb4eTvCX4']}">
                        With vibrant New York City as its backdrop, this light-hearted 60 second commercial introduces the world to loopit: Stylish, tangle free headphones. Proven through a near 90% completion rate and a spike in sales after it was posted, this video helped raise more than double the originally intended goal on loopit’s Kickstarter. It has since been featured on many sites, including Daily Mail UK, Good Morning Sacramento, and QVC.
                     </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>
