<!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>LA Videographers | Videopixie</title>
   <meta name="description" content="LA Videographers">
   <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 LA Videographers For Hire</h1>
      <h2>Videopixie helps you hire the best LA videographers.</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
   </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/KNOX_AVENUE__vdWoI93uTC6BtVC0fvzspg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/knoxavenue">   
                  <h3>
                     KNOX AVENUE
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are Visual Mixologists - people who blend story &amp; design with compassion &amp; laughter.  We write, produce, direct, shoot and edit engaging content with the purpose of captivating you.

We make our own creative business opportunities with innovative brands and organizations. We strive to live in a world where new ideas and good stories are king.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="69422872" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/451674467_640.jpg)"></div>
                     <img class="play" alt="PRINGLES + STAR WARS &quot;The Force for Fun&quot; DIRECTOR&#39;S CUT" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '69422872')"
                        ng-class="{full: showFullComments['69422872']}">
                        PRINGLES + STAR WARS &quot;The Force for Fun&quot; DIRECTOR&#39;S CUT
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="70667524" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/457913314_640.jpg)"></div>
                     <img class="play" alt="P&amp;G EVERYDAY &quot;Choices&quot; :60" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '70667524')"
                        ng-class="{full: showFullComments['70667524']}">
                        P&amp;G EVERYDAY &quot;Choices&quot; :60
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110544664" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494835108_640.jpg)"></div>
                     <img class="play" alt="UPTICK &quot;LET&#39;S GET STARTED&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110544664')"
                        ng-class="{full: showFullComments['110544664']}">
                        UPTICK &quot;LET&#39;S GET STARTED&quot;
                     </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 videographer 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="111475800" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496104588_640.jpg)"></div>
                     <img class="play" alt="The Star" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111475800')"
                        ng-class="{full: showFullComments['111475800']}">
                        The Star
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101572526" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/483376859_640.jpg)"></div>
                     <img class="play" alt="Matt&#39;s Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101572526')"
                        ng-class="{full: showFullComments['101572526']}">
                        Matt&#39;s Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="83275729" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/459848515_640.jpg)"></div>
                     <img class="play" alt="Friends of Mine" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '83275729')"
                        ng-class="{full: showFullComments['83275729']}">
                        Friends of Mine
                     </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>
                     Lowercase Prods
                     <span>LA videographer 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. This bid is ballpark figure. We&#39;ll only really know what it will cost, once we determine a number of factors through all 3 stages of this project: pre-production, production &amp; post production. If you have any questions at all please feel free to contact us.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41614783" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/288348906_640.jpg)"></div>
                     <img class="play" alt="The Lumière Butchers" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41614783')"
                        ng-class="{full: showFullComments['41614783']}">
                        The Lumière Butchers
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ui5m-r2FQUk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/ui5m-r2FQUk/0.jpg)"></div>
                     <img class="play" alt="More Than Stores - Episode 1 - Fiore Market Cafe" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ui5m-r2FQUk')"
                        ng-class="{full: showFullComments['ui5m-r2FQUk']}">
                        More Than Stores - Episode 1 - Fiore Market Cafe
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="hY6oGVIJd5o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/hY6oGVIJd5o/0.jpg)"></div>
                     <img class="play" alt="More Than Stores - Episode 3 - Golden Saddle" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'hY6oGVIJd5o')"
                        ng-class="{full: showFullComments['hY6oGVIJd5o']}">
                        More Than Stores - Episode 3 - Golden Saddle
                     </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 videographers</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/Ioana_Vasile__Nyo3_KXsT1W_HThqy3783w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ioanavasile">   
                  <h3>
                     Ioana Vasile
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Specializing in movies, series, commercials and corporate videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="126883501" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/517476464_640.jpg)"></div>
                     <img class="play" alt="Cinematographer Demo Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '126883501')"
                        ng-class="{full: showFullComments['126883501']}">
                        Cinematographer Demo Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="sIK_DocajFs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/sIK_DocajFs/0.jpg)"></div>
                     <img class="play" alt="What Actually Feeds A Family?   Produced by SoulPancake &amp; Smuckers. Director of Photography: Ioana Vasile.  Director: Ben Shelton" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'sIK_DocajFs')"
                        ng-class="{full: showFullComments['sIK_DocajFs']}">
                        What Actually Feeds A Family?   Produced by SoulPancake &amp; Smuckers. Director of Photography: Ioana Vasile.  Director: Ben Shelton
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128086705" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519575938_640.jpg)"></div>
                     <img class="play" alt="Western Digital: The Vision Behind Star Citizen.  Produced by Petrol.   Director of Photography: Ioana Vasile.  Director: John Conway." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128086705')"
                        ng-class="{full: showFullComments['128086705']}">
                        Western Digital: The Vision Behind Star Citizen.  Produced by Petrol.   Director of Photography: Ioana Vasile.  Director: John Conway.
                     </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/GoroToshima__iG5hm3HcSBGM9JRCnmrKMw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GoroToshima">   
                  <h3>
                     Goro Toshima
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">SXSW award winning filmmaker. Work has screened at many major festivals, including Sundance and broadcast from PBS to HBO. Maker of webspots, including Swell Radio app (purchased by Apple and developed into the recently announced News app).</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134129882" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/527518849_640.jpg)"></div>
                     <img class="play" alt="Director of Swell spot. Company was acquired  by Apple...And developed into the recently announced News app...Swell was essentially a &#39;pandora&#39; for podcasts. So my intention was to show with humor/fun, via  a usercase, how the app can improve your life." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134129882')"
                        ng-class="{full: showFullComments['134129882']}">
                        Director of Swell spot. Company was acquired  by Apple...And developed into the recently announced News app...Swell was essentially a &#39;pandora&#39; for podcasts. So my intention was to show with humor/fun, via  a usercase, how the app can improve your life.
                     </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/EnlightenedPictures__7GeCQp2mTs2QXRWcCMmGEQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/enlightenedpictures">   
                  <h3>
                     Enlightened Pictures
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Based in Los Angeles, with an office in San Francisco we produce fun and whimsical award-winning commercial, educational documentaries, PSA’s, corporate videos, and social media videos. We work closely with large and small business brands and nonprofits to find the essence of what they want to convey to their clients about their products and services.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="60913243" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/437851109_640.jpg)"></div>
                     <img class="play" alt="Company Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '60913243')"
                        ng-class="{full: showFullComments['60913243']}">
                        Company Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119884679" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507486005_640.jpg)"></div>
                     <img class="play" alt="Duck Dream" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119884679')"
                        ng-class="{full: showFullComments['119884679']}">
                        Duck Dream
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112578594" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/501833672_640.jpg)"></div>
                     <img class="play" alt="Shoulder Cradle" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112578594')"
                        ng-class="{full: showFullComments['112578594']}">
                        Shoulder Cradle
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented LA videographers 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/VitascopeArts__uwzhzpsVQ_OIMmp3Bw8fQQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/vitascopearts">   
                  <h3>
                     Vitascope Arts
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Vitascope Arts is a boutique production company specializing in branded content for TV commercials, websites and corporate purposes.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110184946" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494645996_640.jpg)"></div>
                     <img class="play" alt="Levi&#39;s | 49er&#39;s | &quot;We Are San Francisco&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110184946')"
                        ng-class="{full: showFullComments['110184946']}">
                        Levi&#39;s | 49er&#39;s | &quot;We Are San Francisco&quot;
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142340271" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/539603037_640.jpg)"></div>
                     <img class="play" alt="Momas Scooter | &quot;Day Ride&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142340271')"
                        ng-class="{full: showFullComments['142340271']}">
                        Momas Scooter | &quot;Day Ride&quot;
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="144661076" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542558753_640.jpg)"></div>
                     <img class="play" alt="Simpliflow | &quot;Drum Roll&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '144661076')"
                        ng-class="{full: showFullComments['144661076']}">
                        Simpliflow | &quot;Drum Roll&quot;
                     </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/BrainstormCreativeInc__q-Giek66QEOmqPSzOfdfsQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BrainstormCreativeInc">   
                  <h3>
                     Brainstorm Creative Inc.
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are one of the most respected video production companies in the US.  We have worked all over the world on commercials, product launches, brand videos, web videos and a few other things that defy any attempts at brief explanation.   We have launched spaceships, computer chips, airlines and hotels and come up with a thousand innovative ways to send an audience away whistling our clients tune.  Our clients include Virgin Galactic and Virgin America, Intel and Apple, FedEx and Four Seasons, Lynda.com and The SpaceShip Company.  We are smart, experienced and fun to work with.

Now more than ever - as audiences become more jaded, easily distracted and hard to impress, you need good ideas to set your message apart from the blah-blah-blah.  Good ideas - that&#39;s what Brainstorm Creative brings to the table.  You can find out more about us and hear what our clients have to say about working with us at brainstormcreative.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129925866" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521598947_640.jpg)"></div>
                     <img class="play" alt="One of a series of videos  produced for Virgin America" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129925866')"
                        ng-class="{full: showFullComments['129925866']}">
                        One of a series of videos  produced for Virgin America
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="133764873" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/526967520_640.jpg)"></div>
                     <img class="play" alt="Brand Video for the Launch of The Waldorf Astoria Collection" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '133764873')"
                        ng-class="{full: showFullComments['133764873']}">
                        Brand Video for the Launch of The Waldorf Astoria Collection
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="44552813" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/452730277_640.jpg)"></div>
                     <img class="play" alt="Our clients talk about the experience of working with Brainstorm" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '44552813')"
                        ng-class="{full: showFullComments['44552813']}">
                        Our clients talk about the experience of working with Brainstorm
                     </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/Aether_Films__hl_5zdojRXOEkD2qXJbMfQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/aetherfilms">   
                  <h3>
                     Aether Films
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Aether Films is a different kind of production company that utilizes high tech solutions to capture unique angles and perspectives.  We specialize in video production and visual storytelling in everything from advertising to full length features.  We thrive on working with clients in all aspects of the visual creative process.  

What specifically sets us apart is our knowledge of high-tech robotics and video production.  By combining these skills we&#39;ve been able to create some of the best low cost camera rigs in the world from scratch, including UAVs, RC cams, camera stabilizers and cable cameras.  

Aether films has created multiple viral videos that have reached over 80,000 viewers.  We are eager to apply our skills to your business or production not only to enhance the quality of the material, but also encourage the viral spread of ALL of our projects.  

We&#39;re continuously amazed at the ability of visual production to captivate the masses and we&#39;ve made that our specialty. Aether is also of the belief that the best ideas can emerge from anywhere.  So get in touch with us and let&#39;s see what we can create.  
</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="bk7Pws2g80c" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/bk7Pws2g80c/0.jpg)"></div>
                     <img class="play" alt="Aether Films Demo Reel 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'bk7Pws2g80c')"
                        ng-class="{full: showFullComments['bk7Pws2g80c']}">
                        Aether Films Demo Reel 2014
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JnfnBWXAWOU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/JnfnBWXAWOU/0.jpg)"></div>
                     <img class="play" alt="Terenzo Bozzone Returns To Kona Part II" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JnfnBWXAWOU')"
                        ng-class="{full: showFullComments['JnfnBWXAWOU']}">
                        Terenzo Bozzone Returns To Kona Part II
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113654216" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499051307_640.jpg)"></div>
                     <img class="play" alt="Red Bull Triple Set 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113654216')"
                        ng-class="{full: showFullComments['113654216']}">
                        Red Bull Triple Set 2014
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best LA videographer for your project</span>
               <a href="/start"><div class="button">Connect with LA videographers</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/For_Example_Media__EclKCat5TVa9JOAaq2c3yQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/forexamplemedia">   
                  <h3>
                     For Example Media
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We create videos that tell real stories that are a little bit fun, a little bit informative and always authentic.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="122137970" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/511137078_640.jpg)"></div>
                     <img class="play" alt="For Example Media Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '122137970')"
                        ng-class="{full: showFullComments['122137970']}">
                        For Example Media Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="122137970" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/511137078_640.jpg)"></div>
                     <img class="play" alt="For Example Media Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '122137970')"
                        ng-class="{full: showFullComments['122137970']}">
                        For Example Media 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/ALASMedia__drg9-QhzTYOGPs0edmzxLw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ALASMedia">   
                  <h3>
                     ALAS Media
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">ALAS Media specializes in storytelling through video production and works with mid to large size businesses, larger non-profits and education organizations who need to identify and share their stories with the world.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150213726" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549631149_640.jpg)"></div>
                     <img class="play" alt="ALAS Media 2015 Demo Reel -   A compilation of our best work from the past few years including work in education, corporate, marketing, and documentary video production services.  Shot on location throughout the United States, Sweden, and Mexico. Shot with Sony A7s II, Nikon D800, Lumix; Zeiss 24-70mm F4, Nikon 24-70mm F2.8, Nikon 70-200mm F2.8, Nikon 35mm F2, Nikon 85mm F1.2; Manfrotto Tripod, Benro Monopod, Duzi Slider ." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150213726')"
                        ng-class="{full: showFullComments['150213726']}">
                        ALAS Media 2015 Demo Reel -   A compilation of our best work from the past few years including work in education, corporate, marketing, and documentary video production services.  Shot on location throughout the United States, Sweden, and Mexico. Shot with Sony A7s II, Nikon D800, Lumix; Zeiss 24-70mm F4, Nikon 24-70mm F2.8, Nikon 70-200mm F2.8, Nikon 35mm F2, Nikon 85mm F1.2; Manfrotto Tripod, Benro Monopod, Duzi Slider .
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="133365432" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/526427229_640.jpg)"></div>
                     <img class="play" alt="Real Estate Commercial produced for agent and property. Roles include Project Management, Story boarding, Editing a 4K Workflow" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '133365432')"
                        ng-class="{full: showFullComments['133365432']}">
                        Real Estate Commercial produced for agent and property. Roles include Project Management, Story boarding, Editing a 4K Workflow
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="145911168" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/544208111_640.jpg)"></div>
                     <img class="play" alt="A video produced for the city of San Fernando, CA to promote business and tourism. Roles include Project Management, Story boarding, Camera Operating, Cinematography, Editing, and Color Grading." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '145911168')"
                        ng-class="{full: showFullComments['145911168']}">
                        A video produced for the city of San Fernando, CA to promote business and tourism. Roles include Project Management, Story boarding, Camera Operating, Cinematography, Editing, and Color Grading.
                     </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/EPIDEMIC__Pvi2F_0xTMG3_edvEUXxyQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/epidemic">   
                  <h3>
                     EPIDEMIC
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">A Multimedia contagion specializing in Premium Animation &amp; Video Production Services. Our outbreak has started in the Entertainment Capital of the World and continues to spread across the globe. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129121317" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/520497699_640.jpg)"></div>
                     <img class="play" alt="360 Security | Google Play" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129121317')"
                        ng-class="{full: showFullComments['129121317']}">
                        360 Security | Google Play
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128564232" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519808019_640.jpg)"></div>
                     <img class="play" alt="SADA Careers" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128564232')"
                        ng-class="{full: showFullComments['128564232']}">
                        SADA Careers
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127560032" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/520181101_640.jpg)"></div>
                     <img class="play" alt="DineLA Restaurant Week" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127560032')"
                        ng-class="{full: showFullComments['127560032']}">
                        DineLA Restaurant Week
                     </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 videographers</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 videographer 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/0093-michael-scholz.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/michaelscholz">   
                  <h3>
                     Michael Scholz
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hi,
I&#39;m Michael.
I worked for several years in a web agency in Stuttgart/Germany as a Project Manager with different clients like Porsche Design, Vodafone and Fujitsu.

Last year I decided to start my career over and with video editing and producing of documentaries.
My first documentary &quot;ultreia&quot; is about the pilgrimage track thourgh northern Spain which I shot last year. At the moment I&#39;m editing the footage and want to release my documentary this year. 
Besides I worked for AITCH - a canadian singer- and songwriter - to produce his music videos.

Looking forward to meet new partners and clients here.

Cheers,
Michael</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="87509251" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/466005002_640.jpg)"></div>
                     <img class="play" alt="AITCH - Three Little Birds (Official Music Video) - Produced and Edited" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '87509251')"
                        ng-class="{full: showFullComments['87509251']}">
                        AITCH - Three Little Birds (Official Music Video) - Produced and Edited
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="90730870" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/470010252_640.jpg)"></div>
                     <img class="play" alt="AITCH - Folsom Prison Blues (Official Music Video) - Produced and Edited" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '90730870')"
                        ng-class="{full: showFullComments['90730870']}">
                        AITCH - Folsom Prison Blues (Official Music Video) - Produced and Edited
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="71543054" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/445135313_640.jpg)"></div>
                     <img class="play" alt="ultreia. an experimental documentary - trailer - produced and edited" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '71543054')"
                        ng-class="{full: showFullComments['71543054']}">
                        ultreia. an experimental documentary - trailer - produced and edited
                     </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/DigitalRevolution__WIbKNrtKShGExdIebF4Dxw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DigitalRevolution">   
                  <h3>
                     Digital Revolution
                     <span>LA videographer in </span>
                     <span class="location">Long Beach, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We specialize in crafting stories that captivate audiences. We conceptualize, produce, direct, shoot, edit, and deliver video content we&#39;re proud of.

If you have a story to tell, hire Digital Revolution to bring that idea to life.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="100249946" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/505018699_640.jpg)"></div>
                     <img class="play" alt="Marketing | Branding video for Mexicalo Clothing. We wanted to highlight the customers who wer the clothing and the likes, dislikes and impact they make in their everyday lives." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '100249946')"
                        ng-class="{full: showFullComments['100249946']}">
                        Marketing | Branding video for Mexicalo Clothing. We wanted to highlight the customers who wer the clothing and the likes, dislikes and impact they make in their everyday lives.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129841501" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521477939_640.jpg)"></div>
                     <img class="play" alt="Realtor Agent Profile video. Profile video for Southern California based realtor, Scot Nicol." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129841501')"
                        ng-class="{full: showFullComments['129841501']}">
                        Realtor Agent Profile video. Profile video for Southern California based realtor, Scot Nicol.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127775709" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/518952512_640.jpg)"></div>
                     <img class="play" alt="Event highlight film for the Green Prize Festival in Long Beach, CA.  Set out to produce a video that highlights and captures the best of the day long event. Video used for marketing purposes both for event goers and fiscal partners." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127775709')"
                        ng-class="{full: showFullComments['127775709']}">
                        Event highlight film for the Green Prize Festival in Long Beach, CA.  Set out to produce a video that highlights and captures the best of the day long event. Video used for marketing purposes both for event goers and fiscal partners.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented LA videographers 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/Envy_Creative__MgZOCtmYRc6y04Nz34BdqQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EnvyCreative">   
                  <h3>
                     Envy Creative
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Envy Creative is a film, TV and video production company. We specialize in startup, app, tech and website videos, branded entertainment, general video production, TV commercials, and web content videos. We also work with individuals or small to enterprise sized businesses.

We know how to conceptualize, create, and deliver while exceeding expectations. We also know how to make things look great on a tight budget. We handle all aspects of the creative process; from concept to final delivery.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142415452" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/539701435_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142415452')"
                        ng-class="{full: showFullComments['142415452']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142415028" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/539701550_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142415028')"
                        ng-class="{full: showFullComments['142415028']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142414379" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/539702010_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142414379')"
                        ng-class="{full: showFullComments['142414379']}">
                        
                     </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/TAKEOFF__d0XHMTEPQua9Q5KSvOvDuA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/takeoff">   
                  <h3>
                     TAKEOFF
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Creative Services Agency for the entertainment industry</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="jqcQ_HQIoX4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/jqcQ_HQIoX4/0.jpg)"></div>
                     <img class="play" alt="TAKEOFF Demo Reel 2014 - Tag: Game Trailer, Animations, Visual FX" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'jqcQ_HQIoX4')"
                        ng-class="{full: showFullComments['jqcQ_HQIoX4']}">
                        TAKEOFF Demo Reel 2014 - Tag: Game Trailer, Animations, Visual FX
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="yD7qCw3ncdk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/yD7qCw3ncdk/0.jpg)"></div>
                     <img class="play" alt="Might and Magic X Legacy Trailer - Tags: Animations, Visual FX" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'yD7qCw3ncdk')"
                        ng-class="{full: showFullComments['yD7qCw3ncdk']}">
                        Might and Magic X Legacy Trailer - Tags: Animations, Visual FX
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uBWDjSqE0Dg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/uBWDjSqE0Dg/0.jpg)"></div>
                     <img class="play" alt="PREHISTORIK game trailer, a playful mix of gameplay and original animations" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uBWDjSqE0Dg')"
                        ng-class="{full: showFullComments['uBWDjSqE0Dg']}">
                        PREHISTORIK game trailer, a playful mix of gameplay and original animations
                     </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/fatdroid__2iWyV_BjQt2Ilcn3gge-Ng.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/fatdroid">   
                  <h3>
                     Fatdroid
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Robust, yet streamlined advertising.  Take our namesake, fatdroid:  we&#39;re efficient and technically excellent (like a little robot), but, with an excess of creativity (the &quot;fat&quot; part).

Our team met YEARS ago (don&#39;t want to date ourselves) while working at a gaming company, but we&#39;ve expanded into animation, live action products, motion comics, and event coverage.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="71124886" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/444599169_640.jpg)"></div>
                     <img class="play" alt="Wolverine Audi/Ducati - movie / car trailer for the 2013 theatrical release of Wolverine and the 2013 Audi R8 &amp; 2014 Ducati Desmodecci respectively." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '71124886')"
                        ng-class="{full: showFullComments['71124886']}">
                        Wolverine Audi/Ducati - movie / car trailer for the 2013 theatrical release of Wolverine and the 2013 Audi R8 &amp; 2014 Ducati Desmodecci respectively.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="9364124" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/46137429_640.jpg)"></div>
                     <img class="play" alt="Nowhere to go but home -  16mm music video Fatdroid directed for six. by seven" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '9364124')"
                        ng-class="{full: showFullComments['9364124']}">
                        Nowhere to go but home -  16mm music video Fatdroid directed for six. by seven
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117565798" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504862640_640.jpg)"></div>
                     <img class="play" alt="Fatdroid 2015 Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117565798')"
                        ng-class="{full: showFullComments['117565798']}">
                        Fatdroid 2015 Reel
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best LA videographer for your project</span>
               <a href="/start"><div class="button">Connect with LA videographers</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/Derek_Pike__VsPBtpW5R1qQ9haV8aIKbg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DerekPike">   
                  <h3>
                     Derek Pike
                     <span>LA videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a Director from New York and currently living in Los Angeles. I am one of the youngest directors to have a music video featured on MTV while still attending film school at NYU. Since 2009, I have directed nearly 100 music videos and commercials garnering over 100 million youtube views. Ranked #1 on MTV&#39;s countdown, my video for DJ Drama&#39;s &quot;Oh My&quot; featuring Wiz Khalifa, Fabolous, and Roscoe Dash was named the 25th best music video of the year by BET. Aside from directing music videos, commercials, and other branded content, I also am a fully competent editor, and videographer with my own equipment.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="29414155" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/241693021_640.jpg)"></div>
                     <img class="play" alt="Music video reel." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '29414155')"
                        ng-class="{full: showFullComments['29414155']}">
                        Music video reel.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108756233" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492535970_640.jpg)"></div>
                     <img class="play" alt="The Respect Challenge (Macy&#39;s). Role: Director" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108756233')"
                        ng-class="{full: showFullComments['108756233']}">
                        The Respect Challenge (Macy&#39;s). Role: Director
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="90073540" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/482741016_640.jpg)"></div>
                     <img class="play" alt="Neon Utopia (Gypsum Fashion). Role:  Director" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '90073540')"
                        ng-class="{full: showFullComments['90073540']}">
                        Neon Utopia (Gypsum Fashion). Role:  Director
                     </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/Michael_Franchetti__m1zgdbccSDSktEXecRl0wg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/michaelfranchetti">   
                  <h3>
                     Michael Franchetti
                     <span>LA videographer in </span>
                     <span class="location">San Diego, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I have over ten years of experience as a professional videographer, having shot in over 30 countries for leading international brands. I produce, direct, shoot and edit, which means that I understand how all of aspects of video production relate to each other, even when only editing a project. I&#39;m fast, efficient and look forward to working with you.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="52217938" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/368135948_640.jpg)"></div>
                     <img class="play" alt="InterContinental San Francisco Green Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '52217938')"
                        ng-class="{full: showFullComments['52217938']}">
                        InterContinental San Francisco Green Video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="36533336" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/250595816_640.jpg)"></div>
                     <img class="play" alt="Suburban Bikes" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '36533336')"
                        ng-class="{full: showFullComments['36533336']}">
                        Suburban Bikes
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41761140" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/289433702_640.jpg)"></div>
                     <img class="play" alt="Yelp - King Cobra Tattoo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41761140')"
                        ng-class="{full: showFullComments['41761140']}">
                        Yelp - King Cobra Tattoo
                     </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>
