<!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>Top 20 Motion Graphics Designers | Videopixie</title>
   <meta name="description" content="A selection of the best Motion Graphics Designers.  Includes mograph freelancers as well as end-to-end illustration and animation studios.  Covering a wide range of budgets.">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Top 20 Motion Graphics Designers</h1>
      <h2>Videopixie helps you hire the best Motion Graphics Designers</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="/video-animators">Best Animators</a>
      
      <a class="related" href="/3D-animators">Top 3D Animators</a>
      
      <a class="related" href="/best-logo-animators">Best Logo Animators</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/Transvideo Studios
                     <span>Motion Graphics Designer 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="100449517" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/482017418_640.jpg)"></div>
                     <img class="play" alt="Introducing Dropcam Custom Activity Zones, includes overlayed motion graphics to highlight features and functionalities." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '100449517')"
                        ng-class="{full: showFullComments['100449517']}">
                        Introducing Dropcam Custom Activity Zones, includes overlayed motion graphics to highlight features and functionalities.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="57413207" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/397979542_640.jpg)"></div>
                     <img class="play" alt="Digital Science Animated Overview, using motion graphics and kinetic typograhy" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '57413207')"
                        ng-class="{full: showFullComments['57413207']}">
                        Digital Science Animated Overview, using motion graphics and kinetic typograhy
                     </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>Motion Graphics Designer 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="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="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Kasra_Design__sdgBAw5-S_uEDh1rA5CWqw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kasradesign">   
                  <h3>
                     Kasra Design
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Malaysia</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Kasra Design is a boutique animation company specializing in the production of explainer videos and motion graphics for TV commercials, websites, corporate and training purposes.

At Kasra Design, we produce effective explainer videos that educate and entertain viewers. Through creative interpretation of a product or service, we help organizations and businesses simplify complex ideas and make the ideas more interesting by injecting a sense of humor.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="iS7p70EmZ9M" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/iS7p70EmZ9M/0.jpg)"></div>
                     <img class="play" alt="This is a compilation of the projects that we&#39;ve done in the past year.    It includes explainer videos, tv commercials, corporate videos, motion graphics, 3d and 2d animations." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'iS7p70EmZ9M')"
                        ng-class="{full: showFullComments['iS7p70EmZ9M']}">
                        This is a compilation of the projects that we&#39;ve done in the past year.    It includes explainer videos, tv commercials, corporate videos, motion graphics, 3d and 2d animations.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="jEF9a7WfOgY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/jEF9a7WfOgY/0.jpg)"></div>
                     <img class="play" alt="Managing a distributed workforce is no easy task. Especially when you can’t see what they’re doing. Add miscommunication, scheduling nightmares, and poor reporting and it can cost you millions.  Gigwalk can make work better. More predictable. More efficient.  Animation &amp; Motion Graphics by Kasra Design (http://kasradesign.com)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'jEF9a7WfOgY')"
                        ng-class="{full: showFullComments['jEF9a7WfOgY']}">
                        Managing a distributed workforce is no easy task. Especially when you can’t see what they’re doing. Add miscommunication, scheduling nightmares, and poor reporting and it can cost you millions.  Gigwalk can make work better. More predictable. More efficient.  Animation &amp; Motion Graphics by Kasra Design (http://kasradesign.com)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119215932" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508287875_640.jpg)"></div>
                     <img class="play" alt="This is the second video we developed for Intsig’s app, CamCard, a card scanning app with over 50 million users around the world. Unlike the first video we produced for CamCard Business, our client wanted a live action video without voice-over.  We used a combination of stock footage, stock images and motion graphics to achieve the result the client was looking for. The video tells the story of how the characters use CamCard to collaborate in a project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119215932')"
                        ng-class="{full: showFullComments['119215932']}">
                        This is the second video we developed for Intsig’s app, CamCard, a card scanning app with over 50 million users around the world. Unlike the first video we produced for CamCard Business, our client wanted a live action video without voice-over.  We used a combination of stock footage, stock images and motion graphics to achieve the result the client was looking for. The video tells the story of how the characters use CamCard to collaborate in a project.
                     </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 Motion Graphics Designers</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/TheHardWay__VxaCAOsaR1qqMyuIX1MeSw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheHardWay">   
                  <h3>
                     The Hard Way
                     <span>Motion Graphics Designer 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="162455856" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/564915522_1280.jpg)"></div>
                     <img class="play" alt="The Trims asked me to film a performance music video to showcase the band&#39;s new lineup. Having worked with The Trims before, I knew they would want a heavily stylized video and proceeded to add several layers of filmic effects. I filmed edited, color graded, and created motion graphics for the video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162455856')"
                        ng-class="{full: showFullComments['162455856']}">
                        The Trims asked me to film a performance music video to showcase the band&#39;s new lineup. Having worked with The Trims before, I knew they would want a heavily stylized video and proceeded to add several layers of filmic effects. I filmed edited, color graded, and created motion graphics for the video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="161276911" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/563776177_1280.jpg)"></div>
                     <img class="play" alt="I created a series of videos for 360 payments. Each video spoke directly to a different target audience that they wanted to reach. Software aims at software companies that could benefit from using 360&#39;s services, and explains how what they offer beats what is offered from their competition. 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, '161276911')"
                        ng-class="{full: showFullComments['161276911']}">
                        I created a series of videos for 360 payments. Each video spoke directly to a different target audience that they wanted to reach. Software aims at software companies that could benefit from using 360&#39;s services, and explains how what they offer beats what is offered from their competition. I filmed, edited, color graded and created motion graphics for this video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Riposte__xb9EFzIwROKMTeYUuxJjPA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/riposte">   
                  <h3>
                     Riposte
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Denver, CO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Riposte is a content production company specializing in physical production, creative editorial, and visual effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101320122" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/483063832_640.jpg)"></div>
                     <img class="play" alt="Wyoming Lotto - &quot;Just Maybe&quot; (motion graphics with original graphics, animation)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101320122')"
                        ng-class="{full: showFullComments['101320122']}">
                        Wyoming Lotto - &quot;Just Maybe&quot; (motion graphics with original graphics, animation)
                     </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>Motion Graphics Designer in </span>
                     <span class="location">Montpellier, France</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We do cool promo videos and game trailers for apps</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119839656" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507714102_640.jpg)"></div>
                     <img class="play" alt="Clash Of Mafias (Game trailer with animations and motion graphics)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119839656')"
                        ng-class="{full: showFullComments['119839656']}">
                        Clash Of Mafias (Game trailer with animations and motion graphics)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118915183" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/506076763_640.jpg)"></div>
                     <img class="play" alt="ToyBlast 30s (Game trailer with animations, motion graphics and kinetic typography)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118915183')"
                        ng-class="{full: showFullComments['118915183']}">
                        ToyBlast 30s (Game trailer with animations, motion graphics and kinetic typography)
                     </p>
                  </div>
                  
                  
               
                  <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>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Motion Graphics Designers 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/Sohail_Kayani__dPVQn8IKQRCQEdF7KOr9mw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/sohailkayani">   
                  <h3>
                     Sohail Kayani
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Manila, Metro Manila, Philippines</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video production is my passion and i started my particle life in the field as  Animation designer . I have been working for over 5 years now and i can say with confidence that you will be in safe hands if you work with me . I am talented and creative but most of all i am reliable with great track record . </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="177628075" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/585093964_1280.jpg)"></div>
                     <img class="play" alt="Motion graphics video for one place software company" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '177628075')"
                        ng-class="{full: showFullComments['177628075']}">
                        Motion graphics video for one place software company
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="125660575" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/517381718_640.jpg)"></div>
                     <img class="play" alt="POS client needed an animator team that do brilliant job in explainer video production, we work very hard in creating concept and rigging the characters for animation. Being an animation designer , I came up with the concept in 2 D animation explainer video reel that really show the power of marketing videos , stop motion, motion graphics and promotional video ." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '125660575')"
                        ng-class="{full: showFullComments['125660575']}">
                        POS client needed an animator team that do brilliant job in explainer video production, we work very hard in creating concept and rigging the characters for animation. Being an animation designer , I came up with the concept in 2 D animation explainer video reel that really show the power of marketing videos , stop motion, motion graphics and promotional video .
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Mographers__o8bzJKmVSouYTbwEon_QTw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Mographers">   
                  <h3>
                     Mographers
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Indore, Madhya Pradesh 452001, India</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Mographers is a enthusiastic animation company specializing in the production of explainer videos and motion graphics for TV commercials, websites, corporate and training purposes. At Mographers, we produce effective explainer videos that educate and entertain viewers. Through creative interpretation of a product or service, we help organizations and businesses simplify complex ideas and make the ideas more interesting by injecting a sense of humor.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="EiYoFkX7AWA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/EiYoFkX7AWA/maxresdefault.jpg)"></div>
                     <img class="play" alt="Intro Motion Graphics - Mographers" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'EiYoFkX7AWA')"
                        ng-class="{full: showFullComments['EiYoFkX7AWA']}">
                        Intro Motion Graphics - Mographers
                     </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/Achilles_Entertainment__e2Qm9V9mSfirqrZriayvzg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/achillesentertainment">   
                  <h3>
                     Achilles Entertainment
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Whitley City, KY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are Achilles Entertainment. 

 We are a full service video production company. Whether you have a product to market, an image to sell, or a story longing to be told, we’ll extract that idea from your imagination and make it a reality. 

 Achilles Entertainment was founded in 2005, working primarily on wildlife documentaries with documentarian Robert Hancock. Our macro-cinematography was recognized by several festivals including the International Wildlife Film Festival. Lately, we have developed lasting relationships with several political consultants and television stations in the Lexington, Kentucky area. We have a handful of passionate, talented artists on staff as well a diverse group of freelancers who can contribute when the need arises. We can take on a project from start to finish, or supplement another vendors&#39; offerings with our specialty services. Just need a 3d animation for a project another vendor is producing? We&#39;re here to help. 

 Our list of services include typical video production and motion graphics as well as specialty services such as 3d animation, time-lapse photography, and aerial videography. Our 3d animation offerings range from advanced motion graphics to Pixar-style character animation and visual effects. In addition to standard, &quot;short-term&quot; time-lapse photography, we have the ability to record the passage of time over weeks and years. We could record the rise of fall of a body of water over the course of a season, the construction of a new building, or chart the growth of an area throughout the year. Finally, we offer two tiers of aerial videography so that we can deliver outstanding production value at almost any budget. Tier one offers the ability for us to record with smaller payload cameras while tier two allows us to utilize cinema quality rigs. 

 To find out more visit achillesentertainment.com!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="NOqdPgWK3Dc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/NOqdPgWK3Dc/0.jpg)"></div>
                     <img class="play" alt="2014 Motion Graphics Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'NOqdPgWK3Dc')"
                        ng-class="{full: showFullComments['NOqdPgWK3Dc']}">
                        2014 Motion Graphics Reel
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Motion Graphics Designer for your project</span>
               <a href="/start"><div class="button">Connect with Motion Graphics Designers</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/Flexshoot__5u6PI0fPRrORpRC_X_xytw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JamesLeGrand">   
                  <h3>
                     Flexshoot
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Atlanta, GA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">With Flexshoot you get effective video produced by talented, local creators. Simply book your projects online and get paired with a dedicated Project Manager and a creator in your city to produce fresh, new video to grow your business.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="151149588" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/550816872_1280.jpg)"></div>
                     <img class="play" alt="Animated explainer reel featuring previous motion graphics work on a variety of commercials, videos and explainers." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '151149588')"
                        ng-class="{full: showFullComments['151149588']}">
                        Animated explainer reel featuring previous motion graphics work on a variety of commercials, videos and explainers.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="RH1tPH-KTVQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/RH1tPH-KTVQ/0.jpg)"></div>
                     <img class="play" alt="We wrote the narrative, produced, directed, shot, video edited, motion graphics and screen replacements. We also created assets for the app in a UX design software. This helped during an upgrade in the UI the same time as video post production. Premiere Pro, Speedgrade, After Effects, Illustrator, Sketch 3. This video currently has 323,000 views. Yay!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'RH1tPH-KTVQ')"
                        ng-class="{full: showFullComments['RH1tPH-KTVQ']}">
                        We wrote the narrative, produced, directed, shot, video edited, motion graphics and screen replacements. We also created assets for the app in a UX design software. This helped during an upgrade in the UI the same time as video post production. Premiere Pro, Speedgrade, After Effects, Illustrator, Sketch 3. This video currently has 323,000 views. Yay!
                     </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/RGL__v_nOMmJaTRuw0bBIzKY7Mw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RGL">   
                  <h3>
                     RGL
                     <span>Motion Graphics Designer in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Animation / Motion Graphics / Narrative Design</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="131226517" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/523808170_640.jpg)"></div>
                     <img class="play" alt="Examples of our motion graphics &amp; 2D animation work on the &quot;Bartkira&quot; project (http://bartkiraroadshow.tumblr.com)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '131226517')"
                        ng-class="{full: showFullComments['131226517']}">
                        Examples of our motion graphics &amp; 2D animation work on the &quot;Bartkira&quot; project (http://bartkiraroadshow.tumblr.com)
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/fatdroid__2iWyV_BjQt2Ilcn3gge-Ng.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/fatdroid">   
                  <h3>
                     Fatdroid
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Robust, yet streamlined advertising.  Take our namesake, fatdroid:  we&#39;re efficient and technically excellent (like a little robot), but, with an excess of creativity (the &quot;fat&quot; part).

Our team met YEARS ago (don&#39;t want to date ourselves) while working at a gaming company, but we&#39;ve expanded into animation, live action products, motion comics, and event coverage.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117565798" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504862640_640.jpg)"></div>
                     <img class="play" alt="Fatdroid 2015 Reel (Animations, motion graphics, game trailers)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117565798')"
                        ng-class="{full: showFullComments['117565798']}">
                        Fatdroid 2015 Reel (Animations, motion graphics, game trailers)
                     </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 Motion Graphics Designers</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/MichaelSaz__lcH1yyTERbienDNZw3le-A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/michaelsaz">   
                  <h3>
                     Michael Saz
                     <span>Motion Graphics Designer in </span>
                     <span class="location">New Paltz, NY 12561, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m an accomplished and award-winning motion graphics designer and animator, with years of experience working for Commercial, Theatrical, Broadcast, Industrial, and Educational clients.
My toolset is After Effects, C4D, Flame, The Adobe Suite. I&#39;m GREAT at working remotely, and I always try to bring more to the party than expected!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="10764360" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/57321730_640.jpg)"></div>
                     <img class="play" alt="Mike Saz  general reel - Tags: motion graphics" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '10764360')"
                        ng-class="{full: showFullComments['10764360']}">
                        Mike Saz  general reel - Tags: motion graphics
                     </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/ParasolMedia__k_3eEvyYRZCG--DqO36MXA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ParasolMedia">   
                  <h3>
                     Parasol Media
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Columbus, OH, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We want to transform how you perceive video production, on project at a time.

We offer cloud-based video production that meets your budget and that is accessible anywhere in the world.  We are committed to investing time in you, guiding through the process so that you are informed for the future.

Our belief is that an enlightened client is a worry-free client so we are constantly innovating our techniques to make video production more accessible for everyone.

We think you&#39;ll agree when our clients say &quot;Parasol Media is the best kept secret to our marketing success.&quot;</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="154237496" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/554902567_1280.jpg)"></div>
                     <img class="play" alt="Here is a collection of motion graphics we have done mainly based around logo animation." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '154237496')"
                        ng-class="{full: showFullComments['154237496']}">
                        Here is a collection of motion graphics we have done mainly based around logo animation.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/0019-kit-larson.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kitlarson">   
                  <h3>
                     Kit Larson
                     <span>Motion Graphics Designer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Given the title of &quot;MacGyver,&quot;, Kit has been one of Videopixie&#39;s earliest and most reliable curators. A film student with a focus in communications, Kit is very good at gaining a clear understanding from his clients, and is very efficient in meeting deadlines to a T. 

At only age 22, Kit has extensive training and experience with editing software Final Cut Pro 7 and Adobe After Effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JBYhxsPJONo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/JBYhxsPJONo/0.jpg)"></div>
                     <img class="play" alt="Our Occupation.  Tags:  Documentary, Motion Graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JBYhxsPJONo')"
                        ng-class="{full: showFullComments['JBYhxsPJONo']}">
                        Our Occupation.  Tags:  Documentary, Motion Graphics.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Motion Graphics Designers 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/0068-ernesto-mantaras.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ernestomantaras">   
                  <h3>
                     Ernesto Mántaras
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Santa Fe, Santa Fe, Argentina</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m an filmmaker from Argentina with a lot of background in editing narrative fiction and documentaries, animation, editing and image post-processing. I&#39;d like to be a part of your editors staff to complement my work in terms of experience.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="70074349" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/443141148_640.jpg)"></div>
                     <img class="play" alt="Tordo Studio - Editing and Motion Graphics Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '70074349')"
                        ng-class="{full: showFullComments['70074349']}">
                        Tordo Studio - Editing and Motion Graphics Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="hXtPPrd7ie8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/hXtPPrd7ie8/0.jpg)"></div>
                     <img class="play" alt="Tordo Studio - Motion Graphics Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'hXtPPrd7ie8')"
                        ng-class="{full: showFullComments['hXtPPrd7ie8']}">
                        Tordo Studio - Motion Graphics Reel
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/StartupVideoLab__UiXjEhFpQjmDTzqtThUQFw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/FerencMaki">   
                  <h3>
                     StartupVideoLab
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Kolozsvár, Románia</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Animation, video, motion graphics.
http://foxintheboxstudio.com/
http://startupvideolab.com/</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="152692495" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/552758357_1280.jpg)"></div>
                     <img class="play" alt="Endava animations, motion graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '152692495')"
                        ng-class="{full: showFullComments['152692495']}">
                        Endava animations, motion graphics.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="106262699" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/491845587_640.jpg)"></div>
                     <img class="play" alt="Motion graphics for Featherinvest - a Cairo, Egypt based private equity company." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '106262699')"
                        ng-class="{full: showFullComments['106262699']}">
                        Motion graphics for Featherinvest - a Cairo, Egypt based private equity company.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="97703739" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/478170029_640.jpg)"></div>
                     <img class="play" alt="Chuppa mobile marketplace for apps and components - animation, motion graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '97703739')"
                        ng-class="{full: showFullComments['97703739']}">
                        Chuppa mobile marketplace for apps and components - animation, motion graphics.
                     </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/ArrowfootProductions__eIUVId7uTkKVswa_3Hh5Cw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ArrowfootProductions">   
                  <h3>
                     Arrowfoot Productions
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Saint John, NB, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Arrowfoot Productions is located in Saint John, New Brunswick, Canada, but we work for clients anywhere.  

We operate 6 high powered video editing suites, which allows us to work on multiple projects simultaneously. We also operate a small recording studio for professional voice overs. 2 Graphic Designers provide graphics for websites, large scale print projects and video effects. We have 3 professional video shooters on staff utilizing Black Magic Cinema and Sony PXW-X70 cameras.

Creativity + Process + Client Input = Success. That is what we believe and we go the extra mile for our clients on a daily basis. 

We guarantee our work. We aren&#39;t done until the client is happy. We deal with small business owners and national brands on a daily basis. We thrive on delivering professional projects ahead of given deadlines. We have the experience and expertise to get the job done right, cost-effective and efficiently the first time. 

When you hire us, you don&#39;t only get the expertise and experience of one person, you get the whole team to pitch in on your project. This means that your project gets more than one set of eyes to make sure it&#39;s of the best quality and we are known for our fast turn around times.

We like to be busy. We operate in a small market and have always done well outside of our area. We are here to expand our business and to work on some new, interesting projects.

We use these tools on a daily basis: Adobe Premiere CC, Adobe After Effects CC, Adobe Illustrator CC, Adobe InDesign CC, Adobe PhotoShop CC, Pro Tools.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="t6UQKVBYIqg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/t6UQKVBYIqg/maxresdefault.jpg)"></div>
                     <img class="play" alt="Whiteboard Animation and Motion Graphics Explained." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 't6UQKVBYIqg')"
                        ng-class="{full: showFullComments['t6UQKVBYIqg']}">
                        Whiteboard Animation and Motion Graphics Explained.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="VJZJHhCOjvk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/VJZJHhCOjvk/maxresdefault.jpg)"></div>
                     <img class="play" alt="Motion Graphics Examples" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'VJZJHhCOjvk')"
                        ng-class="{full: showFullComments['VJZJHhCOjvk']}">
                        Motion Graphics Examples
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Motion Graphics Designer for your project</span>
               <a href="/start"><div class="button">Connect with Motion Graphics Designers</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/Brand_Fish__-o2_WQwERhahG4m2UBYxIQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/brandfish">   
                  <h3>
                     Brand Fish
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Karachi, Pakistan</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">we offer professional explainer videos services at competitive rates. We have a 5+ years experience in creating amazing artwork for numerous clients in different business areas. Our team of animators enable you to get the best possible designs and marketing tools for your business purposes.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="114660541" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/500450564_640.jpg)"></div>
                     <img class="play" alt="Pideo - Motion Graphics Animated Video Done By BrandFish" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '114660541')"
                        ng-class="{full: showFullComments['114660541']}">
                        Pideo - Motion Graphics Animated Video Done By BrandFish
                     </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/HoverBoard__HKfD3nr3SzOHxMolvZDGXw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HoverBoard">   
                  <h3>
                     HoverBoard
                     <span>Motion Graphics Designer in </span>
                     <span class="location">Ecuador</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">HoverBoard is a high-end production studio. We work developing digital productions such as 2D and 3D animations, illustrations, storyboards, motion graphics and professional websites. We have over 11 years of experience developing projects in the areas of advertising, television, entertainment and marketing for clients worldwide.We are pleased to have you as a client and boost your new projects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130178151" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/543596294_1280.jpg)"></div>
                     <img class="play" alt="Our Services Videos &amp; Motion Graphics 2D Videos 3D Videos Corporate Videos Motion Graphics Editing Logo Animations Animatics &amp; Storyboards 3D Cinematics 2D Illustrated Animatics Thumbnails 2D Storyboards 3D Storyboards Color Boards Concept Boards / Style Frames Illustrations 2D Illustration." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130178151')"
                        ng-class="{full: showFullComments['130178151']}">
                        Our Services Videos &amp; Motion Graphics 2D Videos 3D Videos Corporate Videos Motion Graphics Editing Logo Animations Animatics &amp; Storyboards 3D Cinematics 2D Illustrated Animatics Thumbnails 2D Storyboards 3D Storyboards Color Boards Concept Boards / Style Frames Illustrations 2D Illustration.
                     </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>
