<!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>Freelance Video Editors for Hire | Videopixie</title>
   <meta name="description" content="Here are some of the best Video Editors on Videopixie.  Experts in fast cuts, color grading, wedding highlights, motion graphics, 4K editing, Adobe Premiere, Final Cut Pro,...  Videopixie is a community of thousands of video creators and we help you hire the best professionals for your projects without the usual agency fees.">
   <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" 
      
      style = "background-image: url('https://s3.amazonaws.com/our.s3.videopixie.com/hero/editor.jpg');"
      >
   
      <h1>Best Video Editors for Hire</h1>
      <h2>Videopixie helps you hire the best video editors.</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="/wedding-editors">Wedding Video Editors</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/Picturelab/Transvideo_Studios__BDJMjEI7TwuJHQDQBEb2bg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/picturelab">   
                  <h3>
                     Picturelab
                     <span>video editor in </span>
                     <span class="location">Mountain View, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Picturelab is the creative &amp; design department of Silicon Valley’s largest film/video production company: Transvideo Studios. Since opening our doors in 1981 we’ve produced more than 10,000 videos, yielding more than 200 million hits. Creating explainer and overview videos, television commercials, integrated videos and documentaries. We’ve worked with some of the most exciting and innovative organizations on the face of the earth like Google, Facebook, Microsoft and NASA. And we’ve helped a bunch of start-ups become big names in their own right… like Box and Mint. We’ve created work that’s made a difference, and helped organizations grow and succeed.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41945534" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/290821850_640.jpg)"></div>
                     <img class="play" alt="Thumbtack Overview that we directed, produced, filmed and edited." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41945534')"
                        ng-class="{full: showFullComments['41945534']}">
                        Thumbtack Overview that we directed, produced, filmed and edited.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41378240" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/286540973_640.jpg)"></div>
                     <img class="play" alt="Stitcher Overview.  Roles: Director, Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41378240')"
                        ng-class="{full: showFullComments['41378240']}">
                        Stitcher Overview.  Roles: Director, Videographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110506094" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494781912_640.jpg)"></div>
                     <img class="play" alt="Introducing the Poynt Smart Terminal.  Directed, filmed and edited by Picturelab" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110506094')"
                        ng-class="{full: showFullComments['110506094']}">
                        Introducing the Poynt Smart Terminal.  Directed, filmed and edited by Picturelab
                     </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>video editor 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="iaV4KrgptnU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/iaV4KrgptnU/0.jpg)"></div>
                     <img class="play" alt="From Indian Lakes - &quot;Ghost&quot; (official video). Roles: cinematographer, editor, director" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'iaV4KrgptnU')"
                        ng-class="{full: showFullComments['iaV4KrgptnU']}">
                        From Indian Lakes - &quot;Ghost&quot; (official video). Roles: cinematographer, editor, director
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="105284443" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/488040240_640.jpg)"></div>
                     <img class="play" alt="&quot;Ghost Town&quot; by Brolly [art video].  Roles: cinematographer, editor, director" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '105284443')"
                        ng-class="{full: showFullComments['105284443']}">
                        &quot;Ghost Town&quot; by Brolly [art video].  Roles: cinematographer, editor, director
                     </p>
                  </div>
                  
                  
               
                  <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. Roles: Director, Videographer, Editor" 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. Roles: Director, Videographer, Editor
                     </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/CanyonDriveProductions__c5npQHcXThKiiJbsYsx3ew.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lowercaseprods">   
                  <h3>
                     Canyon Drive Productions
                     <span>video editor 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.  Videopixie listed us as one of LA&#39;s top 3 crowdfunding video creators!  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 professional, fast-moving 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-696-1237 www.canyondrive.co (that&#39;s &#39;.co&#39; not &#39;.com&#39;)</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="217574194" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/634818910_1280.jpg)"></div>
                     <img class="play" alt="Vilta GoPro Stabilizer Produced, Directed, Filmed and Edited by Canyon Drive Productions" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '217574194')"
                        ng-class="{full: showFullComments['217574194']}">
                        Vilta GoPro Stabilizer Produced, Directed, Filmed and Edited by Canyon Drive Productions
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85662786" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/463048782_1280.jpg)"></div>
                     <img class="play" alt="Gillette&#39;s Trading Places with Leo Messi &amp; Roger Federer.  Behind the Scenes Produced, Directed, Filmed and Edited by Canyon Drive Productions" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85662786')"
                        ng-class="{full: showFullComments['85662786']}">
                        Gillette&#39;s Trading Places with Leo Messi &amp; Roger Federer.  Behind the Scenes Produced, Directed, Filmed and Edited by Canyon Drive Productions
                     </p>
                  </div>
                  
                  
               
                  <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 Produced, Directed, Filmed and Edited by Canyon Drive Productions" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41614783')"
                        ng-class="{full: showFullComments['41614783']}">
                        The Lumière Butchers Produced, Directed, Filmed and Edited by Canyon Drive Productions
                     </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 video editors</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/SilverStylePictures__pkSZIqlaQzCLX8KD_gPRlA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/silverstylepictures">   
                  <h3>
                     Silver Style Pictures
                     <span>video editor in </span>
                     <span class="location">Red Bank, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">NJ | NY | Worldwide - Film &amp; Video Production 

We work with local brands &amp; others from around the world offering innovative film &amp; video production services. We specialize in films, commercials, branded media content &amp; more. 

Get in touch. Lets&#39;s get creative. 

What&#39;s Your Style?</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118302924" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/505299323_640.jpg)"></div>
                     <img class="play" alt="Silver Style Pictures | Reel.   Roles: Director, Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118302924')"
                        ng-class="{full: showFullComments['118302924']}">
                        Silver Style Pictures | Reel.   Roles: Director, Videographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115481712" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/501519285_640.jpg)"></div>
                     <img class="play" alt="Surf.  Roles: Director, Producer, Editor, Videographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115481712')"
                        ng-class="{full: showFullComments['115481712']}">
                        Surf.  Roles: Director, Producer, Editor, Videographer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="102495320" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/484511331_640.jpg)"></div>
                     <img class="play" alt="Volkswagen Golf - 40 Years Roles: Director, Producer, Editor, Videographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '102495320')"
                        ng-class="{full: showFullComments['102495320']}">
                        Volkswagen Golf - 40 Years Roles: Director, Producer, Editor, Videographer
                     </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/Zangs_Films__hzMlXq6NRJ6FtgB5pQeiQA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/zangsfilms">   
                  <h3>
                     Zangs Films
                     <span>video editor in </span>
                     <span class="location">Portland, OR, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">While working as a designer, Octave started shooting snowboarding and surfing in Europe, which led him to have his work showcased in renown publications. In mid-2014, when the opportunity presented itself, he took the leap and moved to California to create his own film production company. He is also an experienced music producer.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="109460436" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/493418796_640.jpg)"></div>
                     <img class="play" alt="One Summer Swell with Pat Towersey Roles: Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '109460436')"
                        ng-class="{full: showFullComments['109460436']}">
                        One Summer Swell with Pat Towersey Roles: Director, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="123624870" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/513027149_640.jpg)"></div>
                     <img class="play" alt="The Deepest Valley.  Roles: Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '123624870')"
                        ng-class="{full: showFullComments['123624870']}">
                        The Deepest Valley.  Roles: Director, Cinematographer, Editor
                     </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/Studio_B_Films_Production___LWwBj4WWSpCnclumXxXTCw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/studiobfilmsproduction">   
                  <h3>
                     Studio B Films Production 
                     <span>video editor in </span>
                     <span class="location">San Francisco Bay Area, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Since 1992, Studio B Films has partnered with our clients to communicate their messages with a clear, creative and bold voice. Located in a beautiful loft space in Berkeley, CA just 20 minutes away from San Francisco, Studio B Films is known not only for its quality, but also for its approachability.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85495162" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/462936916_640.jpg)"></div>
                     <img class="play" alt="Studio B Films 2014 Reel.  Roles:  Director, Producer, Editor, Animator, Videographer, Cinematographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85495162')"
                        ng-class="{full: showFullComments['85495162']}">
                        Studio B Films 2014 Reel.  Roles:  Director, Producer, Editor, Animator, Videographer, Cinematographer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="65318253" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/463299701_640.jpg)"></div>
                     <img class="play" alt="Explainer video fro Nuage.  The video combines stock footage and 3D animations. Roles: Director, Editor, Animator, Motion Graphics Designer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '65318253')"
                        ng-class="{full: showFullComments['65318253']}">
                        Explainer video fro Nuage.  The video combines stock footage and 3D animations. Roles: Director, Editor, Animator, Motion Graphics Designer
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented video editors 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/French_Press_Films__V91yZdi4Q3y8HYww8x8A3A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/frenchpressfilms">   
                  <h3>
                     French Press Films
                     <span>video editor in </span>
                     <span class="location">San Francisco Bay Area, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">French Press is a lean, scalable video production company with a strong network of professional filmmakers that we trust and work with repeatedly.

Relationships are the core of our business and we don’t think of projects as one-offs. We consider our clients on-going partners.

We collaborate using a thorough creative process to craft engaging stories and deliver top-quality, cinematic video that moves people.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108438436" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492120299_640.jpg)"></div>
                     <img class="play" alt="Plastc, &quot;Experience Plastc&quot;.  Roles: Director, Producer, Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108438436')"
                        ng-class="{full: showFullComments['108438436']}">
                        Plastc, &quot;Experience Plastc&quot;.  Roles: Director, Producer, Videographer, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="58756039" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/407990661_640.jpg)"></div>
                     <img class="play" alt="Uber - &quot;Everyone&#39;s Private Driver&quot;.  Roles: Director, Producer, Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '58756039')"
                        ng-class="{full: showFullComments['58756039']}">
                        Uber - &quot;Everyone&#39;s Private Driver&quot;.  Roles: Director, Producer, Videographer, Cinematographer, Editor
                     </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/RandoMartins__FErghpziSF2LTj8FowbQdg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/randomartins">   
                  <h3>
                     Rando Martins
                     <span>video editor in </span>
                     <span class="location">Hartford, CT, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a freelance DP and editor specializing in timelapse and hyperlapse.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="93090351" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/474181711_640.jpg)"></div>
                     <img class="play" alt="Sky Walkers.  Roles: Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '93090351')"
                        ng-class="{full: showFullComments['93090351']}">
                        Sky Walkers.  Roles: Videographer, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113771170" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499244140_640.jpg)"></div>
                     <img class="play" alt="Rando | Demo Reel 4K.  Roles: Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113771170')"
                        ng-class="{full: showFullComments['113771170']}">
                        Rando | Demo Reel 4K.  Roles: Videographer, Cinematographer, Editor
                     </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/BasementVision__zoaEvg3qS4Ko6FMEn7Adhg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/basementvision">   
                  <h3>
                     BasementVision
                     <span>video editor in </span>
                     <span class="location">Barcelona, Spain</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Freelance travel/sports/corporate videographer and editor.

Full list of services at www.basementvision.com

Clients include Hilton Hotels, Red Bull and a whole range of other clients.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174400812" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/581271356_1280.jpg)"></div>
                     <img class="play" alt="Video highlights edit for IoT Tech Expo in London." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174400812')"
                        ng-class="{full: showFullComments['174400812']}">
                        Video highlights edit for IoT Tech Expo in London.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174399923" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/581269126_1280.jpg)"></div>
                     <img class="play" alt="Shoot and edit for Xero and Mint Accounting in the UK." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174399923')"
                        ng-class="{full: showFullComments['174399923']}">
                        Shoot and edit for Xero and Mint Accounting in the UK.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best video editor for your project</span>
               <a href="/start"><div class="button">Connect with video editors</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/Adam_Wiltgen__1hn8IGdSQ5ePK-Xr956SqQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/dundeedigital">   
                  <h3>
                     Dundee Digital
                     <span>video editor in </span>
                     <span class="location">Omaha, NE, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">From pre to post production and everything in between.  </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="57174709" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/472058842_640.jpg)"></div>
                     <img class="play" alt="Dundee Digital&#39;s reel, where we highlight our work with awesome clients and our skills in videography, direction and editing." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '57174709')"
                        ng-class="{full: showFullComments['57174709']}">
                        Dundee Digital&#39;s reel, where we highlight our work with awesome clients and our skills in videography, direction and editing.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116188051" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/502462735_640.jpg)"></div>
                     <img class="play" alt="Jerry Ryan - Clothing &amp; Sportswear.  Roles: direction, videography, editing" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116188051')"
                        ng-class="{full: showFullComments['116188051']}">
                        Jerry Ryan - Clothing &amp; Sportswear.  Roles: direction, videography, editing
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112958835" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/498115683_640.jpg)"></div>
                     <img class="play" alt="Kendrick and Kenyatta - Roles: videographer, editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112958835')"
                        ng-class="{full: showFullComments['112958835']}">
                        Kendrick and Kenyatta - Roles: videographer, editor
                     </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/MatiasCanelson__2Z-wGUJBTv6kF6RusMiNeA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/matiascanelson">   
                  <h3>
                     Matias Canelson
                     <span>video editor in </span>
                     <span class="location">Miami, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">With 12 years of experience, I edited: prime time tv shows, dramas, documentaries, tv commercials and movie trailers broadcasted in all latin america. Using Avid or Final Cut Pro I delivered my work to MTV, FOX, FX, Animal Planet, elGourmet, Discovery Kids, Eyeworks CuantroCabezas, Endemol.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134661466" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528286405_640.jpg)"></div>
                     <img class="play" alt="Teaser for &quot;República del Color&quot;. A 73 minutes documentary I edited about the history of visual arts in the Dominican Republic." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134661466')"
                        ng-class="{full: showFullComments['134661466']}">
                        Teaser for &quot;República del Color&quot;. A 73 minutes documentary I edited about the history of visual arts in the Dominican Republic.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="25201650" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/165782874_640.jpg)"></div>
                     <img class="play" alt="Edited for MTV - World Stage Depeche Mode" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '25201650')"
                        ng-class="{full: showFullComments['25201650']}">
                        Edited for MTV - World Stage Depeche Mode
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="tzq9RZifmiU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/tzq9RZifmiU/0.jpg)"></div>
                     <img class="play" alt="TV commercial for the FIAT 500 in Colombia.  I was senior editor on the project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'tzq9RZifmiU')"
                        ng-class="{full: showFullComments['tzq9RZifmiU']}">
                        TV commercial for the FIAT 500 in Colombia.  I was senior editor on the project.
                     </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/Riposte__xb9EFzIwROKMTeYUuxJjPA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/riposte">   
                  <h3>
                     Riposte
                     <span>video editor in </span>
                     <span class="location">Denver, CO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Great content can sell products and build brands. Riposte can make it easier, faster and more affordable than ever.

My name is Tristan Olson and my company—Riposte—is a video content creation company here in Denver. We’ve created a model that breaks down all of the barriers that might be keeping you from creating fresh, relevant, compelling content for web, social or broadcast media: Time, cost, and message.

We do creative concepting and scripting. We do shoots and edits. We do visual effects, animation, music and more. We even do some wild new things like VR, Augmented Reality and 360-degree video. 

Riposte is not an ad agency, but we think like one. We’re not just a production company, but can do everything they do. We’re something new.

And we might be perfect for you.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="92485643" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/472221844_1280.jpg)"></div>
                     <img class="play" alt="Kashi - &quot;Carpe Kashi&quot; - This was a fun broadcast television spot that we edited, color-graded, and did the animation / motion-graphics for. We also did the product renderings at the end which were fully CG." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '92485643')"
                        ng-class="{full: showFullComments['92485643']}">
                        Kashi - &quot;Carpe Kashi&quot; - This was a fun broadcast television spot that we edited, color-graded, and did the animation / motion-graphics for. We also did the product renderings at the end which were fully CG.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="139624745" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/535717642_1280.jpg)"></div>
                     <img class="play" alt="Ford - &quot;Done&quot; - Full edit and post-production including edit, color-grade, color-correction and motion graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '139624745')"
                        ng-class="{full: showFullComments['139624745']}">
                        Ford - &quot;Done&quot; - Full edit and post-production including edit, color-grade, color-correction and motion graphics.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="63753408" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/434165831_640.jpg)"></div>
                     <img class="play" alt="Joy and Energy.  Beautiful cinematography in this video, custom score and seamless editing that convey the simple moments of everyday life." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '63753408')"
                        ng-class="{full: showFullComments['63753408']}">
                        Joy and Energy.  Beautiful cinematography in this video, custom score and seamless editing that convey the simple moments of everyday life.
                     </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 video editors</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/DeclanDowling__BlOmaB_zTO-bdqddJ18snw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DeclanDowling">   
                  <h3>
                     Declan Dowling
                     <span>video editor in </span>
                     <span class="location">Ireland</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I direct, design and produce an array of content for international games and software publishers</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uLQvqAkeP1o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/uLQvqAkeP1o/maxresdefault.jpg)"></div>
                     <img class="play" alt="Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot over 2 days on minimal budget on an island off Rio Dignero." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uLQvqAkeP1o')"
                        ng-class="{full: showFullComments['uLQvqAkeP1o']}">
                        Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot over 2 days on minimal budget on an island off Rio Dignero.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="J91Ht_NV6aA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/J91Ht_NV6aA/maxresdefault.jpg)"></div>
                     <img class="play" alt="Product Promo - On this production I acted as Writer, Director &amp; Editor. This was shot over 3 days with a cast of over 20 children in Washington DC" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'J91Ht_NV6aA')"
                        ng-class="{full: showFullComments['J91Ht_NV6aA']}">
                        Product Promo - On this production I acted as Writer, Director &amp; Editor. This was shot over 3 days with a cast of over 20 children in Washington DC
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="wu_rj-6T7TY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/wu_rj-6T7TY/sddefault.jpg)"></div>
                     <img class="play" alt="Business Promo - I produced &amp; edited + added graphic overlays" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'wu_rj-6T7TY')"
                        ng-class="{full: showFullComments['wu_rj-6T7TY']}">
                        Business Promo - I produced &amp; edited + added graphic overlays
                     </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/SpectraFilms__YSY-rP3tSLKqvGapTYaG1A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SpectraFilms">   
                  <h3>
                     Spectra Films
                     <span>video editor in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Spectra Films is a creative film production company based in London. Fanatical about filmmaking, we add a touch of cinema and story to everything we do. Whether it’s a music video, long form corporate film, web ad, event or wedding; we impart your philosophy with style. 

We also offer an in-house composer and music studio to help enhance and brand you &amp; your product.

We provide all types of services including video production, video editing, music composition and more!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="173568812" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/580042301_1280.jpg)"></div>
                     <img class="play" alt="Samantha &amp; Mitch | Wedding Highlights Edit  (Nowsay)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '173568812')"
                        ng-class="{full: showFullComments['173568812']}">
                        Samantha &amp; Mitch | Wedding Highlights Edit  (Nowsay)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="164835371" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/568576956_1280.jpg)"></div>
                     <img class="play" alt="Jane &amp; Bart | Wedding Highlights Edit  (Wedding Film Studio)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '164835371')"
                        ng-class="{full: showFullComments['164835371']}">
                        Jane &amp; Bart | Wedding Highlights Edit  (Wedding Film Studio)
                     </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/Aris__4BnlyBrsSzWzqLQwJ-MFsw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GregBassenian">   
                  <h3>
                     Aris
                     <span>video editor in </span>
                     <span class="location">Santa Monica, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a full service creative video studio that specializes in creating great commercial, crowdfunding and corporate content!  

We have worked with all types of clients from Coca-Cola and Chevy to startups like Flo Technologies and Simple Practice.

We guarantee delivery of a high quality creative video asset that is on time, on brief, and on budget.

You can email us with any inquiries at contact@wearearis.com or please  visit our site at www.weareAris.com to learn more.  We look forward to working with you!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="163466760" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/566845219_1280.jpg)"></div>
                     <img class="play" alt="A :60 second digital spot we created for FabFitFun!  Edited by Greg Bassenian" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '163466760')"
                        ng-class="{full: showFullComments['163466760']}">
                        A :60 second digital spot we created for FabFitFun!  Edited by Greg Bassenian
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174255553" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/581045419_1280.jpg)"></div>
                     <img class="play" alt="A :60  second spot we created for Chevrolet.  Edited by Greg Bassenian." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174255553')"
                        ng-class="{full: showFullComments['174255553']}">
                        A :60  second spot we created for Chevrolet.  Edited by Greg Bassenian.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented video editors 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/Josh_Eisenfeld__JzOCNZ2kSrGIJowCKNCgOg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/josheisenfeld">   
                  <h3>
                     4TWELVE Pictures
                     <span>video editor in </span>
                     <span class="location">Pittsburgh, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I like to edit videos, but I love to make films.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120706452" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508693825_640.jpg)"></div>
                     <img class="play" alt="Our companies Demo-Reel. Director, cinematographer, motion graphics, editor, visual FX" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120706452')"
                        ng-class="{full: showFullComments['120706452']}">
                        Our companies Demo-Reel. Director, cinematographer, motion graphics, editor, visual FX
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116981650" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509026474_640.jpg)"></div>
                     <img class="play" alt="Commercial for Walbum, a picture sharing phone app. Roles: Director, Cinematographer, Editor, Color Grading" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116981650')"
                        ng-class="{full: showFullComments['116981650']}">
                        Commercial for Walbum, a picture sharing phone app. Roles: Director, Cinematographer, Editor, Color Grading
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vpVwD7VydeE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/vpVwD7VydeE/0.jpg)"></div>
                     <img class="play" alt="Music/Lyric video for singer/songwriter Dylan Reynolds, broadcasted on VEVO.  Produced, directed, filmed, edited and animated." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vpVwD7VydeE')"
                        ng-class="{full: showFullComments['vpVwD7VydeE']}">
                        Music/Lyric video for singer/songwriter Dylan Reynolds, broadcasted on VEVO.  Produced, directed, filmed, edited and animated.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/TheHardWay__VxaCAOsaR1qqMyuIX1MeSw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheHardWay">   
                  <h3>
                     The Hard Way
                     <span>video editor in </span>
                     <span class="location">San Jose, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">At The Hard Way, we create artful, cinematic video content. Your brand is much more than a logo, and for that reason, we feel it is our duty to create videos with more than just a sales pitch. Our purpose is to combine our clients’ sincere human message, with stunning cinematography, thoughtful editing, and solid design - resulting in compelling content. We don&#39;t aim to just to place your message in the mind of the viewers, but to tie that message to their hearts. The goal of video content is to make people think. The goal of The Hard Way is to make people feel as well. 

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

The Hard Way is led by producer, Logan Parks, and supported by a network of select freelancers that are brought in when appropriate. Logan started as a camera operator/editor in Southern California, and moved to San Jose - where he has been producing cinematic video content for businesses since 2009. His obsession with the quality of his work is arguably unhealthy. He sometimes writes about himself in the third person.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="160858389" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/564931524_1280.jpg)"></div>
                     <img class="play" alt="Ammunition Group is a highly acclaimed San Francisco based design studio. Through the years I have produced several videos that discuss the ideas behind their designs. For each round of videos, I would set up a mobile studio for product shots at their location, and then conduct interviews with designers. This is one example of how the films turned out. I filmed, edited, color graded and created motion graphics for this video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '160858389')"
                        ng-class="{full: showFullComments['160858389']}">
                        Ammunition Group is a highly acclaimed San Francisco based design studio. Through the years I have produced several videos that discuss the ideas behind their designs. For each round of videos, I would set up a mobile studio for product shots at their location, and then conduct interviews with designers. This is one example of how the films turned out. I filmed, edited, color graded and created motion graphics for this video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="161277595" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/563759801_1280.jpg)"></div>
                     <img class="play" alt="In preparation for The NAMM Show 2016, Markus, inventor of The Peacekeeper wanted to release a video that spoke directly to guitar manufacturers. This video explains exactly how The Peacekeeper Quick Change Effects System works, why it will appeal to guitar players and welcomes guitar manufacturers to contact Markus about licensing the use of his product in their own guitars. I wrote, filmed, edited and color graded this project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '161277595')"
                        ng-class="{full: showFullComments['161277595']}">
                        In preparation for The NAMM Show 2016, Markus, inventor of The Peacekeeper wanted to release a video that spoke directly to guitar manufacturers. This video explains exactly how The Peacekeeper Quick Change Effects System works, why it will appeal to guitar players and welcomes guitar manufacturers to contact Markus about licensing the use of his product in their own guitars. I wrote, filmed, edited and color graded this project.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="160848668" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/562938671_1280.jpg)"></div>
                     <img class="play" alt="Sound Management (known for producing Smashmouth, T.a.t.u., and others) asked me to produce a music video for Savvy and Mandy&#39;s new single, Comin&#39; Back as a Cowboy. They had a concept in mind and I adapted it for film.  I produced, directed, filmed, edited and colored this project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '160848668')"
                        ng-class="{full: showFullComments['160848668']}">
                        Sound Management (known for producing Smashmouth, T.a.t.u., and others) asked me to produce a music video for Savvy and Mandy&#39;s new single, Comin&#39; Back as a Cowboy. They had a concept in mind and I adapted it for film.  I produced, directed, filmed, edited and colored this project.
                     </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/AnaLorenz__2n9oIPdZRKuW9Ew_wYYeKQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AnaLorenz">   
                  <h3>
                     Ana Lorenz
                     <span>video editor in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a Spanish filmmaker based in Los Angeles, California. I love filming and editing. Very experienced in commercials, corporate videos, music videos, short films, fashion.  I have won more than 40 awards for my short films.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="mgMspqzwIsU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/mgMspqzwIsU/hqdefault.jpg)"></div>
                     <img class="play" alt="Official music video for The Pinker Tones. Directed and edited by Ana Lorenz and Celia Galan." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'mgMspqzwIsU')"
                        ng-class="{full: showFullComments['mgMspqzwIsU']}">
                        Official music video for The Pinker Tones. Directed and edited by Ana Lorenz and Celia Galan.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="29640452" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/198706438_1280.jpg)"></div>
                     <img class="play" alt="Official music video for the song &#39;Lovers&#39; by Ambros Chapel.  Directed and edited by Ana Lorenz and Ricardo Sanchez-Saez." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '29640452')"
                        ng-class="{full: showFullComments['29640452']}">
                        Official music video for the song &#39;Lovers&#39; by Ambros Chapel.  Directed and edited by Ana Lorenz and Ricardo Sanchez-Saez.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vLG1i15rurc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/vLG1i15rurc/maxresdefault.jpg)"></div>
                     <img class="play" alt="Edited by Ana Lorenz for a Bridgestone campaign." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vLG1i15rurc')"
                        ng-class="{full: showFullComments['vLG1i15rurc']}">
                        Edited by Ana Lorenz for a Bridgestone campaign.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best video editor for your project</span>
               <a href="/start"><div class="button">Connect with video editors</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/MoleCollective__nOJCYUC7SQ6AGiFbdRetaQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MoleCollective">   
                  <h3>
                     Mole Collective
                     <span>video editor in </span>
                     <span class="location">Roma, Italia</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Mole is a multidisciplinary collective of animators and designers that provide visual content for customers of all sizes. We specialize in 2D or 3D animated videos, branding, illustrations and motion graphics.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="205362985" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/620110033_1280.jpg)"></div>
                     <img class="play" alt="The 11th edition of the Festa del Cinema Di Roma celebrates Gene Kelly’s lightness, strength and imagination as director, producer and actor. Starting from a detail, the camera gently moves to reveal the picture of Debbie Reynolds dancing with Gene Kelly in Singin’ in the Rain. In this promotional video we wanted to evoke a refined and elegant atmosphere through a combination of snippets, light and music." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '205362985')"
                        ng-class="{full: showFullComments['205362985']}">
                        The 11th edition of the Festa del Cinema Di Roma celebrates Gene Kelly’s lightness, strength and imagination as director, producer and actor. Starting from a detail, the camera gently moves to reveal the picture of Debbie Reynolds dancing with Gene Kelly in Singin’ in the Rain. In this promotional video we wanted to evoke a refined and elegant atmosphere through a combination of snippets, light and music.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="60874530" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/422770545_1280.jpg)"></div>
                     <img class="play" alt="An animation based on the suggestive illustration by Antonello Silverini for the 2012 edition of the International Rome FIlm Festival." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '60874530')"
                        ng-class="{full: showFullComments['60874530']}">
                        An animation based on the suggestive illustration by Antonello Silverini for the 2012 edition of the International Rome FIlm Festival.
                     </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/Apptamin__uA6ycUIgSxmv2fcvtlMCJA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/apptamin">   
                  <h3>
                     Apptamin
                     <span>video editor in </span>
                     <span class="location">Montpellier, France</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We (Apptamin) have extensive experience in creating both animation (2D-3D) and live-action video, (almost) exclusively for mobile apps &amp; games, plus we know how to use them more efficiently to drive both conversions and just general excitement for your app/game/product or service.

We can provide you with a free script after our first call or talk on the project, great communication throughout and lots of experience that we will bring to your video&#39;s creation process.

Even if you just want some free advice on app video marketing, don&#39;t hesitate to contact us or visit our blog for some useful insights.

Talk soon!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111878790" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497593070_640.jpg)"></div>
                     <img class="play" alt="App preview that we directed, edited and animated for the app Tango.  (app preview example with animations and motion graphics)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111878790')"
                        ng-class="{full: showFullComments['111878790']}">
                        App preview that we directed, edited and animated for the app Tango.  (app preview example with animations and motion graphics)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116749686" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/503206600_640.jpg)"></div>
                     <img class="play" alt="Retrica - Alternative version.  Filmed and edited in beautiful Paris France" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116749686')"
                        ng-class="{full: showFullComments['116749686']}">
                        Retrica - Alternative version.  Filmed and edited in beautiful Paris France
                     </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>
