<!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>Video Animators For Hire | Videopixie</title>
   <meta name="description" content="Here is a selection of the best Video Animators on Videopixie.  Covering different styles, price points and skill sets: 2D animators, 3D animators, character animation, illustrators, motion graphics designers...  Videopixie is a community of thousands for video creators.  And we help you hire the best video professionals for your budget 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/animator.jpg');"
      >
   
      <h1>Best Video Animators For Hire</h1>
      <h2>Videopixie helps you hire the best video animators.</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="/best-motion-graphics-designers">Best Motion Graphics Designers</a>
      
      <a class="related" href="/3D-animators">Best 3D Animators</a>
      
      <a class="related" href="/best-logo-animators">Best Logo Animators</a>
      
      <a class="related" href="/best-new-york-animation-and-motion-graphics-artists">Best New York Animators and Motion Designers</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>video animator 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="157623860" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/558942377_1280.jpg)"></div>
                     <img class="play" alt="Transvideo Studios 2016 Demo Reel.  Live action, animation, dreams realized." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '157623860')"
                        ng-class="{full: showFullComments['157623860']}">
                        Transvideo Studios 2016 Demo Reel.  Live action, animation, dreams realized.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108483308" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492187366_640.jpg)"></div>
                     <img class="play" alt="Animated explainer for New Relic Synthetic Performance Monitoring" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108483308')"
                        ng-class="{full: showFullComments['108483308']}">
                        Animated explainer for New Relic Synthetic Performance Monitoring
                     </p>
                  </div>
                  
                  
               
                  <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>
               
            </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/Sea_Beast_Media__ptcNb8LXQlq_05FDT0Rsvg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/seabeastmedia">   
                  <h3>
                     Sea Beast Media
                     <span>video animator in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Intense Video Production &amp; Animation Services near London.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="139488362" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/535341238_1280.jpg)"></div>
                     <img class="play" alt="Logo Animation Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '139488362')"
                        ng-class="{full: showFullComments['139488362']}">
                        Logo Animation Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="123335012" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/512629397_640.jpg)"></div>
                     <img class="play" alt="Animation Service Example | Sea Beast Media  A cartoon explainer video in a flat, fun, bouncy style created from scratch for a client. Includes characters, voice over and lots of bells and whistles!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '123335012')"
                        ng-class="{full: showFullComments['123335012']}">
                        Animation Service Example | Sea Beast Media  A cartoon explainer video in a flat, fun, bouncy style created from scratch for a client. Includes characters, voice over and lots of bells and whistles!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="123336069" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/512630589_640.jpg)"></div>
                     <img class="play" alt="Animated Video Example | Sea Beast Media  A gambling advert spot featuring high end 3D graphics and lots of flashy effects. In keeping with existing branding." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '123336069')"
                        ng-class="{full: showFullComments['123336069']}">
                        Animated Video Example | Sea Beast Media  A gambling advert spot featuring high end 3D graphics and lots of flashy effects. In keeping with existing branding.
                     </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 animator 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 class="asset-wrapper" 
                     vp-asset="108520761" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492229028_640.jpg)"></div>
                     <img class="play" alt="Animated explainer for Adobe Echosign concept.  Each slate morphs into the next one to create fluidity." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108520761')"
                        ng-class="{full: showFullComments['108520761']}">
                        Animated explainer for Adobe Echosign concept.  Each slate morphs into the next one to create fluidity.
                     </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 animators</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/Loqey__ldpon8JzSXaCHM4zEvRrEw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/loqey">   
                  <h3>
                     Loqey
                     <span>video animator in </span>
                     <span class="location">Kansas City, MO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are incredibly good at what we do.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="147816233" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/546585770_640.jpg)"></div>
                     <img class="play" alt="Marriott International - Stop Motion" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '147816233')"
                        ng-class="{full: showFullComments['147816233']}">
                        Marriott International - Stop Motion
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="157954900" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/559333687_1280.jpg)"></div>
                     <img class="play" alt="3D photorealistic animation featuring custom liquid simulations of molten gold." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '157954900')"
                        ng-class="{full: showFullComments['157954900']}">
                        3D photorealistic animation featuring custom liquid simulations of molten gold.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uFl13R-cfaI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/uFl13R-cfaI/0.jpg)"></div>
                     <img class="play" alt="3D Animation: Ford Groove" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uFl13R-cfaI')"
                        ng-class="{full: showFullComments['uFl13R-cfaI']}">
                        3D Animation: Ford Groove
                     </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/Planet_Nutshell__TBKPEv7yRkq-ZtuJEwXzrA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/planetnutshell">   
                  <h3>
                     Planet Nutshell
                     <span>video animator in </span>
                     <span class="location">Boston, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Planet Nutshell is a small motion-graphics outfit that produces animated educational and explanatory videos for public institutions and commercial clients.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="71505325" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/523742181_640.jpg)"></div>
                     <img class="play" alt="2015 Demo Reel - Animations" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '71505325')"
                        ng-class="{full: showFullComments['71505325']}">
                        2015 Demo Reel - Animations
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129256139" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521117789_640.jpg)"></div>
                     <img class="play" alt="Foundation Medicine: A Total Solution for Patient Care - Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129256139')"
                        ng-class="{full: showFullComments['129256139']}">
                        Foundation Medicine: A Total Solution for Patient Care - Animation
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128873170" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/520170674_640.jpg)"></div>
                     <img class="play" alt="Environmental Voter Project Crowdfunding Video - Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128873170')"
                        ng-class="{full: showFullComments['128873170']}">
                        Environmental Voter Project Crowdfunding Video - 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/Kasra_Design__sdgBAw5-S_uEDh1rA5CWqw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kasradesign">   
                  <h3>
                     Kasra Design
                     <span>video animator 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="149846559" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549168391_1280.jpg)"></div>
                     <img class="play" alt="STANLEY Engineered Fastening is a STANLEY Black &amp; Decker Inc. Company, with presence in a number of locations worldwide. For more than 40 years, Stanley Engineered Fastening has been revolutionizing fastening and assembly technologies for a variety of industries.  Title : Being First to Market Matters Client : Stanley Black &amp; Decker, Inc. Format: HD 720p Concept, Design, Animation : KasraDesign.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149846559')"
                        ng-class="{full: showFullComments['149846559']}">
                        STANLEY Engineered Fastening is a STANLEY Black &amp; Decker Inc. Company, with presence in a number of locations worldwide. For more than 40 years, Stanley Engineered Fastening has been revolutionizing fastening and assembly technologies for a variety of industries.  Title : Being First to Market Matters Client : Stanley Black &amp; Decker, Inc. Format: HD 720p Concept, Design, Animation : KasraDesign.com
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="152013507" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/551898414_1280.jpg)"></div>
                     <img class="play" alt="We got the great opportunity to work with the good folks at Ogilvy West for the production of an explainer video to educate and entertain viewers on why they should choose softwood lumber as their home building materials and the relevant benefits.  Client : Wood Naturally Agency : Ogilvy West Script &amp; VO : Ogilvy West Illustrations, Storyboard, Sound Design &amp; Animation: Kasra Design" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '152013507')"
                        ng-class="{full: showFullComments['152013507']}">
                        We got the great opportunity to work with the good folks at Ogilvy West for the production of an explainer video to educate and entertain viewers on why they should choose softwood lumber as their home building materials and the relevant benefits.  Client : Wood Naturally Agency : Ogilvy West Script &amp; VO : Ogilvy West Illustrations, Storyboard, Sound Design &amp; Animation: Kasra Design
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="165774764" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/570272316_1280.jpg)"></div>
                     <img class="play" alt="By working with Cravo you can create optimum growing conditions year round to produce crops with larger size, with higher yields, longer shelf life, extend your harvest season or target a completely different harvest season. Concept, Illustration &amp; Animation by :  KasraDesign.com ExplainerVideoly.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '165774764')"
                        ng-class="{full: showFullComments['165774764']}">
                        By working with Cravo you can create optimum growing conditions year round to produce crops with larger size, with higher yields, longer shelf life, extend your harvest season or target a completely different harvest season. Concept, Illustration &amp; Animation by :  KasraDesign.com ExplainerVideoly.com
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented video animators 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/CharlesWood__1JDNByMRS9ykne16SW_6Qg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charleswood">   
                  <h3>
                     Charles Wood
                     <span>video animator in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Freelance commercial/video director. Experienced live action, motion graphics, 3D animation, and UI design. 

Clients include Twitter, Microsoft, HTC, Verizon, Carnegie Fabrics, Esquire and more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="87817367" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/466027941_640.jpg)"></div>
                     <img class="play" alt="I teamed up with Director Adam Patch who I had previously worked with on our Starbucks Tweet-A-Coffee campaign. We chose animation to pull the viewer away from the &quot;living room lifestyle&quot; motif that dominates marketing today. We created a &quot;fantastic-but-familiar&quot; rhythm in the piece that focused on the connection of Comcast and Twitter - and less on details (which carrier, what DVR, which programming, etc.) From that starting point I wrote the script and began styleframes and storyboards." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '87817367')"
                        ng-class="{full: showFullComments['87817367']}">
                        I teamed up with Director Adam Patch who I had previously worked with on our Starbucks Tweet-A-Coffee campaign. We chose animation to pull the viewer away from the &quot;living room lifestyle&quot; motif that dominates marketing today. We created a &quot;fantastic-but-familiar&quot; rhythm in the piece that focused on the connection of Comcast and Twitter - and less on details (which carrier, what DVR, which programming, etc.) From that starting point I wrote the script and began styleframes and storyboards.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="88370778" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/466801012_640.jpg)"></div>
                     <img class="play" alt="Nokia has the apps.  This spot was completed in a little less than 9 days from brief to delivery.   I was in charge of Research, Writing, Art Direction, Animation, Editing" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '88370778')"
                        ng-class="{full: showFullComments['88370778']}">
                        Nokia has the apps.  This spot was completed in a little less than 9 days from brief to delivery.   I was in charge of Research, Writing, Art Direction, Animation, Editing
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="78580943" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/454048970_640.jpg)"></div>
                     <img class="play" alt="Starbucks + Tweet-A-Coffee Partnership.  For the launch I worked directly with Twitter&#39;s Brand Strategy and Starbucks Creative Team to produce a launch spot for the partnership. I worked with Ben Hughes  and Adam Patch to write and direct the spot. The animated spot was so successful - Starbucks integrated it directly into their @replies and used the design language to influence their launch pages and iPhone 3.0 App launch." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '78580943')"
                        ng-class="{full: showFullComments['78580943']}">
                        Starbucks + Tweet-A-Coffee Partnership.  For the launch I worked directly with Twitter&#39;s Brand Strategy and Starbucks Creative Team to produce a launch spot for the partnership. I worked with Ben Hughes  and Adam Patch to write and direct the spot. The animated spot was so successful - Starbucks integrated it directly into their @replies and used the design language to influence their launch pages and iPhone 3.0 App launch.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/UnterfreiemHimmel">   
                  <h3>
                     Unter freiem Himmel
                     <span>video animator in </span>
                     <span class="location">Graz, Österreich</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We communicate an idea – be it a person, a product, a service or a vision – in an enthralling way by creating context, a captivating story and adding a pinch of humour through 2D- and 3D-animation.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="165507068" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/569387143_1280.jpg)"></div>
                     <img class="play" alt="Together with our good friend and photographer Marion Luttenberger we had the pleasure of working together with the NYC based design firm Sagmeister &amp; Walsh to realize several stop motion animations for the Frooti social media presence." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '165507068')"
                        ng-class="{full: showFullComments['165507068']}">
                        Together with our good friend and photographer Marion Luttenberger we had the pleasure of working together with the NYC based design firm Sagmeister &amp; Walsh to realize several stop motion animations for the Frooti social media presence.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="86589446" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/464329317_1280.jpg)"></div>
                     <img class="play" alt="With the Infomotion for the Enhanced Power Pilot Line, a transnational EU Project to establish Europe’s position in the worldwide semiconductor market, we had the task to illustrate this extensive subject via a visually compelling style, told in three different time periods." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '86589446')"
                        ng-class="{full: showFullComments['86589446']}">
                        With the Infomotion for the Enhanced Power Pilot Line, a transnational EU Project to establish Europe’s position in the worldwide semiconductor market, we had the task to illustrate this extensive subject via a visually compelling style, told in three different time periods.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111505195" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496144529_1280.jpg)"></div>
                     <img class="play" alt="The Austrian Federation of the Blind and Partially Sighted BSVÖ asked us to visualise their activities and structure through an entertaining animation (in German). During the conception of the film, we shared one common goal: To build a bridge between the attractive contents and the inclusion of the people affected. We implemented that by using just three colours, high contrast, forms and shapes which are easy to recognise, and a detailed sound design." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111505195')"
                        ng-class="{full: showFullComments['111505195']}">
                        The Austrian Federation of the Blind and Partially Sighted BSVÖ asked us to visualise their activities and structure through an entertaining animation (in German). During the conception of the film, we shared one common goal: To build a bridge between the attractive contents and the inclusion of the people affected. We implemented that by using just three colours, high contrast, forms and shapes which are easy to recognise, and a detailed sound design.
                     </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/HEROTEAM__nK5gZzrcQimZB2TrnIRl3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HEROTEAM">   
                  <h3>
                     HERO TEAM
                     <span>video animator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We can make it works!
www.heroteam.co</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="lNsN1WWpgW4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/lNsN1WWpgW4/maxresdefault.jpg)"></div>
                     <img class="play" alt="Enjoy our motion graphic and animation video reel :) www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'lNsN1WWpgW4')"
                        ng-class="{full: showFullComments['lNsN1WWpgW4']}">
                        Enjoy our motion graphic and animation video reel :) www.heroteam.co
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zo5BDeGtb9Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/zo5BDeGtb9Y/hqdefault.jpg)"></div>
                     <img class="play" alt="Promotional video. www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zo5BDeGtb9Y')"
                        ng-class="{full: showFullComments['zo5BDeGtb9Y']}">
                        Promotional video. www.heroteam.co
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="xaW41LA0w-w" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/xaW41LA0w-w/sddefault.jpg)"></div>
                     <img class="play" alt="Promotional video. www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'xaW41LA0w-w')"
                        ng-class="{full: showFullComments['xaW41LA0w-w']}">
                        Promotional video. www.heroteam.co
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best video animator for your project</span>
               <a href="/start"><div class="button">Connect with video animators</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/Riposte__xb9EFzIwROKMTeYUuxJjPA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/riposte">   
                  <h3>
                     Riposte
                     <span>video animator 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="62166987" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/431958922_640.jpg)"></div>
                     <img class="play" alt="Gamer (TV ad using 3D animations)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '62166987')"
                        ng-class="{full: showFullComments['62166987']}">
                        Gamer (TV ad using 3D animations)
                     </p>
                  </div>
                  
                  
               
                  <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>video animator 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="tDX9iyAEVE0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/tDX9iyAEVE0/sddefault.jpg)"></div>
                     <img class="play" alt="Apptamin specializes in App Video promotion, here is a showreel of some of our work, enjoy!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'tDX9iyAEVE0')"
                        ng-class="{full: showFullComments['tDX9iyAEVE0']}">
                        Apptamin specializes in App Video promotion, here is a showreel of some of our work, enjoy!
                     </p>
                  </div>
                  
                  
               
                  <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>
               
            </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/Gonzo_in_the_Wild_Productions__-t96nQ3KR2WHbOvAHF8J_Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/gonzointhewildproductions">   
                  <h3>
                     Gonzo in the Wild Productions
                     <span>video animator in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Tell your story.
Grow your brand.

Gonzo in the Wild is a collective of creatives, film professionals and education specialists uniquely positioned to work with businesses ready to scale up. Whether you want to attract new customers, cultivate a skilled staff with training videos or give your audience fresh content -  we can help.

Go Gonzo!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124435600" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/514156621_640.jpg)"></div>
                     <img class="play" alt="The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124435600')"
                        ng-class="{full: showFullComments['124435600']}">
                        The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="131701947" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/524059548_640.jpg)"></div>
                     <img class="play" alt="Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '131701947')"
                        ng-class="{full: showFullComments['131701947']}">
                        Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from video animators</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/0109-hifi-3d.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hifi3d">   
                  <h3>
                     Hifi 3D
                     <span>video animator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Jon Dorfman is an Emmy award-winning vfx artist. He has worked with many of the top commercial effects houses in New York, creating a wide variety of work for clients such as Coca Cola, HBO, MTV, IBM, Rockstar Games, Microsoft, HP, Verizon and AT&amp;T. He recently won a 2012 Emmy award for his vfx work on HBO&#39;s Boardwalk Empire.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="46775617" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/383786831_640.jpg)"></div>
                     <img class="play" alt="HiFi 3D Animation Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '46775617')"
                        ng-class="{full: showFullComments['46775617']}">
                        HiFi 3D Animation Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="68228385" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/440457392_640.jpg)"></div>
                     <img class="play" alt="Chumash commercial, hand drawn and animated frame by frame to create an organic authentic mood while being visually interesting." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '68228385')"
                        ng-class="{full: showFullComments['68228385']}">
                        Chumash commercial, hand drawn and animated frame by frame to create an organic authentic mood while being visually interesting.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="37248029" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/255856557_640.jpg)"></div>
                     <img class="play" alt="In this commercial for Nike Flyknit, the animation plays with the concepts of &quot;lines&quot; and &quot;threads&quot;, blending the two together to evoke creativity and lightness." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '37248029')"
                        ng-class="{full: showFullComments['37248029']}">
                        In this commercial for Nike Flyknit, the animation plays with the concepts of &quot;lines&quot; and &quot;threads&quot;, blending the two together to evoke creativity and lightness.
                     </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/Dave_Chenell__ri5J7EYaTvmvf4nJ6RqKSQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/davechenell">   
                  <h3>
                     Dave Chenell
                     <span>video animator in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Animator and video editor.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="76626277" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/451510357_640.jpg)"></div>
                     <img class="play" alt="Sequoia Waste Solutions - animated explainer with custom graphics" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '76626277')"
                        ng-class="{full: showFullComments['76626277']}">
                        Sequoia Waste Solutions - animated explainer with custom graphics
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="40118645" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/277072940_640.jpg)"></div>
                     <img class="play" alt="No Lose Bet animated explainer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '40118645')"
                        ng-class="{full: showFullComments['40118645']}">
                        No Lose Bet animated explainer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="45731176" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/318135459_640.jpg)"></div>
                     <img class="play" alt="Edoc Sync animated explainer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '45731176')"
                        ng-class="{full: showFullComments['45731176']}">
                        Edoc Sync animated explainer
                     </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>video animator 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 class="asset-wrapper" 
                     vp-asset="sFNOhkiGxKc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/sFNOhkiGxKc/maxresdefault.jpg)"></div>
                     <img class="play" alt="2D Animated Promo - Smartphones Deal" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'sFNOhkiGxKc')"
                        ng-class="{full: showFullComments['sFNOhkiGxKc']}">
                        2D Animated Promo - Smartphones Deal
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="05avIrAu174" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/05avIrAu174/maxresdefault.jpg)"></div>
                     <img class="play" alt="Graphic turned into animation." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '05avIrAu174')"
                        ng-class="{full: showFullComments['05avIrAu174']}">
                        Graphic turned into animation.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented video animators 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>video animator 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="179223347" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/587071988_1280.jpg)"></div>
                     <img class="play" alt="Animated explainer video for Tech and financial industry" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '179223347')"
                        ng-class="{full: showFullComments['179223347']}">
                        Animated explainer video for Tech and financial industry
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130374677" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522216413_640.jpg)"></div>
                     <img class="play" alt="Microsoft had their new product launch office 365 for corporation use, they wanted absolutely brilliant Animator team to work on their project, they needed 50 animated videos to be created, and they also wanted to see 2D animation with stop motion explainer videos or demo videos. We created 50 videos for them and now they are at display on their web page or home page." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130374677')"
                        ng-class="{full: showFullComments['130374677']}">
                        Microsoft had their new product launch office 365 for corporation use, they wanted absolutely brilliant Animator team to work on their project, they needed 50 animated videos to be created, and they also wanted to see 2D animation with stop motion explainer videos or demo videos. We created 50 videos for them and now they are at display on their web page or home page.
                     </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/HydrogenWhiskeyStudios__kpbTNWzDRsW7MOTgX9-amg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HydrogenWhiskeyStudios">   
                  <h3>
                     Hydrogen Whiskey Studios
                     <span>video animator in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hydrogen Whiskey is a L.A. based animation studio, known for producing cutting edge CG trailers &amp; cutscenes, character animation sets, as well as motion graphics, design and visual effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="48335175" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528233286_1280.jpg)"></div>
                     <img class="play" alt="Hydrogen Whiskey SIZZLE REEL  Known for hi-end cutscenes, trailers, game animation, and commercials, Hydrogen Whiskey has served the entertainment and games communities since 1992.   The proof really is in our works.   Specializing in character performance with motion capture and keyframe animation. Render or game engine integration.   Are you with Hydrogen Whiskey?  please email human@videopixie.com to register your account!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '48335175')"
                        ng-class="{full: showFullComments['48335175']}">
                        Hydrogen Whiskey SIZZLE REEL  Known for hi-end cutscenes, trailers, game animation, and commercials, Hydrogen Whiskey has served the entertainment and games communities since 1992.   The proof really is in our works.   Specializing in character performance with motion capture and keyframe animation. Render or game engine integration.   Are you with Hydrogen Whiskey?  please email human@videopixie.com to register your account!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="141737923" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/538826405_1280.jpg)"></div>
                     <img class="play" alt="In-Game Animations - Telltale Games  A smidget sampling of Hydrogen Whiskey in-game animation on TellTale Games: The Walking Dead, Game of Thrones, The Wolf Among Us, and Borderlands!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '141737923')"
                        ng-class="{full: showFullComments['141737923']}">
                        In-Game Animations - Telltale Games  A smidget sampling of Hydrogen Whiskey in-game animation on TellTale Games: The Walking Dead, Game of Thrones, The Wolf Among Us, and Borderlands!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134767121" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528423303_1280.jpg)"></div>
                     <img class="play" alt="App Previews, Video Ads and Launch Trailers  We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying complexity to meet budget and marketing needs. We can create a simple app preview utilizing game captures. Add sizzling transitions, snazzling text. And, of course, we can add custom assets and animations.   Are you with Hydrogen Whiskey?  if yes, make sure to register your account to connect with new clients.  Just email human@videopixie.com, it&#39;s free." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134767121')"
                        ng-class="{full: showFullComments['134767121']}">
                        App Previews, Video Ads and Launch Trailers  We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying complexity to meet budget and marketing needs. We can create a simple app preview utilizing game captures. Add sizzling transitions, snazzling text. And, of course, we can add custom assets and animations.   Are you with Hydrogen Whiskey?  if yes, make sure to register your account to connect with new clients.  Just email human@videopixie.com, it&#39;s free.
                     </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/CeremonyAgency__Bq1NnrO_Roa5ErQv8LjSdw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ceremonyagency">   
                  <h3>
                     Ceremony Agency
                     <span>video animator in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We script, illustrate, animate, score and design beautiful product and brand stories from scratch. But first we work with our clients to find that story. We&#39;re made up of ex ad agency creatives and led by a product marketer from the venture-backed land of San Franciscan. 

Ceremony Agency is Based in New York, NY</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="64553884" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/506295551_640.jpg)"></div>
                     <img class="play" alt="2014 Reel (Animations, 3D and 2D)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '64553884')"
                        ng-class="{full: showFullComments['64553884']}">
                        2014 Reel (Animations, 3D and 2D)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112067589" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496904463_640.jpg)"></div>
                     <img class="play" alt="Product Demo for ReadyMag (Animated Screencast)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112067589')"
                        ng-class="{full: showFullComments['112067589']}">
                        Product Demo for ReadyMag (Animated Screencast)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108117732" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492190367_640.jpg)"></div>
                     <img class="play" alt="Corporate presentation video (with 3D animations)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108117732')"
                        ng-class="{full: showFullComments['108117732']}">
                        Corporate presentation video (with 3D animations)
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best video animator for your project</span>
               <a href="/start"><div class="button">Connect with video animators</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/michaelpatrick__mCEv9TMwTRGDt58_6vs8vQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/michaelpatrick">   
                  <h3>
                     michael patrick
                     <span>video animator in </span>
                     <span class="location">Paris, France</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My name is Michael Patrick , A creative video director .based in Tlv and with associates in Kiev and Berlin. i i work on everything from cutting edge online content, long form branded content, broadcast commercials, to social media.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="F6-auJx2KxE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/F6-auJx2KxE/0.jpg)"></div>
                     <img class="play" alt="velocee - the content revolution motion graphic project." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'F6-auJx2KxE')"
                        ng-class="{full: showFullComments['F6-auJx2KxE']}">
                        velocee - the content revolution motion graphic project.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="iPoRssANcYw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/iPoRssANcYw/0.jpg)"></div>
                     <img class="play" alt="arcaffe stop motion commercial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'iPoRssANcYw')"
                        ng-class="{full: showFullComments['iPoRssANcYw']}">
                        arcaffe stop motion commercial
                     </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/Domino_Production__RVnRtp99QKu_G0XvOULU4Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/dominoproduction">   
                  <h3>
                     Domino Production
                     <span>video animator in </span>
                     <span class="location">Ереван, Армения</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are Domino Production, a creative production company founded in 2009 and based in Yerevan, Armenia. Over the last 6 years we have helped more than 200 businesses local and international to grow their business and tell their story in a unique way. We offer the most affordable full service solutions of video production, 2D/3D animation, explainer videos, VFX, CGI.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="USf9BjTGgog" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/USf9BjTGgog/maxresdefault.jpg)"></div>
                     <img class="play" alt="Display event // Led screen animation for Huawei" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'USf9BjTGgog')"
                        ng-class="{full: showFullComments['USf9BjTGgog']}">
                        Display event // Led screen animation for Huawei
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Yuq5FRWpfZE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Yuq5FRWpfZE/maxresdefault.jpg)"></div>
                     <img class="play" alt="We have recently made a new animated explainer video for Orwaco. Orwaco is an Armenian-Norwegian joint venture dealing with conversion of organic waste into useful and environmentally friendly products such as organic fertilizers.  Nice message put in a smart way. Let us help you connect your business with its audience through creative storytelling." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Yuq5FRWpfZE')"
                        ng-class="{full: showFullComments['Yuq5FRWpfZE']}">
                        We have recently made a new animated explainer video for Orwaco. Orwaco is an Armenian-Norwegian joint venture dealing with conversion of organic waste into useful and environmentally friendly products such as organic fertilizers.  Nice message put in a smart way. Let us help you connect your business with its audience through creative storytelling.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="rPD-foo_dmc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/rPD-foo_dmc/maxresdefault.jpg)"></div>
                     <img class="play" alt="We&#39;ve produced a new ad for Ideal System, Caucasus biggest showroom network of building materials.  Whether you have a need for 2D/3D cartoon animated commercial, traditional animation or hand-draw videos, Domino Production has the experience and the expertise to make that happen for you. Email us at sales@dominoproduction.am" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'rPD-foo_dmc')"
                        ng-class="{full: showFullComments['rPD-foo_dmc']}">
                        We&#39;ve produced a new ad for Ideal System, Caucasus biggest showroom network of building materials.  Whether you have a need for 2D/3D cartoon animated commercial, traditional animation or hand-draw videos, Domino Production has the experience and the expertise to make that happen for you. Email us at sales@dominoproduction.am
                     </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>
