<!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 Los Angeles Kickstarter Video Production Companies | Videopixie</title>
   <meta name="description" content="Here is our latest ranking of the best Kickstarter Video Production companies in the greater Los Angeles area.  Covering a wide range of budgets and styles.  Browse examples for find inspiration for your own kickstarter campaign.  Find out what video format works best!">
   <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 Los Angeles Kickstarter Video Production Companies</h1>
      <h2>Videopixie helps you hire the best LA 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="//seattle-kickstarter-video-production-companies">Seattle Kickstarter Video Production</a>
      
      <a class="related" href="/san-francisco-kickstarter-video-production-companies">San Francisco Kickstarter Video Production</a>
      
      <a class="related" href="/new-york-kickstarter-video-production">New York 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/MikhailProductions__VtKdhJIlSQ2Mzk-cQrNiig.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MikhailProductions">   
                  <h3>
                     Mikhail Productions
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a full service creative agency that makes some of the internets most viral videos. Our most recent crowdfunding campaign grossed over 27 million dollars in the first 30 days of launching. You can check it out at www.Glowforge.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="40687862" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/491752660_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '40687862')"
                        ng-class="{full: showFullComments['40687862']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ysCaqh38JVQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/ysCaqh38JVQ/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ysCaqh38JVQ')"
                        ng-class="{full: showFullComments['ysCaqh38JVQ']}">
                        
                     </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/0111-hunthouse.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hunthousepictures">   
                  <h3>
                     Hunt House Pictures
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Marina del Rey, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I make movies. I have done so since I was twelve, when I saw Fargo for the first time.  Some of my movies have won awards. I went to NYU. My inspirations include coffee, cabins, old people, young people, canines (dogs and teeth), Restrepo , bourbon, David Foster Wallace, offensive tattoos, blueberries, Diner, rivers, New York City, mirrors, Tom Waits, twins, railroads, Werner Herzog, pop art, symmetry, asymmetry, crosswords, and four-letter words. I was born in San Francisco. I live in Los Angeles.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115839850" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/502057597_640.jpg)"></div>
                     <img class="play" alt="ZBoard 2 IndieGoGo Video - Tag: Kickstarter, Indiegogo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115839850')"
                        ng-class="{full: showFullComments['115839850']}">
                        ZBoard 2 IndieGoGo Video - Tag: Kickstarter, 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/Nick_Paonessa__Kw93CuZGQ5Ksas9EUXtUPg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lowercaseprods">   
                  <h3>
                     Canyon Drive Productions
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Our production company specializes in short, dynamic digital videos for brands, people and projects we find interesting. As you can see from our portfolio, all of our work has a film aesthetic and it&#39;s always in HD. We love to bring out the personality of the subject we work with to tell their respective story, which makes each video unique. From a production standpoint we work extremely fast. We run a fun, easy-going production and once we have the footage, the rate at which we deliver the first cut is unmatched. Clients are thrilled with our turnover rate. Please review the sample videos as they will demonstrate the quality and character of our work. If you have any questions at all please feel free to contact us: 323-547-5344 www.canyondrive.co (that&#39;s &#39;.co&#39; not &#39;.com&#39;)</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112522222" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497540117_640.jpg)"></div>
                     <img class="play" alt="Somabar - Kickstarter" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112522222')"
                        ng-class="{full: showFullComments['112522222']}">
                        Somabar - Kickstarter
                     </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 LA 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/BacklitProduction__Z2frb-FUQ-yy5GrePRHijQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BacklitProduction">   
                  <h3>
                     Backlit Production
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video production :Commercial , Narratives, Crowdfunding videos, Music Videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Kuae9Eldvfw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Kuae9Eldvfw/0.jpg)"></div>
                     <img class="play" alt="2015 Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Kuae9Eldvfw')"
                        ng-class="{full: showFullComments['Kuae9Eldvfw']}">
                        2015 Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="7jyyXXxRHMQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/7jyyXXxRHMQ/0.jpg)"></div>
                     <img class="play" alt="Commercial reel." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '7jyyXXxRHMQ')"
                        ng-class="{full: showFullComments['7jyyXXxRHMQ']}">
                        Commercial reel.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Df-jnG9BggE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Df-jnG9BggE/0.jpg)"></div>
                     <img class="play" alt="Documentary reel." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Df-jnG9BggE')"
                        ng-class="{full: showFullComments['Df-jnG9BggE']}">
                        Documentary reel.
                     </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/CorpFilms__00HvFfehSVCAfyHZgJuQ9A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CorpFilms">   
                  <h3>
                     CorpFilms
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Pasadena, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Highly creative and efficient video production ensuring the highest quality productions priced well within your budget. No projects too big or small!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="rheXsZK18YM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/rheXsZK18YM/0.jpg)"></div>
                     <img class="play" alt="Music Artist EPK for Crowdfunding campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'rheXsZK18YM')"
                        ng-class="{full: showFullComments['rheXsZK18YM']}">
                        Music Artist EPK for Crowdfunding 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/AmandaHorvath__c25_tqTWRh6ZFpQ8BZWE_g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AmandaHorvath">   
                  <h3>
                     Amanda Horvath
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Manhattan Beach, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a freelance videographer focused on small business and kickstarter videos. Looking to move into corporate documentaries.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="148435509" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548164634_640.jpg)"></div>
                     <img class="play" alt="This is my reel for 2015 comprised of small business, kickstarter and event videos, as well as documentaries." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '148435509')"
                        ng-class="{full: showFullComments['148435509']}">
                        This is my reel for 2015 comprised of small business, kickstarter and event videos, as well as documentaries.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented LA 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/Edward_Payson__e1PTPu0STymbAhtBkFgmfA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/edwardpayson">   
                  <h3>
                     Edward Payson
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Edward is an award winning filmmaker. He has directed feature films that have played the world over. Edward has shot video campaigns for high profile clients such as Matt Damon, Water.org, The Collective and Google. He and his team at an Anti-Hero Production (Productions) can handle projects large and small from how-to videos, short films, commercials, demo reels and music videos to feature films and everything in between.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="QGOonvzamJg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/QGOonvzamJg/maxresdefault.jpg)"></div>
                     <img class="play" alt="Securmate Alarm system Kickstarter, Produced and Directed by Edward Payson" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'QGOonvzamJg')"
                        ng-class="{full: showFullComments['QGOonvzamJg']}">
                        Securmate Alarm system Kickstarter, Produced and Directed by Edward Payson
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="KTjaaJmCKWI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/KTjaaJmCKWI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Center Stage Kickstarter, Produced and Directed by Edward Payson" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'KTjaaJmCKWI')"
                        ng-class="{full: showFullComments['KTjaaJmCKWI']}">
                        Center Stage Kickstarter, Produced and Directed by Edward Payson
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="OTwQIBiJw-0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/OTwQIBiJw-0/0.jpg)"></div>
                     <img class="play" alt="Wemagin Kickstarter Campaign Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'OTwQIBiJw-0')"
                        ng-class="{full: showFullComments['OTwQIBiJw-0']}">
                        Wemagin Kickstarter Campaign 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/SaviRanchStudio__2_UetaoPSWiGSX643J5Lcw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SaviRanchStudio">   
                  <h3>
                     Savi Ranch Studio
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Orange County, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We bring your dream to the screen by producing an inviting portrait of you and your project. We have a State of the Arts full HD video studio located in the heart of Southern California. We also have a professional mobile camera crew that will travel to your location. We work with you to develop, shoot and edit the compelling message that you want to deliver. We have highly accredited professionals in each of the production fields.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="j4SjzGixhCE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/j4SjzGixhCE/0.jpg)"></div>
                     <img class="play" alt="This is a Video Press Release that we produce and distribute to new media outlets and to over 150,000 bloggers and web journalists. This may be of interest to companies or those that are launching a Kickstarter Project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'j4SjzGixhCE')"
                        ng-class="{full: showFullComments['j4SjzGixhCE']}">
                        This is a Video Press Release that we produce and distribute to new media outlets and to over 150,000 bloggers and web journalists. This may be of interest to companies or those that are launching a Kickstarter Project.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="e14fe7yr5yg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/e14fe7yr5yg/0.jpg)"></div>
                     <img class="play" alt="Here is a Kickstarter Rewards video that help raise $12,000 to make this a successfully funded project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'e14fe7yr5yg')"
                        ng-class="{full: showFullComments['e14fe7yr5yg']}">
                        Here is a Kickstarter Rewards video that help raise $12,000 to make this a successfully funded project.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ahKZmG3lBY8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/ahKZmG3lBY8/0.jpg)"></div>
                     <img class="play" alt="Successful $12,000 Kickstarter Campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ahKZmG3lBY8')"
                        ng-class="{full: showFullComments['ahKZmG3lBY8']}">
                        Successful $12,000 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/0033-joe-plenys.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/joeplenys">   
                  <h3>
                     Joe Plenys
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a quick and tech savvy video producer/editor with over 13 years of experience.  I have great storytelling skills and take direction well.  Looking forward to bringing your project to life!  Please check out more about me at www.joeplenys.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="156202633" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/557150853_1280.jpg)"></div>
                     <img class="play" alt="Soylent Crowdfunding Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '156202633')"
                        ng-class="{full: showFullComments['156202633']}">
                        Soylent Crowdfunding Video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best LA Kickstarter video production studio for your project</span>
               <a href="/start"><div class="button">Connect with LA 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/MattCreativeCollision__mkZ6JdLGTKKctoIjx3AtkA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CreativeCollision">   
                  <h3>
                     Matt - Creative Collision
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My name is Matt Sinnott and I founded Creative Collision after working as an account executive in the television promo world, where I worked with all the major networks.  

Creative Collision is a full-service digital content company specializing in the creation, production and execution of video content for a diverse group of clients, from emerging artists to established brands across all platforms.

By combining emerging technology and Hollywood storytelling we transcend traditional rules to reach your brand’s audience.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="156634780" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/557705419_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter Video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '156634780')"
                        ng-class="{full: showFullComments['156634780']}">
                        Kickstarter Video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="156634802" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/557705654_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter Video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '156634802')"
                        ng-class="{full: showFullComments['156634802']}">
                        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/Sparkhouse___fR9aQXoTvK3joS9T2yTHg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Sparkhouse839">   
                  <h3>
                     Sparkhouse
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Santa Ana, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Sparkhouse is a youthful Orange County, California based video marketing, advertising, and media production studio. Fusing expertise in the art of filmmaking with an intuitive grasp of the digital world. The company tailors branded films and commercials with bold storytelling, cinematic production value, and exciting innovation.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110840393" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/518687710_640.jpg)"></div>
                     <img class="play" alt="Eva Smart Shower Indiegogo Campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110840393')"
                        ng-class="{full: showFullComments['110840393']}">
                        Eva Smart Shower Indiegogo 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/NaptimeVideo__UDtRVQGHQpyhxYWGqPb13A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NaptimeVideo">   
                  <h3>
                     Naptime Video
                     <span>LA Kickstarter video production studio in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">LA Based Boutique Digital Media Company. We specialize in visual design and production.

≠ Commercials
≠ Music Videos
≠ Kickstarter Videos
≠ Company Profiles
≠ Social Media</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150325747" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/552147012_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150325747')"
                        ng-class="{full: showFullComments['150325747']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="148702933" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577976887_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '148702933')"
                        ng-class="{full: showFullComments['148702933']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="163105523" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/579223077_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '163105523')"
                        ng-class="{full: showFullComments['163105523']}">
                        
                     </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 LA 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/EvanCantrellNewKingdomProductions__ZWWbwS2yQy-_3lf7l-J7nw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EvanCantrell">   
                  <h3>
                     Evan Cantrell | New Kingdom Productions
                     <span>LA Kickstarter video production studio 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>LA Kickstarter video production studio 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>
