@charset "UTF-8";
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html, body {
  font-size: 1em;
  line-height: 1.4;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  font-family: 'Lato', sans-serif; }

::-moz-selection {
  background: #9574cb;
  text-shadow: none;
  color: #fff; }

::selection {
  background: #9574cb;
  text-shadow: none;
  color: #fff; }

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
/*.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}*/
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Logo-Spin */
@-webkit-keyframes logo-spin {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-moz-keyframes logo-spin {
  0% {
    -moz-transform: rotate(0); }
  100% {
    -moz-transform: rotate(360deg); } }
@keyframes logo-spin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/* Snippit-Header */
@-webkit-keyframes snippit-header-spin {
  0% {
    -webkit-transform: rotate(-10deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    opacity: 1; } }
@-moz-keyframes snippit-header-spin {
  0% {
    -moz-transform: rotate(-10deg);
    opacity: 0; }
  100% {
    -moz-transform: rotate(0);
    opacity: 1; } }
@keyframes snippit-header-spin {
  0% {
    transform: rotate(-10deg);
    opacity: 0; }
  100% {
    transform: rotate(0);
    opacity: 1; } }
/* Blink */
@-webkit-keyframes blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@-moz-keyframes blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@keyframes blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
/* Snippit Bounce *
@-webkit-keyframes snippit-bounce {
    0%   { -webkit-transform: translateY(0); }
    50%  { -webkit-transform: translateY(-20px); }
    100% { -webkit-transform: translateY(0); }
}
@-moz-keyframes snippit-bounce {
    0%   { -moz-transform: translateY(0); }
    50%  { -moz-transform: translateY(-20px); }
    100% { -moz-transform: translateY(0); }
}
@keyframes snippit-bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
/* Shadow Bounce *
@-webkit-keyframes shadow-bounce {
    0%   { opacity: 0; -webkit-transform: scale(1);}
    50%  { opacity: 0.4; -webkit-transform: scale(1.2); }
    100% { opacity: 0; -webkit-transform: scale(1);}
}
@-moz-keyframes shadow-bounce {
    0%   { opacity: 0; -moz-transform: scale(1);}
    50%  { opacity: 0.4; -moz-transform: scale(1.2); }
    100% { opacity: 0; -moz-transform: scale(1);}
}
@keyframes shadow-bounce {
    0%   { opacity: 0; transform: scale(1);}
    50%  { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1);}
}*/
.fullwidth, header, .white, .purple, footer {
  width: 100%;
  min-width: 1024px;
  overflow: hidden; }

.inside {
  width: 1024px;
  margin: 0 auto;
  position: relative; }

header {
  background: url(../../img/header-bg.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 706px;
  overflow: visible;
  /*#logo {
      width: 152px;
      height: 152px;
      margin: 0 auto;
      overflow: hidden;
      background: url(../../img/snippit-logo.png) center no-repeat;
      #logo-spin {
          width: 104px;
          height: 104px;
          margin: 24px;
          background: url(../../img/logo-spin.png) center no-repeat;
      }
      &:hover #logo-spin {
          -webkit-animation: logo-spin 1s;
          -moz-animation: logo-spin 1s;
          animation: logo-spin 1s;
      }
  }*/ }
  header .text {
    padding: 136px 0 0 5px;
    text-align: center;
    width: 512px;
    float: left;
    -webkit-transition: all 500ms ease-out 500ms;
    -moz-transition: all 500ms ease-out 500ms;
    transition: all 500ms ease-out 500ms;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0; }
  header #logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: url(../../img/logo-background.png) center no-repeat; }
    header #logo #grid {
      height: 150px;
      width: 150px;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      -webkit-transition: all 200ms ease-out 3340ms;
      -moz-transition: all 200ms ease-out 3340ms;
      transition: all 200ms ease-out 3340ms;
      opacity: 1; }
      header #logo #grid * {
        position: absolute; }
      header #logo #grid #logo-grid-sides-x {
        width: 130px;
        height: 150px;
        background: url(../../img/logo-grid-sides-x.png) center no-repeat;
        top: 0;
        bottom: 0;
        left: 10px;
        right: 10px;
        -webkit-transition: all 400ms ease-out 700ms;
        -moz-transition: all 400ms ease-out 700ms;
        transition: all 400ms ease-out 700ms;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        transform: scaleY(0); }
      header #logo #grid #logo-grid-sides-y {
        width: 150px;
        height: 130px;
        background: url(../../img/logo-grid-sides-y.png) center no-repeat;
        top: 10px;
        bottom: 10px;
        left: 0;
        right: 0;
        -webkit-transition: all 400ms ease-out 700ms;
        -moz-transition: all 400ms ease-out 700ms;
        transition: all 400ms ease-out 700ms;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        transform: scaleX(0); }
      header #logo #grid #logo-grid-center {
        width: 150px;
        height: 150px;
        background: url(../../img/logo-grid-center.png) center no-repeat;
        -webkit-transition: all 550ms ease-out 550ms;
        -moz-transition: all 550ms ease-out 550ms;
        transition: all 550ms ease-out 550ms;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0); }
      header #logo #grid #logo-grid-sides-x-2 {
        width: 57px;
        height: 150px;
        left: 47px;
        top: 0;
        bottom: 0;
        right: 45px;
        background: url(../../img/logo-grid-sides-x-2.png) center no-repeat;
        -webkit-transition: all 400ms ease-out 940ms;
        -moz-transition: all 400ms ease-out 940ms;
        transition: all 400ms ease-out 940ms;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        transform: scaleY(0); }
      header #logo #grid #logo-grid-sides-y-2 {
        width: 150px;
        height: 57px;
        background: url(../../img/logo-grid-sides-y-2.png) center no-repeat;
        top: 46.5px;
        left: 0;
        right: 0;
        bottom: 46.5px;
        -webkit-transition: all 400ms ease-out 940ms;
        -moz-transition: all 400ms ease-out 940ms;
        transition: all 400ms ease-out 940ms;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        transform: scaleX(0); }
      header #logo #grid #logo-grid-lt {
        width: 76px;
        height: 76px;
        background: url(../../img/logo-grid-lt.png) center no-repeat;
        left: 0;
        top: 0;
        -webkit-transition: all 400ms ease-out 1180ms;
        -moz-transition: all 400ms ease-out 1180ms;
        transition: all 400ms ease-out 1180ms;
        -webkit-transform-origin: left top;
        -moz-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0); }
      header #logo #grid #logo-grid-rt {
        width: 76px;
        height: 76px;
        background: url(../../img/logo-grid-rt.png) center no-repeat;
        right: 0;
        top: 0;
        -webkit-transition: all 400ms ease-out 1180ms;
        -moz-transition: all 400ms ease-out 1180ms;
        transition: all 400ms ease-out 1180ms;
        -webkit-transform-origin: right top;
        -moz-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0); }
      header #logo #grid #logo-grid-rb {
        width: 76px;
        height: 76px;
        background: url(../../img/logo-grid-rb.png) center no-repeat;
        right: 0;
        bottom: 0;
        -webkit-transition: all 400ms ease-out 1180ms;
        -moz-transition: all 400ms ease-out 1180ms;
        transition: all 400ms ease-out 1180ms;
        -webkit-transform-origin: right bottom;
        -moz-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0); }
      header #logo #grid #logo-grid-lb {
        width: 76px;
        height: 76px;
        background: url(../../img/logo-grid-lb.png) center no-repeat;
        left: 0;
        bottom: 0;
        -webkit-transition: all 400ms ease-out 1180ms;
        -moz-transition: all 400ms ease-out 1180ms;
        transition: all 400ms ease-out 1180ms;
        -webkit-transform-origin: left bottom;
        -moz-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0); }
      header #logo #grid #logo-grid-small {
        width: 58px;
        height: 58px;
        background: url(../../img/logo-grid-small.png) center no-repeat;
        left: 47px;
        top: 46px;
        right: 45px;
        bottom: 46px;
        -webkit-transition: all 200ms ease-out 1700ms;
        -moz-transition: all 200ms ease-out 1700ms;
        transition: all 200ms ease-out 1700ms;
        opacity: 0; }
      header #logo #grid #logo-grid-medium {
        width: 84px;
        height: 84px;
        background: url(../../img/logo-grid-medium.png) center no-repeat;
        left: 33px;
        top: 33px;
        right: 33px;
        bottom: 33px;
        -webkit-transition: all 400ms ease-out 1850ms;
        -moz-transition: all 400ms ease-out 1850ms;
        transition: all 400ms ease-out 1850ms;
        opacity: 0; }
      header #logo #grid #logo-grid-large {
        width: 131px;
        height: 130px;
        background: url(../../img/logo-grid-large.png) center no-repeat;
        left: 10px;
        top: 9.5px;
        right: 10px;
        bottom: 9.5px;
        -webkit-transition: all 400ms ease-out 2130ms;
        -moz-transition: all 400ms ease-out 2130ms;
        transition: all 400ms ease-out 2130ms;
        opacity: 0; }
    header #logo #logo-black-circle {
      width: 130px;
      height: 130px;
      position: absolute;
      background: url(../../img/logo-black.png) center no-repeat;
      left: 10px;
      top: 10px;
      right: 10px;
      bottom: 10px;
      -webkit-transition: all 450ms ease-out 2840ms;
      -moz-transition: all 450ms ease-out 2840ms;
      transition: all 450ms ease-out 2840ms;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-bot-strip-1 {
      width: 43px;
      height: 41px;
      position: absolute;
      background: url(../../img/logo-bot-strip-1.png) center no-repeat;
      left: 37px;
      top: 72px;
      -webkit-transition: all 400ms ease-out 3700ms;
      -moz-transition: all 400ms ease-out 3700ms;
      transition: all 400ms ease-out 3700ms;
      -webkit-transform-origin: right top;
      -moz-transform-origin: right top;
      transform-origin: right top;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-bot-strip-2 {
      width: 61px;
      height: 59px;
      position: absolute;
      background: url(../../img/logo-bot-strip-2.png) center no-repeat;
      left: 27px;
      top: 64px;
      -webkit-transition: all 400ms ease-out 4000ms;
      -moz-transition: all 400ms ease-out 4000ms;
      transition: all 400ms ease-out 4000ms;
      -webkit-transform-origin: right top;
      -moz-transform-origin: right top;
      transform-origin: right top;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-bot-strip-3 {
      width: 78px;
      height: 75px;
      position: absolute;
      background: url(../../img/logo-bot-strip-3.png) center no-repeat;
      left: 18px;
      top: 57px;
      -webkit-transition: all 400ms ease-out 4300ms;
      -moz-transition: all 400ms ease-out 4300ms;
      transition: all 400ms ease-out 4300ms;
      -webkit-transform-origin: right top;
      -moz-transform-origin: right top;
      transform-origin: right top;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-top-strip-1 {
      width: 43px;
      height: 42px;
      position: absolute;
      background: url(../../img/logo-top-strip-1.png) center no-repeat;
      left: 70px;
      top: 36px;
      -webkit-transition: all 400ms ease-out 3700ms;
      -moz-transition: all 400ms ease-out 3700ms;
      transition: all 400ms ease-out 3700ms;
      -webkit-transform-origin: left bottom;
      -moz-transform-origin: left bottom;
      transform-origin: left bottom;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-top-strip-2 {
      width: 62px;
      height: 59px;
      position: absolute;
      background: url(../../img/logo-top-strip-2.png) center no-repeat;
      left: 61px;
      top: 27px;
      -webkit-transition: all 400ms ease-out 4000ms;
      -moz-transition: all 400ms ease-out 4000ms;
      transition: all 400ms ease-out 4000ms;
      -webkit-transform-origin: left bottom;
      -moz-transform-origin: left bottom;
      transform-origin: left bottom;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-top-strip-3 {
      width: 78px;
      height: 76px;
      position: absolute;
      background: url(../../img/logo-top-strip-3.png) center no-repeat;
      left: 54px;
      top: 17px;
      -webkit-transition: all 400ms ease-out 4300ms;
      -moz-transition: all 400ms ease-out 4300ms;
      transition: all 400ms ease-out 4300ms;
      -webkit-transform-origin: left bottom;
      -moz-transform-origin: left bottom;
      transform-origin: left bottom;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-red-circle {
      width: 58px;
      height: 58px;
      position: absolute;
      background: url(../../img/logo-red.png) center no-repeat;
      left: 46px;
      top: 46px;
      right: 46px;
      bottom: 46px;
      opacity: 0;
      -webkit-transition: all 450ms ease-out 3060ms;
      -moz-transition: all 450ms ease-out 3060ms;
      transition: all 450ms ease-out 3060ms;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
    header #logo #logo-play {
      width: 30px;
      height: 30px;
      position: absolute;
      background: url(../../img/logo-play.png) center no-repeat;
      left: 63px;
      top: 60px;
      right: 57px;
      bottom: 60px;
      opacity: 0;
      -webkit-transition: all 300ms ease-out 3340ms;
      -moz-transition: all 300ms ease-out 3340ms;
      transition: all 300ms ease-out 3340ms;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0; }
  header.hover #logo #grid {
    opacity: 0; }
    header.hover #logo #grid #logo-grid-sides-x {
      -webkit-transform: scaleY(1);
      -moz-transform: scaleY(1);
      transform: scaleY(1); }
    header.hover #logo #grid #logo-grid-sides-y {
      -webkit-transform: scaleX(1);
      -moz-transform: scaleX(1);
      transform: scaleX(1); }
    header.hover #logo #grid #logo-grid-center {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1); }
    header.hover #logo #grid #logo-grid-sides-x-2 {
      -webkit-transform: scaleY(1);
      -moz-transform: scaleY(1);
      transform: scaleY(1); }
    header.hover #logo #grid #logo-grid-sides-y-2 {
      -webkit-transform: scaleX(1);
      -moz-transform: scaleX(1);
      transform: scaleX(1); }
    header.hover #logo #grid #logo-grid-lt {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1); }
    header.hover #logo #grid #logo-grid-rt {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1); }
    header.hover #logo #grid #logo-grid-rb {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1); }
    header.hover #logo #grid #logo-grid-lb {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1); }
    header.hover #logo #grid #logo-grid-small {
      opacity: 1; }
    header.hover #logo #grid #logo-grid-medium {
      opacity: 1; }
    header.hover #logo #grid #logo-grid-large {
      opacity: 1; }
  header.hover #logo #logo-black-circle {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-bot-strip-1 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-bot-strip-2 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-bot-strip-3 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-top-strip-1 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-top-strip-2 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-top-strip-3 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-red-circle {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header.hover #logo #logo-play {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  header h1 {
    font-size: 52px;
    font-style: italic;
    font-weight: 400;
    color: #efeef0;
    margin: 11px 0 74px; }
    header h1 span {
      display: block;
      color: #fff;
      font-size: 26px;
      font-weight: 300;
      font-style: normal;
      line-height: 1;
      opacity: 0.5; }
  header #form-before p {
    font-weight: 300;
    font-size: 17px;
    color: #fff;
    margin: 0 0 26px; }
  header #form-before .fb-like {
    vertical-align: top;
    position: relative;
    top: -2px; }
  header #form-before .twitter-share-button {
    display: inline-block;
    vertical-align: top; }
  header #form-before form {
    width: 366px;
    margin: 0 auto; }
    header #form-before form input {
      width: 225px;
      padding: 0 20px;
      height: 55px;
      -moz-border-radius: 5px 0 0 5px;
      -webkit-border-radius: 5px 0 0 5px;
      border-radius: 5px 0 0 5px;
      background-color: #fff;
      border: none;
      float: left;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      header #form-before form input:focus {
        outline: none;
        -webkit-box-shadow: 0px 0px 2px 1px #a581e1;
        -moz-box-shadow: 0px 0px 2px 1px #a581e1;
        box-shadow: 0px 0px 2px 1px #a581e1; }
    header #form-before form a {
      display: block;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      width: 100px;
      height: 54px;
      line-height: 54px;
      text-align: center;
      -moz-border-radius: 0 5px 5px 0;
      -webkit-border-radius: 0 5px 5px 0;
      border-radius: 0 5px 5px 0;
      background-color: #a581e1;
      -moz-box-shadow: 0 1px 0 #9574cb;
      -webkit-box-shadow: 0 1px 0 #9574cb;
      box-shadow: 0 1px 0 #9574cb;
      float: left; }
      header #form-before form a:hover {
        background-color: #9574cb; }
  header #form-after p {
    font-weight: 300;
    font-size: 22px;
    color: #fff;
    margin: 0 0 26px; }
  header #ready #app-store {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 244px;
    height: 76px;
    background: transparent;
    display: inline-block;
    margin: 10px 5px;
    border: 1px solid white;
    position: relative;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    header #ready #app-store span {
      display: block;
      width: 90%;
      height: 90%;
      background-size: contain !important;
      position: absolute;
      margin: 0 auto;
      top: 0;
      left: 0;
      right: 0;
      -webkit-transition: opacity 150ms ease-in-out;
      -moz-transition: opacity 150ms ease-in-out;
      transition: opacity 150ms ease-in-out; }
      header #ready #app-store span.normal {
        background: transparent url(../../img/app-store.png) center no-repeat; }
      header #ready #app-store span.hover {
        background: transparent url(../../img/app-store-invert.png) center no-repeat;
        opacity: 0; }
    header #ready #app-store:hover {
      background-color: white; }
      header #ready #app-store:hover span.normal {
        opacity: 0; }
      header #ready #app-store:hover span.hover {
        opacity: 1; }
  header #ready #google-play {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 168px;
    height: 56px;
    background: url(../../img/google-play.png) center no-repeat;
    display: inline-block;
    margin: 10px 5px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    header #ready #google-play:hover {
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      transform: translateY(-5px); }
  header #snippit-header {
    width: 366px;
    height: 666px;
    background: url(../../img/snippit-header.png) center no-repeat;
    background-size: contain;
    position: absolute;
    right: 0px;
    top: 40px;
    opacity: 0;
    /*-webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    transform: rotate(-5deg);*/
    -webkit-transition: all 500ms ease-out 1.1s;
    -moz-transition: all 500ms ease-out 1.1s;
    transition: all 500ms ease-out 1.1s; }
    header #snippit-header #play {
      width: 99px;
      height: 99px;
      display: block !important;
      background: url(../../img/snippit-header-play.png) center no-repeat;
      position: absolute;
      left: calc(50% - 99px/2);
      top: calc(50% - 99px/2); }
  header.hover .text {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  header.hover #snippit-header {
    opacity: 1;
    /*-webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);*/ }
  header.hover #logo-spin {
    -webkit-animation: logo-spin 1s 6000s;
    -moz-animation: logo-spin 1s 6000s;
    animation: logo-spin 1s 6000s; }

.white {
  background: #fff;
  color: #444444; }
  .white .text {
    float: right;
    width: 520px;
    padding: 0 0px 0 20px; }
  .white h2 {
    font-size: 43px;
    color: #231f28;
    line-height: 67px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.025em; }
    .white h2 span {
      color: #8875f9;
      font-size: 90px;
      display: block;
      margin-left: -6px;
      white-space: nowrap !important; }
  .white p {
    font-size: 19px;
    font-weight: 300;
    margin: 0 0 24px 0;
    line-height: 1.25; }
  .white hr {
    display: block;
    height: 0;
    width: 280px;
    border: 0;
    border-top: 1px solid #e7e6e9;
    margin: 42px 0 37px;
    padding: 0; }

.purple {
  background: #8875f9;
  color: #fff; }
  .purple .text {
    float: left;
    width: 490px;
    padding: 315px 0 0 45px; }
  .purple h2 {
    font-size: 43px;
    line-height: 70px;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.035em;
    margin-left: -6px;
    color: #fff; }
    .purple h2 span {
      font-size: 90px;
      display: block;
      margin-left: -6px; }
  .purple p {
    font-size: 19px;
    font-weight: 300;
    margin: 0 0 24px 0;
    line-height: 1.25; }
  .purple hr {
    display: block;
    height: 0;
    width: 280px;
    border: 0;
    border-top: 1px solid #b9b1c6;
    margin: 40px 0;
    padding: 0; }

#sound {
  height: 910px;
  /*
  #snippit-sound-back {
      width: 374px;
      height: 651px;
      position: absolute;
      background: url(../../img/snippit-sound-2.png) center no-repeat;
      left: 181px;
      bottom: 66px;
  }
  #snippit-sound-front {
      width: 427px;
      height: 865px;
      position: absolute;
      background: url(../../img/snippit-sound-1.png) center no-repeat;
      left: 0;
      bottom: 0;
  }
  #snippit-sound-back-shadow {
      width: 374px;
      height: 116px;
      position: absolute;
      background: url(../../img/snippit-sound-2-shadow.png) center no-repeat;
      left: 181px;
      bottom: 66px;
      -webkit-transition: all 500ms ease-out;
      -moz-transition: all 500ms ease-out;
      transition: all 500ms ease-out;
  }
  #snippit-sound-front-shadow {
      width: 427px;
      height: 205px;
      position: absolute;
      background: url(../../img/snippit-sound-1-shadow.png) center no-repeat;
      left: 0;
      bottom: -3px;
      -webkit-transition: all 500ms ease-out;
      -moz-transition: all 500ms ease-out;
      transition: all 500ms ease-out;
  }*/ }
  #sound .text {
    padding-top: 280px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  #sound #snippit-sound {
    width: 555px;
    height: 865px;
    position: absolute;
    left: -52px;
    top: 62px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 0; }
    #sound #snippit-sound div {
      width: 555px;
      height: 865px;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      -webkit-transition: all 800ms ease-out;
      -moz-transition: all 800ms ease-out;
      transition: all 800ms ease-out; }
      #sound #snippit-sound div.hoverArea {
        width: 215px;
        height: 695px;
        z-index: 1;
        right: 0;
        left: initial;
        top: 100px; }
      #sound #snippit-sound div.first {
        background: url(../../img/snippit-sound.png) center no-repeat;
        background-size: contain; }
      #sound #snippit-sound div.second {
        background: url(../../img/snippit-sound-blur.png) center no-repeat;
        background-size: contain;
        opacity: 0; }
    #sound #snippit-sound .hoverArea:hover ~ .first {
      opacity: 0; }
    #sound #snippit-sound .hoverArea:hover ~ .second {
      opacity: 1; }
  #sound.hover {
    /*#snippit-sound-front {
        -webkit-animation: snippit-bounce 500ms ease-in-out 1600ms;
        -moz-animation: snippit-bounce 500ms ease-in-out 1600ms;
        animation: snippit-bounce 500ms ease-in-out 1600ms;
    }
    #snippit-sound-back {
        -webkit-animation: snippit-bounce 500ms ease-in-out 1000ms;
        -moz-animation: snippit-bounce 500ms ease-in-out 1000ms;
        animation: snippit-bounce 500ms ease-in-out 1000ms;
    }
    #snippit-sound-front-shadow {
        -webkit-animation: shadow-bounce 500ms ease-in-out 1600ms;
        -moz-animation: shadow-bounce 500ms ease-in-out 1600ms;
        animation: shadow-bounce 500ms ease-in-out 1600ms;
    }
    #snippit-sound-back-shadow {
        -webkit-animation: shadow-bounce 500ms ease-in-out 1000ms;
        -moz-animation: shadow-bounce 500ms ease-in-out 1000ms;
        animation: shadow-bounce 500ms ease-in-out 1000ms;
    }*/ }
    #sound.hover .text {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      transform: translateX(0);
      opacity: 1; }
    #sound.hover #snippit-sound {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: 1; }

#creative {
  height: 869px;
  overflow: visible; }
  #creative #snippit-creative {
    width: 322px;
    height: 851px;
    background: url(../../img/snippit-creative.png) center no-repeat;
    background-size: contain;
    position: absolute;
    right: 90px;
    top: 18px;
    opacity: 0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out; }
  #creative .text {
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  #creative #creative-spin {
    width: 210px;
    height: 210px;
    background: url(../../img/creative-spin.png) center no-repeat;
    position: absolute; }
  #creative #phone {
    width: 327px;
    height: 580px;
    background: url(../../img/phone.png) center no-repeat;
    position: absolute; }
  #creative.hover .text {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  #creative.hover #snippit-creative {
    top: 68px;
    opacity: 1; }

#music {
  height: 854px; }
  #music .text {
    padding-top: 310px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  #music #snippit-music {
    width: 415px;
    height: 733px;
    background: url(../../img/snippit-music.png) center no-repeat;
    background-size: contain;
    position: absolute;
    left: 10px;
    top: 200px;
    opacity: 0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    transition: all 500ms ease-out; }
    #music #snippit-music .white-block {
      background: #fff;
      position: absolute;
      height: 165px;
      width: 165px;
      left: 37px;
      opacity: 0; }
      #music #snippit-music .white-block#wb1 {
        top: 279px; }
      #music #snippit-music .white-block#wb2 {
        top: 279px;
        left: 214px; }
      #music #snippit-music .white-block#wb3 {
        top: 494px; }
      #music #snippit-music .white-block#wb4 {
        top: 494px;
        left: 214px; }
  #music.hover #snippit-music {
    top: 151px;
    opacity: 1; }
    #music.hover #snippit-music #wb1 {
      -webkit-animation: blink 500ms ease-in-out 800ms;
      -moz-animation: blink 500ms ease-in-out 800ms;
      animation: blink 500ms ease-in-out 800ms; }
    #music.hover #snippit-music #wb2 {
      -webkit-animation: blink 500ms ease-in-out 1400ms;
      -moz-animation: blink 500ms ease-in-out 1400ms;
      animation: blink 500ms ease-in-out 1400ms; }
    #music.hover #snippit-music #wb3 {
      -webkit-animation: blink 500ms ease-in-out 2000ms;
      -moz-animation: blink 500ms ease-in-out 2000ms;
      animation: blink 500ms ease-in-out 2000ms; }
    #music.hover #snippit-music #wb4 {
      -webkit-animation: blink 500ms ease-in-out 2500ms;
      -moz-animation: blink 500ms ease-in-out 2500ms;
      animation: blink 500ms ease-in-out 2500ms; }
  #music.hover .text {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }

footer {
  background: url(../../img/footer-bg.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 584px;
  text-align: center;
  color: #fff;
  position: relative; }
  footer h2 {
    font-size: 50px;
    font-weight: 100;
    margin: 62px 0 70px; }
  footer h3 {
    font-size: 25px;
    font-weight: 100;
    margin: 0 0 38px; }
    footer h3 i {
      font-weight: 400; }
  footer .socials {
    width: 105px;
    height: 105px;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 10px 85px;
    position: relative;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    outline: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    background-color: transparent; }
    footer .socials::before, footer .socials::after {
      content: "";
      background-image: url(../../img/socials.png);
      background-repeat: no-repeat;
      background-size: 423px;
      width: 105px;
      height: 105px;
      display: block;
      position: absolute;
      left: 0;
      top: 0; }
    footer .socials::before {
      opacity: 1; }
    footer .socials::after {
      opacity: 0;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    footer .socials:hover {
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      transform: translateY(-5px); }
      footer .socials:hover::before {
        opacity: 0;
        -webkit-transition: all 150ms step-end;
        -moz-transition: all 150ms step-end;
        transition: all 150ms step-end; }
      footer .socials:hover::after {
        opacity: 1; }
  footer #facebook::before {
    background-position: 0 0; }
  footer #facebook::after {
    background-position: 0 -105px; }
  footer #twitter::before {
    background-position: -105px 0; }
  footer #twitter::after {
    background-position: -105px -105px; }
  footer #email::before {
    background-position: -210px 0; }
  footer #email::after {
    background-position: -210px -105px; }
  footer #google::before {
    background-position: -315px 0; }
  footer #google::after {
    background-position: -315px -105px; }
  footer nav ul li {
    list-style: none;
    display: inline;
    padding: 0 20px;
    position: relative;
    font-weight: 300; }
    footer nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 16px; }
      footer nav ul li a:hover {
        text-decoration: underline; }
    footer nav ul li strong {
      font-weight: 400; }
    footer nav ul li::before {
      content: "•";
      font-weight: 300;
      position: absolute;
      left: -5px; }
    footer nav ul li:first-child::before {
      content: none; }
  footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 57px; }
    footer .bottom p {
      opacity: 0.5;
      font-weight: 300;
      font-size: 12px;
      line-height: 57px;
      margin: 0; }

.fancybox-inner h3 {
  font-size: 43px;
  color: #c3c1c8;
  line-height: 67px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.025em; }
.fancybox-inner p {
  font-size: 19px;
  font-weight: 300;
  margin: 0 0 24px 0;
  line-height: 1.25; }
.fancybox-inner form {
  width: 396px;
  margin: 0 auto; }
  .fancybox-inner form b {
    font-size: 36px;
    line-height: 60px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    display: block;
    letter-spacing: -0.025em; }
  .fancybox-inner form input {
    width: 225px;
    padding: 0 20px;
    height: 55px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background-color: #eee;
    border: none;
    float: left;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .fancybox-inner form input:focus {
      outline: none;
      -webkit-box-shadow: 0px 0px 2px 1px #a581e1;
      -moz-box-shadow: 0px 0px 2px 1px #a581e1;
      box-shadow: 0px 0px 2px 1px #a581e1; }
  .fancybox-inner form a {
    display: block;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    width: 130px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    background-color: #a581e1;
    -moz-box-shadow: 0 1px 0 #9574cb;
    -webkit-box-shadow: 0 1px 0 #9574cb;
    box-shadow: 0 1px 0 #9574cb;
    float: left; }
    .fancybox-inner form a:hover {
      background-color: #9574cb; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
/*.hidden {
    display: none !important;
    visibility: hidden;
}*/
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
/*.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}*/
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
/*.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}*/
/*
 * Hide visually and from screenreaders, but maintain layout
 */
/*.invisible {
    visibility: hidden;
}*/
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media only screen and (max-width: 760px) {
  body, html {
    background-color: #1a171e; }

  #sound, #creative, #music, footer {
    display: none !important;
    visibility: hidden; }

  header {
    min-width: 640px;
    height: auto;
    overflow: hidden; }
    header .inside {
      width: 640px;
      margin: 0 auto;
      height: 1136px; }
    header .text {
      float: none;
      margin: auto;
      padding: 59px 0 0 5px; }
    header #app-store {
      width: 294px !important;
      height: 86px !important; }
    header #snippit-header {
      top: 530px;
      left: 125px;
      width: 406px;
      height: 716px; } }
/* ==========================================================================
   fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license
   ========================================================================== */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../../img/fancybox/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../../img/fancybox/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../../img/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../../img/fancybox/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../../img/fancybox/fancybox_sprite_2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }

  #fancybox-loading div {
    background-image: url("../../img/fancybox/fancybox_loading_2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

/*# sourceMappingURL=main.css.map */