<!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>Chicago Videographers | Videopixie</title>
   <meta name="description" content="A selection of the best videographers in Chicago.  Watch examples of their work. To receive quotes from the best Videographers in Chicago, just post a project and get bids in no time.">
   <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 Chicago Videographers</h1>
      <h2>Videopixie helps you hire the best videographers.</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/TadashiFilms__-SnKu5V0R_Wjd7R95-6d3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TadashiFilms">   
                  <h3>
                     Tadashi Films
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">The best production to post-production package your money can buy.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zyjR5xFsy2U" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/zyjR5xFsy2U/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zyjR5xFsy2U')"
                        ng-class="{full: showFullComments['zyjR5xFsy2U']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="tzaFkssLdpk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/tzaFkssLdpk/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'tzaFkssLdpk')"
                        ng-class="{full: showFullComments['tzaFkssLdpk']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="sp_BblW-NXE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/sp_BblW-NXE/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'sp_BblW-NXE')"
                        ng-class="{full: showFullComments['sp_BblW-NXE']}">
                        
                     </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/Tin_Squid_Studios__WBnL83rwTnyfS6nUiMMOqg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/tinsquidstudios">   
                  <h3>
                     Tin Squid Studios
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Tin Squid Studios is a media production company committed to making your brand come alive. We believe video is the most powerful way to tell a story, communicate an idea, or sell a product. We are passionate about film and would love to work with you to create an excellent video that engages your audience and builds a lasting impression.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="70048177" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/465197542_640.jpg)"></div>
                     <img class="play" alt="Tin Squid Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '70048177')"
                        ng-class="{full: showFullComments['70048177']}">
                        Tin Squid Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="86323112" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/465198037_640.jpg)"></div>
                     <img class="play" alt="Christian Art Gifts - PROMO 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '86323112')"
                        ng-class="{full: showFullComments['86323112']}">
                        Christian Art Gifts - PROMO 2014
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="77188537" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/452302118_640.jpg)"></div>
                     <img class="play" alt="Matt + Lacey  // Highlight Film" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '77188537')"
                        ng-class="{full: showFullComments['77188537']}">
                        Matt + Lacey  // Highlight Film
                     </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/OriginalSixMedia__R6uk9oEJSoGAD3tIOAfCrQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/OriginalSixMedia">   
                  <h3>
                     Original Six Media
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Original Six Media is a full service video production company that specializes in digital video. We have created a cohesive process for production where we put storytelling at the forefront, and take projects from initial concept to final upload – bringing quality control and expedience to every step.
 
In the edit bay, we create all types of corporate and branded content – documentary-style pieces, event recaps, testimonials, product demos, explainer videos, and episodic features for social media. While our forte is start-to-finish production, we also have cinematography and editorial services available à la carte. 
 
Please feel free to visit our website to find out more about us, and see samples: originalsixmedia.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="100431629" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/481916244_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '100431629')"
                        ng-class="{full: showFullComments['100431629']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113540140" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/498896448_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113540140')"
                        ng-class="{full: showFullComments['113540140']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="102652795" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/484707111_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '102652795')"
                        ng-class="{full: showFullComments['102652795']}">
                        
                     </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 videographers</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/DannyFogarty__cOiOd_9USXOQKTFX9xY_3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DannyFogarty">   
                  <h3>
                     Danny Fogarty
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a video editor and filmmaker based in Chicago. Over the past 8 years I&#39;ve worked on every kind of project from indie feature films to multi-million dollar commercials.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="125962109" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/516245404_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '125962109')"
                        ng-class="{full: showFullComments['125962109']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="125961982" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/516244951_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '125961982')"
                        ng-class="{full: showFullComments['125961982']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="91770776" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/471280008_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '91770776')"
                        ng-class="{full: showFullComments['91770776']}">
                        
                     </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/Israel_Vazquez__axHNSnk3Sj2EgsTFDvUBvg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/israelvazquez">   
                  <h3>
                     Israel Vazquez
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a filmmaker and music producer from Madrid. Moved to Chicago 7 years ago. Working hard to create great media content. Loving every minute of it.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="37638621" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/258674591_640.jpg)"></div>
                     <img class="play" alt="Chiveis Trilogy Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '37638621')"
                        ng-class="{full: showFullComments['37638621']}">
                        Chiveis Trilogy Trailer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="77188537" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/452302118_640.jpg)"></div>
                     <img class="play" alt="Matt + Lacey  // Highlight Film - Tags: Wedding" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '77188537')"
                        ng-class="{full: showFullComments['77188537']}">
                        Matt + Lacey  // Highlight Film - Tags: Wedding
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="80423795" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/456339500_640.jpg)"></div>
                     <img class="play" alt="Wilson family film - Fall 2013 - Tags:  Family, Portrait" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '80423795')"
                        ng-class="{full: showFullComments['80423795']}">
                        Wilson family film - Fall 2013 - Tags:  Family, Portrait
                     </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/Kike_Remboski__LxcJNP19Rjyk0cVl9McBYw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kikeremboski">   
                  <h3>
                     Kike Remboski
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">seeking to work as a video editor where I can use my creativity to help tell a story</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="oUvid3IwZzk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/oUvid3IwZzk/0.jpg)"></div>
                     <img class="play" alt="Lifestyle of the Fit by Alexandra Miller; RKTR Remix" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'oUvid3IwZzk')"
                        ng-class="{full: showFullComments['oUvid3IwZzk']}">
                        Lifestyle of the Fit by Alexandra Miller; RKTR Remix
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="_z535S8oqgs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/_z535S8oqgs/0.jpg)"></div>
                     <img class="play" alt="MICHAEL JOSIFOVSKI - MY DREAM IS JUST BEGINNING" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '_z535S8oqgs')"
                        ng-class="{full: showFullComments['_z535S8oqgs']}">
                        MICHAEL JOSIFOVSKI - MY DREAM IS JUST BEGINNING
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented videographers 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/Two_Gents_Digital_LLC__GKJlh8x2TyGZzZqjdB1b3A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TwoGentsDigital">   
                  <h3>
                     Two Gents Digital
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We&#39;re a branded video content company located in Chicago, IL. Although there is only two of us, we cover all aspects of production including creative, pre-production, directing, and post.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="M1MkDrOy9o0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/M1MkDrOy9o0/0.jpg)"></div>
                     <img class="play" alt="Conceptualized, produced, and edited entirely by two gents.  Keeps overhead low and creativity high." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'M1MkDrOy9o0')"
                        ng-class="{full: showFullComments['M1MkDrOy9o0']}">
                        Conceptualized, produced, and edited entirely by two gents.  Keeps overhead low and creativity high.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nZLo6DKRb0E" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/nZLo6DKRb0E/0.jpg)"></div>
                     <img class="play" alt="Branded video content created to help promote Sea Salt Company in Hawaii." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nZLo6DKRb0E')"
                        ng-class="{full: showFullComments['nZLo6DKRb0E']}">
                        Branded video content created to help promote Sea Salt Company in Hawaii.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="N4QQZ-YLAhI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/N4QQZ-YLAhI/0.jpg)"></div>
                     <img class="play" alt="Brand story created for national organization. Conceptualized, produced and edited entirely by two gents." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'N4QQZ-YLAhI')"
                        ng-class="{full: showFullComments['N4QQZ-YLAhI']}">
                        Brand story created for national organization. Conceptualized, produced and edited entirely by two gents.
                     </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/TJSyndram__0Gehjl7ySB-1am8SreolfA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TJSyndram">   
                  <h3>
                     T.J. Syndram
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I love telling visual stories that matter to people. Every brand has great stories, every customer is a person.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="141681535" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/538752049_640.jpg)"></div>
                     <img class="play" alt="Wrote and directed Cubs hype video as they made the playoffs.   Featured in major news sources as capturing what it means to be a Cubs fan." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '141681535')"
                        ng-class="{full: showFullComments['141681535']}">
                        Wrote and directed Cubs hype video as they made the playoffs.   Featured in major news sources as capturing what it means to be a Cubs fan.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119898642" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507504525_640.jpg)"></div>
                     <img class="play" alt="Wrote, produced, and directed launch video for upcoming eCommerce functions of The Grid.   Currently The Grid is the largest crowdfunded software startup ever (outside of gaming)." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119898642')"
                        ng-class="{full: showFullComments['119898642']}">
                        Wrote, produced, and directed launch video for upcoming eCommerce functions of The Grid.   Currently The Grid is the largest crowdfunded software startup ever (outside of gaming).
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="VGtCQWROytw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/VGtCQWROytw/0.jpg)"></div>
                     <img class="play" alt="Directed and produced this (little writing flexibility) for Caterpillar Innovation.   The video was designed specifically for a meeting of the board of directors for this Fortune 50 company. It features motion graphics to demonstrate technology clearly." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'VGtCQWROytw')"
                        ng-class="{full: showFullComments['VGtCQWROytw']}">
                        Directed and produced this (little writing flexibility) for Caterpillar Innovation.   The video was designed specifically for a meeting of the board of directors for this Fortune 50 company. It features motion graphics to demonstrate technology clearly.
                     </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/EugeneParechyn__pa41kwA8R723n81gqRslsA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EugeneParechyn">   
                  <h3>
                     Eugene Parechyn
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Whether I am creating a commercial, music video, short film, or documentary, my main goal is to create visually stunning videos that tell a story in distinct fashion.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118081842" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/520413446_640.jpg)"></div>
                     <img class="play" alt="Music Video/Short Film  Reel 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118081842')"
                        ng-class="{full: showFullComments['118081842']}">
                        Music Video/Short Film  Reel 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="144435021" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542274577_640.jpg)"></div>
                     <img class="play" alt="Videography reel 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '144435021')"
                        ng-class="{full: showFullComments['144435021']}">
                        Videography reel 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="146510375" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/544929717_640.jpg)"></div>
                     <img class="play" alt="Fashion Promo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '146510375')"
                        ng-class="{full: showFullComments['146510375']}">
                        Fashion Promo
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best videographer for your project</span>
               <a href="/start"><div class="button">Connect with videographers</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/McKenzieBeeby__tENn-d0bRDeIFa05QOMD9Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/McKenzieBeeby">   
                  <h3>
                     McKenzie Beeby
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I was born and raised in Alexandria Virginia. When I was in elementary school I discovered my
love and passion for film. When middle school came around I found a few others who share 
the same passion.
We began making short films on YouTube. With every video we gained knowledge and 
experience. We have now won numerous awards for documentaries we produced and have 
traveled the country filming projects that we believe in.  My belief is that film has the power 
to change a society and culture. A good connection with a character and a story can influence
your audience in ways you cannot imagine. To this day, I attend 
Columbia College Chicago and continue to work on stories I believe in. 
To check out some of my work and more about me go to www.mckenziebeeby,com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Mz7ukI93TIU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Mz7ukI93TIU/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Mz7ukI93TIU')"
                        ng-class="{full: showFullComments['Mz7ukI93TIU']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="7G6YlVmX6p8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/7G6YlVmX6p8/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '7G6YlVmX6p8')"
                        ng-class="{full: showFullComments['7G6YlVmX6p8']}">
                        
                     </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/JordanStacey__DMpAABE_RWmUFk4SNKtTnQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JordanStacey">   
                  <h3>
                     Hutchinsons Media
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">An editor is the captain of the ship after the director sets sail. I will steer your video in the right direction all the way from import to export.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="yi5iwgQAoAI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/yi5iwgQAoAI/0.jpg)"></div>
                     <img class="play" alt="Filming and editing this video was a lot of fun, and I was glad to support our 2012 Winter Olympians. You can see me playing bass at 01:24 :)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'yi5iwgQAoAI')"
                        ng-class="{full: showFullComments['yi5iwgQAoAI']}">
                        Filming and editing this video was a lot of fun, and I was glad to support our 2012 Winter Olympians. You can see me playing bass at 01:24 :)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="8DelINA-kMU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/8DelINA-kMU/0.jpg)"></div>
                     <img class="play" alt="I was so lucky to film and edit this inspirational video about people who had a brush with the criminal justice system. They are somebody!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '8DelINA-kMU')"
                        ng-class="{full: showFullComments['8DelINA-kMU']}">
                        I was so lucky to film and edit this inspirational video about people who had a brush with the criminal justice system. They are somebody!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="TeEj5jBHJUM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/TeEj5jBHJUM/0.jpg)"></div>
                     <img class="play" alt="This was a lot of fun coming up with the idea, filming, and editing this video. These guys PWND IT!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TeEj5jBHJUM')"
                        ng-class="{full: showFullComments['TeEj5jBHJUM']}">
                        This was a lot of fun coming up with the idea, filming, and editing this video. These guys PWND IT!
                     </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/0087-steve-simon.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/stevesimon">   
                  <h3>
                     Steve Simon
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional video editor with experience working with a variety of corporate and non-profit clients. Full post-production experience; from editing and color-grading footage to scripting and creating 3D motion graphics projects. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85117065" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/462290709_640.jpg)"></div>
                     <img class="play" alt="Steve Simon Demo Reel - 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85117065')"
                        ng-class="{full: showFullComments['85117065']}">
                        Steve Simon Demo Reel - 2014
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="65931534" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/437133823_640.jpg)"></div>
                     <img class="play" alt="Feeling Judo Teaser #1" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '65931534')"
                        ng-class="{full: showFullComments['65931534']}">
                        Feeling Judo Teaser #1
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="xaHEh6Uf4qY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/xaHEh6Uf4qY/0.jpg)"></div>
                     <img class="play" alt="ATS Runs SAP" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'xaHEh6Uf4qY')"
                        ng-class="{full: showFullComments['xaHEh6Uf4qY']}">
                        ATS Runs SAP
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from videographers</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/Irwin_Myers__2_m_-bv-Rl6CLXDKeODNGA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/irwinmyers">   
                  <h3>
                     Irwin Myers
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">That&#39;s great! We MAKE videos! We work with all types of people on many types of projects. KickStarter, marketing, training, arts... You name it, we can shoot and edit it. And if I do say so myself, we do a great job! Can I give you my card?</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="73004854" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/447405964_640.jpg)"></div>
                     <img class="play" alt="Production Demo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '73004854')"
                        ng-class="{full: showFullComments['73004854']}">
                        Production Demo
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="90358213" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/469465532_640.jpg)"></div>
                     <img class="play" alt="Editing Sample Demo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '90358213')"
                        ng-class="{full: showFullComments['90358213']}">
                        Editing Sample Demo
                     </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/DelackMediaGroup__FwwNSfimQvGd9UR5Ra-SyA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DelackMediaGroup">   
                  <h3>
                     Delack Media Group
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We help brands tell their stories to a targeted online audience</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="92329968" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/472027046_640.jpg)"></div>
                     <img class="play" alt="Cinematography/Editing Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '92329968')"
                        ng-class="{full: showFullComments['92329968']}">
                        Cinematography/Editing Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="92354172" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/472060144_640.jpg)"></div>
                     <img class="play" alt="Motion Graphics Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '92354172')"
                        ng-class="{full: showFullComments['92354172']}">
                        Motion Graphics Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143757993" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541427207_640.jpg)"></div>
                     <img class="play" alt="Real Estate Branding Film" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143757993')"
                        ng-class="{full: showFullComments['143757993']}">
                        Real Estate Branding Film
                     </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/Sean_Kelly__g2UY2iAqQtOT5Lbxn1cXug.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/seankelly">   
                  <h3>
                     Sean Kelly
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hi, my name is Sean Kelly and I&#39;m an Editor/Videographer/Audio Engineer out of the Chicagoland area. I specialize in Corporate, Editorial, Music Performance, and documentary style shooting and editing. I offer a very high end product, reasonable rates, and very fast turnaround times. Together we can make your next project amazing!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="122932263" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/512075538_640.jpg)"></div>
                     <img class="play" alt="Cinematography Reel 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '122932263')"
                        ng-class="{full: showFullComments['122932263']}">
                        Cinematography Reel 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117844921" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504686373_640.jpg)"></div>
                     <img class="play" alt="Barbara Breitsameter Image" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117844921')"
                        ng-class="{full: showFullComments['117844921']}">
                        Barbara Breitsameter Image
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented videographers 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/CalebBurdeau__tRSh7K2TRMyrgRVrt6uVFg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/calebburdeau">   
                  <h3>
                     Caleb Burdeau
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a freelance editor working in Premiere and After Effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="63276707" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/433504942_640.jpg)"></div>
                     <img class="play" alt="2012  Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '63276707')"
                        ng-class="{full: showFullComments['63276707']}">
                        2012  Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="54435610" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/376897439_640.jpg)"></div>
                     <img class="play" alt="The Mighty Pirate - The Ravine (With Credits)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '54435610')"
                        ng-class="{full: showFullComments['54435610']}">
                        The Mighty Pirate - The Ravine (With Credits)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="30918110" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/207993019_640.jpg)"></div>
                     <img class="play" alt="Caleb Burdeau Reel 2011" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '30918110')"
                        ng-class="{full: showFullComments['30918110']}">
                        Caleb Burdeau Reel 2011
                     </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/CSDeBose__RvGw6gf9Rd-08gQXlD4nYw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/None">   
                  <h3>
                     SocMedia Films
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Yes you do... Let&#39;s make one!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="131804027" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/524203716_640.jpg)"></div>
                     <img class="play" alt="We handled pre-production, production, and post-production on this video (Including titles) to explain a photography course.  We wanted to keep it short, interesting, and informative." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '131804027')"
                        ng-class="{full: showFullComments['131804027']}">
                        We handled pre-production, production, and post-production on this video (Including titles) to explain a photography course.  We wanted to keep it short, interesting, and informative.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113439935" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/498758866_640.jpg)"></div>
                     <img class="play" alt="We were asked by a well known poet to create a video for one of her poems in anticipation of her new book release.  We handled pre-production, production, as well as all post-production.  The motion, tone, and sound is all meant to complement the tone of her work." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113439935')"
                        ng-class="{full: showFullComments['113439935']}">
                        We were asked by a well known poet to create a video for one of her poems in anticipation of her new book release.  We handled pre-production, production, as well as all post-production.  The motion, tone, and sound is all meant to complement the tone of her work.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="122205988" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/511001002_640.jpg)"></div>
                     <img class="play" alt="We handled production as well as editing and motion graphics.  This video is an excerpt from an upcoming series on Anthropology." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '122205988')"
                        ng-class="{full: showFullComments['122205988']}">
                        We handled production as well as editing and motion graphics.  This video is an excerpt from an upcoming series on Anthropology.
                     </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/KyleDelso__LpfQkBHDT7WjpCdBs4dLEw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/KyleDelso">   
                  <h3>
                     Kyle Delso
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I provide post-production services for any type of video that needs professional video and audio editing, sound design, color correction, color grading, and basic visual FX.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="2eRYtSwK2-c" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/2eRYtSwK2-c/0.jpg)"></div>
                     <img class="play" alt="A friend and I created a last-minute short film over the course of a month for the My RØDE Reel contest. I served as Director, Editor, and handled all post-production work." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '2eRYtSwK2-c')"
                        ng-class="{full: showFullComments['2eRYtSwK2-c']}">
                        A friend and I created a last-minute short film over the course of a month for the My RØDE Reel contest. I served as Director, Editor, and handled all post-production work.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nlpwDR07pOM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/nlpwDR07pOM/0.jpg)"></div>
                     <img class="play" alt="This illustrates what went on into the production of the short film I directed and edited." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nlpwDR07pOM')"
                        ng-class="{full: showFullComments['nlpwDR07pOM']}">
                        This illustrates what went on into the production of the short film I directed and edited.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="QLliM3cKVgw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/QLliM3cKVgw/0.jpg)"></div>
                     <img class="play" alt="As a part of the V.I. Studios team, I had to produce (from concept, through production, to final edit) this video in under 36 hours, including set design and construction/rigging." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'QLliM3cKVgw')"
                        ng-class="{full: showFullComments['QLliM3cKVgw']}">
                        As a part of the V.I. Studios team, I had to produce (from concept, through production, to final edit) this video in under 36 hours, including set design and construction/rigging.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best videographer for your project</span>
               <a href="/start"><div class="button">Connect with videographers</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/Steve_Zieverink,_Hypha_Films__Lb3eFD6KTGyEkFBfN3l4MA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hyphafilms">   
                  <h3>
                     Steve Zieverink, Hypha Films
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Steve Zieverink is a videographer and filmmaker working in Chicago, IL through Hypha Films, a production company for documentary films and support network for independent filmmakers to utilize their skills and connections to give back. He received a BFA at the Art Academy of Cincinnati and MFA at The University of IL, Chicago. He has a cinematic documentary approach and tells artistic stories for those looking to utilize the accessibility of web content, social media and short digital films.

Along with supporting Hypha producers, Zieverink provides detailed direction and in depth consultation. The interview process is rigorous, and in depth research is conducted beforehand in an effort to go deeper and pull out meaning. Filming and editing follow the intended plan, in addition to recognizing possible new opportunities to extend possibilities. The end result is a video of dynamic vision that not only meets the desired goal, but surpasses it.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="114771455" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/500562817_640.jpg)"></div>
                     <img class="play" alt="Trailer / Zhashagi, The Echo Maker" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '114771455')"
                        ng-class="{full: showFullComments['114771455']}">
                        Trailer / Zhashagi, The Echo Maker
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="114050277" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499587872_640.jpg)"></div>
                     <img class="play" alt="Hypha Films /  Interview Dr. Riki Ott" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '114050277')"
                        ng-class="{full: showFullComments['114050277']}">
                        Hypha Films /  Interview Dr. Riki Ott
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111926073" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496721185_640.jpg)"></div>
                     <img class="play" alt="Live Station / Kelly Martin fly fishing the Paw Paw River in Berrien County Michigan" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111926073')"
                        ng-class="{full: showFullComments['111926073']}">
                        Live Station / Kelly Martin fly fishing the Paw Paw River in Berrien County Michigan
                     </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>
