@charset "UTF-8";
.counter-potential .container, .chapter-intro .container, .chapter-questions .container, .chapter-space .container, .chapter-fields .container, .chapter-environment .container, .chapter-trees .container, .chapter-climategoal .container, .chapter-options .container {
  padding-top: 64px;
  padding-bottom: 64px; }
  @media (min-width: 768px) {
    .counter-potential .container, .chapter-intro .container, .chapter-questions .container, .chapter-space .container, .chapter-fields .container, .chapter-environment .container, .chapter-trees .container, .chapter-climategoal .container, .chapter-options .container {
      padding-top: 136px;
      padding-bottom: 136px; } }

.site-footer .columns, .counter-money .animated-txt, .chapter-questions .row, .chapter-space .animated-row, .chapter-environment .animated-row, .chapter-options .scores, .chapter-options .options {
  flex-direction: column; }
  @media (min-width: 768px) {
    .site-footer .columns, .counter-money .animated-txt, .chapter-questions .row, .chapter-space .animated-row, .chapter-environment .animated-row, .chapter-options .scores, .chapter-options .options {
      flex-direction: row; } }

/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -40px;
  /* [3] */ }

/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.grid__item {
  display: block;
  /* [1] */
  padding-left: 40px;
  /* [3] */
  width: 100%;
  /* [4] */
  /* [5] */
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left; }

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -20px; }
  .grid--narrow > .grid__item {
    padding-left: 20px; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -80px; }
  .grid--wide > .grid__item {
    padding-left: 80px; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters > .grid__item {
    padding-left: 0; }

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
     * Whole
     */
.one-whole {
  width: 100%; }

/**
     * Halves
     */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
     * Thirds
     */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
     * Quarters
     */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
     * Fifths
     */
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
     * Sixths
     */
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
     * Eighths
     */
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
     * Tenths
     */
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
     * Twelfths
     */
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 480px) {
  /**
     * Whole
     */
  .palm--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .palm--one-half, .palm--two-quarters, .palm--three-sixths, .palm--four-eighths, .palm--five-tenths, .palm--six-twelfths {
    width: 50%; }
  /**
     * Thirds
     */
  .palm--one-third, .palm--two-sixths, .palm--four-twelfths {
    width: 33.333%; }
  .palm--two-thirds, .palm--four-sixths, .palm--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .palm--one-quarter, .palm--two-eighths, .palm--three-twelfths {
    width: 25%; }
  .palm--three-quarters, .palm--six-eighths, .palm--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .palm--one-fifth, .palm--two-tenths {
    width: 20%; }
  .palm--two-fifths, .palm--four-tenths {
    width: 40%; }
  .palm--three-fifths, .palm--six-tenths {
    width: 60%; }
  .palm--four-fifths, .palm--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .palm--one-sixth, .palm--two-twelfths {
    width: 16.666%; }
  .palm--five-sixths, .palm--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .palm--one-eighth {
    width: 12.5%; }
  .palm--three-eighths {
    width: 37.5%; }
  .palm--five-eighths {
    width: 62.5%; }
  .palm--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .palm--one-tenth {
    width: 10%; }
  .palm--three-tenths {
    width: 30%; }
  .palm--seven-tenths {
    width: 70%; }
  .palm--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .palm--one-twelfth {
    width: 8.333%; }
  .palm--five-twelfths {
    width: 41.666%; }
  .palm--seven-twelfths {
    width: 58.333%; }
  .palm--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
     * Whole
     */
  .lap--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .lap--one-half, .lap--two-quarters, .lap--three-sixths, .lap--four-eighths, .lap--five-tenths, .lap--six-twelfths {
    width: 50%; }
  /**
     * Thirds
     */
  .lap--one-third, .lap--two-sixths, .lap--four-twelfths {
    width: 33.333%; }
  .lap--two-thirds, .lap--four-sixths, .lap--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .lap--one-quarter, .lap--two-eighths, .lap--three-twelfths {
    width: 25%; }
  .lap--three-quarters, .lap--six-eighths, .lap--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .lap--one-fifth, .lap--two-tenths {
    width: 20%; }
  .lap--two-fifths, .lap--four-tenths {
    width: 40%; }
  .lap--three-fifths, .lap--six-tenths {
    width: 60%; }
  .lap--four-fifths, .lap--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .lap--one-sixth, .lap--two-twelfths {
    width: 16.666%; }
  .lap--five-sixths, .lap--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .lap--one-eighth {
    width: 12.5%; }
  .lap--three-eighths {
    width: 37.5%; }
  .lap--five-eighths {
    width: 62.5%; }
  .lap--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .lap--one-tenth {
    width: 10%; }
  .lap--three-tenths {
    width: 30%; }
  .lap--seven-tenths {
    width: 70%; }
  .lap--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .lap--one-twelfth {
    width: 8.333%; }
  .lap--five-twelfths {
    width: 41.666%; }
  .lap--seven-twelfths {
    width: 58.333%; }
  .lap--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (max-width: 1023px) {
  /**
     * Whole
     */
  .portable--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .portable--one-half, .portable--two-quarters, .portable--three-sixths, .portable--four-eighths, .portable--five-tenths, .portable--six-twelfths {
    width: 50%; }
  /**
     * Thirds
     */
  .portable--one-third, .portable--two-sixths, .portable--four-twelfths {
    width: 33.333%; }
  .portable--two-thirds, .portable--four-sixths, .portable--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .portable--one-quarter, .portable--two-eighths, .portable--three-twelfths {
    width: 25%; }
  .portable--three-quarters, .portable--six-eighths, .portable--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .portable--one-fifth, .portable--two-tenths {
    width: 20%; }
  .portable--two-fifths, .portable--four-tenths {
    width: 40%; }
  .portable--three-fifths, .portable--six-tenths {
    width: 60%; }
  .portable--four-fifths, .portable--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .portable--one-sixth, .portable--two-twelfths {
    width: 16.666%; }
  .portable--five-sixths, .portable--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .portable--one-eighth {
    width: 12.5%; }
  .portable--three-eighths {
    width: 37.5%; }
  .portable--five-eighths {
    width: 62.5%; }
  .portable--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .portable--one-tenth {
    width: 10%; }
  .portable--three-tenths {
    width: 30%; }
  .portable--seven-tenths {
    width: 70%; }
  .portable--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .portable--one-twelfth {
    width: 8.333%; }
  .portable--five-twelfths {
    width: 41.666%; }
  .portable--seven-twelfths {
    width: 58.333%; }
  .portable--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 768px) {
  /**
     * Whole
     */
  .tablet--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .tablet--one-half, .tablet--two-quarters, .tablet--three-sixths, .tablet--four-eighths, .tablet--five-tenths, .tablet--six-twelfths {
    width: 50%; }
  /**
     * Thirds
     */
  .tablet--one-third, .tablet--two-sixths, .tablet--four-twelfths {
    width: 33.333%; }
  .tablet--two-thirds, .tablet--four-sixths, .tablet--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .tablet--one-quarter, .tablet--two-eighths, .tablet--three-twelfths {
    width: 25%; }
  .tablet--three-quarters, .tablet--six-eighths, .tablet--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .tablet--one-fifth, .tablet--two-tenths {
    width: 20%; }
  .tablet--two-fifths, .tablet--four-tenths {
    width: 40%; }
  .tablet--three-fifths, .tablet--six-tenths {
    width: 60%; }
  .tablet--four-fifths, .tablet--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .tablet--one-sixth, .tablet--two-twelfths {
    width: 16.666%; }
  .tablet--five-sixths, .tablet--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .tablet--one-eighth {
    width: 12.5%; }
  .tablet--three-eighths {
    width: 37.5%; }
  .tablet--five-eighths {
    width: 62.5%; }
  .tablet--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .tablet--one-tenth {
    width: 10%; }
  .tablet--three-tenths {
    width: 30%; }
  .tablet--seven-tenths {
    width: 70%; }
  .tablet--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .tablet--one-twelfth {
    width: 8.333%; }
  .tablet--five-twelfths {
    width: 41.666%; }
  .tablet--seven-twelfths {
    width: 58.333%; }
  .tablet--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 1024px) {
  /**
     * Whole
     */
  .desk--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .desk--one-half, .desk--two-quarters, .desk--three-sixths, .desk--four-eighths, .desk--five-tenths, .desk--six-twelfths {
    width: 50%; }
  /**
     * Thirds
     */
  .desk--one-third, .desk--two-sixths, .desk--four-twelfths {
    width: 33.333%; }
  .desk--two-thirds, .desk--four-sixths, .desk--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .desk--one-quarter, .desk--two-eighths, .desk--three-twelfths {
    width: 25%; }
  .desk--three-quarters, .desk--six-eighths, .desk--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .desk--one-fifth, .desk--two-tenths {
    width: 20%; }
  .desk--two-fifths, .desk--four-tenths {
    width: 40%; }
  .desk--three-fifths, .desk--six-tenths {
    width: 60%; }
  .desk--four-fifths, .desk--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .desk--one-sixth, .desk--two-twelfths {
    width: 16.666%; }
  .desk--five-sixths, .desk--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .desk--one-eighth {
    width: 12.5%; }
  .desk--three-eighths {
    width: 37.5%; }
  .desk--five-eighths {
    width: 62.5%; }
  .desk--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .desk--one-tenth {
    width: 10%; }
  .desk--three-tenths {
    width: 30%; }
  .desk--seven-tenths {
    width: 70%; }
  .desk--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .desk--one-twelfth {
    width: 8.333%; }
  .desk--five-twelfths {
    width: 41.666%; }
  .desk--seven-twelfths {
    width: 58.333%; }
  .desk--eleven-twelfths {
    width: 91.666%; } }

/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/**
     * Not a particularly great selector, but the DRYest way to do things.
     */
[class*="push--"] {
  position: relative; }

/**
     * Whole
     */
.push--one-whole {
  margin-left: 100%; }

/**
     * Halves
     */
.push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
  margin-left: 50%; }

/**
     * Thirds
     */
.push--one-third, .push--two-sixths, .push--four-twelfths {
  margin-left: 33.333%; }

.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
  lmargin-eft: 66.666%; }

/**
     * Quarters
     */
.push--one-quarter, .push--two-eighths, .push--three-twelfths {
  margin-left: 25%; }

.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
  margin-left: 75%; }

/**
     * Fifths
     */
.push--one-fifth, .push--two-tenths {
  margin-left: 20%; }

.push--two-fifths, .push--four-tenths {
  margin-left: 40%; }

.push--three-fifths, .push--six-tenths {
  margin-left: 60%; }

.push--four-fifths, .push--eight-tenths {
  margin-left: 80%; }

/**
     * Sixths
     */
.push--one-sixth, .push--two-twelfths {
  margin-left: 16.666%; }

.push--five-sixths, .push--ten-twelfths {
  margin-left: 83.333%; }

/**
     * Eighths
     */
.push--one-eighth {
  margin-left: 12.5%; }

.push--three-eighths {
  margin-left: 37.5%; }

.push--five-eighths {
  margin-left: 62.5%; }

.push--seven-eighths {
  margin-left: 87.5%; }

/**
     * Tenths
     */
.push--one-tenth {
  margin-left: 10%; }

.push--three-tenths {
  margin-left: 30%; }

.push--seven-tenths {
  margin-left: 70%; }

.push--nine-tenths {
  margin-left: 90%; }

/**
     * Twelfths
     */
.push--one-twelfth {
  margin-left: 8.333%; }

.push--five-twelfths {
  margin-left: 41.666%; }

.push--seven-twelfths {
  margin-left: 58.333%; }

.push--eleven-twelfths {
  margin-left: 91.666%; }

@media only screen and (max-width: 480px) {
  /**
     * Whole
     */
  .push--palm--one-whole {
    margin-left: 100%; }
  /**
     * Halves
     */
  .push--palm--one-half, .push--palm--two-quarters, .push--palm--three-sixths, .push--palm--four-eighths, .push--palm--five-tenths, .push--palm--six-twelfths {
    margin-left: 50%; }
  /**
     * Thirds
     */
  .push--palm--one-third, .push--palm--two-sixths, .push--palm--four-twelfths {
    margin-left: 33.333%; }
  .push--palm--two-thirds, .push--palm--four-sixths, .push--palm--eight-twelfths {
    lmargin-eft: 66.666%; }
  /**
     * Quarters
     */
  .push--palm--one-quarter, .push--palm--two-eighths, .push--palm--three-twelfths {
    margin-left: 25%; }
  .push--palm--three-quarters, .push--palm--six-eighths, .push--palm--nine-twelfths {
    margin-left: 75%; }
  /**
     * Fifths
     */
  .push--palm--one-fifth, .push--palm--two-tenths {
    margin-left: 20%; }
  .push--palm--two-fifths, .push--palm--four-tenths {
    margin-left: 40%; }
  .push--palm--three-fifths, .push--palm--six-tenths {
    margin-left: 60%; }
  .push--palm--four-fifths, .push--palm--eight-tenths {
    margin-left: 80%; }
  /**
     * Sixths
     */
  .push--palm--one-sixth, .push--palm--two-twelfths {
    margin-left: 16.666%; }
  .push--palm--five-sixths, .push--palm--ten-twelfths {
    margin-left: 83.333%; }
  /**
     * Eighths
     */
  .push--palm--one-eighth {
    margin-left: 12.5%; }
  .push--palm--three-eighths {
    margin-left: 37.5%; }
  .push--palm--five-eighths {
    margin-left: 62.5%; }
  .push--palm--seven-eighths {
    margin-left: 87.5%; }
  /**
     * Tenths
     */
  .push--palm--one-tenth {
    margin-left: 10%; }
  .push--palm--three-tenths {
    margin-left: 30%; }
  .push--palm--seven-tenths {
    margin-left: 70%; }
  .push--palm--nine-tenths {
    margin-left: 90%; }
  /**
     * Twelfths
     */
  .push--palm--one-twelfth {
    margin-left: 8.333%; }
  .push--palm--five-twelfths {
    margin-left: 41.666%; }
  .push--palm--seven-twelfths {
    margin-left: 58.333%; }
  .push--palm--eleven-twelfths {
    margin-left: 91.666%; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
     * Whole
     */
  .push--lap--one-whole {
    margin-left: 100%; }
  /**
     * Halves
     */
  .push--lap--one-half, .push--lap--two-quarters, .push--lap--three-sixths, .push--lap--four-eighths, .push--lap--five-tenths, .push--lap--six-twelfths {
    margin-left: 50%; }
  /**
     * Thirds
     */
  .push--lap--one-third, .push--lap--two-sixths, .push--lap--four-twelfths {
    margin-left: 33.333%; }
  .push--lap--two-thirds, .push--lap--four-sixths, .push--lap--eight-twelfths {
    lmargin-eft: 66.666%; }
  /**
     * Quarters
     */
  .push--lap--one-quarter, .push--lap--two-eighths, .push--lap--three-twelfths {
    margin-left: 25%; }
  .push--lap--three-quarters, .push--lap--six-eighths, .push--lap--nine-twelfths {
    margin-left: 75%; }
  /**
     * Fifths
     */
  .push--lap--one-fifth, .push--lap--two-tenths {
    margin-left: 20%; }
  .push--lap--two-fifths, .push--lap--four-tenths {
    margin-left: 40%; }
  .push--lap--three-fifths, .push--lap--six-tenths {
    margin-left: 60%; }
  .push--lap--four-fifths, .push--lap--eight-tenths {
    margin-left: 80%; }
  /**
     * Sixths
     */
  .push--lap--one-sixth, .push--lap--two-twelfths {
    margin-left: 16.666%; }
  .push--lap--five-sixths, .push--lap--ten-twelfths {
    margin-left: 83.333%; }
  /**
     * Eighths
     */
  .push--lap--one-eighth {
    margin-left: 12.5%; }
  .push--lap--three-eighths {
    margin-left: 37.5%; }
  .push--lap--five-eighths {
    margin-left: 62.5%; }
  .push--lap--seven-eighths {
    margin-left: 87.5%; }
  /**
     * Tenths
     */
  .push--lap--one-tenth {
    margin-left: 10%; }
  .push--lap--three-tenths {
    margin-left: 30%; }
  .push--lap--seven-tenths {
    margin-left: 70%; }
  .push--lap--nine-tenths {
    margin-left: 90%; }
  /**
     * Twelfths
     */
  .push--lap--one-twelfth {
    margin-left: 8.333%; }
  .push--lap--five-twelfths {
    margin-left: 41.666%; }
  .push--lap--seven-twelfths {
    margin-left: 58.333%; }
  .push--lap--eleven-twelfths {
    margin-left: 91.666%; } }

@media only screen and (max-width: 1023px) {
  /**
     * Whole
     */
  .push--portable--one-whole {
    margin-left: 100%; }
  /**
     * Halves
     */
  .push--portable--one-half, .push--portable--two-quarters, .push--portable--three-sixths, .push--portable--four-eighths, .push--portable--five-tenths, .push--portable--six-twelfths {
    margin-left: 50%; }
  /**
     * Thirds
     */
  .push--portable--one-third, .push--portable--two-sixths, .push--portable--four-twelfths {
    margin-left: 33.333%; }
  .push--portable--two-thirds, .push--portable--four-sixths, .push--portable--eight-twelfths {
    lmargin-eft: 66.666%; }
  /**
     * Quarters
     */
  .push--portable--one-quarter, .push--portable--two-eighths, .push--portable--three-twelfths {
    margin-left: 25%; }
  .push--portable--three-quarters, .push--portable--six-eighths, .push--portable--nine-twelfths {
    margin-left: 75%; }
  /**
     * Fifths
     */
  .push--portable--one-fifth, .push--portable--two-tenths {
    margin-left: 20%; }
  .push--portable--two-fifths, .push--portable--four-tenths {
    margin-left: 40%; }
  .push--portable--three-fifths, .push--portable--six-tenths {
    margin-left: 60%; }
  .push--portable--four-fifths, .push--portable--eight-tenths {
    margin-left: 80%; }
  /**
     * Sixths
     */
  .push--portable--one-sixth, .push--portable--two-twelfths {
    margin-left: 16.666%; }
  .push--portable--five-sixths, .push--portable--ten-twelfths {
    margin-left: 83.333%; }
  /**
     * Eighths
     */
  .push--portable--one-eighth {
    margin-left: 12.5%; }
  .push--portable--three-eighths {
    margin-left: 37.5%; }
  .push--portable--five-eighths {
    margin-left: 62.5%; }
  .push--portable--seven-eighths {
    margin-left: 87.5%; }
  /**
     * Tenths
     */
  .push--portable--one-tenth {
    margin-left: 10%; }
  .push--portable--three-tenths {
    margin-left: 30%; }
  .push--portable--seven-tenths {
    margin-left: 70%; }
  .push--portable--nine-tenths {
    margin-left: 90%; }
  /**
     * Twelfths
     */
  .push--portable--one-twelfth {
    margin-left: 8.333%; }
  .push--portable--five-twelfths {
    margin-left: 41.666%; }
  .push--portable--seven-twelfths {
    margin-left: 58.333%; }
  .push--portable--eleven-twelfths {
    margin-left: 91.666%; } }

@media only screen and (min-width: 768px) {
  /**
     * Whole
     */
  .push--tablet--one-whole {
    margin-left: 100%; }
  /**
     * Halves
     */
  .push--tablet--one-half, .push--tablet--two-quarters, .push--tablet--three-sixths, .push--tablet--four-eighths, .push--tablet--five-tenths, .push--tablet--six-twelfths {
    margin-left: 50%; }
  /**
     * Thirds
     */
  .push--tablet--one-third, .push--tablet--two-sixths, .push--tablet--four-twelfths {
    margin-left: 33.333%; }
  .push--tablet--two-thirds, .push--tablet--four-sixths, .push--tablet--eight-twelfths {
    lmargin-eft: 66.666%; }
  /**
     * Quarters
     */
  .push--tablet--one-quarter, .push--tablet--two-eighths, .push--tablet--three-twelfths {
    margin-left: 25%; }
  .push--tablet--three-quarters, .push--tablet--six-eighths, .push--tablet--nine-twelfths {
    margin-left: 75%; }
  /**
     * Fifths
     */
  .push--tablet--one-fifth, .push--tablet--two-tenths {
    margin-left: 20%; }
  .push--tablet--two-fifths, .push--tablet--four-tenths {
    margin-left: 40%; }
  .push--tablet--three-fifths, .push--tablet--six-tenths {
    margin-left: 60%; }
  .push--tablet--four-fifths, .push--tablet--eight-tenths {
    margin-left: 80%; }
  /**
     * Sixths
     */
  .push--tablet--one-sixth, .push--tablet--two-twelfths {
    margin-left: 16.666%; }
  .push--tablet--five-sixths, .push--tablet--ten-twelfths {
    margin-left: 83.333%; }
  /**
     * Eighths
     */
  .push--tablet--one-eighth {
    margin-left: 12.5%; }
  .push--tablet--three-eighths {
    margin-left: 37.5%; }
  .push--tablet--five-eighths {
    margin-left: 62.5%; }
  .push--tablet--seven-eighths {
    margin-left: 87.5%; }
  /**
     * Tenths
     */
  .push--tablet--one-tenth {
    margin-left: 10%; }
  .push--tablet--three-tenths {
    margin-left: 30%; }
  .push--tablet--seven-tenths {
    margin-left: 70%; }
  .push--tablet--nine-tenths {
    margin-left: 90%; }
  /**
     * Twelfths
     */
  .push--tablet--one-twelfth {
    margin-left: 8.333%; }
  .push--tablet--five-twelfths {
    margin-left: 41.666%; }
  .push--tablet--seven-twelfths {
    margin-left: 58.333%; }
  .push--tablet--eleven-twelfths {
    margin-left: 91.666%; } }

@media only screen and (min-width: 1024px) {
  /**
     * Whole
     */
  .push--desk--one-whole {
    margin-left: 100%; }
  /**
     * Halves
     */
  .push--desk--one-half, .push--desk--two-quarters, .push--desk--three-sixths, .push--desk--four-eighths, .push--desk--five-tenths, .push--desk--six-twelfths {
    margin-left: 50%; }
  /**
     * Thirds
     */
  .push--desk--one-third, .push--desk--two-sixths, .push--desk--four-twelfths {
    margin-left: 33.333%; }
  .push--desk--two-thirds, .push--desk--four-sixths, .push--desk--eight-twelfths {
    lmargin-eft: 66.666%; }
  /**
     * Quarters
     */
  .push--desk--one-quarter, .push--desk--two-eighths, .push--desk--three-twelfths {
    margin-left: 25%; }
  .push--desk--three-quarters, .push--desk--six-eighths, .push--desk--nine-twelfths {
    margin-left: 75%; }
  /**
     * Fifths
     */
  .push--desk--one-fifth, .push--desk--two-tenths {
    margin-left: 20%; }
  .push--desk--two-fifths, .push--desk--four-tenths {
    margin-left: 40%; }
  .push--desk--three-fifths, .push--desk--six-tenths {
    margin-left: 60%; }
  .push--desk--four-fifths, .push--desk--eight-tenths {
    margin-left: 80%; }
  /**
     * Sixths
     */
  .push--desk--one-sixth, .push--desk--two-twelfths {
    margin-left: 16.666%; }
  .push--desk--five-sixths, .push--desk--ten-twelfths {
    margin-left: 83.333%; }
  /**
     * Eighths
     */
  .push--desk--one-eighth {
    margin-left: 12.5%; }
  .push--desk--three-eighths {
    margin-left: 37.5%; }
  .push--desk--five-eighths {
    margin-left: 62.5%; }
  .push--desk--seven-eighths {
    margin-left: 87.5%; }
  /**
     * Tenths
     */
  .push--desk--one-tenth {
    margin-left: 10%; }
  .push--desk--three-tenths {
    margin-left: 30%; }
  .push--desk--seven-tenths {
    margin-left: 70%; }
  .push--desk--nine-tenths {
    margin-left: 90%; }
  /**
     * Twelfths
     */
  .push--desk--one-twelfth {
    margin-left: 8.333%; }
  .push--desk--five-twelfths {
    margin-left: 41.666%; }
  .push--desk--seven-twelfths {
    margin-left: 58.333%; }
  .push--desk--eleven-twelfths {
    margin-left: 91.666%; } }

/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

html {
  width: 100%; }

body {
  background-color: #fff;
  -ms-scroll-chaining: none;
      overscroll-behavior: none; }
  @media (min-width: 768px) {
    body {
      background-color: #ffffff; } }

a:not([class^="btn"]) {
  color: #34ab52; }

.main {
  margin-top: 80px; }
  @media (min-width: 768px) {
    .main {
      margin-top: 140px;
      padding-left: 45px;
      padding-right: 45px; } }
  .main > .container {
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #fff;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px; }
    @media (min-width: 768px) {
      .main > .container {
        padding-left: 0;
        padding-right: 0; } }

#scene {
  position: relative;
  width: 100%;
  margin-top: 78px; }

.is-fixed {
  position: fixed !important; }

.chapter, .video-train, .video-kids, .chapter-hero, .chapter-intro, .chapter-questions, .chapter-space, .chapter-fields, .chapter-environment, .chapter-rocket, .chapter-trees, .chapter-climategoal, .chapter-options {
  width: 100%;
  position: relative;
  min-height: 400px; }
  @media (min-width: 768px) {
    .chapter, .video-train, .video-kids, .chapter-hero, .chapter-intro, .chapter-questions, .chapter-space, .chapter-fields, .chapter-environment, .chapter-rocket, .chapter-trees, .chapter-climategoal, .chapter-options {
      min-height: 540px; } }
  .chapter .container, .video-train .container, .video-kids .container, .chapter-hero .container, .chapter-intro .container, .chapter-questions .container, .chapter-space .container, .chapter-fields .container, .chapter-environment .container, .chapter-rocket .container, .chapter-trees .container, .chapter-climategoal .container, .chapter-options .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px; }

.photo, .photo-kids, .photo-car, .photo-gw-car {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #fcfcfc; }
  .photo .container, .photo-kids .container, .photo-car .container, .photo-gw-car .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  background-color: #fff;
  z-index: 100;
  padding: 10px 20px;
  display: flex;
  box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.08); }
  .site-header .logo {
    display: flex;
    align-items: center;
    height: 100%; }
    .site-header .logo svg {
      fill: #39AA57;
      width: 170px; }
  .site-header .goudappel-logo {
    margin-left: auto; }
    .site-header .goudappel-logo svg {
      height: 58px;
      width: auto; }
  .site-header .header-button {
    display: none; }
    @media (min-width: 768px) {
      .site-header .header-button {
        display: block;
        height: 210px;
        margin-left: 54px;
        padding-top: 4px; } }
  .site-header .report-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    border: 2px solid;
    border-width: 2px;
    border-color: #39aa57;
    border-style: solid;
    border-radius: 2px;
    width: 190px;
    height: 50px; }
    .site-header .report-btn .icon {
      display: block;
      margin-top: 2px;
      margin-left: 5px; }

.site-footer {
  z-index: 4;
  position: relative; }
  .site-footer .columns {
    display: flex;
    position: relative; }
    @media (min-width: 768px) {
      .site-footer .columns {
        height: 210px; } }
  .site-footer .column-left {
    background-color: #39AA57;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px; }
    @media (min-width: 768px) {
      .site-footer .column-left {
        width: 50%; } }
    .site-footer .column-left a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      display: block;
      line-height: 1; }
  .site-footer .column-right {
    background-color: #39AA57;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-top: 1px solid #28843f; }
    @media (min-width: 768px) {
      .site-footer .column-right {
        width: 50%;
        border-top: none;
        border-left: 1px solid #28843f; } }
    .site-footer .column-right a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      display: block;
      line-height: 1; }
  .site-footer .social-row {
    background-color: #000;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center; }
    @media (min-width: 768px) {
      .site-footer .social-row {
        height: 210px; } }
    .site-footer .social-row h2 {
      color: #fff; }
      @media (max-width: 768px) {
        .site-footer .social-row h2 {
          margin-top: 2rem; } }
    .site-footer .social-row .line {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
      flex-direction: column;
      font-size: 14px; }
      @media (min-width: 768px) {
        .site-footer .social-row .line {
          font-size: 16px;
          flex-direction: row; } }
      .site-footer .social-row .line span {
        display: inline-block;
        margin: 0 .75rem; }
    @media (max-width: 768px) {
      .site-footer .social-row .icons {
        margin-top: 1rem; } }

.btn-next {
  text-transform: uppercase;
  color: #39AA57;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 58px;
  font-weight: 600; }
  .btn-next .icon {
    width: 58px;
    height: 58px;
    display: block;
    margin-left: 20px; }

html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  /* Fallback for when there is no custom background color defined. */ }

hr {
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

ul, ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

body {
  font-family: 'Montserrat', sans-serif; }

.section-title, .section-title--white, .section-title--green {
  font-size: 90px;
  color: #fff;
  margin: 0; }
  .section-title--white {
    color: #fff; }
  .section-title--green {
    color: #39AA57; }

.hero-section-title {
  font-size: 35px;
  color: #fff;
  margin: 0; }
  @media (min-width: 768px) {
    .hero-section-title {
      font-size: 80px; } }
  @media (min-width: 1140px) {
    .hero-section-title {
      font-size: 110px; } }

.section-title, .section-title--white, .section-title--green {
  font-size: 35px; }
  @media (min-width: 768px) {
    .section-title, .section-title--white, .section-title--green {
      font-size: 67px; } }

.photo__title {
  color: #fff;
  margin: 0;
  font-size: 25px; }
  @media (min-width: 1024px) {
    .photo__title {
      font-size: 52px; } }
  @media (min-width: 1440px) {
    .photo__title {
      font-size: 67px; } }

p {
  font-size: 18px;
  line-height: 28px; }
  p .color-green {
    color: #39AA57; }

.chapter-intro .lead, .chapter-trees p, .chapter-climategoal p, .chapter-options p {
  font-size: 20px; }
  @media (min-width: 768px) {
    .chapter-intro .lead, .chapter-trees p, .chapter-climategoal p, .chapter-options p {
      font-size: 25px; } }

.site-footer .column-left a, .site-footer .column-right a, .site-footer .social-row h2 {
  font-size: 20px; }
  @media (min-width: 1024px) {
    .site-footer .column-left a, .site-footer .column-right a, .site-footer .social-row h2 {
      font-size: 30px; } }

.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
  pointer-events: none; }
  .app-sidebar.is-hidden {
    right: 100%;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out; }
  .app-sidebar .card {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    min-width: 268px;
    width: calc(100vw - 40px);
    -webkit-overflow-scrolling: touch;
    pointer-events: all; }
    @media (min-width: 768px) {
      .app-sidebar .card {
        width: 450px; } }
    .app-sidebar .card h2 {
      color: #39AA57;
      font-size: 35px; }
    .app-sidebar .card p {
      font-size: 16px;
      font-weight: 400; }
  .app-sidebar .card__header {
    background-color: #000000;
    height: 64px;
    width: calc(100vw - 40px);
    display: flex;
    padding: 0 25px;
    position: absolute;
    top: 0;
    align-items: center; }
    @media (min-width: 768px) {
      .app-sidebar .card__header {
        width: 450px; } }
  .app-sidebar .card__content {
    position: absolute;
    padding: 40px 30px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: calc(100% - 64px);
    top: 64px;
    display: none; }
    @media (min-width: 768px) {
      .app-sidebar .card__content {
        padding: 40px 40px; } }
  .app-sidebar .btn-close {
    background: none;
    border: none;
    width: 25px;
    height: 25px;
    margin-left: auto;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    cursor: pointer; }

.app-overlay {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  cursor: default;
  background: rgba(34, 34, 34, 0.5);
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  z-index: 1000;
  transition-duration: 750ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.36, 0.005, 0.035, 1.005); }
  .app-overlay.is-hidden {
    pointer-events: none;
    opacity: 0; }

body.is-side-open {
  overflow: hidden; }
  body.is-side-open .scene {
    height: 100% !important;
    overflow-y: scroll; }

.video-train {
  min-height: 0;
  height: 56.25vw;
  overflow: hidden;
  z-index: 5;
  background-color: #fcfcfc; }
  .video-train video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background-size: cover; }
  .video-train .container {
    max-width: 1400px;
    display: flex;
    height: 100%; }
  .video-train .animated-txt {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px; }
  .video-train .section-title, .video-train .section-title--white, .video-train .section-title--green {
    font-size: 25px; }
    @media (min-width: 768px) {
      .video-train .section-title, .video-train .section-title--white, .video-train .section-title--green {
        margin-bottom: 40px;
        font-size: 75px; } }

.video-kids {
  min-height: 0;
  height: 56.25vw;
  overflow: hidden;
  z-index: 5;
  background-color: #fcfcfc; }
  .video-kids video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background-size: cover; }
  .video-kids .container {
    max-width: 1400px;
    display: flex;
    height: 100%; }
  .video-kids .animated-txt {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px; }
  .video-kids .section-title, .video-kids .section-title--white, .video-kids .section-title--green {
    font-size: 25px; }
    @media (min-width: 768px) {
      .video-kids .section-title, .video-kids .section-title--white, .video-kids .section-title--green {
        margin-bottom: 40px;
        font-size: 75px; } }

.photo-kids, .photo-kids .background, .photo-kids .animated-txt, .photo-car, .photo-car .background {
  max-height: 400px; }
  @media (min-width: 768px) {
    .photo-kids, .photo-kids .background, .photo-kids .animated-txt, .photo-car, .photo-car .background {
      max-height: 42vw; } }

.photo-kids {
  height: calc(100vh - 78px); }
  .photo-kids .background {
    background-image: url(dist/img/kids.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 78px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  .photo-kids .container {
    max-width: none; }
  .photo-kids .animated-txt {
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80vw;
    text-align: center; }
    @media (min-width: 1440px) {
      .photo-kids .animated-txt {
        padding-left: 100px;
        max-width: 50vw;
        text-align: left;
        justify-content: flex-start; } }

.photo-car {
  height: calc(100vh - 78px); }
  .photo-car .background {
    background-image: url(dist/img/electric-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 78px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  .photo-car .container {
    max-width: 1400px;
    display: flex;
    height: 100%; }
  .photo-car .animated-txt {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px; }

.photo-gw-car {
  height: calc(100vh - 78px);
  max-height: 65vw;
  min-height: 0; }
  @media (min-width: 768px) {
    .photo-gw-car {
      max-height: 1000px; } }
  .photo-gw-car .background {
    background-image: url(dist/img/gw-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 78px);
    max-height: 65vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
    @media (min-width: 768px) {
      .photo-gw-car .background {
        max-height: 1000px; } }
  .photo-gw-car .container {
    max-width: 1400px;
    display: flex;
    height: 100%;
    max-height: 65vw; }
    @media (min-width: 768px) {
      .photo-gw-car .container {
        max-height: 1000px;
        padding-left: 30px;
        padding-right: 30px; } }
  .photo-gw-car .animated-txt {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px; }
  @media (max-width: 768px) {
    .photo-gw-car .photo__title {
      font-size: 21px; } }

.counter-cars .spinner, .counter-potential .spinner, .counter-rides .spinner, .counter-distance .spinner, .counter-money .spinner, .counter-megaton .spinner {
  white-space: nowrap;
  max-width: calc(100vw - 40px);
  text-align: center;
  font-weight: 700;
  margin: 40px auto 40px;
  overflow: hidden; }

.counter, .counter-cars, .counter-potential, .counter-rides, .counter-distance, .counter-money, .counter-megaton {
  width: 100%;
  position: relative; }
  @media (min-width: 768px) {
    .counter, .counter-cars, .counter-potential, .counter-rides, .counter-distance, .counter-money, .counter-megaton {
      min-height: 540px; } }
  .counter .container, .counter-cars .container, .counter-potential .container, .counter-rides .container, .counter-distance .container, .counter-money .container, .counter-megaton .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px; }

.counter-cars {
  background-color: #EAF6EC;
  min-height: 400px; }
  .counter-cars .container {
    max-width: 1040px;
    padding-top: 76px;
    padding-bottom: 60px;
    text-align: center; }
  .counter-cars p {
    text-transform: uppercase;
    font-weight: 700; }
  .counter-cars .spinner {
    font-size: 80px; }
    @media (min-width: 768px) {
      .counter-cars .spinner {
        font-size: 140px;
        min-width: 450px; } }

.counter-potential {
  background-color: #39AA57; }
  .counter-potential .container {
    max-width: 1040px;
    text-align: center; }
  .counter-potential p {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 25px; }
  .counter-potential .spinner {
    font-size: 80px;
    color: #fff;
    margin: 30px auto 50px; }
    @media (min-width: 768px) {
      .counter-potential .spinner {
        font-size: 230px;
        min-width: 900px; } }

.counter-rides {
  background-color: #EAF6EC;
  min-height: 400px; }
  .counter-rides .container {
    max-width: 1040px;
    padding-top: 76px;
    padding-bottom: 60px;
    text-align: center; }
  .counter-rides p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px; }
  .counter-rides .spinner {
    font-size: 50px; }
    @media (min-width: 768px) {
      .counter-rides .spinner {
        font-size: 140px;
        min-width: 800px; } }

.counter-distance {
  background-color: #39AA57; }
  .counter-distance .container {
    max-width: 1180px;
    padding-top: 68px;
    padding-bottom: 68px;
    text-align: center; }
    @media (min-width: 768px) {
      .counter-distance .container {
        padding-top: 156px;
        padding-bottom: 156px; } }
  .counter-distance p {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 25px; }
  .counter-distance .spinner {
    font-size: 50px;
    margin: 30px auto 40px;
    color: #fff; }
    @media (min-width: 768px) {
      .counter-distance .spinner {
        font-size: 180px;
        min-width: 900px; } }

.counter-money {
  background-color: #EAF6EC;
  min-height: 400px; }
  .counter-money .container {
    max-width: 1040px;
    padding-top: 68px;
    padding-bottom: 68px;
    text-align: center; }
  .counter-money .animated-txt {
    display: flex;
    align-items: center;
    justify-content: center; }
  .counter-money .money {
    max-width: 100px; }
    @media (min-width: 768px) {
      .counter-money .money {
        max-width: none;
        margin-right: 32px; } }
  .counter-money p {
    font-weight: 400;
    font-size: 21px;
    max-width: 370px;
    text-align: center; }
    @media (min-width: 768px) {
      .counter-money p {
        text-align: left;
        font-size: 25px;
        margin-left: 40px; } }
  .counter-money .spinner {
    font-size: 50px; }
    @media (min-width: 768px) {
      .counter-money .spinner {
        font-size: 140px;
        min-width: 800px; } }

.counter-megaton {
  background-color: #39AA57; }
  .counter-megaton .container {
    max-width: 1180px;
    padding-top: 68px;
    padding-bottom: 68px;
    text-align: center; }
    @media (min-width: 768px) {
      .counter-megaton .container {
        padding-top: 156px;
        padding-bottom: 156px; } }
  .counter-megaton p {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 25px; }
  .counter-megaton .spinner {
    font-size: 60px;
    margin: 30px auto 40px;
    color: #fff; }
    @media (min-width: 768px) {
      .counter-megaton .spinner {
        font-size: 140px;
        min-width: 735px; } }

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0); }
  50% {
    -webkit-transform: translate3d(0, 6px, 0);
            transform: translate3d(0, 6px, 0); } }

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0); }
  50% {
    -webkit-transform: translate3d(0, 6px, 0);
            transform: translate3d(0, 6px, 0); } }

.chapter-hero {
  height: calc(100vh - 78px);
  overflow: hidden; }
  .chapter-hero .background {
    background-image: url(dist/img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 78px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-position: bottom center; }
  .chapter-hero .content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 78px);
    display: flex;
    align-items: flex-end;
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    padding-bottom: 150px;
    padding-left: 40px;
    padding-right: 40px; }
    @media (min-width: 1024px) {
      .chapter-hero .content {
        padding-bottom: 200px; } }
  .chapter-hero .hero__scrolldown {
    background-color: #39AA57;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    visibility: hidden; }
    .chapter-hero .hero__scrolldown .icon {
      width: 14px;
      fill: white;
      -webkit-animation: bounce 1.5s ease-in-out 0s infinite normal none running;
              animation: bounce 1.5s ease-in-out 0s infinite normal none running; }

.chapter-intro .container {
  max-width: 850px;
  padding-bottom: 102px;
  text-align: center; }

.chapter-intro .section-title--green {
  margin-bottom: 50px; }

.chapter-intro .lead {
  line-height: 28px;
  font-weight: 700; }
  @media (min-width: 768px) {
    .chapter-intro .lead {
      line-height: 34px; } }

.chapter-intro .second {
  margin-bottom: 50px; }

.chapter-intro .download-report {
  display: flex;
  align-items: center;
  flex-direction: column; }
  .chapter-intro .download-report img {
    display: block;
    background-color: white;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
    width: 317px;
    height: 208px;
    margin-bottom: 16px; }
  .chapter-intro .download-report .report-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    border: 2px solid;
    border-width: 2px;
    border-color: #39aa57;
    border-style: solid;
    border-radius: 2px;
    width: 190px;
    height: 50px; }
    .chapter-intro .download-report .report-btn .icon {
      display: block;
      margin-top: 2px;
      margin-left: 5px; }

.chapter-questions {
  background-color: #39AA57; }
  .chapter-questions .container {
    max-width: 1040px;
    text-align: center; }
  .chapter-questions .row {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 20px; }
    @media (min-width: 768px) {
      .chapter-questions .row {
        font-size: 30px; } }
  .chapter-questions .question {
    margin-bottom: 48px; }
  .chapter-questions p {
    color: #fff;
    font-size: 21px; }
  .chapter-questions .icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-bottom: 12px; }
    .chapter-questions .icon img {
      width: 100%; }
    @media (min-width: 768px) {
      .chapter-questions .icon {
        margin-right: 20px;
        margin-bottom: 0;
        width: 58px;
        height: 58px; } }

.chapter-space .container {
  max-width: 1200px;
  text-align: center; }

.chapter-space .animated-txt {
  max-width: 600px;
  margin: 0 auto; }

.chapter-space .btn-next {
  margin-top: 40px;
  margin-bottom: 120px; }

.chapter-space .animated-row {
  display: flex;
  padding-top: 20px; }
  .chapter-space .animated-row .item {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    @media (min-width: 768px) {
      .chapter-space .animated-row .item {
        width: 33.333%; } }
    .chapter-space .animated-row .item figure {
      width: 75%;
      padding: 0 15px; }
      @media (min-width: 768px) {
        .chapter-space .animated-row .item figure {
          height: 192px;
          width: auto;
          padding: 0; } }
  .chapter-space .animated-row .txt {
    text-transform: uppercase;
    height: 220px;
    display: flex;
    max-width: 260px;
    margin: 0 auto;
    font-weight: 700;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center; }
    @media (max-width: 768px) {
      .chapter-space .animated-row .txt p {
        font-size: 15px;
        line-height: 1.5; } }
  .chapter-space .animated-row .num {
    color: #CACACA;
    font-size: 80px;
    font-weight: 700; }
    @media (min-width: 768px) {
      .chapter-space .animated-row .num {
        font-size: 140px; } }

.chapter-fields .container {
  max-width: 1040px;
  padding-top: 92px;
  text-align: center; }

.chapter-fields p {
  text-transform: uppercase;
  font-weight: 700; }

.chapter-fields .animated-row {
  margin-top: 40px; }
  @media (min-width: 768px) {
    .chapter-fields .animated-row {
      margin-top: 100px; } }

.chapter-environment .container {
  max-width: 1200px;
  padding-bottom: 164px;
  text-align: center; }

.chapter-environment .animated-txt {
  max-width: 600px;
  margin: 0 auto; }

.chapter-environment .btn-next {
  margin-top: 40px; }

.chapter-environment .animated-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px; }
  @media (min-width: 768px) {
    .chapter-environment .animated-row {
      margin-top: 190px; } }

.chapter-environment .item {
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 768px) {
    .chapter-environment .item {
      width: 50%; } }

.chapter-environment .graph {
  display: flex;
  margin-top: 40px; }

.chapter-environment .bar-item {
  width: 33.333%;
  height: 196px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  font-size: 12px; }
  @media (min-width: 768px) {
    .chapter-environment .bar-item {
      font-size: 16px;
      height: 330px; } }
  .chapter-environment .bar-item span {
    display: inline-block;
    position: absolute;
    bottom: 0;
    padding: 0 25px;
    font-weight: 400; }
    .chapter-environment .bar-item span em {
      font-weight: 700;
      font-style: unset; }

.chapter-environment .bar, .chapter-environment .bar--red, .chapter-environment .bar--blue, .chapter-environment .bar--green {
  height: 140px;
  width: 50%;
  position: relative;
  display: block;
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .chapter-environment .bar, .chapter-environment .bar--red, .chapter-environment .bar--blue, .chapter-environment .bar--green {
      height: 260px;
      width: 112px; } }
  .chapter-environment .bar .bg, .chapter-environment .bar--red .bg, .chapter-environment .bar--blue .bg, .chapter-environment .bar--green .bg {
    background-color: #F0F0F0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; }
  .chapter-environment .bar .fill, .chapter-environment .bar--red .fill, .chapter-environment .bar--blue .fill, .chapter-environment .bar--green .fill {
    background-color: #E00613;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: 1; }

.chapter-environment .bar--red .fill {
  background-color: #E00613; }

.chapter-environment .bar--blue .fill {
  background-color: #29A9E0;
  top: 0;
  left: 0;
  width: 0;
  right: auto;
  bottom: auto;
  height: 25%; }

.chapter-environment .bar--green .fill {
  background-color: #33A852; }

.chapter-environment .driver-group {
  position: relative;
  height: 700px;
  margin-top: -180px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5); }
  @media (min-width: 768px) {
    .chapter-environment .driver-group {
      -webkit-transform: scale(1);
              transform: scale(1);
      margin-top: -130px; } }
  .chapter-environment .driver-group .circle {
    width: 340px;
    height: 340px;
    background-color: #39AA57;
    position: absolute;
    z-index: 0;
    bottom: 100px;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(50%) scale(0.001);
            transform: translateX(-50%) translateY(50%) scale(0.001);
    opacity: 0; }
  .chapter-environment .driver-group .driver {
    position: absolute;
    z-index: 1;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100px) scale(0.00075);
            transform: translateX(-50%) translateY(100px) scale(0.00075);
    opacity: 0; }
  .chapter-environment .driver-group .number-ticker {
    position: absolute;
    bottom: 0;
    overflow: hidden;
    height: 44px;
    background-color: #fff;
    box-shadow: 0 0 0.05rem black inset;
    display: inline-flex;
    border: 1px solid #000;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    min-width: 156px; }
    .chapter-environment .driver-group .number-ticker .digit {
      transition: margin-top 1200ms ease;
      border-right: 1px solid #000;
      padding: 0 0.075rem;
      color: #000;
      font-size: 28px;
      width: 26px;
      line-height: 44px; }
      .chapter-environment .driver-group .number-ticker .digit:last-child {
        border-right: none; }
  .chapter-environment .driver-group .cloud-bike {
    position: absolute;
    z-index: 1;
    top: 220px;
    left: 0;
    -webkit-transform: translateX(50%) scale(0.001);
            transform: translateX(50%) scale(0.001);
    opacity: 0; }
    @media (min-width: 768px) {
      .chapter-environment .driver-group .cloud-bike {
        left: 40px; } }
  .chapter-environment .driver-group .cloud-train {
    position: absolute;
    z-index: 1;
    top: 100px;
    right: -100px;
    -webkit-transform: translateX(-50%) scale(0.001);
            transform: translateX(-50%) scale(0.001);
    opacity: 0; }
    @media (min-width: 768px) {
      .chapter-environment .driver-group .cloud-train {
        top: 0;
        right: 0; } }
  .chapter-environment .driver-group .txt {
    visibility: hidden;
    width: 330px;
    text-align: left;
    margin-top: 80px;
    position: absolute; }
    .chapter-environment .driver-group .txt .icon {
      position: absolute;
      top: 0;
      left: -36px; }

.chapter-environment .animated-row-2 {
  -webkit-transform: translateX(-12.5%) scale(0.5);
          transform: translateX(-12.5%) scale(0.5);
  height: 300px;
  margin-top: -150px; }
  @media (min-width: 768px) {
    .chapter-environment .animated-row-2 {
      -webkit-transform: none;
              transform: none;
      height: auto;
      margin-top: 0; } }

.chapter-environment .train-circle {
  display: flex;
  background-color: #FCC635;
  width: 476px;
  height: 476px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; }
  @media (min-width: 768px) {
    .chapter-environment .train-circle {
      margin-left: 100px; } }
  .chapter-environment .train-circle .row {
    display: flex;
    justify-content: center;
    width: 90%; }
  .chapter-environment .train-circle .percentage {
    color: #194C8C;
    font-size: 52px;
    display: inline-block;
    margin-bottom: auto;
    margin-top: auto;
    padding: 0 20px;
    width: 33.333%;
    font-weight: 700; }
  .chapter-environment .train-circle .icon {
    display: inline-block;
    width: 33.333%; }
  .chapter-environment .train-circle .txt {
    padding-bottom: 20%;
    width: 60%; }
    .chapter-environment .train-circle .txt p {
      line-height: 20px;
      font-size: 16px;
      margin: 10px 0 0; }

.chapter-rocket {
  min-height: 300px; }
  .chapter-rocket .container {
    max-width: 1190px;
    padding-top: 0;
    padding-bottom: 60px;
    text-align: center; }
    @media (min-width: 768px) {
      .chapter-rocket .container {
        padding-top: 92px;
        padding-bottom: 100px; } }
  .chapter-rocket p {
    font-size: 21px; }
  .chapter-rocket .animated-row {
    margin-top: 60px;
    display: flex;
    align-items: center; }
  .chapter-rocket .rocket {
    opacity: 0;
    width: 18%;
    margin-top: 20px;
    -webkit-transform: translateX(-150px) translateY(150px) scale(0.25);
            transform: translateX(-150px) translateY(150px) scale(0.25);
    padding-right: 12px; }
  .chapter-rocket .rocket-line {
    width: 66%; }
    .chapter-rocket .rocket-line svg {
      width: 100%; }
  .chapter-rocket .moon {
    opacity: 0;
    -webkit-transform: translateX(-75px) translateY(75px) scale(0.25);
            transform: translateX(-75px) translateY(75px) scale(0.25);
    margin-top: 56px;
    padding-left: 20px;
    width: 16%; }
  .chapter-rocket .path {
    fill: #33a852;
    opacity: 0; }
  .chapter-rocket .animated-txt {
    margin-top: -20px; }

.chapter-trees .container {
  max-width: 1190px;
  text-align: center; }

.chapter-trees .btn-next {
  margin-top: 40px;
  margin-bottom: 120px; }

.chapter-trees .trees-line {
  fill: none;
  stroke: #39AA57;
  stroke-width: 2px;
  stroke-dasharray: 8,4; }

.chapter-trees .animated-row-2 {
  margin-top: 80px; }
  @media (min-width: 768px) {
    .chapter-trees .animated-row-2 {
      margin-top: 160px; } }

.chapter-trees p {
  font-weight: 700;
  text-transform: uppercase; }

.chapter-trees .trees {
  margin: 40px 0; }

.chapter-trees .clouds {
  max-width: 100%;
  height: auto; }

.chapter-climategoal {
  min-height: 0; }
  .chapter-climategoal .container {
    max-width: 900px;
    text-align: center; }
  .chapter-climategoal .animated-row {
    display: flex;
    align-items: center; }
  .chapter-climategoal p {
    font-weight: 700;
    text-transform: uppercase; }
  @media (min-width: 768px) {
    .chapter-climategoal .climategoal {
      margin-right: 60px; } }

.chapter-options .container {
  max-width: 1190px;
  text-align: center; }

.chapter-options .animated-txt p {
  margin-top: 52px; }

.chapter-options .scores {
  display: flex; }

.chapter-options .score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .chapter-options .score {
      width: 33.333%;
      margin-bottom: 0; } }
  .chapter-options .score__circle {
    display: inline-flex;
    background-color: #39AA57;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700; }
  .chapter-options .score p {
    font-size: 18px;
    font-weight: 400;
    padding: 0 40px; }

.chapter-options .options {
  display: flex;
  margin-top: 80px; }

.chapter-options .option {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 768px) {
    .chapter-options .option {
      width: 33.333%; } }
  .chapter-options .option h3 {
    color: #39AA57;
    text-transform: uppercase;
    margin: 0;
    font-size: 30px; }
  .chapter-options .option figure {
    height: 180px;
    margin-bottom: 60px; }
  .chapter-options .option p {
    font-size: 18px;
    font-weight: 400;
    padding: 0 40px; }

.chapter-options .btn-next {
  margin-top: 40px;
  margin-bottom: 120px; }

.chapter-options .animated-row-2 {
  margin-top: 160px; }
  .chapter-options .animated-row-2 .lead {
    text-transform: uppercase; }

.chapter-options p {
  font-weight: 700; }

.point {
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background: #FF007A;
  opacity: 1;
  display: none; }

.car {
  display: none; }
  @media (min-width: 1140px) {
    .car {
      width: 144px;
      height: 144px;
      border: 40px #5BB973 solid;
      border-radius: 50%;
      position: absolute;
      z-index: 1;
      top: 0;
      display: block; } }

.js-carA {
  left: 15px;
  top: calc(100vh - 300px); }

.js-carB {
  top: 4000px;
  right: 15px; }

.js-carC {
  left: 15px;
  top: 4000px; }

.car--white {
  display: none; }
  @media (min-width: 1140px) {
    .car--white {
      width: 144px;
      height: 144px;
      border: 40px #fff solid;
      border-radius: 50%;
      position: absolute;
      z-index: 1;
      bottom: 60px;
      left: 15px;
      display: block; } }

.road-points {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none; }

.road--left {
  display: none; }
  @media (min-width: 1140px) {
    .road--left {
      display: block;
      background-image: url(dist/img/road-tile.svg);
      background-repeat: repeat-y;
      background-size: 100%;
      width: 64px;
      position: absolute;
      top: calc(100vh - 180px);
      left: 55px;
      z-index: 0; } }

.road--right {
  display: none; }
  @media (min-width: 1140px) {
    .road--right {
      display: block;
      background-image: url(dist/img/road-tile.svg);
      background-repeat: repeat-y;
      background-size: 100%;
      width: 64px;
      position: absolute;
      right: 55px;
      z-index: 0; } }

.road--left-bottom {
  display: none; }
  @media (min-width: 1140px) {
    .road--left-bottom {
      display: block;
      background-image: url(dist/img/road-tile.svg);
      background-repeat: repeat-y;
      background-size: 100%;
      width: 64px;
      position: absolute;
      left: 55px;
      bottom: 170px;
      z-index: 0; } }

.road--footer {
  display: none; }
  @media (min-width: 1140px) {
    .road--footer {
      display: block;
      background-image: url(dist/img/road-tile.svg);
      background-repeat: repeat-y;
      background-size: 100%;
      width: 64px;
      position: absolute;
      left: 55px;
      bottom: 170px;
      height: 300px;
      z-index: 0; } }


/*# sourceMappingURL=style.css.map*/