<!DOCTYPE html>
<html  ng-app="vpModule" ng-controller="VPController">
<head>
   <meta charset="utf-8"/>
   <meta name="viewport" content="width=1200">
   <meta name="msvalidate.01" content="AF86D6C94D0294C6DCFF4C02777B9787" />
   
   <link rel="stylesheet" href="/st/css/main.css">
   <link rel="stylesheet" href="/st/css/common.css">
   
   <link rel="stylesheet" href="https://vjs.zencdn.net/4.5/video-js.css">
   
   <script  src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   <script  src="/st/js/o/easing.js"></script>
   
   <link rel="apple-touch-icon" sizes="57x57" href="/st/fav/apple-touch-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="114x114" href="/st/fav/apple-touch-icon-114x114.png">
   <link rel="apple-touch-icon" sizes="72x72" href="/st/fav/apple-touch-icon-72x72.png">
   <link rel="apple-touch-icon" sizes="144x144" href="/st/fav/apple-touch-icon-144x144.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/st/fav/apple-touch-icon-60x60.png">
   <link rel="apple-touch-icon" sizes="120x120" href="/st/fav/apple-touch-icon-120x120.png">
   <link rel="apple-touch-icon" sizes="76x76" href="/st/fav/apple-touch-icon-76x76.png">
   <link rel="apple-touch-icon" sizes="152x152" href="/st/fav/apple-touch-icon-152x152.png">
   <meta name="apple-mobile-web-app-title" content="Videopixie">
   <link rel="icon" type="image/png" href="/st/fav/favicon-196x196.png" sizes="196x196">
   <link rel="icon" type="image/png" href="/st/fav/favicon-160x160.png" sizes="160x160">
   <link rel="icon" type="image/png" href="/st/fav/favicon-96x96.png" sizes="96x96">
   <link rel="icon" type="image/png" href="/st/fav/favicon-16x16.png" sizes="16x16">
   <link rel="icon" type="image/png" href="/st/fav/favicon-32x32.png" sizes="32x32">
   <meta name="msapplication-TileColor" content="#ffffff">
   <meta name="msapplication-TileImage" content="/st/fav/mstile-144x144.png">
   <meta name="application-name" content="Videopixie">
   
   
   
   <title>Best 3D animators and CGI artists | Videopixie</title>
   <meta name="description" content="None">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Best 3D animators and CGI artists</h1>
      <h2>Videopixie helps you hire the best 3D Animators.</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
   </div>

   <div id="creatorsList" class="content" ng-controller="CreatorListController">
      
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/UnterfreiemHimmel">   
                  <h3>
                     Unter freiem Himmel
                     <span>3D 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="125910922" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/516612574_1280.jpg)"></div>
                     <img class="play" alt="Just our secret-agent-scifi-80s showreel." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '125910922')"
                        ng-class="{full: showFullComments['125910922']}">
                        Just our secret-agent-scifi-80s showreel.
                     </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>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Achilles_Entertainment__e2Qm9V9mSfirqrZriayvzg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/achillesentertainment">   
                  <h3>
                     Achilles Entertainment
                     <span>3D Animator in </span>
                     <span class="location">Whitley City, KY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are Achilles Entertainment. 

 We are a full service video production company. Whether you have a product to market, an image to sell, or a story longing to be told, we’ll extract that idea from your imagination and make it a reality. 

 Achilles Entertainment was founded in 2005, working primarily on wildlife documentaries with documentarian Robert Hancock. Our macro-cinematography was recognized by several festivals including the International Wildlife Film Festival. Lately, we have developed lasting relationships with several political consultants and television stations in the Lexington, Kentucky area. We have a handful of passionate, talented artists on staff as well a diverse group of freelancers who can contribute when the need arises. We can take on a project from start to finish, or supplement another vendors&#39; offerings with our specialty services. Just need a 3d animation for a project another vendor is producing? We&#39;re here to help. 

 Our list of services include typical video production and motion graphics as well as specialty services such as 3d animation, time-lapse photography, and aerial videography. Our 3d animation offerings range from advanced motion graphics to Pixar-style character animation and visual effects. In addition to standard, &quot;short-term&quot; time-lapse photography, we have the ability to record the passage of time over weeks and years. We could record the rise of fall of a body of water over the course of a season, the construction of a new building, or chart the growth of an area throughout the year. Finally, we offer two tiers of aerial videography so that we can deliver outstanding production value at almost any budget. Tier one offers the ability for us to record with smaller payload cameras while tier two allows us to utilize cinema quality rigs. 

 To find out more visit achillesentertainment.com!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="pTE-vvs8dLM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/pTE-vvs8dLM/0.jpg)"></div>
                     <img class="play" alt="Tier 1 Aerial Videopgraphy" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'pTE-vvs8dLM')"
                        ng-class="{full: showFullComments['pTE-vvs8dLM']}">
                        Tier 1 Aerial Videopgraphy
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="4c_iJeSQiac" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/4c_iJeSQiac/0.jpg)"></div>
                     <img class="play" alt="Jimmie Lee - Handshake" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '4c_iJeSQiac')"
                        ng-class="{full: showFullComments['4c_iJeSQiac']}">
                        Jimmie Lee - Handshake
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="aENPnaFtgvA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/aENPnaFtgvA/0.jpg)"></div>
                     <img class="play" alt="Hair Test" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'aENPnaFtgvA')"
                        ng-class="{full: showFullComments['aENPnaFtgvA']}">
                        Hair Test
                     </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/CharlesWood__1JDNByMRS9ykne16SW_6Qg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charleswood">   
                  <h3>
                     Charles Wood
                     <span>3D 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="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from 3D 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/Domino_Production__RVnRtp99QKu_G0XvOULU4Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/dominoproduction">   
                  <h3>
                     Domino Production
                     <span>3D 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="TmuoqzqIcvA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/TmuoqzqIcvA/maxresdefault.jpg)"></div>
                     <img class="play" alt="Explainer videos are an ideal way to help tell your story when your ideas and business concepts are difficult or impossible to tell.  Juice Lab is a Cold Pressed Juice Company having a whole new approch and philosophy to juicing. Our first task was to study and understand their philosophy and later on create an educational explainer video and reconnect the consumer to Nature." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TmuoqzqIcvA')"
                        ng-class="{full: showFullComments['TmuoqzqIcvA']}">
                        Explainer videos are an ideal way to help tell your story when your ideas and business concepts are difficult or impossible to tell.  Juice Lab is a Cold Pressed Juice Company having a whole new approch and philosophy to juicing. Our first task was to study and understand their philosophy and later on create an educational explainer video and reconnect the consumer to Nature.
                     </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>
               
            </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/Jimmy_Meneyerji__TAjuXN0lTg6D1JmafY0iww.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/id73">   
                  <h3>
                     ID73
                     <span>3D Animator in </span>
                     <span class="location">Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a video and audio editor. I also work with 2D and 3D 
animation and create my own pieces from scratch.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kThPQF4zstk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/kThPQF4zstk/0.jpg)"></div>
                     <img class="play" alt="To The Chopper Logo HD - TV and Movie Production company" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kThPQF4zstk')"
                        ng-class="{full: showFullComments['kThPQF4zstk']}">
                        To The Chopper Logo HD - TV and Movie Production company
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="O9vtOGcAvF0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/O9vtOGcAvF0/0.jpg)"></div>
                     <img class="play" alt="Medical company promotion" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'O9vtOGcAvF0')"
                        ng-class="{full: showFullComments['O9vtOGcAvF0']}">
                        Medical company promotion
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="IEL8by0uJZU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/IEL8by0uJZU/0.jpg)"></div>
                     <img class="play" alt="OB•SES•SIVE Title Sequence HD - TV  Show" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'IEL8by0uJZU')"
                        ng-class="{full: showFullComments['IEL8by0uJZU']}">
                        OB•SES•SIVE Title Sequence HD - TV  Show
                     </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/Genius_Publicity__IcQv0GJzSBK-WXvs6ectSQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/geniuspublicity">   
                  <h3>
                     Genius Publicity
                     <span>3D Animator in </span>
                     <span class="location">Newark, Delaware, États-Unis</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Trusted by dozens of Fortune500 Clients. We produce Award worthy 2D video explainers / Corporate videos / RSA Whiteboards / Corporate Identity kits and 3D Animations. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="OhEs05gjHAo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/OhEs05gjHAo/0.jpg)"></div>
                     <img class="play" alt="Digital Whiteboard Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'OhEs05gjHAo')"
                        ng-class="{full: showFullComments['OhEs05gjHAo']}">
                        Digital Whiteboard Animation
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uh5avmVSj0Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/uh5avmVSj0Y/0.jpg)"></div>
                     <img class="play" alt="Whiteboard Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uh5avmVSj0Y')"
                        ng-class="{full: showFullComments['uh5avmVSj0Y']}">
                        Whiteboard Animation
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="-KL5gUiF3I0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/-KL5gUiF3I0/0.jpg)"></div>
                     <img class="play" alt="Genius Publicity 2015 Reel - 3D Cartoon Animations, Animated Explainers" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '-KL5gUiF3I0')"
                        ng-class="{full: showFullComments['-KL5gUiF3I0']}">
                        Genius Publicity 2015 Reel - 3D Cartoon Animations, Animated Explainers
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented 3D 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/0087-steve-simon.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/stevesimon">   
                  <h3>
                     Steve Simon
                     <span>3D Animator in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional video editor with experience working with a variety of corporate and non-profit clients. Full post-production experience; from editing and color-grading footage to scripting and creating 3D motion graphics projects. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85117065" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/462290709_640.jpg)"></div>
                     <img class="play" alt="Steve Simon Demo Reel - 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85117065')"
                        ng-class="{full: showFullComments['85117065']}">
                        Steve Simon Demo Reel - 2014
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="65931534" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/437133823_640.jpg)"></div>
                     <img class="play" alt="Feeling Judo Teaser #1" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '65931534')"
                        ng-class="{full: showFullComments['65931534']}">
                        Feeling Judo Teaser #1
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="xaHEh6Uf4qY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/xaHEh6Uf4qY/0.jpg)"></div>
                     <img class="play" alt="ATS Runs SAP" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'xaHEh6Uf4qY')"
                        ng-class="{full: showFullComments['xaHEh6Uf4qY']}">
                        ATS Runs SAP
                     </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/Creature_Productions__Sau8BLwbS9S6sbZXAX_oLQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CreatureProductions">   
                  <h3>
                     Creature Productions
                     <span>3D Animator in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a small but mighty video production company based in the UK who specialise in the production of explainer, infographic and 3D animated videos.  Our innovative, creative and passionate team create videos that provide the perfect balance between engaging your audience and communicating your key message. We use our expertise to come up with ideas and concepts that will grab the attention of your target audience, not only informing them but entertaining them at the same time, ensuring your video will keep viewers watching right to the end.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120058159" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507734872_640.jpg)"></div>
                     <img class="play" alt="Animated explainer for Interlink Express" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120058159')"
                        ng-class="{full: showFullComments['120058159']}">
                        Animated explainer for Interlink Express
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108568958" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492489195_640.jpg)"></div>
                     <img class="play" alt="Nideo animated explainer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108568958')"
                        ng-class="{full: showFullComments['108568958']}">
                        Nideo animated explainer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="105117185" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/488111115_640.jpg)"></div>
                     <img class="play" alt="HPI Data Services animated explainer, motion graphics" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '105117185')"
                        ng-class="{full: showFullComments['105117185']}">
                        HPI Data Services animated explainer, motion graphics
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/LuxVirtual__9oaAx4RaSHSWOJmd0XVqPg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LuxVirtual">   
                  <h3>
                     Lux Virtual
                     <span>3D Animator in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We create 3D animations that help people visualize and understand complex ideas and products.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118770266" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/505886543_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118770266')"
                        ng-class="{full: showFullComments['118770266']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127169269" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/517856535_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127169269')"
                        ng-class="{full: showFullComments['127169269']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="103767885" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/486468024_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '103767885')"
                        ng-class="{full: showFullComments['103767885']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best 3D Animator for your project</span>
               <a href="/start"><div class="button">Connect with 3D 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/SanjeevKumar__5YVfq0ZVTgWdDsxY8YD5kQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SanjeevKumar">   
                  <h3>
                     Sanjeev Kumar
                     <span>3D Animator in </span>
                     <span class="location">Jalandhar, Punjab, India</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I have 8 years of experience in video production and animation. During my work period I have worked for a number of jobs for big IT firms like Media channels , Institutions , Corporate Offices . I produce many types of videos including   - Presentation Videos -White board Animation Videos - Explainer Videos - Advertisement Videos - 3D Animation Videos - 2D Animation Videos - Website Explanation Videos - Logo Animation Videos - Learning Content Videos - Music Videos - Short Films   Apart from this i am expert in   -Logo Designing -T-shirt Designing -Book Cover designing -Visiting card and Latter head Designing  and many more with full customer satisfaction. If you are looking for any type of video and design than its a right profile ready to work for you with full dedication</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="x86OFu-Wnu0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/x86OFu-Wnu0/0.jpg)"></div>
                     <img class="play" alt="Software used: After Effets" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'x86OFu-Wnu0')"
                        ng-class="{full: showFullComments['x86OFu-Wnu0']}">
                        Software used: After Effets
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="146629277" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/545073887_640.jpg)"></div>
                     <img class="play" alt="Video Editing in final cut pro." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '146629277')"
                        ng-class="{full: showFullComments['146629277']}">
                        Video Editing in final cut pro.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="146365091" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/544742097_640.jpg)"></div>
                     <img class="play" alt="Color Grading in Davinci Resolve" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '146365091')"
                        ng-class="{full: showFullComments['146365091']}">
                        Color Grading in Davinci Resolve
                     </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/MatthewReeler__rj6hlZMNTbKBXUnLohNgWA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MatthewReeler">   
                  <h3>
                     Matthew Reeler
                     <span>3D Animator in </span>
                     <span class="location">Cape Town, South Africa</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Director and Post-Production Manager - Empire Post

Experienced in creating effective video and brand content from planning and development, to production and finalization. Extensive experience in concept creation, video production, motion graphics and animation, film and video editing, business to business presentations and corporate video.

Great communicator with ability to work with clients until they are satisfied. Able to work with creative teams and managers at all levels.

Core Competencies:

• Concept Creation
• Design
• Project Managing
• Production Managing
• Film Directing and Producing 
• Video and Film Editing
• 2D and 3D Animation
• Client Communication
• Digital Publishing &amp; Maintenance</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="OZY5MNBcbEw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/OZY5MNBcbEw/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'OZY5MNBcbEw')"
                        ng-class="{full: showFullComments['OZY5MNBcbEw']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="EN87eZCswl4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/EN87eZCswl4/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'EN87eZCswl4')"
                        ng-class="{full: showFullComments['EN87eZCswl4']}">
                        
                     </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>3D Animator in </span>
                     <span class="location">Indore, Madhya Pradesh 452001, India</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We create animated explainer videos for your products. It can be of any type whether it&#39;s a motion graphics, whiteboard, 3D etc.</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="Qjlwm68ksD8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Qjlwm68ksD8/maxresdefault.jpg)"></div>
                     <img class="play" alt="Explainer Video - How Honk Works" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Qjlwm68ksD8')"
                        ng-class="{full: showFullComments['Qjlwm68ksD8']}">
                        Explainer Video - How Honk Works
                     </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>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from 3D 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/JasperBoyd__XGEi3Z6TRCuW8I9i_snWYA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/jasperboyd">   
                  <h3>
                     Jasper Boyd
                     <span>3D Animator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video editor, aerial cinematographer, 3D animation generalist, 2D animation skills, attention to detail.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="64529335" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/435261813_640.jpg)"></div>
                     <img class="play" alt="3d Animation reel.  Tags: explainer, product, screencast, advertisement" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '64529335')"
                        ng-class="{full: showFullComments['64529335']}">
                        3d Animation reel.  Tags: explainer, product, screencast, advertisement
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Msvd5uPWCkE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Msvd5uPWCkE/hqdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Msvd5uPWCkE')"
                        ng-class="{full: showFullComments['Msvd5uPWCkE']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="pCivYvGlM6A" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/pCivYvGlM6A/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'pCivYvGlM6A')"
                        ng-class="{full: showFullComments['pCivYvGlM6A']}">
                        
                     </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/Broadcast2world__0rhebZxuR8GZ5HoGfVK8mw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Broadcast2world">   
                  <h3>
                     Broadcast2world
                     <span>3D Animator in </span>
                     <span class="location">New Jersey, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">​Dreamers. Artists. Believers. Storytellers. We are a fun group of diverse personalities brought together by a single, unifying goal – telling memorable stories. Since 2009, we have produced more than 3,00,000+ seconds of handcrafted video content till date for 500+ big brands like eBay, Johnson &amp; Johnson, Walgreens, AdTech, Nokia, CSC, Ricoh, and Network18 etc
.
What drives us forward is our undying passion for the art and science of telling visual stories. We work on all animation styles including 2D, 3D, 2.5D, Motion Comic style, Infographics, Whiteboard, Stop-motion etc.

Our in-house team of 80+ professionals is well versed with crafting everything related to video production from Concept, Script, Storyboarding, Graphics, Animation, and Voice-over.

You can contact us at marketing@b2w.tv</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="jPVjxb-dd7k" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/jPVjxb-dd7k/maxresdefault.jpg)"></div>
                     <img class="play" alt="Story For Your Big Idea" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'jPVjxb-dd7k')"
                        ng-class="{full: showFullComments['jPVjxb-dd7k']}">
                        Story For Your Big Idea
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="3OBLwd5rN28" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/3OBLwd5rN28/sddefault.jpg)"></div>
                     <img class="play" alt="Process of Making an Awesome Video for Your Business" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '3OBLwd5rN28')"
                        ng-class="{full: showFullComments['3OBLwd5rN28']}">
                        Process of Making an Awesome Video for Your Business
                     </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/NityantaProductionsPvtLtd__A29MqY2uQHmYCN4LYsMcLA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NityantaProductionsPvtLtd">   
                  <h3>
                     Nityanta Productions Pvt. Ltd.
                     <span>3D Animator in </span>
                     <span class="location">Mumbai, Maharashtra, India</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Nityanta Productions Pvt. Ltd. is a Visual effects, Animation, Augmented Reality and Design company. Nityanta produces 3D Character Animation, Motion design, and visual effects for feature films and television, corporates films, location-based entertainment (events), commercials and integrated media.
Nityanta has a young team of professionals and offers opportunity to grow and take on responsibilities. The company is located in Mumbai</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127998829" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/518977561_1280.jpg)"></div>
                     <img class="play" alt="Animated Presentation." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127998829')"
                        ng-class="{full: showFullComments['127998829']}">
                        Animated Presentation.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174349511" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/581194392_1280.jpg)"></div>
                     <img class="play" alt="Script-Storyboard-Voice Over-Live Action-Motion Graphics-Editing-Post Production" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174349511')"
                        ng-class="{full: showFullComments['174349511']}">
                        Script-Storyboard-Voice Over-Live Action-Motion Graphics-Editing-Post Production
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="147558416" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/547230969_1280.jpg)"></div>
                     <img class="play" alt="Script-Storyboard-Voice Over-Live Action-Motion Graphics-Editing-Post Production" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '147558416')"
                        ng-class="{full: showFullComments['147558416']}">
                        Script-Storyboard-Voice Over-Live Action-Motion Graphics-Editing-Post Production
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented 3D 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/AyazAhmed__HlpZ9InWRYCD8WW-OCsruA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ayazahmed">   
                  <h3>
                     CreativeTriplet
                     <span>3D Animator in </span>
                     <span class="location">Karachi, Pakistan</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are experienced in producing explainer animated 2D/3D videos for more than +8 years. We have worked with fortune companies like Phillips, LG, J&amp;J, Microsoft, Sandoz and many more.

 We like to ask the right questions and get the most out of a creative idea. And just as importantly, we deliver on time. We are creative animation studio, which offers various types of services on a single platform. 

From full cartoon explainer videos to stick figure, screencast, motion graphic, whiteboard style and 3D videos, we conceptualize, storyboard, and animate your idea for the world to see.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Pvs7UJx323w" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Pvs7UJx323w/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Pvs7UJx323w')"
                        ng-class="{full: showFullComments['Pvs7UJx323w']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6rofvgKmE7k" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/6rofvgKmE7k/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6rofvgKmE7k')"
                        ng-class="{full: showFullComments['6rofvgKmE7k']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="138158603" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/533375737_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '138158603')"
                        ng-class="{full: showFullComments['138158603']}">
                        
                     </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/QabilaMediaProduction__-Gmr-d2TTESnBBc6tbRBZw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/QabilaMediaProduction">   
                  <h3>
                     Qabila Media Production
                     <span>3D Animator in </span>
                     <span class="location">San Jose, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Qabila is a leading media production company based in Cairo, specialized in Entertainment, Awareness, Development, Advertising and Educational Creative Content Creation. Specializing in 2D and 3D animation videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150418764" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549893454_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150418764')"
                        ng-class="{full: showFullComments['150418764']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150420082" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549953264_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150420082')"
                        ng-class="{full: showFullComments['150420082']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150420168" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549953420_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150420168')"
                        ng-class="{full: showFullComments['150420168']}">
                        
                     </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/0043-luca.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lucadigioacchino">   
                  <h3>
                     Luca Di Gioacchino
                     <span>3D Animator in </span>
                     <span class="location">Montreal, QC, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am an editor and motion graphics designer from Montreal specializing in 2D and 3D animation.  Feel free to see some samples of my work at www.videosbyluca.wordpress.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108619462" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492366868_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108619462')"
                        ng-class="{full: showFullComments['108619462']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="67950103" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/440061041_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '67950103')"
                        ng-class="{full: showFullComments['67950103']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="71227427" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/444723819_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '71227427')"
                        ng-class="{full: showFullComments['71227427']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best 3D Animator for your project</span>
               <a href="/start"><div class="button">Connect with 3D 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/ThinkReelFilms__UOrBwDLFRKyoU-ycrr__NA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ThinkReelFilms">   
                  <h3>
                     Think Reel Films
                     <span>3D Animator in </span>
                     <span class="location">New Jersey, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">A dynamic and wickedly agile video production house, offering full video services to top advertising agencies and local businesses in the Tri State area. From live events and corporate video shoots, to 3D animations for feature films... Think Reel Films does it all.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="132335917" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/527269214_1280.jpg)"></div>
                     <img class="play" alt="Show Reel 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '132335917')"
                        ng-class="{full: showFullComments['132335917']}">
                        Show Reel 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="145317757" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/543403067_1280.jpg)"></div>
                     <img class="play" alt="Taboola sizzle.  Animation and filming at  the office. Quick turn around!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '145317757')"
                        ng-class="{full: showFullComments['145317757']}">
                        Taboola sizzle.  Animation and filming at  the office. Quick turn around!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134760441" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528390879_1280.jpg)"></div>
                     <img class="play" alt="Stylized Animated text and video. Shot on location and animation in house" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134760441')"
                        ng-class="{full: showFullComments['134760441']}">
                        Stylized Animated text and video. Shot on location and animation in house
                     </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/Agni_Manta__P-Lnd684Tp6x1msDAuYOlw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/agnimanta">   
                  <h3>
                     Agni Manta
                     <span>3D Animator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">3D and 2D animation, motion graphics, 3D modeling and video editing.

Projects include marketing, explainer, promotional and infographic videos, advertising and commercials, logo and title animations, intro and outro animations, and video editing.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120597420" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508480423_640.jpg)"></div>
                     <img class="play" alt="The aim of this animation was to introduce the mobile app. I was asked to create a short promo video that would explain the process and inform people in a fun and engaging way. Beantown Design supplied me with the script and I worked on all aspects of the video including initial style frames, illustrations and animation.  Spheye is a real-time social tool that is used to communicate with people around you." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120597420')"
                        ng-class="{full: showFullComments['120597420']}">
                        The aim of this animation was to introduce the mobile app. I was asked to create a short promo video that would explain the process and inform people in a fun and engaging way. Beantown Design supplied me with the script and I worked on all aspects of the video including initial style frames, illustrations and animation.  Spheye is a real-time social tool that is used to communicate with people around you.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120495693" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508339494_640.jpg)"></div>
                     <img class="play" alt="I was approached by Kooboodle to create this promo animation for the MeFinder app. After I received the screen shots and overall direction for the animations, I put everything together and brought it to life." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120495693')"
                        ng-class="{full: showFullComments['120495693']}">
                        I was approached by Kooboodle to create this promo animation for the MeFinder app. After I received the screen shots and overall direction for the animations, I put everything together and brought it to life.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="126006655" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/516304024_640.jpg)"></div>
                     <img class="play" alt="Promo for football camp." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '126006655')"
                        ng-class="{full: showFullComments['126006655']}">
                        Promo for football camp.
                     </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>
