<!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>Game Trailer Creators | Videopixie</title>
   <meta name="description" content="A selection of the best game trailer makers out there.  Making killer videos of your games is one of the best ways to drive installs.  The creators on this list can help you!">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Top 20 Game Trailer Creators</h1>
      <h2>Videopixie helps you hire the best Game Trailer Creators.</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/Ayzenberg__VxQtK0D9QWODMJgSLA3UyA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Ayzenberg">   
                  <h3>
                     Ayzenberg
                     <span>Game Trailer Creator in </span>
                     <span class="location">Pasadena, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">One of, if not THE, world leading creative agency for the entertainment &amp; gaming industries.  Have a quick glance at their portfolio, you&#39;ll find  stunning work after another for AAA titles like Street Fighter, Gears of Wars, Halo... to name a few.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="bjildYLZDHI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/bjildYLZDHI/hqdefault.jpg)"></div>
                     <img class="play" alt="Ayzenberg&#39;s Games Reel.     A suped up montage of the group&#39;s many AAA game trailers.  Recent clients include CAPCOM, HALO, XBOX,....  Are you with Ayzenberg? make sure to register your account.  Email human@videopixie.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'bjildYLZDHI')"
                        ng-class="{full: showFullComments['bjildYLZDHI']}">
                        Ayzenberg&#39;s Games Reel.     A suped up montage of the group&#39;s many AAA game trailers.  Recent clients include CAPCOM, HALO, XBOX,....  Are you with Ayzenberg? make sure to register your account.  Email human@videopixie.com
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nWEoKSF7qRc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/nWEoKSF7qRc/maxresdefault.jpg)"></div>
                     <img class="play" alt="Street Fighter V had a huge launch, and Ayzenberg deserve  a lot of credit for it.    Through stunning key art and kickass trailers, they galvanized hardcore fans and reached massive audiences.  Are you with Ayzenberg?  if yes make sure to register your account.  Email human@videopixie.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nWEoKSF7qRc')"
                        ng-class="{full: showFullComments['nWEoKSF7qRc']}">
                        Street Fighter V had a huge launch, and Ayzenberg deserve  a lot of credit for it.    Through stunning key art and kickass trailers, they galvanized hardcore fans and reached massive audiences.  Are you with Ayzenberg?  if yes make sure to register your account.  Email human@videopixie.com
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/GoldtoothCreative__lWbtB-1TRrm1krQvNqzJ5w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GoldtoothCreative">   
                  <h3>
                     Goldtooth Creative
                     <span>Game Trailer Creator in </span>
                     <span class="location">Vancouver, BC, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Goldtooth is both a creative agency and a full-service production studio, with a complete visual effects and post facility.  Housing a multi-award winning advertising, cinematics, and visual effects team gathered under one roof.  Artists with feature film backgrounds, specializing in bringing a cinematic quality to video game trailers, commercials, marketing media and in-game story content.  Each member of the team is a master of their craft, who bring stories to the screen from concept to completion.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110390712" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494625801_1280.jpg)"></div>
                     <img class="play" alt="Game Capture Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110390712')"
                        ng-class="{full: showFullComments['110390712']}">
                        Game Capture Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="137411192" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/532319504_1280.jpg)"></div>
                     <img class="play" alt="Mobile Games Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '137411192')"
                        ng-class="{full: showFullComments['137411192']}">
                        Mobile Games Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="104045138" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/486468605_1280.jpg)"></div>
                     <img class="play" alt="VFX Breakdown Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '104045138')"
                        ng-class="{full: showFullComments['104045138']}">
                        VFX Breakdown Reel  Goldtoothcreative.com  Are you with Goldooth?  make sure to register your account to connect with new clients.  It&#39;s free just email human@videopixie.com.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/ZoicStudios__9M07sTMzT6mPBM8XoAey0Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ZoicStudios">   
                  <h3>
                     Zoic Studios
                     <span>Game Trailer Creator in </span>
                     <span class="location">Culver City, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Zoic Studios is an American visual effects company based in Culver City, California. They specialize in visual effects for feature films, episodic television, commercials, video games, advertising design, and interactive online media.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="pR_mdOz3j7g" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/pR_mdOz3j7g/sddefault.jpg)"></div>
                     <img class="play" alt="Teaser Trailer for Midnight Star, the epic mobile shooter by Industrial Toys.  Built from the ground-up for touch devices.   Note: if you are with Zoic Studios, please email human@videopixie.com to register your account." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'pR_mdOz3j7g')"
                        ng-class="{full: showFullComments['pR_mdOz3j7g']}">
                        Teaser Trailer for Midnight Star, the epic mobile shooter by Industrial Toys.  Built from the ground-up for touch devices.   Note: if you are with Zoic Studios, please email human@videopixie.com to register your account.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="RxTYkuSIjk4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/RxTYkuSIjk4/maxresdefault.jpg)"></div>
                     <img class="play" alt="Attract Trailer for &quot;PlayStation All-Stars Battle Royale&quot;.  In this project, the Zoic team created an aesthetic that would streamline the looks of game characters, while maintaining their essence.  Their signature actions are highlighted in fluorescent hues, and the artists used the familiar Playstation blue ribbons to cast the characters in striking, memorable silhouettes.   If you are with Zoic Studios, please email human@videopixie.com to register your account." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'RxTYkuSIjk4')"
                        ng-class="{full: showFullComments['RxTYkuSIjk4']}">
                        Attract Trailer for &quot;PlayStation All-Stars Battle Royale&quot;.  In this project, the Zoic team created an aesthetic that would streamline the looks of game characters, while maintaining their essence.  Their signature actions are highlighted in fluorescent hues, and the artists used the familiar Playstation blue ribbons to cast the characters in striking, memorable silhouettes.   If you are with Zoic Studios, please email human@videopixie.com to register your account.
                     </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 Game Trailer Creators</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/PlayerOneTrailers__YriC5R0PQ-iUl8U4n5QrZQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PlayerOneTrailers">   
                  <h3>
                     Player One Trailers
                     <span>Game Trailer Creator in </span>
                     <span class="location">Bellingham, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hello! We&#39;re Player One Trailers. We create professional video game trailers, cinematics, developer diares, live-action promos, and more for game developers across the globe on their PC , Console, and Mobile games!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="218679676" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/636214388_1280.jpg)"></div>
                     <img class="play" alt="Our 2017 reel! Providing video game trailers, cinematics, developer diaries, live-action promos, and more that go above and beyond, we work with studios and publishers around the world to bring our expertise to their game!   www.playeronetrailers.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '218679676')"
                        ng-class="{full: showFullComments['218679676']}">
                        Our 2017 reel! Providing video game trailers, cinematics, developer diaries, live-action promos, and more that go above and beyond, we work with studios and publishers around the world to bring our expertise to their game!   www.playeronetrailers.com
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="LNUzrWv50EI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/LNUzrWv50EI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Conarium - Launch Trailer (PC/Xbox One/PS4)  |   Our Role - Video Editing, Gameplay Capture, Sound Design, VFX, Motion Graphics, Cinematography, and Video Game Trailer Development." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'LNUzrWv50EI')"
                        ng-class="{full: showFullComments['LNUzrWv50EI']}">
                        Conarium - Launch Trailer (PC/Xbox One/PS4)  |   Our Role - Video Editing, Gameplay Capture, Sound Design, VFX, Motion Graphics, Cinematography, and Video Game Trailer Development.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="WobnonHZC6A" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/WobnonHZC6A/maxresdefault.jpg)"></div>
                     <img class="play" alt="Empathy: Path of Whispers - Launch Trailer (PC)  |   Our Role - Video Editing, Gameplay Capture, Sound Design,  Motion Graphics, Cinematography, and Video Game Trailer Development." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'WobnonHZC6A')"
                        ng-class="{full: showFullComments['WobnonHZC6A']}">
                        Empathy: Path of Whispers - Launch Trailer (PC)  |   Our Role - Video Editing, Gameplay Capture, Sound Design,  Motion Graphics, Cinematography, and Video Game Trailer Development.
                     </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/MyActiveDriveway__ZIqMkJSnRAqYjgn1VRkJ4Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MyActiveDriveway">   
                  <h3>
                     My Active Driveway
                     <span>Game Trailer Creator in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Design and animation studio based in New York City</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="92174718" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/471814981_1280.jpg)"></div>
                     <img class="play" alt="The iconic Boom Beach game trailer.     MyActiveDriveway are the makers of one of our favorite trailers of all time.    45s of sensorial mayhem  that looks like a ton of fun.  Are you MAD?  if yes, register your account to connect with game makers.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '92174718')"
                        ng-class="{full: showFullComments['92174718']}">
                        The iconic Boom Beach game trailer.     MyActiveDriveway are the makers of one of our favorite trailers of all time.    45s of sensorial mayhem  that looks like a ton of fun.  Are you MAD?  if yes, register your account to connect with game makers.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116010132" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/502209339_1280.jpg)"></div>
                     <img class="play" alt="Boom Beach Game Trailer.   MyActiveDriveway are the makers of the iconic Boom Beach game trailers, just the perfect dose of awesome 3D and Tropic Thunder humor.  Are you MAD?  if yes please register your account to connect with clients.  It&#39;s free.  Email human@videopixie.com, we&#39;ll get you set up in no time!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116010132')"
                        ng-class="{full: showFullComments['116010132']}">
                        Boom Beach Game Trailer.   MyActiveDriveway are the makers of the iconic Boom Beach game trailers, just the perfect dose of awesome 3D and Tropic Thunder humor.  Are you MAD?  if yes please register your account to connect with clients.  It&#39;s free.  Email human@videopixie.com, we&#39;ll get you set up in no time!
                     </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/DeclanDowling__BlOmaB_zTO-bdqddJ18snw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DeclanDowling">   
                  <h3>
                     Declan Dowling
                     <span>Game Trailer Creator in </span>
                     <span class="location">Ireland</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I direct, design and produce an array of content for international games and software publishers</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uLQvqAkeP1o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/uLQvqAkeP1o/maxresdefault.jpg)"></div>
                     <img class="play" alt="Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot over 2 days on minimal budget on an island off Rio Dignero." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uLQvqAkeP1o')"
                        ng-class="{full: showFullComments['uLQvqAkeP1o']}">
                        Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot over 2 days on minimal budget on an island off Rio Dignero.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vykEinH5kWg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/vykEinH5kWg/sddefault.jpg)"></div>
                     <img class="play" alt="Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot in 1 day at Collins Barracks Dublin." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vykEinH5kWg')"
                        ng-class="{full: showFullComments['vykEinH5kWg']}">
                        Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot in 1 day at Collins Barracks Dublin.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="xNeAGJvf2-M" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/xNeAGJvf2-M/maxresdefault.jpg)"></div>
                     <img class="play" alt="Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot in 1 evening at the gpotato european headquarters Dublin" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'xNeAGJvf2-M')"
                        ng-class="{full: showFullComments['xNeAGJvf2-M']}">
                        Live Action Game Trailer - On this production I acted as Writer, Director &amp; Editor. It was shot in 1 evening at the gpotato european headquarters Dublin
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Game Trailer Creators 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/AntFarm__5Pm1DT1TRZKy-S_KfJoFvw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AntFarm">   
                  <h3>
                     Ant Farm
                     <span>Game Trailer Creator in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Ant Farm  is full-service entertainment marketing and advertising agency.  They are based in LA, and have an impressive track record in game advertising for AAA titles such as &quot;Call of Duty,” “Mad Max,” “Angry Birds,” &quot;Assassin’s Creed,” “Destiny”</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="VFh5ArG46_M" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/VFh5ArG46_M/maxresdefault.jpg)"></div>
                     <img class="play" alt="E3 reveal trailer for &quot;Destiny: The Taken King&quot;.  Ant Farm wrote scripts, directed gameplay capture and provided all editorial and post services on the project. Their in-house graphics department also branded the game with the design of the end mnemonic.   If you are with Ant Farm, please email human@videopixie.com to register your account." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'VFh5ArG46_M')"
                        ng-class="{full: showFullComments['VFh5ArG46_M']}">
                        E3 reveal trailer for &quot;Destiny: The Taken King&quot;.  Ant Farm wrote scripts, directed gameplay capture and provided all editorial and post services on the project. Their in-house graphics department also branded the game with the design of the end mnemonic.   If you are with Ant Farm, please email human@videopixie.com to register your account.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="A7Tx9k0C7Ic" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/A7Tx9k0C7Ic/maxresdefault.jpg)"></div>
                     <img class="play" alt="Teaser Trailer for &quot;Call of Duty Black Ops III&quot;.   The worldwide campaign was kicked off with Ant Farm’s Teaser, featuring stunning graphics and sound design that not only remind the viewer of where the franchise has been, but also hints at what is to come.  If you are with Ant Farm, please email human@videopixie.com to register your account." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'A7Tx9k0C7Ic')"
                        ng-class="{full: showFullComments['A7Tx9k0C7Ic']}">
                        Teaser Trailer for &quot;Call of Duty Black Ops III&quot;.   The worldwide campaign was kicked off with Ant Farm’s Teaser, featuring stunning graphics and sound design that not only remind the viewer of where the franchise has been, but also hints at what is to come.  If you are with Ant Farm, please email human@videopixie.com to register your account.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="MMKd7ZW_ub8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/MMKd7ZW_ub8/maxresdefault.jpg)"></div>
                     <img class="play" alt="Reveal trailer for &quot;Sparrow Racing League&quot;.  Ant Farm crafted this trailer from the ground up, beginning with a script that teases the viewers to this limited-time event and ends with explosive racing action. Ant Farm’s senior game capture directors showcased not only the beautiful scenery and landscape of “Destiny”, but also the high-octane intensity and excitement of this brand new Sparrow Racing adventure.  If you are with Ant Farm, please email human@videopixie.com to register your account." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'MMKd7ZW_ub8')"
                        ng-class="{full: showFullComments['MMKd7ZW_ub8']}">
                        Reveal trailer for &quot;Sparrow Racing League&quot;.  Ant Farm crafted this trailer from the ground up, beginning with a script that teases the viewers to this limited-time event and ends with explosive racing action. Ant Farm’s senior game capture directors showcased not only the beautiful scenery and landscape of “Destiny”, but also the high-octane intensity and excitement of this brand new Sparrow Racing adventure.  If you are with Ant Farm, please email human@videopixie.com to register your account.
                     </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/KertGartner__c6yhZG9ySMmfLziSf7uZMg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/KertGartner">   
                  <h3>
                     Kert Gartner
                     <span>Game Trailer Creator in </span>
                     <span class="location">Winnipeg, MB, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I make Indie Game Trailers &amp; am an Adobe After Effects &amp; Photoshop Certified Instructor. Survivor of 8 years in the VFX Industry. Father of a toddler &amp; a baby</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nx-esx_KbJE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/nx-esx_KbJE/maxresdefault.jpg)"></div>
                     <img class="play" alt="Mixed reality game trailer for Fantastic Contraption a room-scaled  building game for  VR. Create life-sized contraptions as tall as you can reach, then send them whirling, flinging, and trundling off to solve puzzles on the other side of a floating island. There are no right or wrong solutions, so bring your creativity." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nx-esx_KbJE')"
                        ng-class="{full: showFullComments['nx-esx_KbJE']}">
                        Mixed reality game trailer for Fantastic Contraption a room-scaled  building game for  VR. Create life-sized contraptions as tall as you can reach, then send them whirling, flinging, and trundling off to solve puzzles on the other side of a floating island. There are no right or wrong solutions, so bring your creativity.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="7LSs1bj41P4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/7LSs1bj41P4/sddefault.jpg)"></div>
                     <img class="play" alt="Game Trailer for &quot;Nuclear Throne&quot;  a post-apocalyptic shooter.   Fight your way through the wastelands with powerful weaponry, collecting radiation to mutate some new limbs and abilities.  All these things and more you could do if only you were good at this game. Can you reach the Nuclear Throne?" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '7LSs1bj41P4')"
                        ng-class="{full: showFullComments['7LSs1bj41P4']}">
                        Game Trailer for &quot;Nuclear Throne&quot;  a post-apocalyptic shooter.   Fight your way through the wastelands with powerful weaponry, collecting radiation to mutate some new limbs and abilities.  All these things and more you could do if only you were good at this game. Can you reach the Nuclear Throne?
                     </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/TrailerFarm__WFvE3RkgSrOBW5gP8_8pYg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TrailerFarm">   
                  <h3>
                     The Trailerfarm
                     <span>Game Trailer Creator in </span>
                     <span class="location">Brighton, The City of Brighton and Hove, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We’re a crack team of industry veterans and exciting new talent drawn from across the creative disciplines.

We’re dedicated to making game trailers that BRING THE AWESOME.

The TrailerFarm was founded by Dan and Tony, two brothers who’ve worked on development teams that have made critically acclaimed, award-winning AAA titles – probably including some of your favourites – and have been lucky enough to work with some of the biggest and most exciting names in games creating fresh video content.

And we LOVE games.

We know who Leeroy Jenkins is. We’ve queued at GAME stores at midnight. We completed Portal 2 in co-op, know that games are better than films and always shoot every red barrel.

Our work to date has had a combined total of 30 MILLION+ views and counting.

We’d love to help you get eyes on your game.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="T189kgL-bXg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/T189kgL-bXg/hqdefault.jpg)"></div>
                     <img class="play" alt="Home: Boov Pop! Official Game Trailer - For all Boov fans out there - do not miss &quot;O&quot;&#39;s new adventures and help our protagonists solve fun smart puzzles." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'T189kgL-bXg')"
                        ng-class="{full: showFullComments['T189kgL-bXg']}">
                        Home: Boov Pop! Official Game Trailer - For all Boov fans out there - do not miss &quot;O&quot;&#39;s new adventures and help our protagonists solve fun smart puzzles.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="138299688" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/533580928_1280.jpg)"></div>
                     <img class="play" alt="Super Dungeon Brothers game trailer, includes cool Lego-Like 3D custscenes" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '138299688')"
                        ng-class="{full: showFullComments['138299688']}">
                        Super Dungeon Brothers game trailer, includes cool Lego-Like 3D custscenes
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6eT5oi0TdAs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/6eT5oi0TdAs/maxresdefault.jpg)"></div>
                     <img class="play" alt="Official World of Warriors - Full Length Game Trailer World of Warriors. Gather your army! World of Warriors is OUT NOW! The epic adventure and combat strategy game is now available on iOS and Android." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6eT5oi0TdAs')"
                        ng-class="{full: showFullComments['6eT5oi0TdAs']}">
                        Official World of Warriors - Full Length Game Trailer World of Warriors. Gather your army! World of Warriors is OUT NOW! The epic adventure and combat strategy game is now available on iOS and Android.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Game Trailer Creator for your project</span>
               <a href="/start"><div class="button">Connect with Game Trailer Creators</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/LauraMartinez__YF9pjDjYSqmAj8E8_MP2ZA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LauraMartinez">   
                  <h3>
                     Laura Martínez
                     <span>Game Trailer Creator in </span>
                     <span class="location">Centro, Santiago de Querétaro, Qro., Mexico</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hi! My name is Laura. I recently started a Video Production Company called KATANA. We produce commercials, corporate video, Motion Graphic Animation, Film and VFX.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="168711790" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/573265278_1280.jpg)"></div>
                     <img class="play" alt="GAME TRAILER - Lords of chaos" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '168711790')"
                        ng-class="{full: showFullComments['168711790']}">
                        GAME TRAILER - Lords of chaos
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/AnaLorenz__2n9oIPdZRKuW9Ew_wYYeKQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AnaLorenz">   
                  <h3>
                     Ana Lorenz
                     <span>Game Trailer Creator in </span>
                     <span class="location">London, UK</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a Spanish filmmaker based in Los Angeles, California. I love filming and editing. Very experienced in commercials, corporate videos, music videos, short films, fashion.  I have won more than 40 awards for my short films.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="63507484" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/433812273_1280.jpg)"></div>
                     <img class="play" alt="Commercial I produced, wrote, directed and edited for the popular video game Candy Crush." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '63507484')"
                        ng-class="{full: showFullComments['63507484']}">
                        Commercial I produced, wrote, directed and edited for the popular video game Candy Crush.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/HydrogenWhiskeyStudios__kpbTNWzDRsW7MOTgX9-amg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HydrogenWhiskeyStudios">   
                  <h3>
                     Hydrogen Whiskey Studios
                     <span>Game Trailer Creator in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hydrogen Whiskey is a L.A. based animation studio, known for producing cutting edge CG trailers &amp; cutscenes, character animation sets, as well as motion graphics, design and visual effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134767121" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528423303_1280.jpg)"></div>
                     <img class="play" alt="App Previews, Video Ads and Launch Trailers  We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying complexity to meet budget and marketing needs. We can create a simple app preview utilizing game captures. Add sizzling transitions, snazzling text. And, of course, we can add custom assets and animations.   Are you with Hydrogen Whiskey?  if yes, make sure to register your account to connect with new clients.  Just email human@videopixie.com, it&#39;s free." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134767121')"
                        ng-class="{full: showFullComments['134767121']}">
                        App Previews, Video Ads and Launch Trailers  We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying complexity to meet budget and marketing needs. We can create a simple app preview utilizing game captures. Add sizzling transitions, snazzling text. And, of course, we can add custom assets and animations.   Are you with Hydrogen Whiskey?  if yes, make sure to register your account to connect with new clients.  Just email human@videopixie.com, it&#39;s free.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134767111" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528405551_1280.jpg)"></div>
                     <img class="play" alt="We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying lengths and complexity to meet budget and marketing requirements. We can create a simple app preview utilizing game captures. We can add sizzling transitions, overlay snazzling text, and of course we can add attention grabbing custom assets and animations.  Are you with Hydrogen Whiskey?  if yes" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134767111')"
                        ng-class="{full: showFullComments['134767111']}">
                        We love Zynga games! For Zynga, we create app previews, video ads and launch trailers of varying lengths and complexity to meet budget and marketing requirements. We can create a simple app preview utilizing game captures. We can add sizzling transitions, overlay snazzling text, and of course we can add attention grabbing custom assets and animations.  Are you with Hydrogen Whiskey?  if yes
                     </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 Game Trailer Creators</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/MotionSickness__FBOP7pMYQKiAcwFNDoC86w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MotionSickness">   
                  <h3>
                     Motion Sickness
                     <span>Game Trailer Creator in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Motion Sickness is a creative studio that produces content for film, broadcast, and digital media. Our team offers a range of narrative skills from design and direction, to animation and visual effects. We strive to help our clients achieve their goals through creative collaboration during the production process.
www.motionsickness.tv</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="177462975" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/585046864_1280.jpg)"></div>
                     <img class="play" alt="Operation: New Earth trailer We did the all the VFX and editing work. Watch our VFX breakdown here: https://vimeo.com/179814996" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '177462975')"
                        ng-class="{full: showFullComments['177462975']}">
                        Operation: New Earth trailer We did the all the VFX and editing work. Watch our VFX breakdown here: https://vimeo.com/179814996
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="179814996" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/587832376_1280.jpg)"></div>
                     <img class="play" alt="Our VFX breakdown for the Operation: New Earth trailer." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '179814996')"
                        ng-class="{full: showFullComments['179814996']}">
                        Our VFX breakdown for the Operation: New Earth trailer.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="167204990" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577765558_1280.jpg)"></div>
                     <img class="play" alt="Smash Squad Videogame Trailer. We did the visual effects and graphics work - watch the vfx breakdown here: https://vimeo.com/178755647" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '167204990')"
                        ng-class="{full: showFullComments['167204990']}">
                        Smash Squad Videogame Trailer. We did the visual effects and graphics work - watch the vfx breakdown here: https://vimeo.com/178755647
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Apptamin__uA6ycUIgSxmv2fcvtlMCJA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/apptamin">   
                  <h3>
                     Apptamin
                     <span>Game Trailer Creator in </span>
                     <span class="location">Montpellier, France</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We (Apptamin) have extensive experience in creating both animation (2D-3D) and live-action video, (almost) exclusively for mobile apps &amp; games, plus we know how to use them more efficiently to drive both conversions and just general excitement for your app/game/product or service.

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

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

Talk soon!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119839656" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507714102_640.jpg)"></div>
                     <img class="play" alt="Clash Of Mafias (Game trailer with animations and motion graphics)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119839656')"
                        ng-class="{full: showFullComments['119839656']}">
                        Clash Of Mafias (Game trailer with animations and motion graphics)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118915183" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/506076763_640.jpg)"></div>
                     <img class="play" alt="ToyBlast 30s (Game trailer with animations, motion graphics and kinetic typography)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118915183')"
                        ng-class="{full: showFullComments['118915183']}">
                        ToyBlast 30s (Game trailer with animations, motion graphics and kinetic typography)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111878790" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497593070_640.jpg)"></div>
                     <img class="play" alt="App preview that we directed, edited and animated for the app Tango.  (app preview example with animations and motion graphics)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111878790')"
                        ng-class="{full: showFullComments['111878790']}">
                        App preview that we directed, edited and animated for the app Tango.  (app preview example with animations and motion graphics)
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="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/Fetch">   
                  <h3>
                     Fetch
                     <span>Game Trailer Creator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Mobile marketing and advertising agency with offices in London, Berlin, San Francisco and Hong Kong</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="QYrL9Q6HSRg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/QYrL9Q6HSRg/maxresdefault.jpg)"></div>
                     <img class="play" alt="One of the best examples of live action game trailer we&#39;ve seen.  Expertly directed and produced by Fetch.    Are you with Fetch?  register your account to connect with game developers.  Just email us at human@videopixie.com it&#39;s free." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'QYrL9Q6HSRg')"
                        ng-class="{full: showFullComments['QYrL9Q6HSRg']}">
                        One of the best examples of live action game trailer we&#39;ve seen.  Expertly directed and produced by Fetch.    Are you with Fetch?  register your account to connect with game developers.  Just email us at human@videopixie.com it&#39;s free.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120714622" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508645780_1280.jpg)"></div>
                     <img class="play" alt="Fetch nailed it with this promotional trailer for Pocket Gems.  Short, sweet, and memorable.    Are you Fetch?  make sure to register your account to connect with client.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120714622')"
                        ng-class="{full: showFullComments['120714622']}">
                        Fetch nailed it with this promotional trailer for Pocket Gems.  Short, sweet, and memorable.    Are you Fetch?  make sure to register your account to connect with client.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120714627" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508645773_1280.jpg)"></div>
                     <img class="play" alt="Spoooooky app promo for Fright Fight.  Or how to set the tone for a game in under 30s.    Are you Fetch?  please register your account to connect with game devs.  It&#39;s free, just email human@videopixie.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120714627')"
                        ng-class="{full: showFullComments['120714627']}">
                        Spoooooky app promo for Fright Fight.  Or how to set the tone for a game in under 30s.    Are you Fetch?  please register your account to connect with game devs.  It&#39;s free, just email human@videopixie.com
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Game Trailer Creators 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/LamplighterStudios__AZPgTmU3SVSfrW85w4PT4w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LamplighterStudios">   
                  <h3>
                     Lamplighter Studios
                     <span>Game Trailer Creator in </span>
                     <span class="location">Toronto, ON, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">If a picture is worth a thousand words, than a video must be 1000x more powerful! That’s what we believe at Lamplighter Studios and why we’ve been creating compelling audio &amp; video for well over 13 years. During that time we’ve worked with clients from around the globe and helped them connect with their audience through high quality audio &amp; visual mediums.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="fNLyPmW_j6s" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/fNLyPmW_j6s/maxresdefault.jpg)"></div>
                     <img class="play" alt="App Store video for the dating app MillionaireMatch. Written, produced, composited, edited and mixed by Lamplighter Studios." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'fNLyPmW_j6s')"
                        ng-class="{full: showFullComments['fNLyPmW_j6s']}">
                        App Store video for the dating app MillionaireMatch. Written, produced, composited, edited and mixed by Lamplighter Studios.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="-vnj9LXoJj0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/-vnj9LXoJj0/0.jpg)"></div>
                     <img class="play" alt="Happening - App Store video for Happyning. Produced, composited and edited by Lamplighter Studios." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '-vnj9LXoJj0')"
                        ng-class="{full: showFullComments['-vnj9LXoJj0']}">
                        Happening - App Store video for Happyning. Produced, composited and edited by Lamplighter Studios.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ak3-DuP8wRo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/ak3-DuP8wRo/maxresdefault.jpg)"></div>
                     <img class="play" alt="App Store video for Shopinbox. Produced, composited and edited by Lamplighter Studios." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ak3-DuP8wRo')"
                        ng-class="{full: showFullComments['ak3-DuP8wRo']}">
                        App Store video for Shopinbox. Produced, composited and edited by Lamplighter Studios.
                     </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/GageAllen__VnvJ3ZQtSui7lTPo75mqNA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GageAllen">   
                  <h3>
                     Gage Allen
                     <span>Game Trailer Creator in </span>
                     <span class="location">Bellingham, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a professional video game trailer/media producer! I have worked with game developers around the world by creating professional video game trailers, cinematics, screenshots, and more for their PC, Console, and Mobile Games!

As a video editor, producer, writer, director, animator, VFX artist, motion graphics artist, sound designer, voice over director, gameplay capture artist, and cinematographer, I accurately portray a game or video atmosphere in a visually appealing way to an audience. 

Need a professional piece of media for your game or project?
www.gageallen.com

Read the numerous recommendations and testimonials I have received here: www.gageallen.com/testimonials</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="178109568" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/585648537_1280.jpg)"></div>
                     <img class="play" alt="Gage Allen - Video Game Media Reel   Services Offered: Video Editor, Director, Producer, Writer, Gameplay Capture Artist, Motion Graphics Artist, Animator, Sound Designer, Voice Over Director, VFX Artist, Cinematographer, Colorist, and more." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '178109568')"
                        ng-class="{full: showFullComments['178109568']}">
                        Gage Allen - Video Game Media Reel   Services Offered: Video Editor, Director, Producer, Writer, Gameplay Capture Artist, Motion Graphics Artist, Animator, Sound Designer, Voice Over Director, VFX Artist, Cinematographer, Colorist, and more.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JyF8giluMtI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/JyF8giluMtI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Tenebrae - Official Opening Cinematic   - Video Editor, Animator, Video Game Trailer Creator, Director, Voice Over Director, Sound Designer, VFX Artist, Producer, Motion Graphics Artist." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JyF8giluMtI')"
                        ng-class="{full: showFullComments['JyF8giluMtI']}">
                        Tenebrae - Official Opening Cinematic   - Video Editor, Animator, Video Game Trailer Creator, Director, Voice Over Director, Sound Designer, VFX Artist, Producer, Motion Graphics Artist.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="4CgQsRMiXvE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/4CgQsRMiXvE/maxresdefault.jpg)"></div>
                     <img class="play" alt="The True Fallout Community - Official Trailer   - Video Editor, Writer, Motion Graphics Artist, Sound Designer, Video Game Trailer Creator" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '4CgQsRMiXvE')"
                        ng-class="{full: showFullComments['4CgQsRMiXvE']}">
                        The True Fallout Community - Official Trailer   - Video Editor, Writer, Motion Graphics Artist, Sound Designer, Video Game Trailer Creator
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/fatdroid__2iWyV_BjQt2Ilcn3gge-Ng.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/fatdroid">   
                  <h3>
                     Fatdroid
                     <span>Game Trailer Creator in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Robust, yet streamlined advertising.  Take our namesake, fatdroid:  we&#39;re efficient and technically excellent (like a little robot), but, with an excess of creativity (the &quot;fat&quot; part).

Our team met YEARS ago (don&#39;t want to date ourselves) while working at a gaming company, but we&#39;ve expanded into animation, live action products, motion comics, and event coverage.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117565798" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504862640_640.jpg)"></div>
                     <img class="play" alt="Fatdroid 2015 Reel (Animations, motion graphics, game trailers)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117565798')"
                        ng-class="{full: showFullComments['117565798']}">
                        Fatdroid 2015 Reel (Animations, motion graphics, game trailers)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113665666" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499068727_640.jpg)"></div>
                     <img class="play" alt="Once Upon A Monster - game trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113665666')"
                        ng-class="{full: showFullComments['113665666']}">
                        Once Upon A Monster - game trailer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kzD3gTTH27Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/kzD3gTTH27Y/0.jpg)"></div>
                     <img class="play" alt="Gauntlet / Slayer Edition PS4 - game trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kzD3gTTH27Y')"
                        ng-class="{full: showFullComments['kzD3gTTH27Y']}">
                        Gauntlet / Slayer Edition PS4 - game trailer
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Game Trailer Creator for your project</span>
               <a href="/start"><div class="button">Connect with Game Trailer Creators</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/Andreas_Giesen__I04sB7jXQUGfEo5CB8AQRw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/andreasgiesen">   
                  <h3>
                     Andreas Giesen
                     <span>Game Trailer Creator in </span>
                     <span class="location">Germany</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Iam working severall years as an freelance editor, motion designer and effects animatior. Mostly working on Game Trailers, Commercials and Shortfilms, but Iam also interested in different genres.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zR40H8gZzTs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/zR40H8gZzTs/0.jpg)"></div>
                     <img class="play" alt="Runes of Magic Chapter 4 - Lands of Despair Game Teaser Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zR40H8gZzTs')"
                        ng-class="{full: showFullComments['zR40H8gZzTs']}">
                        Runes of Magic Chapter 4 - Lands of Despair Game Teaser Trailer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="FdToFjQYoIc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/FdToFjQYoIc/0.jpg)"></div>
                     <img class="play" alt="Brick Force: Trailer zum Jahresrückblick - Tags: Game Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'FdToFjQYoIc')"
                        ng-class="{full: showFullComments['FdToFjQYoIc']}">
                        Brick Force: Trailer zum Jahresrückblick - Tags: Game Trailer
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/0019-kit-larson.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kitlarson">   
                  <h3>
                     Kit Larson
                     <span>Game Trailer Creator in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Given the title of &quot;MacGyver,&quot;, Kit has been one of Videopixie&#39;s earliest and most reliable curators. A film student with a focus in communications, Kit is very good at gaining a clear understanding from his clients, and meeting deadlines to a T. 

At only age 23, Kit has extensive training and experience with editing software Final Cut Pro 7 and Adobe After Effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ade0921d-b077-41d6-a880-0425497ff21a" vp-provider="videopixie">
                     <div class="reel-thumbnail" style="background-image: url(https://s3.amazonaws.com/s3.sellstage.com/ade0921d-b077-41d6-a880-0425497ff21a_120h.jpg)"></div>
                     <img class="play" alt="Mystery Society Game Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ade0921d-b077-41d6-a880-0425497ff21a')"
                        ng-class="{full: showFullComments['ade0921d-b077-41d6-a880-0425497ff21a']}">
                        Mystery Society Game Trailer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="_cuNBrlRsC8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/_cuNBrlRsC8/0.jpg)"></div>
                     <img class="play" alt="Spunky game trailer.  One of my first videos ever made with videopixie. Priced at $500. Roles: Editing, Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '_cuNBrlRsC8')"
                        ng-class="{full: showFullComments['_cuNBrlRsC8']}">
                        Spunky game trailer.  One of my first videos ever made with videopixie. Priced at $500. Roles: Editing, Animation
                     </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>
