@charset "UTF-8";
/*------------------------------------*    #BORDER BOX
\*------------------------------------*/
/**
 * Apply global border box.
 */
*, *::before, *::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*------------------------------------*    #CUSTOM FONTS
\*------------------------------------*/
/**
 * List custom fonts
 */
/*------------------------------------*    #PAGE
\*------------------------------------*/
/**
 * Body
 */
html {
  background: #fff;
  color: #242226;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.hr--rainbow {
  margin: 24px 0;
  height: 1px;
  width: 120%;
  margin-left: -10%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edc41f+0,f974c3+50,68c0e0+100 */
  background: #f974c3;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  background: linear-gradient(to right, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc41f', endColorstr='#68c0e0',GradientType=1 );
  /* IE6-9 */
}

.is-locked {
  overflow: hidden;
}

[v-cloak] {
  display: none;
}

/*------------------------------------*    #TYPOGRAPY
\*------------------------------------*/
/**
 * Headings
 *
 * In most cases you should avoid styling a specific heading type to have
 * custom distinct styles that would apply to all headings of that type.
 * Instead create a new component like c-heading or c-title. This may not
 * be the case when a CMS needs default headings to appear a specific way.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

/**
 * Paragraphs
 */
p {
  margin: 0 0 20px;
  font-size: 1.1428571429rem;
}

/**
 * Lists
 */
/**
 * Link Styles
 */
a {
  color: #2db6ff;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}

a.is-alt {
  color: #ff897f;
}

a.is-alt:hover, a.is-alt:active, a.is-alt:focus {
  text-decoration: underline;
}

a.has-underline:hover, a.has-underline:active, a.has-underline:focus {
  text-decoration: underline;
}

.is-back-link {
  margin-bottom: 36px;
}

/**
 * Horizontal Rule
 */
hr {
  margin: 0 0 20px;
  border: solid #bfbfbf;
  border-width: 0 0 1px;
}

article {
  padding: 54px 0;
}

article p {
  font-weight: normal;
  line-height: 2;
}

article h3 {
  font-size: 2.5714285714rem;
  margin: 36px 0;
}

article li {
  list-style: none;
  position: relative;
  font-size: 1.1428571429rem;
  margin-bottom: 1em;
}

article li::before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #83d2fb;
  left: -20px;
  top: 5px;
}

/*------------------------------------*    #IMAGES
\*------------------------------------*/
/**
 * [1] remove spacing below inline images.
 */
img {
  vertical-align: middle;
  margin: 0 0 20px;
}

/**
 * Figure
 */
figure {
  margin: 0 0 20px;
}

figcaption {
  font-size: 0.8571428571em;
  font-style: italic;
}

/*------------------------------------*    #FORMS
\*------------------------------------*/
input,
textarea,
select {
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background: #fff;
}

/*------------------------------------*    #WRAP
\*------------------------------------*/
/**
 * A simple wrapper that crops all content that bleeds out of it
 * Usefull for preventing scrolling on the body.
 */
.o-wrap {
  overflow: hidden;
}

/*------------------------------------*    #CONTAINER
\*------------------------------------*/
/**
 * An outer container for site content. A container should never be a child of
 * instance of it's self.
 */
.o-container {
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .o-container {
    width: 90%;
  }
}

/*------------------------------------*    #LIST UNSTYLED
\*------------------------------------*/
/**
 * Remove list styling from list
 */
.o-list-unstyled {
  list-style: none;
  padding: 0;
}

/*------------------------------------*    #LIST INLINE
\*------------------------------------*/
/**
 * List with direct children displaying inline.
 * [1] All items except the first have padding.
 */
.o-list-inline {
  list-style: none;
  padding: 0;
}

.o-list-inline > li {
  display: inline-block;
  vertical-align: middle;
}

/*------------------------------------*    #ISLAND
\*------------------------------------*/
/**
 * Add a nice gap below a block of content.
 */
.o-island {
  margin-bottom: 60px;
}

/*------------------------------------*    #GRID
\*------------------------------------*/
/**
 * Layout row
 *
 * [1] Additional modifier classes for layout gutters.
 */
.o-grid {
  margin-right: -8px;
  margin-left: -8px;
}

.o-grid::before, .o-grid::after {
  content: ' ';
  display: table;
}

.o-grid::after {
  clear: both;
}

@media (min-width: 1024px) {
  .o-grid {
    margin-right: -15px;
    margin-left: -15px;
  }
}

/**
 * A layout item, used like a column
 *
 * [1] Additional modifier classes for layout gutters.
 */
.o-grid__column {
  position: relative;
  padding-right: 8px;
  padding-left: 8px;
  width: 100%;
  min-height: 1px;
  float: left;
}

@media (min-width: 1024px) {
  .o-grid__column {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Layout Columns
 */
.o-grid__column--1 {
  width: 8.3333333333%;
}

.o-grid__column--2 {
  width: 16.6666666667%;
}

.o-grid__column--3 {
  width: 25%;
}

.o-grid__column--4 {
  width: 33.3333333333%;
}

.o-grid__column--5 {
  width: 41.6666666667%;
}

.o-grid__column--6 {
  width: 50%;
}

.o-grid__column--7 {
  width: 58.3333333333%;
}

.o-grid__column--8 {
  width: 66.6666666667%;
}

.o-grid__column--9 {
  width: 75%;
}

.o-grid__column--10 {
  width: 83.3333333333%;
}

.o-grid__column--11 {
  width: 91.6666666667%;
}

.o-grid__column--12 {
  width: 100%;
}

@media (min-width: 480px) {
  .o-grid__column--1\@xs {
    width: 8.3333333333%;
  }
  .o-grid__column--2\@xs {
    width: 16.6666666667%;
  }
  .o-grid__column--3\@xs {
    width: 25%;
  }
  .o-grid__column--4\@xs {
    width: 33.3333333333%;
  }
  .o-grid__column--5\@xs {
    width: 41.6666666667%;
  }
  .o-grid__column--6\@xs {
    width: 50%;
  }
  .o-grid__column--7\@xs {
    width: 58.3333333333%;
  }
  .o-grid__column--8\@xs {
    width: 66.6666666667%;
  }
  .o-grid__column--9\@xs {
    width: 75%;
  }
  .o-grid__column--10\@xs {
    width: 83.3333333333%;
  }
  .o-grid__column--11\@xs {
    width: 91.6666666667%;
  }
  .o-grid__column--12\@xs {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .o-grid__column--1\@sm {
    width: 8.3333333333%;
  }
  .o-grid__column--2\@sm {
    width: 16.6666666667%;
  }
  .o-grid__column--3\@sm {
    width: 25%;
  }
  .o-grid__column--4\@sm {
    width: 33.3333333333%;
  }
  .o-grid__column--5\@sm {
    width: 41.6666666667%;
  }
  .o-grid__column--6\@sm {
    width: 50%;
  }
  .o-grid__column--7\@sm {
    width: 58.3333333333%;
  }
  .o-grid__column--8\@sm {
    width: 66.6666666667%;
  }
  .o-grid__column--9\@sm {
    width: 75%;
  }
  .o-grid__column--10\@sm {
    width: 83.3333333333%;
  }
  .o-grid__column--11\@sm {
    width: 91.6666666667%;
  }
  .o-grid__column--12\@sm {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .o-grid__column--1\@md {
    width: 8.3333333333%;
  }
  .o-grid__column--2\@md {
    width: 16.6666666667%;
  }
  .o-grid__column--3\@md {
    width: 25%;
  }
  .o-grid__column--4\@md {
    width: 33.3333333333%;
  }
  .o-grid__column--5\@md {
    width: 41.6666666667%;
  }
  .o-grid__column--6\@md {
    width: 50%;
  }
  .o-grid__column--7\@md {
    width: 58.3333333333%;
  }
  .o-grid__column--8\@md {
    width: 66.6666666667%;
  }
  .o-grid__column--9\@md {
    width: 75%;
  }
  .o-grid__column--10\@md {
    width: 83.3333333333%;
  }
  .o-grid__column--11\@md {
    width: 91.6666666667%;
  }
  .o-grid__column--12\@md {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .o-grid__column--1\@lg {
    width: 8.3333333333%;
  }
  .o-grid__column--2\@lg {
    width: 16.6666666667%;
  }
  .o-grid__column--3\@lg {
    width: 25%;
  }
  .o-grid__column--4\@lg {
    width: 33.3333333333%;
  }
  .o-grid__column--5\@lg {
    width: 41.6666666667%;
  }
  .o-grid__column--6\@lg {
    width: 50%;
  }
  .o-grid__column--7\@lg {
    width: 58.3333333333%;
  }
  .o-grid__column--8\@lg {
    width: 66.6666666667%;
  }
  .o-grid__column--9\@lg {
    width: 75%;
  }
  .o-grid__column--10\@lg {
    width: 83.3333333333%;
  }
  .o-grid__column--11\@lg {
    width: 91.6666666667%;
  }
  .o-grid__column--12\@lg {
    width: 100%;
  }
}

@media (min-width: 1500px) {
  .o-grid__column--1\@xl {
    width: 8.3333333333%;
  }
  .o-grid__column--2\@xl {
    width: 16.6666666667%;
  }
  .o-grid__column--3\@xl {
    width: 25%;
  }
  .o-grid__column--4\@xl {
    width: 33.3333333333%;
  }
  .o-grid__column--5\@xl {
    width: 41.6666666667%;
  }
  .o-grid__column--6\@xl {
    width: 50%;
  }
  .o-grid__column--7\@xl {
    width: 58.3333333333%;
  }
  .o-grid__column--8\@xl {
    width: 66.6666666667%;
  }
  .o-grid__column--9\@xl {
    width: 75%;
  }
  .o-grid__column--10\@xl {
    width: 83.3333333333%;
  }
  .o-grid__column--11\@xl {
    width: 91.6666666667%;
  }
  .o-grid__column--12\@xl {
    width: 100%;
  }
}

/**
     * Offset modifiers for layout items.
     */
.o-grid__column--offset-1 {
  margin-left: 8.3333333333%;
}

.o-grid__column--offset-2 {
  margin-left: 16.6666666667%;
}

.o-grid__column--offset-3 {
  margin-left: 25%;
}

.o-grid__column--offset-4 {
  margin-left: 33.3333333333%;
}

.o-grid__column--offset-5 {
  margin-left: 41.6666666667%;
}

.o-grid__column--offset-6 {
  margin-left: 50%;
}

.o-grid__column--offset-7 {
  margin-left: 58.3333333333%;
}

.o-grid__column--offset-8 {
  margin-left: 66.6666666667%;
}

.o-grid__column--offset-9 {
  margin-left: 75%;
}

.o-grid__column--offset-10 {
  margin-left: 83.3333333333%;
}

.o-grid__column--offset-11 {
  margin-left: 91.6666666667%;
}

.o-grid__column--offset-12 {
  margin-left: 100%;
}

@media (min-width: 480px) {
  .o-grid__column--offset-1\@xs {
    margin-left: 8.3333333333%;
  }
  .o-grid__column--offset-2\@xs {
    margin-left: 16.6666666667%;
  }
  .o-grid__column--offset-3\@xs {
    margin-left: 25%;
  }
  .o-grid__column--offset-4\@xs {
    margin-left: 33.3333333333%;
  }
  .o-grid__column--offset-5\@xs {
    margin-left: 41.6666666667%;
  }
  .o-grid__column--offset-6\@xs {
    margin-left: 50%;
  }
  .o-grid__column--offset-7\@xs {
    margin-left: 58.3333333333%;
  }
  .o-grid__column--offset-8\@xs {
    margin-left: 66.6666666667%;
  }
  .o-grid__column--offset-9\@xs {
    margin-left: 75%;
  }
  .o-grid__column--offset-10\@xs {
    margin-left: 83.3333333333%;
  }
  .o-grid__column--offset-11\@xs {
    margin-left: 91.6666666667%;
  }
  .o-grid__column--offset-12\@xs {
    margin-left: 100%;
  }
}

@media (min-width: 768px) {
  .o-grid__column--offset-1\@sm {
    margin-left: 8.3333333333%;
  }
  .o-grid__column--offset-2\@sm {
    margin-left: 16.6666666667%;
  }
  .o-grid__column--offset-3\@sm {
    margin-left: 25%;
  }
  .o-grid__column--offset-4\@sm {
    margin-left: 33.3333333333%;
  }
  .o-grid__column--offset-5\@sm {
    margin-left: 41.6666666667%;
  }
  .o-grid__column--offset-6\@sm {
    margin-left: 50%;
  }
  .o-grid__column--offset-7\@sm {
    margin-left: 58.3333333333%;
  }
  .o-grid__column--offset-8\@sm {
    margin-left: 66.6666666667%;
  }
  .o-grid__column--offset-9\@sm {
    margin-left: 75%;
  }
  .o-grid__column--offset-10\@sm {
    margin-left: 83.3333333333%;
  }
  .o-grid__column--offset-11\@sm {
    margin-left: 91.6666666667%;
  }
  .o-grid__column--offset-12\@sm {
    margin-left: 100%;
  }
}

@media (min-width: 1024px) {
  .o-grid__column--offset-1\@md {
    margin-left: 8.3333333333%;
  }
  .o-grid__column--offset-2\@md {
    margin-left: 16.6666666667%;
  }
  .o-grid__column--offset-3\@md {
    margin-left: 25%;
  }
  .o-grid__column--offset-4\@md {
    margin-left: 33.3333333333%;
  }
  .o-grid__column--offset-5\@md {
    margin-left: 41.6666666667%;
  }
  .o-grid__column--offset-6\@md {
    margin-left: 50%;
  }
  .o-grid__column--offset-7\@md {
    margin-left: 58.3333333333%;
  }
  .o-grid__column--offset-8\@md {
    margin-left: 66.6666666667%;
  }
  .o-grid__column--offset-9\@md {
    margin-left: 75%;
  }
  .o-grid__column--offset-10\@md {
    margin-left: 83.3333333333%;
  }
  .o-grid__column--offset-11\@md {
    margin-left: 91.6666666667%;
  }
  .o-grid__column--offset-12\@md {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .o-grid__column--offset-1\@lg {
    margin-left: 8.3333333333%;
  }
  .o-grid__column--offset-2\@lg {
    margin-left: 16.6666666667%;
  }
  .o-grid__column--offset-3\@lg {
    margin-left: 25%;
  }
  .o-grid__column--offset-4\@lg {
    margin-left: 33.3333333333%;
  }
  .o-grid__column--offset-5\@lg {
    margin-left: 41.6666666667%;
  }
  .o-grid__column--offset-6\@lg {
    margin-left: 50%;
  }
  .o-grid__column--offset-7\@lg {
    margin-left: 58.3333333333%;
  }
  .o-grid__column--offset-8\@lg {
    margin-left: 66.6666666667%;
  }
  .o-grid__column--offset-9\@lg {
    margin-left: 75%;
  }
  .o-grid__column--offset-10\@lg {
    margin-left: 83.3333333333%;
  }
  .o-grid__column--offset-11\@lg {
    margin-left: 91.6666666667%;
  }
  .o-grid__column--offset-12\@lg {
    margin-left: 100%;
  }
}

@media (min-width: 1500px) {
  .o-grid__column--offset-1\@xl {
    margin-left: 8.3333333333%;
  }
  .o-grid__column--offset-2\@xl {
    margin-left: 16.6666666667%;
  }
  .o-grid__column--offset-3\@xl {
    margin-left: 25%;
  }
  .o-grid__column--offset-4\@xl {
    margin-left: 33.3333333333%;
  }
  .o-grid__column--offset-5\@xl {
    margin-left: 41.6666666667%;
  }
  .o-grid__column--offset-6\@xl {
    margin-left: 50%;
  }
  .o-grid__column--offset-7\@xl {
    margin-left: 58.3333333333%;
  }
  .o-grid__column--offset-8\@xl {
    margin-left: 66.6666666667%;
  }
  .o-grid__column--offset-9\@xl {
    margin-left: 75%;
  }
  .o-grid__column--offset-10\@xl {
    margin-left: 83.3333333333%;
  }
  .o-grid__column--offset-11\@xl {
    margin-left: 91.6666666667%;
  }
  .o-grid__column--offset-12\@xl {
    margin-left: 100%;
  }
}

/**
     * Push and Pull modifiers for layout items.
     */
.o-grid__column--push-1 {
  left: 8.3333333333%;
}

.o-grid__column--pull-1 {
  left: -8.3333333333%;
}

.o-grid__column--push-2 {
  left: 16.6666666667%;
}

.o-grid__column--pull-2 {
  left: -16.6666666667%;
}

.o-grid__column--push-3 {
  left: 25%;
}

.o-grid__column--pull-3 {
  left: -25%;
}

.o-grid__column--push-4 {
  left: 33.3333333333%;
}

.o-grid__column--pull-4 {
  left: -33.3333333333%;
}

.o-grid__column--push-5 {
  left: 41.6666666667%;
}

.o-grid__column--pull-5 {
  left: -41.6666666667%;
}

.o-grid__column--push-6 {
  left: 50%;
}

.o-grid__column--pull-6 {
  left: -50%;
}

.o-grid__column--push-7 {
  left: 58.3333333333%;
}

.o-grid__column--pull-7 {
  left: -58.3333333333%;
}

.o-grid__column--push-8 {
  left: 66.6666666667%;
}

.o-grid__column--pull-8 {
  left: -66.6666666667%;
}

.o-grid__column--push-9 {
  left: 75%;
}

.o-grid__column--pull-9 {
  left: -75%;
}

.o-grid__column--push-10 {
  left: 83.3333333333%;
}

.o-grid__column--pull-10 {
  left: -83.3333333333%;
}

.o-grid__column--push-11 {
  left: 91.6666666667%;
}

.o-grid__column--pull-11 {
  left: -91.6666666667%;
}

.o-grid__column--push-12 {
  left: 100%;
}

.o-grid__column--pull-12 {
  left: -100%;
}

@media (min-width: 480px) {
  .o-grid__column--push-1\@xs {
    left: 8.3333333333%;
  }
  .o-grid__column--pull-1\@xs {
    left: -8.3333333333%;
  }
  .o-grid__column--push-2\@xs {
    left: 16.6666666667%;
  }
  .o-grid__column--pull-2\@xs {
    left: -16.6666666667%;
  }
  .o-grid__column--push-3\@xs {
    left: 25%;
  }
  .o-grid__column--pull-3\@xs {
    left: -25%;
  }
  .o-grid__column--push-4\@xs {
    left: 33.3333333333%;
  }
  .o-grid__column--pull-4\@xs {
    left: -33.3333333333%;
  }
  .o-grid__column--push-5\@xs {
    left: 41.6666666667%;
  }
  .o-grid__column--pull-5\@xs {
    left: -41.6666666667%;
  }
  .o-grid__column--push-6\@xs {
    left: 50%;
  }
  .o-grid__column--pull-6\@xs {
    left: -50%;
  }
  .o-grid__column--push-7\@xs {
    left: 58.3333333333%;
  }
  .o-grid__column--pull-7\@xs {
    left: -58.3333333333%;
  }
  .o-grid__column--push-8\@xs {
    left: 66.6666666667%;
  }
  .o-grid__column--pull-8\@xs {
    left: -66.6666666667%;
  }
  .o-grid__column--push-9\@xs {
    left: 75%;
  }
  .o-grid__column--pull-9\@xs {
    left: -75%;
  }
  .o-grid__column--push-10\@xs {
    left: 83.3333333333%;
  }
  .o-grid__column--pull-10\@xs {
    left: -83.3333333333%;
  }
  .o-grid__column--push-11\@xs {
    left: 91.6666666667%;
  }
  .o-grid__column--pull-11\@xs {
    left: -91.6666666667%;
  }
  .o-grid__column--push-12\@xs {
    left: 100%;
  }
  .o-grid__column--pull-12\@xs {
    left: -100%;
  }
}

@media (min-width: 768px) {
  .o-grid__column--push-1\@sm {
    left: 8.3333333333%;
  }
  .o-grid__column--pull-1\@sm {
    left: -8.3333333333%;
  }
  .o-grid__column--push-2\@sm {
    left: 16.6666666667%;
  }
  .o-grid__column--pull-2\@sm {
    left: -16.6666666667%;
  }
  .o-grid__column--push-3\@sm {
    left: 25%;
  }
  .o-grid__column--pull-3\@sm {
    left: -25%;
  }
  .o-grid__column--push-4\@sm {
    left: 33.3333333333%;
  }
  .o-grid__column--pull-4\@sm {
    left: -33.3333333333%;
  }
  .o-grid__column--push-5\@sm {
    left: 41.6666666667%;
  }
  .o-grid__column--pull-5\@sm {
    left: -41.6666666667%;
  }
  .o-grid__column--push-6\@sm {
    left: 50%;
  }
  .o-grid__column--pull-6\@sm {
    left: -50%;
  }
  .o-grid__column--push-7\@sm {
    left: 58.3333333333%;
  }
  .o-grid__column--pull-7\@sm {
    left: -58.3333333333%;
  }
  .o-grid__column--push-8\@sm {
    left: 66.6666666667%;
  }
  .o-grid__column--pull-8\@sm {
    left: -66.6666666667%;
  }
  .o-grid__column--push-9\@sm {
    left: 75%;
  }
  .o-grid__column--pull-9\@sm {
    left: -75%;
  }
  .o-grid__column--push-10\@sm {
    left: 83.3333333333%;
  }
  .o-grid__column--pull-10\@sm {
    left: -83.3333333333%;
  }
  .o-grid__column--push-11\@sm {
    left: 91.6666666667%;
  }
  .o-grid__column--pull-11\@sm {
    left: -91.6666666667%;
  }
  .o-grid__column--push-12\@sm {
    left: 100%;
  }
  .o-grid__column--pull-12\@sm {
    left: -100%;
  }
}

@media (min-width: 1024px) {
  .o-grid__column--push-1\@md {
    left: 8.3333333333%;
  }
  .o-grid__column--pull-1\@md {
    left: -8.3333333333%;
  }
  .o-grid__column--push-2\@md {
    left: 16.6666666667%;
  }
  .o-grid__column--pull-2\@md {
    left: -16.6666666667%;
  }
  .o-grid__column--push-3\@md {
    left: 25%;
  }
  .o-grid__column--pull-3\@md {
    left: -25%;
  }
  .o-grid__column--push-4\@md {
    left: 33.3333333333%;
  }
  .o-grid__column--pull-4\@md {
    left: -33.3333333333%;
  }
  .o-grid__column--push-5\@md {
    left: 41.6666666667%;
  }
  .o-grid__column--pull-5\@md {
    left: -41.6666666667%;
  }
  .o-grid__column--push-6\@md {
    left: 50%;
  }
  .o-grid__column--pull-6\@md {
    left: -50%;
  }
  .o-grid__column--push-7\@md {
    left: 58.3333333333%;
  }
  .o-grid__column--pull-7\@md {
    left: -58.3333333333%;
  }
  .o-grid__column--push-8\@md {
    left: 66.6666666667%;
  }
  .o-grid__column--pull-8\@md {
    left: -66.6666666667%;
  }
  .o-grid__column--push-9\@md {
    left: 75%;
  }
  .o-grid__column--pull-9\@md {
    left: -75%;
  }
  .o-grid__column--push-10\@md {
    left: 83.3333333333%;
  }
  .o-grid__column--pull-10\@md {
    left: -83.3333333333%;
  }
  .o-grid__column--push-11\@md {
    left: 91.6666666667%;
  }
  .o-grid__column--pull-11\@md {
    left: -91.6666666667%;
  }
  .o-grid__column--push-12\@md {
    left: 100%;
  }
  .o-grid__column--pull-12\@md {
    left: -100%;
  }
}

@media (min-width: 1200px) {
  .o-grid__column--push-1\@lg {
    left: 8.3333333333%;
  }
  .o-grid__column--pull-1\@lg {
    left: -8.3333333333%;
  }
  .o-grid__column--push-2\@lg {
    left: 16.6666666667%;
  }
  .o-grid__column--pull-2\@lg {
    left: -16.6666666667%;
  }
  .o-grid__column--push-3\@lg {
    left: 25%;
  }
  .o-grid__column--pull-3\@lg {
    left: -25%;
  }
  .o-grid__column--push-4\@lg {
    left: 33.3333333333%;
  }
  .o-grid__column--pull-4\@lg {
    left: -33.3333333333%;
  }
  .o-grid__column--push-5\@lg {
    left: 41.6666666667%;
  }
  .o-grid__column--pull-5\@lg {
    left: -41.6666666667%;
  }
  .o-grid__column--push-6\@lg {
    left: 50%;
  }
  .o-grid__column--pull-6\@lg {
    left: -50%;
  }
  .o-grid__column--push-7\@lg {
    left: 58.3333333333%;
  }
  .o-grid__column--pull-7\@lg {
    left: -58.3333333333%;
  }
  .o-grid__column--push-8\@lg {
    left: 66.6666666667%;
  }
  .o-grid__column--pull-8\@lg {
    left: -66.6666666667%;
  }
  .o-grid__column--push-9\@lg {
    left: 75%;
  }
  .o-grid__column--pull-9\@lg {
    left: -75%;
  }
  .o-grid__column--push-10\@lg {
    left: 83.3333333333%;
  }
  .o-grid__column--pull-10\@lg {
    left: -83.3333333333%;
  }
  .o-grid__column--push-11\@lg {
    left: 91.6666666667%;
  }
  .o-grid__column--pull-11\@lg {
    left: -91.6666666667%;
  }
  .o-grid__column--push-12\@lg {
    left: 100%;
  }
  .o-grid__column--pull-12\@lg {
    left: -100%;
  }
}

@media (min-width: 1500px) {
  .o-grid__column--push-1\@xl {
    left: 8.3333333333%;
  }
  .o-grid__column--pull-1\@xl {
    left: -8.3333333333%;
  }
  .o-grid__column--push-2\@xl {
    left: 16.6666666667%;
  }
  .o-grid__column--pull-2\@xl {
    left: -16.6666666667%;
  }
  .o-grid__column--push-3\@xl {
    left: 25%;
  }
  .o-grid__column--pull-3\@xl {
    left: -25%;
  }
  .o-grid__column--push-4\@xl {
    left: 33.3333333333%;
  }
  .o-grid__column--pull-4\@xl {
    left: -33.3333333333%;
  }
  .o-grid__column--push-5\@xl {
    left: 41.6666666667%;
  }
  .o-grid__column--pull-5\@xl {
    left: -41.6666666667%;
  }
  .o-grid__column--push-6\@xl {
    left: 50%;
  }
  .o-grid__column--pull-6\@xl {
    left: -50%;
  }
  .o-grid__column--push-7\@xl {
    left: 58.3333333333%;
  }
  .o-grid__column--pull-7\@xl {
    left: -58.3333333333%;
  }
  .o-grid__column--push-8\@xl {
    left: 66.6666666667%;
  }
  .o-grid__column--pull-8\@xl {
    left: -66.6666666667%;
  }
  .o-grid__column--push-9\@xl {
    left: 75%;
  }
  .o-grid__column--pull-9\@xl {
    left: -75%;
  }
  .o-grid__column--push-10\@xl {
    left: 83.3333333333%;
  }
  .o-grid__column--pull-10\@xl {
    left: -83.3333333333%;
  }
  .o-grid__column--push-11\@xl {
    left: 91.6666666667%;
  }
  .o-grid__column--pull-11\@xl {
    left: -91.6666666667%;
  }
  .o-grid__column--push-12\@xl {
    left: 100%;
  }
  .o-grid__column--pull-12\@xl {
    left: -100%;
  }
}

/*------------------------------------*    #ASPECT
\*------------------------------------*/
/**
 * Enforce an aspect ratio on a responsive image before the page loads. Uses
 * the same trick as responsive videos.
 *
 * [1] Hide any access overflow of the image in case it doesn't quite fit.
 * [2] Padding 100% creates a square by default.
 */
.o-aspect {
  overflow: hidden;
  margin-bottom: 20px;
  padding-top: 100%;
  width: 100%;
  position: relative;
}

.o-aspect > img {
  margin: 0;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * Loop throught the config and build out aditional sizes.
 */
.o-aspect--2x1 {
  padding-top: 50%;
}

/*------------------------------------*    #MEDIA
\*------------------------------------*/
/**
 * A generic layout with an item floated to the side and content block that
 * doesn't wrap underneath it.
 */
.o-media::before, .o-media::after {
  content: ' ';
  display: table;
}

.o-media::after {
  clear: both;
}

/**
 * Side element floats left and pushes content away. Stacks on mobile.
 *
 * [1] Flip the image to the right with modifier
 */
.o-media__graphic {
  display: block;
}

@media (min-width: 480px) {
  .o-media__graphic {
    margin-right: 20px;
    float: left;
  }
}

@media (min-width: 480px) {
  .o-media--flip .o-media__graphic {
    margin: 0 0 0 20px;
    float: right;
  }
}

/**
 * Content Block
 */
.o-media__content {
  overflow: hidden;
}

/*------------------------------------*    #LOGOS
\*------------------------------------*/
.c-logo {
  width: 160px;
  height: 57px;
  display: inline-block;
  margin: -5px 20px 0;
  background-image: url("../img/ep-logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1200px) {
  .c-logo {
    margin: -5px 20px 0 50px;
  }
}

.c-logo::after {
  position: absolute;
  height: 300px;
  width: 6px;
  background: white;
  top: 50%;
  left: 50%;
  display: block;
  opacity: 0.8;
  box-shadow: 0px 0px 20px 20px white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  margin-top: -85%;
  margin-left: -170px;
}

.c-logo:hover::after {
  margin-left: 100px;
}

/*------------------------------------*    #FORM GROUP
\*------------------------------------*/
/**
 * A form group block
 */
.c-form-group {
  margin-bottom: 10px;
}

.c-form-group textarea {
  resize: vertical;
}

.c-form-group__label {
  text-transform: uppercase;
}

.c-form-group__label {
  display: block;
  cursor: pointer;
  padding: 5px 0;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.c-form-group.has-error .c-form-group__label {
  color: #f00;
}

.c-form-group__label .is-required {
  color: #ff897f;
  font-size: 1.2857142857rem;
}

/**
 * Form group inputs
 *
 * [1] When the form input is nested in a comment, like with a radio button or
 * checkbox, set the input to display inline with the label's text.
 */
.c-form-group__input {
  display: block;
  padding: 1.1428571429rem;
  margin-bottom: 10px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: border 0.15s;
  transition: border 0.15s;
  border-radius: 5px;
  border-color: #e3e3e3;
}

.c-form-group__input:focus {
  border-color: #ff897f;
  outline: none;
}

.c-form-group__label .c-form-group__input {
  margin: 0 5px 0 0;
}

.c-form-group.has-error .c-form-group__input {
  border-color: #f00;
}

.c-form-group__attach {
  border-radius: 5px;
  padding: 2px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edc41f+0,f974c3+50,68c0e0+100 */
  background: #f974c3;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  background: linear-gradient(to right, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc41f', endColorstr='#68c0e0',GradientType=1 );
  /* IE6-9 */
}

.c-form-attach__attach-inner {
  position: relative;
  font-size: 1.1428571429rem;
  border-radius: 3px;
  padding: 1rem;
  background: #f4f4f4;
  width: 100%;
  height: 100%;
}

.c-form-attach__attach-inner::before {
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 52px;
  background: #fff url("../img/upload.svg") no-repeat;
  background-size: 50%;
  background-position: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-left: 1px solid #e4e4e4;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.c-form-group__input--inline {
  display: inline-block;
  width: auto;
}

/**
 * Generic text block to add text after a field, used with validation elements.
 */
.c-form-group__help-block {
  display: block;
  font-size: 0.8571428571em;
  margin: 0 0 20px;
}

/**
 * Validation element to be used with help-block's. Behavior classes on the
 * parent determine what type of validation it is.
 */
.c-form-group__validation {
  display: block;
  padding: 0.7142857143em;
  border: 1px solid #bfbfbf;
  background-color: #e5e5e5;
  color: #7f7f7f;
  font-weight: bold;
  position: relative;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.c-form-group.has-error .c-form-group__validation {
  border-color: #f00;
  background-color: #ff4d4d;
  color: #fff;
}

/*------------------------------------*    #BUTTONS
\*------------------------------------*/
.c-btn {
  display: inline-block;
  cursor: pointer;
  padding: 0.8571428571em 1.4285714286em;
  border: 0;
  color: #89cdf1;
  background: #eee;
  font-size: 14px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.c-btn:hover, .c-btn:active, .c-btn:focus {
  background: #d5d5d5;
  text-decoration: none;
}

/**
 * Modifiers for the buttons
 */
.c-btn--primary {
  background: #ff897f;
  color: #fff;
  border-radius: 40px;
  font-size: 1.2857142857rem;
  margin: 1em auto;
}

@media (min-width: 1024px) {
  .c-btn--primary {
    font-size: 1.7142857143rem;
  }
}

.c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
  background: #ff7166;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-btn--secondary {
  background: #ff897f;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  border-radius: 40px;
  font-size: 1em;
  margin: 1em auto;
  padding: 0.5em 1.5em;
}

.c-btn--secondary a,
.c-btn--secondary a:hover {
  color: #fff;
}

.c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
  background: #ff7166;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.3), 0 12px 24px -4px rgba(0, 0, 0, 0.1);
}

.c-btn-ghost {
  padding: 6px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  display: inline-block;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  white-space: nowrap;
}

.c-btn-ghost--play {
  width: 101px;
  height: 101px;
  border: 0;
  background-image: url("../img/icon_play@2x-ipad-lite.png");
  background-size: cover;
  background-position: center;
}

.c-btn-ghost--play:hover {
  background-color: transparent;
  box-shadow: unset;
}

.c-btn--g-plus {
  font-size: 1.1428571429rem;
  position: relative;
  color: #fff;
  background-color: #d24736;
  border-radius: 50px;
  padding: 20px 36px 20px 90px;
  margin: 30px auto 0;
  min-width: 302px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .c-btn--g-plus {
    font-size: 1.7142857143rem;
    padding: 20px 70px 20px 120px;
  }
}

.c-btn--g-plus svg {
  width: 48px;
  height: 30px;
  padding: 4px;
  left: 10%;
}

.c-btn--g-plus svg path {
  fill: #fff;
}

.c-btn--g-plus::after {
  content: '';
  height: 30px;
  width: 1px;
  background-color: #e07f73;
  position: absolute;
  display: block;
  left: 27%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (min-width: 1024px) {
  .c-btn--g-plus::after {
    left: 25%;
  }
}

.c-btn--g-plus:hover, .c-btn--g-plus:active, .c-btn--g-plus:focus {
  background: #d75a4b;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-btn--g-plus:hover::after, .c-btn--g-plus:active::after, .c-btn--g-plus:focus::after {
  background-color: #e59288;
}

.c-btn--fb {
  font-size: 1.1428571429rem;
  position: relative;
  color: #fff;
  background-color: #3B599A;
  border-radius: 50px;
  padding: 20px 36px 20px 90px;
  margin: 30px auto 0;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .c-btn--fb {
    font-size: 1.7142857143rem;
    padding: 20px 36px 20px 120px;
  }
}

.c-btn--fb i {
  position: absolute;
  left: 66px;
  font-size: 30px;
  top: 50%;
  -webkit-transform: translate(-27px, -50%);
  transform: translate(-27px, -50%);
}

@media (min-width: 1024px) {
  .c-btn--fb i {
    -webkit-transform: translate(-16px, -50%);
    transform: translate(-16px, -50%);
  }
}

.c-btn--fb svg {
  width: 48px;
  height: 30px;
  padding: 4px;
  left: 10%;
}

.c-btn--fb svg path {
  fill: #fff;
}

.c-btn--fb::after {
  content: '';
  height: 30px;
  width: 1px;
  background-color: #4c75ca;
  position: absolute;
  display: block;
  left: 27%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (min-width: 1024px) {
  .c-btn--fb::after {
    left: 25%;
  }
}

.c-btn--fb:hover, .c-btn--fb:active, .c-btn--fb:focus {
  background: #4264ac;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-btn--fb:hover::after, .c-btn--fb:active::after, .c-btn--fb:focus::after {
  background-color: #6084d0;
}

/*------------------------------------*    #HEADINGS
\*------------------------------------*/
.c-heading-page {
  font-size: 1.5714285714rem;
}

@media (min-width: 768px) {
  .c-heading-page {
    font-size: 2.5714285714rem;
  }
}

.c-header__main-menu {
  border-bottom: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .c-header__main-menu {
    border-bottom: 1px solid transparent;
  }
}

#feature {
  padding: 100px 0 0;
}

@media (min-width: 1024px) {
  #feature {
    padding: 0;
  }
}

.c-heading-section {
  font-size: 2rem;
  margin: 48px 0;
  position: relative;
  letter-spacing: 1px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .c-heading-section {
    margin: 66px 0;
    font-size: 1.4285714286rem;
  }
}

.c-heading-section--clean {
  margin: 18px 0;
}

.c-heading-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  background-size: cover;
  opacity: 0.05;
}

@media (min-width: 1024px) {
  .c-heading-section::before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.c-heading-section--a::before {
  background-image: url("../img/a.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 208px;
  height: 150px;
}

@media (min-width: 1024px) {
  .c-heading-section--a::before {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

.c-heading-section--w::before {
  background-image: url("../img/w.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 211px;
  height: 151px;
}

@media (min-width: 1024px) {
  .c-heading-section--w::before {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

.c-heading-section--f::before {
  background-image: url("../img/f.svg");
  width: 184px;
  height: 157px;
}

.c-heading-section--e::before {
  background-image: url("../img/e.svg");
  width: 118px;
  height: 150px;
}

.c-heading-section--i::before {
  background-image: url("../img/i.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 111px;
  height: 142px;
}

@media (min-width: 1024px) {
  .c-heading-section--i::before {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

.c-heading-section--l::before {
  background-image: url("../img/l.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 137px;
  height: 150px;
}

@media (min-width: 1024px) {
  .c-heading-section--l::before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.c-heading-section--d::before {
  background-image: url("../img/d.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 161px;
  height: 150px;
}

@media (min-width: 1024px) {
  .c-heading-section--d::before {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

.c-heading-section--p::before {
  background-image: url("../img/p.svg");
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 185px;
  height: 150px;
}

@media (min-width: 1024px) {
  .c-heading-section--p::before {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
}

@media (min-width: 768px) {
  .c-heading-section {
    font-size: 2.5714285714rem;
  }
}

.c-heading-section--big {
  margin: 0;
  font-size: 2.5714285714rem;
}

@media (min-width: 1024px) {
  .c-heading-section--big {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .c-heading-section--big {
    font-size: 5rem;
  }
}

.c-heading-section--small {
  margin: 0;
  font-weight: normal;
  font-size: 1.4285714286rem;
}

.c-heading-section--job {
  margin: 12px 0;
}

.c-heading-title {
  font-size: 1.2857142857rem;
}

@media (min-width: 768px) {
  .c-heading-title {
    font-size: 1.7142857143rem;
  }
}

.c-heading-subtitle {
  font-size: 1.1428571429rem;
}

@media (min-width: 768px) {
  .c-heading-subtitle {
    font-size: 1.2857142857rem;
  }
}

/*------------------------------------*    #NAVIGATION
\*------------------------------------*/
.c-nav {
  display: none;
}

@media (min-width: 1024px) {
  .c-nav {
    display: inline-block;
  }
}

.c-nav-m {
  position: fixed;
  overflow: scroll;
  overflow-x: hidden;
  display: block;
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 86px);
  top: 87px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1024px) {
  .c-nav-m {
    display: none;
  }
}

.c-nav-burger {
  display: inline-block;
  width: 98px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .c-nav-burger {
    display: none;
  }
}

.c-nav-burger__bar,
.c-nav-burger__bar::before,
.c-nav-burger__bar::after {
  width: 36px;
  height: 6px;
  border-radius: 32px;
  display: inline-block;
  background-color: #242226;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.c-nav-burger__bar {
  margin-top: -3px;
}

.c-nav-burger__bar::before {
  -webkit-transform: translate(0, -12px);
  transform: translate(0, -12px);
}

.c-nav-burger__bar::after {
  -webkit-transform: translate(0, 6px);
  transform: translate(0, 6px);
}

.c-nav-inputbox {
  display: none;
}

.c-nav-inputbox:checked + nav {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

@media (min-width: 1024px) {
  .c-nav-inputbox:checked + nav {
    display: block;
  }
}

.c-nav-inputbox:not(:checked) ~ label .c-nav-burger__bar {
  background-color: #fff;
}

.c-nav-inputbox:not(:checked) ~ label .c-nav-burger__bar::before {
  -webkit-transform: matrix3d(0.71, 0.71, 0, 0, -0.71, 0.71, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform: matrix3d(0.71, 0.71, 0, 0, -0.71, 0.71, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.c-nav-inputbox:not(:checked) ~ label .c-nav-burger__bar::after {
  -webkit-transform: matrix3d(0.71, -0.71, 0, 0, 0.71, 0.71, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform: matrix3d(0.71, -0.71, 0, 0, 0.71, 0.71, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

/**
 * Navigation list
 */
.c-nav__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.c-nav__list::before, .c-nav__list::after {
  content: ' ';
  display: table;
}

.c-nav__list::after {
  clear: both;
}

.c-nav-m .c-nav__list {
  margin: 0;
  height: 60%;
  min-height: 200px;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  flex-flow: column;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.c-nav-m .c-nav__list.slide-out {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

/**
 * Navigation List item
 *
 * [1] Stateful 'current' version of navigation item.
 */
.c-nav__item {
  margin: 0 10px;
  float: left;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  position: relative;
}

@media (min-width: 1200px) {
  .c-nav__item {
    margin: 0 18px;
  }
}

@media (min-width: 1500px) {
  .c-nav__item {
    margin: 0 24px;
  }
}

.c-nav-m .c-nav__item {
  float: none;
}

.c-nav__arrow {
  width: 22px;
  padding: 6px;
  -webkit-transition: all 500ms ease 100ms;
  transition: all 500ms ease 100ms;
}

.c-nav-m .c-nav__arrow {
  left: calc(50% + 60px);
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.slide-out .c-nav__arrow {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.c-nav__arrow-path {
  fill: none;
  stroke: #b2d2e0;
  stroke-width: 4px;
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.is-loaded .c-nav__arrow-path {
  stroke-dashoffset: 0;
}

.c-nav__item:hover .c-nav__arrow-path {
  -webkit-animation-name: strokeDash;
  animation-name: strokeDash;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/**
 * Navigation link
 */
.c-nav__link {
  display: block;
  color: #242226;
  font-size: 1.1428571429em;
  letter-spacing: 1px;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

@media (min-width: 1200px) {
  .c-nav__link {
    font-size: 1.1428571429em;
  }
}

.c-nav__link:hover {
  color: #8e8e8e;
}

.c-nav__item.is-current .c-nav__link {
  text-decoration: underline;
}

.c-nav__chef {
  width: 49px;
  height: 34px;
  margin: 0;
}

/*------------------------------------*    #HEADER
\*------------------------------------*/
.c-header {
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.c-header__main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 87px;
  padding: 20px 0 8px;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.has-expanded .c-header__main-menu {
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .c-header__main-menu {
    position: relative;
  }
}

.c-header__cta {
  display: none;
  margin-right: 20px;
  float: right;
}

@media (min-width: 1024px) {
  .c-header__cta {
    display: block;
  }
}

@media (min-width: 1200px) {
  .c-header__cta {
    margin-right: 50px;
  }
}

.c-nav-m .c-header__cta {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-top: 1px solid #ddd;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 40%;
  min-height: 160px;
  margin: 0;
}

.c-nav-m .c-header__cta .c-cta {
  width: 275px;
  margin: 8px auto;
}

.c-nav-m .c-header__cta .c-cta .c-cta__inner {
  padding: 10px 0;
}

.c-header__sub-menus {
  position: absolute;
  overflow: hidden;
  top: -18px;
  width: 100%;
  height: 100px;
  background-color: #fff;
  -webkit-transition: box-shadow 500ms ease, -webkit-transform 300ms ease;
  transition: box-shadow 500ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, box-shadow 500ms ease;
  transition: transform 300ms ease, box-shadow 500ms ease, -webkit-transform 300ms ease;
  box-shadow: 0 0 0 transparent;
  z-index: 2;
}

.has-expanded .c-header__sub-menus {
  -webkit-transform: translate3d(0, 99%, 0);
  transform: translate3d(0, 99%, 0);
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-header__sub {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
}

.c-header__sub.is-shown {
  -webkit-transform: translate3d(-50%, -50%, 0) !important;
  transform: translate3d(-50%, -50%, 0) !important;
  opacity: 1;
}

.c-header__sub--infos {
  -webkit-transform: translate3d(-50%, -200%, 0) !important;
  transform: translate3d(-50%, -200%, 0) !important;
}

.c-header__sub--community {
  -webkit-transform: translate3d(-50%, 200%, 0) !important;
  transform: translate3d(-50%, 200%, 0) !important;
}

.c-header__sub-item {
  padding: 12px 40px;
  border-left: 1px solid #ddd;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  white-space: nowrap;
}

.c-header__sub-item:first-child {
  border-left: 0;
}

.c-header-m__sub {
  position: absolute;
  padding-top: 2%;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  flex-flow: column;
  top: 0;
  left: 50%;
  height: 60%;
  min-height: 200px;
  width: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.c-header-m__sub.slide-in {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

/*------------------------------------*    #FOOTER
\*------------------------------------*/
.c-footer {
  background-color: #fff;
  position: relative;
  z-index: 99;
}

.c-footer-nav {
  display: -webkit-box;
  display: flex;
  max-width: 590px;
  margin: 0 auto 24px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: 1.2857142857em;
}

@media (min-width: 1024px) {
  .c-footer-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-footer-nav__item {
  padding: 12px 0;
}

.c-footer__group {
  padding: 64px 0;
}

/*------------------------------------*    #ACTIONS
\*------------------------------------*/
.c-action-group {
  padding: 180px 0 20px;
  z-index: 1;
}

@media (min-width: 768px) {
  .c-action-group {
    padding: 320px 0 60px;
  }
}

@media (min-width: 1024px) {
  .c-action-group {
    padding: 400px 0 0;
    min-height: 800px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@media (min-width: 1200px) {
  .c-action-group {
    padding: 320px 0 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    min-height: 900px;
  }
}

@media (min-width: 1500px) {
  .c-action-group {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.c-action-group__target:focus {
  outline: none;
}

.c-action {
  height: 450px;
  max-width: 360px;
  margin: 0 auto;
  padding: 12px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#68c0e0+0,f974c3+50,edc41f+100 */
  background: #68c0e0;
  /* Old browsers */
  background: -webkit-linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  background: linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#68c0e0', endColorstr='#edc41f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

@media (min-width: 1024px) {
  .c-action {
    background: #e3e3e3;
    padding: 16px;
  }
}

.c-action:hover,
.c-action-group__target:hover .c-action {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#68c0e0+0,f974c3+50,edc41f+100 */
  background: #68c0e0;
  /* Old browsers */
  background: -webkit-linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  background: linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#68c0e0', endColorstr='#edc41f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

@media (min-width: 1024px) {
  .c-action {
    height: 526px;
    -webkit-transform: auto;
    transform: auto;
  }
}

.c-action--mid {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}

@media (min-width: 768px) {
  .c-action--mid {
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px);
  }
}

@media (min-width: 1024px) {
  .c-action--mid {
    -webkit-transform: translateY(-286px);
    transform: translateY(-286px);
    text-align: center;
  }
}

.c-action--mid .c-action__detail {
  padding: 15px;
}

@media (min-width: 1024px) {
  .c-action--mid .c-action__detail {
    padding-top: 27px;
  }
}

@media (min-width: 1024px) {
  .c-action--mid .c-action__desc {
    max-width: 220px;
    margin: 0 auto;
  }
}

.c-action--left {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}

@media (min-width: 768px) {
  .c-action--left {
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px);
  }
}

@media (min-width: 1024px) {
  .c-action--left {
    -webkit-transform: translate(-160px, -130px);
    transform: translate(-160px, -130px);
  }
}

.c-action--left .c-action__detail {
  padding: 15px;
}

@media (min-width: 1024px) {
  .c-action--left .c-action__detail {
    padding: 50px 0 0 25px;
  }
}

@media (min-width: 1024px) {
  .c-action--left .c-action__desc {
    max-width: 150px;
  }
}

.c-action--right {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}

@media (min-width: 768px) {
  .c-action--right {
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px);
  }
}

@media (min-width: 1024px) {
  .c-action--right {
    -webkit-transform: translate(160px, 155px);
    transform: translate(160px, 155px);
  }
}

.c-action--right .c-action__detail {
  padding: 15px;
}

@media (min-width: 1024px) {
  .c-action--right .c-action__detail {
    padding: 120px 0 0 120px;
  }
}

@media (min-width: 1200px) {
  .c-action--right .c-action__detail {
    padding: 200px 30px 0 150px;
  }
}

.c-action__detail {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.c-action-ui {
  width: 180px;
  height: 370px;
  background-image: url("../img/phone-ui.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .c-action-ui {
    width: 30vw;
    max-width: 220px;
    height: 61.5vw;
    max-height: 450px;
  }
}

@media (min-width: 1024px) {
  .c-action-ui {
    width: 276px;
    height: 566px;
    margin-top: -40px;
  }
}

@media (min-width: 1200px) {
  .c-action-ui {
    max-width: 276px;
    max-height: 566px;
    margin-top: 0px;
  }
}

.c-action-ui--discover {
  background-image: url("../img/phone-ui-discover.png");
}

.c-action-ui--create {
  background-image: url("../img/phone-ui-create.png");
}

.c-action-ui--ex {
  background-image: url("../img/phone-ui-ex.png");
}

.c-action__type {
  font-weight: 400;
  color: #f2789c;
  font-size: 1.7142857143em;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .c-action__type {
    font-size: 2em;
    margin-bottom: 20px;
  }
}

.c-action__desc {
  opacity: .75;
  line-height: 1.25;
  font-size: 1em;
}

/*------------------------------------*    #Adventure
\*------------------------------------*/
.c-adventure {
  background: url("../img/adventure-bg.jpg") top center no-repeat;
  padding: 70px 0 60px;
}

.c-adventure__copy {
  text-align: center;
  max-width: 760px;
  margin: 2em auto;
}

.c-adventure__img {
  max-width: 100%;
  margin-bottom: 3em;
}

.c-adventure__socials {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 2em;
}

.c-adventure__download {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .c-adventure__download {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-adventure__downloadItem {
  width: 280px;
  margin: 6px 12px;
}

.c-adventure__downloadItem img {
  width: 100%;
}

.c-adventure__footer {
  text-align: center;
}

/*------------------------------------*    #CALL TO ACTION
\*------------------------------------*/
.c-cta {
  margin: 0 0 0 12px;
  display: inline-block;
  padding: 3px;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edc41f+0,f974c3+50,68c0e0+100 */
  background: #f974c3;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  background: linear-gradient(to right, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc41f', endColorstr='#68c0e0',GradientType=1 );
  /* IE6-9 */
}

.c-cta:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#68c0e0+0,f974c3+50,edc41f+100 */
  background: #68c0e0;
  /* Old browsers */
  background: -webkit-linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  background: linear-gradient(45deg, #68c0e0 0%, #f974c3 50%, #edc41f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#68c0e0', endColorstr='#edc41f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1500px) {
  .c-cta {
    margin: 0 13px;
  }
}

.c-cta--margin {
  margin: 18px 0;
}

.c-cta--hero {
  top: 70%;
  z-index: 10;
}

@media (min-width: 1024px) {
  .c-cta--hero {
    top: 10%;
  }
}

.c-cta--hero .c-cta__inner {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .c-cta--hero .c-cta__inner {
    font-size: 1.2857142857rem;
  }
}

@media (min-width: 1200px) {
  .c-cta--hero .c-cta__inner {
    font-size: 1.7142857143rem;
  }
}

@media (min-width: 1500px) {
  .c-cta--hero .c-cta__inner {
    font-size: 1.9285714286rem;
  }
}

.c-title--careers .c-cta--hero {
  top: 100%;
  z-index: 10;
}

@media (min-width: 1024px) {
  .c-title--careers .c-cta--hero {
    top: 10%;
  }
}

.c-title--careers .c-cta--hero .c-cta__inner {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .c-title--careers .c-cta--hero .c-cta__inner {
    font-size: 1.2857142857rem;
  }
}

@media (min-width: 1200px) {
  .c-title--careers .c-cta--hero .c-cta__inner {
    font-size: 1.7142857143rem;
  }
}

@media (min-width: 1500px) {
  .c-title--careers .c-cta--hero .c-cta__inner {
    font-size: 1.9285714286rem;
  }
}

.c-cta__inner {
  padding: 8px 20px;
  color: #242226;
  font-size: 1rem;
  border-radius: 50px;
  background-color: #fff;
  letter-spacing: 1px;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .c-cta__inner {
    padding: 8px 24px;
    font-size: 1.1428571429rem;
  }
}

@media (min-width: 1500px) {
  .c-cta__inner {
    font-size: 1.2857142857rem;
  }
}

.c-cta--r15 {
  border-radius: 15px;
}

.c-cta__inner--r12 {
  font-size: 1.2857142857rem;
  border-radius: 12px;
}

/*------------------------------------*    #DECOR
\*------------------------------------*/
svg:not(:root) {
  overflow: visible;
}

.c-decor {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.c-decor--simple-line {
  width: 70px;
  height: 5px;
  background: #b8bfcc;
  top: 40%;
}

.is-left .c-decor--simple-line {
  left: 100%;
}

.is-right .c-decor--simple-line {
  right: 100%;
}

.c-decor-img {
  position: absolute;
  display: none;
  z-index: 10;
}

@media (min-width: 1024px) {
  .c-decor-img {
    display: block;
  }
}

.c-decor-img--petals {
  top: -140px;
  left: 60%;
}

.c-decor-img--perfume {
  bottom: -300px;
  left: 50%;
}

.c-decor-img--glasses {
  bottom: 150px;
  left: 60%;
}

.c-decor-img--candle {
  top: -100px;
  right: 82%;
}

.c-decor-img--feather {
  left: 80%;
  bottom: -320px;
  z-index: 100;
}

.c-decor-img--camera {
  left: 70%;
  top: -5%;
  -webkit-transform: rotate(45deg) scale(0.8);
  transform: rotate(45deg) scale(0.8);
}

.c-decor-img--pendant {
  right: 85%;
  bottom: -240px;
  z-index: 100;
}

.c-decor-img--clip-holder {
  top: -100px;
  right: 80%;
}

.c-decor-img--plant {
  right: -5%;
  top: -100px;
}

.c-decor-img--plant2 {
  left: 80%;
  top: 20%;
}

.c-decor-img--pen-note {
  right: 90%;
  top: 50%;
}

.c-decor-img--pencil {
  left: 80%;
  top: 50%;
  z-index: 100;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.c-decor-img--paper-pen {
  left: 90%;
  top: 80%;
}

.c-decor-img--intuos {
  right: 80%;
  top: -25%;
}

.c-decor__obj {
  position: absolute;
}

.c-decor__svg {
  padding: 10px;
}

.c-content--about .c-decor__obj--line,
.c-content--blog .c-decor__obj--line,
.c-content--news .c-decor__obj--line,
.c-content--studio .c-decor__obj--line,
.c-logo-treatment .c-decor__obj--line {
  left: 50%;
  top: -20%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-content--about .c-decor__obj--line,
  .c-content--blog .c-decor__obj--line,
  .c-content--news .c-decor__obj--line,
  .c-content--studio .c-decor__obj--line,
  .c-logo-treatment .c-decor__obj--line {
    top: 0%;
    left: 30%;
  }
}

@media (min-width: 1024px) {
  .c-content--about .c-decor__obj--line,
  .c-content--blog .c-decor__obj--line,
  .c-content--news .c-decor__obj--line,
  .c-content--studio .c-decor__obj--line,
  .c-logo-treatment .c-decor__obj--line {
    left: 50%;
    margin-left: -700px;
  }
}

.c-content--what .c-decor__obj--line {
  left: 50%;
  top: -20%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-content--what .c-decor__obj--line {
    left: 30%;
  }
}

@media (min-width: 1024px) {
  .c-content--what .c-decor__obj--line {
    left: 5%;
  }
}

.c-content--careers .c-decor__obj--line {
  left: 30%;
  top: 0%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-content--careers .c-decor__obj--line {
    top: -10%;
    left: 30%;
  }
}

@media (min-width: 1024px) {
  .c-content--careers .c-decor__obj--line {
    left: 50%;
    margin-left: -500px;
  }
}

.c-content--create .c-decor__obj--line {
  top: 50%;
  left: -90%;
  height: 100%;
}

@media (min-width: 1024px) {
  .c-content--create .c-decor__obj--line {
    top: -30%;
    left: 70%;
  }
}

.c-faq .c-decor__obj--line {
  left: 50%;
  top: -25%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-faq .c-decor__obj--line {
    top: 5%;
    left: -50%;
  }
}

@media (min-width: 1024px) {
  .c-faq .c-decor__obj--line {
    top: 10%;
    left: 15%;
  }
}

.c-content--feature .c-decor__obj--line {
  left: 55%;
  top: 0;
  height: 100%;
  display: none;
}

@media (min-width: 1024px) {
  .c-content--feature .c-decor__obj--line {
    left: 25%;
    top: -80%;
  }
}

.c-content--apply .c-decor__obj--line {
  left: 10%;
  top: 0%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-content--apply .c-decor__obj--line {
    top: -10%;
    left: 40%;
  }
}

@media (min-width: 1024px) {
  .c-content--apply .c-decor__obj--line {
    left: 50%;
    margin-left: -400px;
  }
}

.c-content--perks .c-decor__obj--line {
  left: 10%;
  top: 0%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-content--perks .c-decor__obj--line {
    top: -10%;
    left: 40%;
  }
}

@media (min-width: 1024px) {
  .c-content--perks .c-decor__obj--line {
    left: 40%;
    margin-left: -400px;
  }
}

.c-content--blog .c-decor__obj--line-mid,
.c-content--news .c-decor__obj--line-mid {
  top: 50%;
  left: -90%;
  height: 100%;
}

@media (min-width: 1024px) {
  .c-content--blog .c-decor__obj--line-mid,
  .c-content--news .c-decor__obj--line-mid {
    top: 50%;
    left: 50%;
  }
}

.c-content--apply .c-decor__obj--line-mid,
.c-content--perks .c-decor__obj--line-mid,
.c-faq .c-decor__obj--line-mid {
  top: 50%;
  left: -90%;
  height: 100%;
}

@media (min-width: 1024px) {
  .c-content--apply .c-decor__obj--line-mid,
  .c-content--perks .c-decor__obj--line-mid,
  .c-faq .c-decor__obj--line-mid {
    top: 0%;
    left: 90%;
  }
}

.c-content--create .c-decor__obj--line-mid,
.c-content--feature .c-decor__obj--line-mid {
  top: 50%;
  left: -90%;
  height: 200%;
}

@media (min-width: 1024px) {
  .c-content--create .c-decor__obj--line-mid,
  .c-content--feature .c-decor__obj--line-mid {
    top: -45%;
    left: 50%;
  }
}

.c-decor__obj--actual-line {
  width: 4px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

.c-decor__obj--triangle {
  width: 100px;
  height: 100px;
  padding: 5px;
}

.c-logo-treatment .c-decor__obj--triangle {
  top: 50%;
  right: 10%;
}

.c-content--studio .c-decor__obj--triangle {
  top: 70%;
  right: 10%;
}

.c-content--careers .c-decor__obj--triangle,
.c-content--blog .c-decor__obj--triangle,
.c-content--news .c-decor__obj--triangle {
  top: 70%;
  right: 10%;
}

.c-content--about .c-decor__obj--triangle {
  top: 56%;
  right: 15%;
}

.c-faq .c-decor__obj--triangle {
  top: 90%;
  left: 15%;
}

.c-content--apply .c-decor__obj--triangle,
.c-content--perks .c-decor__obj--triangle {
  bottom: 10%;
  left: 15%;
}

.c-content--feature .c-decor__obj--triangle {
  left: 5%;
  top: 0%;
}

.c-decor__obj--triangle .c-decor__svg.init {
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.c-decor__obj--circle {
  width: 100px;
  height: 100px;
  padding: 5px;
}

.c-logo-treatment .c-decor__obj--circle {
  top: 80%;
  left: 10%;
}

.c-content--studio .c-decor__obj--circle {
  top: 80%;
  left: 15%;
}

.c-content--blog .c-decor__obj--circle,
.c-content--news .c-decor__obj--circle {
  top: 20%;
  left: 10%;
}

.c-content--what .c-decor__obj--circle {
  top: 50%;
  right: 0%;
}

.c-content--about .c-decor__obj--circle {
  top: 90%;
  left: 10%;
}

.c-content--apply .c-decor__obj--circle,
.c-content--perks .c-decor__obj--circle,
.c-faq .c-decor__obj--circle {
  top: 56%;
  right: 15%;
}

.c-decor__obj--circle .c-decor__svg.init {
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.c-decor__circle {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 10px;
}

.c-decor__polygon-tri {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 10px;
}

.c-action-decor--circle {
  width: 76px;
  height: 76px;
  padding: 5px;
  position: absolute;
  top: -40px;
  right: 60px;
}

.c-action-decor--circle path {
  stroke: #a3dada;
  stroke-width: 7px;
  fill: none;
  stroke-dasharray: 239;
  stroke-dashoffset: -239;
  -webkit-transition: all 1000ms ease 1000ms;
  transition: all 1000ms ease 1000ms;
}

.is-full .c-action-decor--circle path {
  stroke-dashoffset: 0;
}

.c-action-decor--line-0 {
  width: 8px;
  height: 85px;
  position: absolute;
  top: 34%;
  left: 12%;
}

.c-action-decor--line.grey {
  stroke: #e3e3e3;
  stroke-width: 8;
  stroke-dasharray: 85;
  stroke-dashoffset: 85;
  fill: none;
  -webkit-transition: all 1000ms ease 1000ms;
  transition: all 1000ms ease 1000ms;
}

.is-full .c-action-decor--line.grey {
  stroke-dashoffset: 0;
}

.c-decor--line-1 {
  width: 85px;
  height: 8px;
  position: absolute;
  top: 40%;
  right: -40px;
}

.c-decor--line.blue {
  stroke: #89cdf1;
  stroke-width: 8;
  stroke-dasharray: 85;
  stroke-dashoffset: 85;
  fill: none;
  -webkit-transition: all 1000ms ease 1000ms;
  transition: all 1000ms ease 1000ms;
}

.is-full .c-decor--line.blue {
  stroke-dashoffset: 0;
}

.c-decor--line-2 {
  width: 8px;
  height: 85px;
  position: absolute;
  top: -10%;
  right: 120px;
}

.c-decor--line.pink {
  stroke: #f2799d;
  stroke-width: 8;
  stroke-dasharray: 85;
  stroke-dashoffset: 85;
  fill: none;
  -webkit-transition: all 1000ms ease 1300ms;
  transition: all 1000ms ease 1300ms;
}

.is-full .c-decor--line.pink {
  stroke-dashoffset: 0;
}

/*------------------------------------*    #DOWNLOAD
\*------------------------------------*/
.c-download {
  display: -webkit-box;
  display: flex;
  max-width: 590px;
  margin: 0 auto;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: 1.2857142857em;
}

@media (min-width: 1024px) {
  .c-download {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-download__item {
  max-width: 240px;
  padding: 12px 0;
}

.c-download__item img {
  width: 100%;
}

/*------------------------------------*    #SOCIAL
\*------------------------------------*/
.c-social {
  display: -webkit-box;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-size: 1.2857142857em;
}

@media (min-width: 1024px) {
  .c-social {
    max-width: 400px;
  }
}

.c-social__icon {
  font-size: 2.5714285714em;
  color: #242226;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.c-social__icon:hover {
  color: #f2789c;
}

.fa-twitter:hover {
  color: #20bcf0;
}

.fa-facebook:hover {
  color: #4f71a6;
}

.fa-instagram:hover {
  color: #e3405f;
}

.fa-snapchat:hover {
  color: #fdfc01;
}

/*------------------------------------*    #FOOTER
\*------------------------------------*/
.c-legal {
  padding: 20px 0;
  background-color: #242226;
}

.c-legal__group {
  display: -webkit-box;
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: 1.2857142857em;
}

@media (min-width: 1024px) {
  .c-legal__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-legal__item {
  padding: 12px 0;
}

.c-legal__item a {
  font-size: 1em;
  color: #fff;
  font-weight: bold;
}

.c-legal__copy {
  font-size: 0.8em;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}

/*------------------------------------*    #HERO
\*------------------------------------*/
.c-hero {
  position: relative;
  margin-top: 86px;
  padding-top: 76.25vw;
  z-index: 1;
}

@media (min-width: 1024px) {
  .c-hero {
    margin-top: 0;
    padding-top: 37.375vw;
  }
}

.c-hero__home {
  width: 100vw;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .c-hero__home {
    display: block;
  }
}

.c-hero__home--mobile {
  display: block;
}

@media (min-width: 1024px) {
  .c-hero__home--mobile {
    display: none;
  }
}

.c-hero--studio {
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 0;
  z-index: inherit;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffea14+0,92defc+100 */
  background: #ffea14;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ffea14 0%, #92defc 100%);
  background: linear-gradient(to right, #ffea14 0%, #92defc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffea14', endColorstr='#92defc',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-hero--studio {
    margin-top: -70px;
  }
}

.c-hero--studio-img {
  background-image: url("../img/studio-hero-m.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 76.25vw;
  z-index: 10;
  position: relative;
}

@media (min-width: 1024px) {
  .c-hero--studio-img {
    background-image: url("../img/studio-hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 24vw;
  }
}

.c-hero--careers {
  width: 100%;
  height: 39.23vw;
  margin: 0;
  overflow: visible;
  background-image: none;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .c-hero--careers {
    overflow: hidden;
  }
}

.c-hero__careers-parallax {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-hero__img {
  width: 100vw;
  z-index: 10;
  position: relative;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .c-hero__img {
    margin-bottom: 64px;
  }
}

.c-hero--studio .c-hero__img {
  margin-top: 12px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffea14+0,ff799e+100 */
  background: #ffea14;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ffea14 0%, #ff799e 100%);
  background: linear-gradient(to right, #ffea14 0%, #ff799e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffea14', endColorstr='#ff799e',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-hero--studio .c-hero__img {
    margin-top: -64px;
  }
}

.c-hero__img--careers {
  top: -3.4vw;
}

@media (min-width: 1024px) {
  .c-hero__img--careers {
    top: -2vw;
  }
}

/*------------------------------------*    #CREATE A STORY
\*------------------------------------*/
.c-create {
  position: relative;
  background-color: #f7f6f6;
  padding: 40px 0 60px;
}

@media (min-width: 1024px) {
  .c-create {
    padding: 90px 0;
  }
}

.c-create__decor {
  display: none;
}

@media (min-width: 1024px) {
  .c-create__decor {
    display: block;
  }
}

.c-create__decor-img {
  position: absolute;
}

.c-create__decor-img.headphone {
  top: 50px;
  right: 70%;
}

.c-create__decor-img.toothpick {
  left: 20%;
  top: 65%;
}

.c-create__decor-img.keyboard {
  bottom: -460px;
  right: 62%;
}

.c-create__decor-img.mouse {
  right: 10%;
  bottom: 0;
}

.c-create__decor-img.plant {
  right: -5%;
  top: -100px;
}

.c-create__decor-img.coffee {
  right: 4%;
  top: 30%;
}

.c-create__device {
  z-index: 5;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}

.c-create__device .c-create__device-img {
  max-width: 80vw;
  margin: 48px auto 0;
}

.c-create__device .c-create__device-img--mobile {
  display: block;
  margin: 36px auto 0;
}

@media (min-width: 1024px) {
  .c-create__device .c-create__device-img--mobile {
    display: none;
  }
}

.c-create__device .c-create__device-img--tablet {
  display: none;
}

@media (min-width: 1024px) {
  .c-create__device .c-create__device-img--tablet {
    display: block;
  }
}

.c-create__story-group {
  display: none;
  width: 580px;
  height: 707px;
  margin-top: -24px;
  margin-left: -5px;
}

@media (min-width: 1024px) {
  .c-create__story-group {
    display: block;
  }
}

.c-create__story-group img {
  top: 0;
  left: 0;
  position: absolute;
  width: 360px;
}

.c-create__story-group .c-create__story-bubble {
  top: 55%;
  left: 20%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.c-create__story-group .c-create__story-bubble.is-triggered {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-create__story-group .c-create__text-group {
  position: absolute;
  top: 70%;
  left: 46.5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-create__story-group .c-create__text {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin-left: 4em;
  z-index: 1;
}

.c-create__story-group .c-create__text p, .c-create__story-group .c-create__text span {
  font-size: 1.2142857143rem;
  white-space: nowrap;
  float: left;
}

.typed-cursor {
  font-size: 1.0714285714rem;
  color: #242226;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*------------------------------------*    #STORIES
\*------------------------------------*/
.c-stories {
  margin-bottom: 100px;
  position: relative;
}

@media (min-width: 1024px) {
  .c-stories {
    margin-bottom: 200px;
  }
}

.c-stories::before, .c-stories::after {
  display: none !important;
  position: absolute;
  width: 30vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .c-stories::before, .c-stories::after {
    display: block !important;
    width: 400px;
  }
}

.c-stories::before {
  left: 0;
  top: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 */
}

.c-stories::after {
  right: 0;
  top: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
  /* IE6-9 */
}

.c-story {
  width: 260px;
  height: 334px;
  padding: 24px 0;
}

@media (min-width: 1024px) {
  .c-story {
    width: 301px;
    height: 387px;
  }
}

.c-story:focus {
  outline: none;
}

.c-story h5, .c-story h6 {
  font-size: 1.4285714286rem;
  font-weight: 400;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.c-story h5 {
  margin-top: 1em;
  margin-left: 13px;
  max-width: 230px;
}

.c-flipper {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.c-story__flip-container {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  cursor: pointer;
}

.c-story__flip-container:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-story__flip-container:hover .c-flipper {
  -webkit-animation-name: subtleRotate;
  animation-name: subtleRotate;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.c-story__front,
.c-story__back {
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.c-story__img {
  min-width: 255px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.c-story__flip-container:hover .c-story__img {
  -webkit-filter: drop-shadow(7px 12px 7px rgba(0, 0, 0, 0.55));
  filter: drop-shadow(7px 12px 7px rgba(0, 0, 0, 0.55));
}

.c-story__front {
  background-size: cover;
}

.c-story__front.badboy {
  background-image: url("../img/stories/badboy.png");
}

.c-story__front.brother {
  background-image: url("../img/stories/brother.png");
}

.c-story__front.campus {
  background-image: url("../img/stories/campus.png");
}

.c-story__front.demi {
  background-image: url("../img/stories/demi.png");
}

.c-story__front.georgia {
  background-image: url("../img/stories/georgia.png");
}

.c-story__front.hayes {
  background-image: url("../img/stories/hayes.png");
}

.c-story__front.juvie {
  background-image: url("../img/stories/juvie.png");
}

.c-story__front.lovestruck {
  background-image: url("../img/stories/lovestruck.png");
}

.c-story__front.lovingbad {
  background-image: url("../img/stories/lovingbad.png");
}

.c-story__front.meangirls-senior {
  background-image: url("../img/stories/mg-senior.png");
}

.c-story__front.meangirls-sorority {
  background-image: url("../img/stories/mg-sorority.png");
}

.c-story__back {
  color: #fff;
  background-image: url("../img/rainbow.jpg");
  background-size: cover;
  padding: 40px;
  text-align: center;
}

.c-story__back h6 {
  text-align: left;
  margin-bottom: 1em;
  font-size: 1.4285714286rem;
  max-width: 80%;
}

.c-story__back p {
  text-align: justify;
  font-size: 0.9285714286rem;
  max-height: 50%;
  overflow: scroll;
}

.c-story__back .c-btn-ghost {
  bottom: 30px;
}

.c-story__close {
  position: absolute !important;
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  right: 30px;
  top: 30px;
  cursor: pointer;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.c-story__close:hover {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.3), 0 12px 24px -4px rgba(0, 0, 0, 0.1);
}

.c-story__close::before, .c-story__close::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
}

.c-story__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-story__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*------------------------------------*    #PAGE TITLE
\*------------------------------------*/
.c-title {
  text-align: center;
  position: relative;
  padding: 30px 0;
  margin-top: 87px;
  z-index: 10;
}

@media (min-width: 1024px) {
  .c-title {
    padding: 34px 0;
  }
}

.c-title--press {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#83d2fb+0,fceb15+100 */
  background: #83d2fb;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #83d2fb 0%, #fceb15 100%);
  background: linear-gradient(to right, #83d2fb 0%, #fceb15 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83d2fb', endColorstr='#fceb15',GradientType=1 );
  /* IE6-9 */
}

.c-title--studio {
  z-index: 1 !important;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffea14+0,92defc+100 */
  background: #ffea14;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ffea14 0%, #92defc 100%);
  background: linear-gradient(to right, #ffea14 0%, #92defc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffea14', endColorstr='#92defc',GradientType=1 );
  /* IE6-9 */
}

.c-title--about {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffea14+0,ff799e+100 */
  background: #ffea14;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ffea14 0%, #ff799e 100%);
  background: linear-gradient(to right, #ffea14 0%, #ff799e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffea14', endColorstr='#ff799e',GradientType=1 );
  /* IE6-9 */
}

.c-title--blog, .c-title--news {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff78a6+0,83fbed+100 */
  background: #ff78a6;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ff78a6 0%, #83fbed 100%);
  background: linear-gradient(to right, #ff78a6 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff78a6', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
}

.c-title--careers {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#83d2fb+0,83fbed+100 */
  background: #83d2fb;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #83d2fb 0%, #83fbed 100%);
  background: linear-gradient(to right, #83d2fb 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83d2fb', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-title {
    margin-top: 0;
    z-index: 0;
  }
}

.c-title__heading {
  font-size: 2.8571428571rem;
  color: #fff;
  letter-spacing: -3px;
}

@media (min-width: 1024px) {
  .c-title__heading {
    font-size: 5.1428571429rem;
  }
}

@media (min-width: 1200px) {
  .c-title__heading {
    font-size: 5.7857142857rem;
  }
}

/*------------------------------------*    #PRESS
\*------------------------------------*/
.c-press {
  position: relative;
  text-align: center;
  z-index: 10;
}

.c-press__heading {
  font-weight: 400;
  font-size: 1.4285714286rem;
  margin: 0;
}

.c-press__link {
  font-size: 1.4285714286rem;
  color: #ff897f;
}

/*------------------------------------*    #LOGO TREATMENT
\*------------------------------------*/
.c-logo-treatment__decor {
  display: none;
}

@media (min-width: 1024px) {
  .c-logo-treatment__decor {
    display: block;
  }
}

.c-logo-treatment__item {
  text-align: center;
  position: relative;
  width: 300px;
  height: 300px;
  margin: 24px auto;
  border-radius: 30px;
  padding: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  background: #83d2fb;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #83d2fb 0%, #fceb15 100%);
  background: linear-gradient(to right, #83d2fb 0%, #fceb15 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83d2fb', endColorstr='#fceb15',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-logo-treatment__item {
    background: #e3e3e3;
  }
}

.c-logo-treatment__item:hover {
  background: #83d2fb;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #83d2fb 0%, #fceb15 100%);
  background: linear-gradient(to right, #83d2fb 0%, #fceb15 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83d2fb', endColorstr='#fceb15',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-logo-treatment__item {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@media (min-width: 1200px) {
  .c-logo-treatment__item {
    margin: 54px auto;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.c-logo-treatment__item-inner {
  padding-top: 75%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.c-logo-treatment__logo {
  width: 320px;
  height: 150px;
  top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.c-logo-treatment__logo.white-on-black {
  background-image: url("../img/logo-black.jpg");
}

.c-logo-treatment__logo.black-on-white {
  background-image: url("../img/logo-white.jpg");
}

.c-logo-treatment__logo.color-on-white {
  background-image: url("../img/logo-color.jpg");
}

/*------------------------------------*    #CONTENT
\*------------------------------------*/
.c-content {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #e6e6e6;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+75,f4f4f4+100 */
  background: white;
  /* Old browsers */
  background: -webkit-linear-gradient(top, white 0%, white 75%, #f4f4f4 100%);
  background: linear-gradient(to bottom, white 0%, white 75%, #f4f4f4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-content {
    padding: 78px 0 100px;
  }
}

.c-content--blog {
  padding: 40px 0 0;
}

@media (min-width: 1024px) {
  .c-content--blog {
    padding: 116px 0 0;
  }
}

.c-content--studio {
  padding: 24px 0 90px;
}

@media (min-width: 1024px) {
  .c-content--studio {
    padding: 24px 0 100px;
  }
}

.c-content--what {
  background: #fff;
  padding-bottom: 0;
  border: none;
}

.c-content--feature {
  padding: 30px 0;
}

.c-content--create {
  overflow: hidden;
  background: #f7f6f6;
  padding: 40px 0 60px;
  text-align: center;
}

@media (min-width: 1024px) {
  .c-content--create {
    overflow: visible;
    padding: 90px 0;
  }
}

.c-content--feature,
.c-content--about {
  background: #fff;
  border: 0;
}

.c-content--careers {
  background: #fff;
  padding: 40px 0 90px;
  border: 0;
}

@media (min-width: 1024px) {
  .c-content--careers {
    padding: 80px 0;
  }
}

.c-content--apply,
.c-content--faq,
.c-content--perks {
  background: #f4f4f4;
  border: 0;
}

.c-content--perks {
  padding: 30px 0 120px;
}

@media (min-width: 1024px) {
  .c-content--perks {
    padding: 116px 0 140px;
  }
}

.c-content--jobs {
  padding: 0 0 100px;
  min-height: 500px;
}

@media (min-width: 1024px) {
  .c-content--jobs {
    min-height: 700px;
  }
}

/*------------------------------------*    #NEWS
\*------------------------------------*/
.c-news__post {
  margin: 30px auto 0;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  padding: 0;
}

@media (min-width: 1024px) {
  .c-news__post {
    margin: 80px auto 120px;
  }
}

.c-news__post-img {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 500px;
  max-width: 93vw;
  height: 320px;
  background-color: #fff;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.2), 0 18px 30px -3px rgba(0, 0, 0, 0.2);
}

.c-news__post-img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.55), 0 18px 30px -3px rgba(0, 0, 0, 0.3);
}

.c-news__post-img img {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

@media (min-width: 1024px) {
  .c-news__post-img img {
    max-width: auto;
  }
}

@media (min-width: 1200px) {
  .c-news__post-img img {
    max-width: inherit;
  }
}

.c-news__post-frame {
  position: absolute;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  padding: 15px;
  width: 500px;
  height: 320px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff78a6+0,83fbed+100 */
  background: #ff78a6;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ff78a6 0%, #83fbed 100%);
  background: linear-gradient(to right, #ff78a6 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff78a6', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
}

.is-left .c-news__post-frame {
  -webkit-transform: translate(10%, 16%) scale(0.5);
  transform: translate(10%, 16%) scale(0.5);
}

@media (min-width: 1024px) {
  .is-left .c-news__post-frame {
    -webkit-transform: translate(10%, 16%) scale(0.7);
    transform: translate(10%, 16%) scale(0.7);
  }
}

@media (min-width: 1200px) {
  .is-left .c-news__post-frame {
    -webkit-transform: translate(10%, 16%);
    transform: translate(10%, 16%);
  }
}

.is-right .c-news__post-frame {
  -webkit-transform: translate(10%, 16%) scale(0.5);
  transform: translate(10%, 16%) scale(0.5);
}

@media (min-width: 1024px) {
  .is-right .c-news__post-frame {
    -webkit-transform: translate(-10%, 16%) scale(0.7);
    transform: translate(-10%, 16%) scale(0.7);
  }
}

@media (min-width: 1200px) {
  .is-right .c-news__post-frame {
    -webkit-transform: translate(-10%, 16%);
    transform: translate(-10%, 16%);
  }
}

.c-news__post-frame__inner {
  background: #fff;
  width: 100%;
  height: 100%;
}

.c-news__post-detail {
  padding: 60px 15px;
}

@media (min-width: 1024px) {
  .is-right .c-news__post-detail {
    text-align: right;
  }
}

.c-news__post-date {
  font-size: 1rem;
  color: #242226;
}

.c-news__post-title {
  font-size: 1.1428571429rem;
  line-height: 1.2;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .c-news__post-title {
    font-size: 1.7142857143rem;
  }
}

@media (min-width: 1200px) {
  .c-news__post-title {
    font-size: 2.5714285714rem;
  }
}

@media (min-width: 1500px) {
  .c-news__post-title {
    font-size: 3rem;
  }
}

/*------------------------------------*    #QUOTES
\*------------------------------------*/
.c-quote {
  position: relative;
  font-size: 2.1428571429rem;
  color: #b4b4b4;
  line-height: 1.2;
  font-weight: bold;
  padding: 20px 20px !important;
  margin: 60px auto;
}

.c-quote::before, .c-quote::after {
  position: absolute;
  height: 4px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f974c3;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  background: linear-gradient(to right, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc41f', endColorstr='#68c0e0',GradientType=1 );
  /* IE6-9 */
}

.c-quote::before {
  top: -12px;
}

.c-quote::after {
  bottom: -12px;
}

/*------------------------------------*    #FAQ
\*------------------------------------*/
.c-faq {
  background-color: #f4f4f4;
  position: relative;
  padding: 50px 0 80px;
}

@media (min-width: 1024px) {
  .c-faq {
    padding: 100px 0 300px;
  }
}

.c-faq__section {
  margin-top: 84px;
  margin-bottom: 64px;
}

.c-faq__section-title {
  font-size: 1.4285714286rem;
  padding-left: 40px;
  margin-bottom: 54px;
  font-weight: bold;
}

.c-faq__section-title::before {
  position: absolute;
  margin-top: -80px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

.c-faq__section-title--tech::before {
  background-image: url("../img/bulb.svg");
}

.c-faq__section-title--book::before {
  background-image: url("../img/book.svg");
}

.c-faq__section-title--money::before {
  background-image: url("../img/money.svg");
}

.c-faq__section-title--pen::before {
  background-image: url("../img/pen.svg");
}

.c-faq__section-title--crown::before {
  background-image: url("../img/crown.svg");
}

.c-faq__question-list {
  position: relative;
}

.c-faq__question {
  position: relative;
  font-size: 1.2857142857rem;
  list-style: none;
  display: block;
  padding: 1.5em 2em;
  cursor: pointer;
  border-top: 1px solid #e8e8e8;
}

.c-faq__question:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.c-faq__question:first-child {
  border-top: 0;
}

.c-faq__question:hover {
  color: #ff897f;
}

.c-faq__question.is-starred::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 28px;
  background-image: url("../img/star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.c-faq__link {
  color: #242226;
}

.c-faq__link:hover, .c-faq__link:active, .c-faq__link:focus {
  color: #f2799d;
  text-decoration: underline;
}

.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
}

.c-faq__answer p {
  padding: 0.5em 2.5em;
  margin: 0;
}

.c-faq__checkbox {
  display: none;
  visibility: hidden;
}

.c-faq__checkbox:checked + .c-faq__answer {
  max-height: inherit;
}

@media (min-width: 1200px) {
  .c-faq__checkbox:checked + .c-faq__answer {
    max-height: inherit;
  }
}

/*------------------------------------*    #PERKS
\*------------------------------------*/
.c-perk {
  margin: 30px auto;
}

.c-perk p {
  font-size: 1rem;
  line-height: 2;
}

.c-perk-title {
  margin: 2em 0;
  font-size: 1.4285714286rem;
  font-weight: bold;
}

.c-perk__icon {
  position: relative;
  width: 24px;
  height: 54px;
  margin: 0 auto;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.c-perk__icon * {
  fill: #07b1f3;
}

.c-perk__icon--eye svg {
  width: 54px;
}

.c-perk__icon--point svg {
  width: 38px;
}

.c-perk__icon--printer svg {
  width: 56px;
}

.c-perk__icon--hat svg {
  width: 30px;
}

.c-perk__icon--plane svg {
  width: 46px;
}

.c-perk__icon--baby svg {
  width: 41px;
}

/*------------------------------------*    #JOBS
\*------------------------------------*/
.c-job-lists.is-hidden {
  opacity: 0;
  height: 0 !important;
}

.c-jobs__depts {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
}

@media (min-width: 1024px) {
  .c-jobs__depts {
    padding: 54px 0;
  }
}

.c-jobs__depts-group {
  display: none;
  width: 100vw;
}

@media (min-width: 1200px) {
  .c-jobs__depts-group {
    display: block;
  }
}

.c-jobs__dept {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ff897f;
  border-radius: 8px;
  cursor: pointer;
  margin: 4px .2em;
  -webkit-transition: color 250ms ease, box-shadow 250ms ease;
  transition: color 250ms ease, box-shadow 250ms ease;
}

.c-jobs__dept:hover, .c-jobs__dept.active {
  background-color: #ff897f;
}

.c-jobs__dept:hover a, .c-jobs__dept.active a {
  color: #fff;
}

.c-jobs__dept a {
  display: inline-block;
  padding: 0.5em 1em;
  color: #242226;
  white-space: nowrap;
}

.c-jobs__dept:hover {
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 24px -3px rgba(0, 0, 0, 0.25);
}

.c-jobs__dept:hover a {
  color: #fff;
}

.c-jobs__select {
  display: block;
  position: relative;
}

.c-jobs__select::after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid #242226;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  top: calc(50% - 2px);
  right: 12px;
}

@media (min-width: 1200px) {
  .c-jobs__select {
    display: none;
  }
}

.c-jobs__select select {
  border: 2px solid #e6e6e6;
  width: 100%;
  height: 48px;
  padding: 1em;
}

.c-jobs__select select:focus {
  outline: none;
}

.c-job-lists {
  margin-top: 30px;
}

.c-job-lists__list {
  display: inline-block;
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .c-job-lists__list {
    width: 40vw;
    margin: 15px;
  }
}

@media (min-width: 1500px) {
  .c-job-lists__list {
    min-width: inherit;
    width: 47.5%;
  }
}

.c-job__single {
  max-width: 90vw;
  margin: 0 auto;
}

.c-job__single ul {
  padding: 0;
}

@media (min-width: 1024px) {
  .c-job__single {
    max-width: 50vw;
  }
}

.c-job-lists__dept {
  font-size: 1.5714285714rem;
  font-weight: bold;
  text-transform: uppercase;
}

.c-job-lists__dept--single {
  margin: 30px 0 0;
}

.c-job-lists__opening-outter {
  background: #e3e3e3;
  padding: 2px;
  margin: 6px auto;
  cursor: pointer;
}

.c-job-lists__opening-outter:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edc41f+0,f974c3+50,68c0e0+100 */
  background: #f974c3;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  background: linear-gradient(to right, #edc41f 0%, #f974c3 50%, #68c0e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc41f', endColorstr='#68c0e0',GradientType=1 );
  /* IE6-9 */
}

.c-job-lists__opening-outter:last-child {
  margin: 6px auto 18px;
}

.c-job-lists__opening {
  position: relative;
  width: 100%;
  background: #f8f8f8;
  padding: 12px 36px;
  cursor: pointer;
}

.c-job-lists__opening::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  height: 1px;
  background: #e3e3e3;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.c-job-lists__opening:hover::after {
  background: #ff897f;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.c-job-lists__role {
  font-size: 1.2857142857rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.c-job-lists__opening-outter:hover .c-job-lists__role {
  color: #ff897f;
}

.c-job-lists__role::before, .c-job-lists__role::after {
  position: absolute;
}

.c-job-lists__role::before {
  width: 12px;
  height: 12px;
  left: -20px;
  top: 2px;
  border: 1px solid #ff897f;
}

.c-job-lists__role::after {
  width: 0;
  height: 0;
  left: -16px;
  top: 4px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid transparent;
  border-left: 4px solid #ff897f;
}

.c-job-lists__link {
  color: #242226;
}

.c-job-lists__location {
  font-size: 1rem;
  font-weight: 400;
  color: #414141;
}

/*------------------------------------*    #BLOG
\*------------------------------------*/
.c-blog__meta-group {
  width: 200%;
  margin-top: 30px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  text-align: right;
  box-shadow: inset 5px 1px 0px #e6e6e6, inset 5px -1px 0px #e6e6e6;
}

.c-blog__meta {
  display: inline-block;
  padding: 24px 42px 24px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.c-blog__date {
  margin-left: 32px;
}

.c-blog__meta-item {
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.c-blog__meta-item:not(:first-child)::after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #d1d1d1;
  left: -20px;
  top: 5px;
}

.c-blog__nav {
  width: 100vw;
  height: 100px;
  border-top: 1px solid #e4e4e4;
}

@media (min-width: 1024px) {
  .c-blog__nav {
    height: 140px;
  }
}

.c-blog__nav-item {
  position: relative;
  height: 100%;
  float: left;
  background: #f7f7f7;
  font-size: 0.8571428571rem;
  color: #242226;
}

@media (min-width: 1024px) {
  .c-blog__nav-item {
    font-size: 1.1428571429rem;
  }
}

.c-blog__nav-item:hover {
  color: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff78a6+0,83fbed+100 */
  background: #ff78a6;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ff78a6 0%, #83fbed 100%);
  background: linear-gradient(to right, #ff78a6 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff78a6', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
}

.c-blog__nav-item span::before {
  display: none !important;
}

@media (min-width: 1024px) {
  .c-blog__nav-item span::before {
    display: block !important;
  }
}

.c-blog__nav-item .has-arrow::before {
  border-top: 2px solid #ff897f !important;
  border-left: 2px solid #ff897f !important;
}

.c-blog__nav-item:hover .has-arrow::before {
  border-top: 2px solid #fff !important;
  border-left: 2px solid #fff !important;
}

.c-blog__nav-item--prev,
.c-blog__nav-item--next {
  width: calc((100vw - 90px)/2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .c-blog__nav-item--prev,
  .c-blog__nav-item--next {
    width: calc((100vw - 160px)/2);
  }
}

.c-blog__nav-item--prev {
  text-align: right;
}

.c-blog__nav-item--prev span {
  right: 30px;
}

.c-blog__nav-item--next {
  text-align: left;
}

.c-blog__nav-item--next span {
  left: 30px;
}

.c-blog__nav-item--all {
  width: 90px;
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  background: url("../img/icon-grid.svg") no-repeat;
  background-size: 30px;
  background-position: 50%;
}

@media (min-width: 1024px) {
  .c-blog__nav-item--all {
    width: 160px;
  }
}

.c-blog__nav-item--all:hover {
  background: #efefef url("../img/icon-grid.svg") no-repeat;
  background-size: 30px;
  background-position: 50%;
}

.c-blog__img {
  margin: 0 auto 100px;
  position: relative;
}

.c-blog__img img {
  position: relative;
}

.c-blog__frame {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 15px;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff78a6+0,83fbed+100 */
  background: #ff78a6;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ff78a6 0%, #83fbed 100%);
  background: linear-gradient(to right, #ff78a6 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff78a6', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
  -webkit-transform: translate(-14%, 7%);
  transform: translate(-14%, 7%);
}

.c-blog__frame-inner {
  width: 100%;
  height: 100%;
  background: #fff;
}

.c-blog__p p:first-child:first-letter {
  float: left;
  font-size: 142px;
  line-height: 85px;
  margin-top: 12px;
  padding-bottom: 20px;
  padding-right: 12px;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
}

.c-blog__p p:first-child:first-letter::after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 6px;
  background: #242226;
  top: 100%;
  left: 0;
}

.c-blog__p blockquote {
  font-size: 2.1428571429rem;
  font-weight: bold;
  color: #b4b4b4;
  line-height: 1.25;
  margin: 64px auto;
}

.c-blog__p blockquote::before, .c-blog__p blockquote::after {
  content: '';
  display: block;
  position: absolute;
  height: 4px;
  width: 90%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff78a6+0,83fbed+100 */
  background: #ff78a6;
  /* Old browsers */
  background: -webkit-linear-gradient(left, #ff78a6 0%, #83fbed 100%);
  background: linear-gradient(to right, #ff78a6 0%, #83fbed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff78a6', endColorstr='#83fbed',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 1024px) {
  .c-blog__p blockquote::before, .c-blog__p blockquote::after {
    width: 80%;
  }
}

.c-blog__p blockquote::before {
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
}

.c-blog__p blockquote::after {
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
}

/*------------------------------------*    #DEEP DIVE
\*------------------------------------*/
.c-dive {
  margin-bottom: 100px;
}

.c-dive__img {
  width: 285px;
  height: 190px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.4), 0 18px 30px -3px rgba(0, 0, 0, 0.25);
}

.c-dive__img img {
  max-width: 100%;
}

.c-dive__title {
  font-size: 1.6428571429rem;
  margin: 1em 0 0;
  color: #83d2fb;
}

.c-dive__desc {
  padding: 2em;
  margin: 0 0 1em;
  line-height: 2;
  text-align: left;
  font-size: 1rem;
  max-height: 140px;
  overflow: hidden;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.c-dive__desc.expanded {
  max-height: 1000px;
}

/*------------------------------------*    #VIDEO
\*------------------------------------*/
.c-video-group {
  border-radius: 14px;
  margin: 0 auto 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.c-video {
  width: 100%;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  border-radius: 14px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (min-width: 1024px) {
  .c-video-portrait {
    display: none;
  }
}

.c-video-landscape {
  display: none;
}

@media (min-width: 1024px) {
  .c-video-landscape {
    display: block;
  }
}

/*------------------------------------*    #TEXT UTILITES
\*------------------------------------*/
/**
 * Text Alignment
 */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-italic {
  font-style: italic;
}

.u-text-bold {
  font-weight: bold;
}

@media (min-width: 1024px) {
  .u-text-tighten {
    padding: 0 50px;
  }
}

@media (min-width: 1024px) {
  .u-text-tighten-more {
    padding: 0 160px;
  }
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*------------------------------------*    #IMAGE UTILITIES
\*------------------------------------*/
/**
 * Image's max width conforms to the parent's width.
 */
.u-img-respond {
  max-width: 100%;
  height: auto;
}

/**
 * Image matches it's containers width
 */
.u-img-full {
  width: 100%;
  height: auto;
}

/*------------------------------------*    #VISIBILITY UTILITIES
\*------------------------------------*/
/**
 * Visibility classes for all breakpoints
 */
.u-hidden {
  display: none;
}

@media (min-width: 480px) {
  .u-hidden\@xs {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-hidden\@sm {
    display: none;
  }
}

@media (min-width: 1024px) {
  .u-hidden\@md {
    display: none;
  }
}

@media (min-width: 1200px) {
  .u-hidden\@lg {
    display: none;
  }
}

@media (min-width: 1500px) {
  .u-hidden\@xl {
    display: none;
  }
}

/**
 * Hide the entire tag and it's contents except for screen readers
 */
.u-sr-only {
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  position: absolute;
}

/*------------------------------------*    #COLOR UTILITES
\*------------------------------------*/
/**
 * Color utilities to force a specific color.
 */
.u-color-link {
  color: #89cdf1;
}

.u-color-grey {
  color: #7f7f7f;
}

/*------------------------------------*    #PSEUDO UTILITES
\*------------------------------------*/
.has-pseudo {
  position: relative;
}

.has-pseudo::before,
.has-pseudo::after {
  content: '';
  display: block;
}

.has-pseudo--before::after {
  content: none;
  display: none;
}

.has-pseudo--after::before {
  content: none;
  display: none;
}

.has-pseudo--before.has-arrow::before {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.has-pseudo--before.has-arrow--back::before {
  left: -10px;
  -webkit-transform: rotate(-45deg) translateY(-85%);
  transform: rotate(-45deg) translateY(-85%);
}

.has-pseudo--before.has-arrow--forward::before {
  right: -20px;
  -webkit-transform: rotate(135deg) translateY(85%);
  transform: rotate(135deg) translateY(85%);
}

/*------------------------------------*    #POSITION UTILITES
\*------------------------------------*/
/**
 * CENTERING
 */
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.u-position-v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-position-h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.u-position-bring-to-front {
  position: relative;
  z-index: 99;
}

/*------------------------------------*    #FLIPPER UTILITES
\*------------------------------------*/
/* entire container, keeps perspective */
.u-flip-container {
  -webkit-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
  vertical-align: top;
  display: block;
}

/* flip the pane when hovered */
.u-flip-container.is-flipped .u-flipper {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.u-flip-container,
.is-front,
.is-back {
  width: 255px;
  height: 352px;
}

/* flip speed goes here */
.u-flipper {
  position: relative;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  /* content backface is visible so that static content still appears */
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

/* hide back of pane during swap */
.is-front, .is-back {
  /* Backface visibility works great for all but IE. As such, we mark the backface visible in IE and manage visibility ourselves */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-backface-visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
}

/* front pane, placed above back */
.is-flipped .is-front,
.is-front {
  z-index: 2;
  /* for firefox 31 */
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

/* back, initially hidden pane */
.is-flipped .is-back,
.is-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.u-flip-container .u-flipper .is-front, .u-flip-container.is-flipped .u-flipper .is-back {
  /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
  animation: stayvisible 0.5s both;
  -webkit-animation: stayvisible 0.5s both;
  -moz-animation: stayvisible 0.5s both;
  -ms-animation: donothing 0.5s;
  -ms-transition: visibility 0s linear 0.17s;
  visibility: visible;
}

.u-flip-container.is-flipped .u-flipper .is-front, .card .u-flipper .is-back {
  /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
  animation: stayvisible 0.5s both;
  -webkit-animation: stayvisible 0.5s both;
  -moz-animation: stayvisible 0.5s both;
  -ms-animation: donothing 0.5s;
  -ms-transition: visibility 0s linear 0.17s;
  visibility: hidden;
}

@keyframes stayvisible {
  from {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}

@-webkit-keyframes stayvisible {
  from {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}/*------------------------------------*    #SCALE UTILITIES
\*------------------------------------*/
/**
 * Image's max width conforms to the parent's width.
 */
.u-scale-double {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.u-scale-half {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.u-scale-bigly {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.u-scale-biglier {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .slick-slider {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.slick-list {
  position: relative;
  overflow: visible;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-arrow::before, .slick-arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 31px;
  height: 4px;
  border-radius: 20px;
  background: #242226;
  top: 50%;
  left: 50%;
}

.slick-arrow:hover::before, .slick-arrow:hover::after {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #89cdf1;
}

.slick-arrow.slick-prev::before {
  -webkit-transform: translate(-60%, -50%) rotate(-45deg);
  transform: translate(-60%, -50%) rotate(-45deg);
  margin-top: -10px;
}

.slick-arrow.slick-prev::after {
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
  transform: translate(-60%, -50%) rotate(45deg);
  margin-top: 10px;
}

.slick-arrow.slick-next::before {
  -webkit-transform: translate(-40%, -50%) rotate(-45deg);
  transform: translate(-40%, -50%) rotate(-45deg);
  margin-top: 10px;
}

.slick-arrow.slick-next::after {
  -webkit-transform: translate(-40%, -50%) rotate(45deg);
  transform: translate(-40%, -50%) rotate(45deg);
  margin-top: -10px;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 94px;
  width: 84px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.75);
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -82%);
  transform: translate(0, -82%);
  padding: 0;
  border: none;
  outline: none;
  box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  left: 0;
  border-radius: 0 20px 20px 0;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "<";
}

[dir="rtl"] .slick-prev:before {
  content: ">";
}

.slick-next {
  right: 0;
  border-radius: 20px 0 0 20px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: ">";
}

[dir="rtl"] .slick-next:before {
  content: "<";
}

/* Dots */
@media (min-width: 1024px) {
  .slick-dotted.slick-slider {
    margin-bottom: 100px;
  }
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .slick-dots li {
    margin: 0 5px;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 40px;
  line-height: 20px;
  text-align: center;
  color: #999;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #4479b3;
  opacity: 0.75;
}

/*------------------------------------*    #Animate CSS
\*------------------------------------*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.js-animation {
  opacity: 0;
}

.js-animation.animated {
  opacity: 1;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp--subtle {
  -webkit-animation-name: fadeInUp--subtle;
  animation-name: fadeInUp--subtle;
}

@-webkit-keyframes fadeInDown--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown--subtle {
  -webkit-animation-name: fadeInDown--subtle;
  animation-name: fadeInDown--subtle;
}

@-webkit-keyframes fadeInRight--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight--subtle {
  -webkit-animation-name: fadeInRight--subtle;
  animation-name: fadeInRight--subtle;
}

@-webkit-keyframes fadeInLeft--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft--subtle {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft--subtle {
  -webkit-animation-name: fadeInLeft--subtle;
  animation-name: fadeInLeft--subtle;
}

@-webkit-keyframes subtleRotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(-8, 9, 0, 18deg);
    transform: rotate3d(-8, 9, 0, 18deg);
  }
  55% {
    -webkit-transform: rotate3d(5, -9, 0, 10deg);
    transform: rotate3d(5, -9, 0, 10deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes subtleRotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(-8, 9, 0, 18deg);
    transform: rotate3d(-8, 9, 0, 18deg);
  }
  55% {
    -webkit-transform: rotate3d(5, -9, 0, 10deg);
    transform: rotate3d(5, -9, 0, 10deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes subtleRotate2 {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  18% {
    -webkit-transform: rotateX(-7deg) rotateY(0deg);
    transform: rotateX(-7deg) rotateY(0deg);
  }
  45% {
    -webkit-transform: rotateX(6deg) rotateY(-2deg);
    transform: rotateX(6deg) rotateY(-2deg);
  }
  70% {
    -webkit-transform: rotateX(-2deg) rotateY(1deg);
    transform: rotateX(-2deg) rotateY(1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes subtleRotate2 {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  18% {
    -webkit-transform: rotateX(-7deg) rotateY(0deg);
    transform: rotateX(-7deg) rotateY(0deg);
  }
  45% {
    -webkit-transform: rotateX(6deg) rotateY(-2deg);
    transform: rotateX(6deg) rotateY(-2deg);
  }
  70% {
    -webkit-transform: rotateX(-2deg) rotateY(1deg);
    transform: rotateX(-2deg) rotateY(1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes subtleRotate3 {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  18% {
    -webkit-transform: rotateX(-9deg) rotateY(7deg);
    transform: rotateX(-9deg) rotateY(7deg);
  }
  45% {
    -webkit-transform: rotateX(6deg) rotateY(-2deg);
    transform: rotateX(6deg) rotateY(-2deg);
  }
  70% {
    -webkit-transform: rotateX(-2deg) rotateY(1deg);
    transform: rotateX(-2deg) rotateY(1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes subtleRotate3 {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  18% {
    -webkit-transform: rotateX(-9deg) rotateY(7deg);
    transform: rotateX(-9deg) rotateY(7deg);
  }
  45% {
    -webkit-transform: rotateX(6deg) rotateY(-2deg);
    transform: rotateX(6deg) rotateY(-2deg);
  }
  70% {
    -webkit-transform: rotateX(-2deg) rotateY(1deg);
    transform: rotateX(-2deg) rotateY(1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes strokeDash {
  0% {
    stroke-dasharray: 12;
  }
  100% {
    stroke-dasharray: 72;
  }
}

@keyframes strokeDash {
  0% {
    stroke-dasharray: 12;
  }
  100% {
    stroke-dasharray: 72;
  }
}

@-webkit-keyframes strokeDash {
  0% {
    stroke-dasharray: 12;
  }
  100% {
    stroke-dasharray: 72;
  }
}

@-webkit-keyframes animatedVar1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(50px, -400px, 0) rotate(360deg);
    transform: translate3d(50px, -400px, 0) rotate(360deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(720deg);
    transform: translate3d(0, 0, 0) rotate(720deg);
  }
}

@keyframes animatedVar1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(50px, -400px, 0) rotate(360deg);
    transform: translate3d(50px, -400px, 0) rotate(360deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(720deg);
    transform: translate3d(0, 0, 0) rotate(720deg);
  }
}

.animatedVar1 {
  -webkit-animation-name: animatedVar1;
  animation-name: animatedVar1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes animatedVar2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(-50px, -400px, 0) rotate(360deg);
    transform: translate3d(-50px, -400px, 0) rotate(360deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(720deg);
    transform: translate3d(0, 0, 0) rotate(720deg);
  }
}

@keyframes animatedVar2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(-50px, -400px, 0) rotate(360deg);
    transform: translate3d(-50px, -400px, 0) rotate(360deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(720deg);
    transform: translate3d(0, 0, 0) rotate(720deg);
  }
}

.animatedVar2 {
  -webkit-animation-name: animatedVar2;
  animation-name: animatedVar2;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes cardServed {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-30deg) rotateY(54deg) scale(1.25) translate3d(0, 20%, 0);
    transform: rotateX(-30deg) rotateY(54deg) scale(1.25) translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes cardServed {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-30deg) rotateY(54deg) scale(1.25) translate3d(0, 20%, 0);
    transform: rotateX(-30deg) rotateY(54deg) scale(1.25) translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.cardServed {
  -webkit-animation-name: cardServed;
  animation-name: cardServed;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

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